@cyber-harbour/ui 3.0.0-next-gen.61 → 3.0.0-next-gen.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const prompts = require('prompts');
4
- const { execSync, execFileSync } = require('child_process');
3
+ const { execFileSync } = require('child_process');
5
4
  const path = require('path');
6
5
  const fs = require('fs');
7
6
 
@@ -48,6 +47,10 @@ const projectRoot = findProjectRoot();
48
47
  const localPath = getLocalPath();
49
48
  const pkgPath = path.resolve(projectRoot, `node_modules/${packageName}/package.json`);
50
49
 
50
+ function npm(args, cwd) {
51
+ return execFileSync('npm', args, { stdio: 'inherit', cwd });
52
+ }
53
+
51
54
  function isUsingLocalVersion() {
52
55
  try {
53
56
  const realPath = fs.realpathSync(pkgPath);
@@ -73,11 +76,134 @@ function checkLocalPathExists() {
73
76
  return true;
74
77
  }
75
78
 
76
- async function main() {
79
+ function printHeader() {
77
80
  console.log(`🏠 Проект: ${projectRoot}`);
78
81
  console.log(`📦 Пакет: ${packageName}`);
79
82
  console.log(`🔧 Локальний шлях: ${localPath}`);
80
83
  console.log('');
84
+ }
85
+
86
+ function printStatus() {
87
+ printHeader();
88
+ if (!fs.existsSync(pkgPath)) {
89
+ console.log('📊 Статус: не встановлено');
90
+ return 'missing';
91
+ }
92
+ if (isUsingLocalVersion()) {
93
+ const realPath = fs.realpathSync(pkgPath);
94
+ console.log(`📊 Статус: local → ${path.dirname(realPath)}`);
95
+ return 'local';
96
+ }
97
+ try {
98
+ const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf8'));
99
+ console.log(`📊 Статус: npm @ ${pkg.version}`);
100
+ } catch {
101
+ console.log('📊 Статус: npm (версію не вдалося прочитати)');
102
+ }
103
+ return 'npm';
104
+ }
105
+
106
+ function printHelp() {
107
+ console.log(`Usage: switch-ui-lib [command] [options]
108
+
109
+ Commands:
110
+ local Link the local checkout of ${packageName} via npm link
111
+ npm [version|tag] Install from npm (default: latest)
112
+ status Print current mode (local | npm <version>) and exit
113
+ (no command) Run interactive picker
114
+
115
+ Options:
116
+ -h, --help Show this help and exit
117
+
118
+ Environment:
119
+ UI_LIBRARY_PATH Absolute path to the local ui-kit checkout
120
+ (default: ../ui-kit relative to the consuming project)
121
+
122
+ Examples:
123
+ switch-ui-lib local
124
+ switch-ui-lib npm
125
+ switch-ui-lib npm next
126
+ switch-ui-lib npm 0.42.0
127
+ switch-ui-lib status
128
+ `);
129
+ }
130
+
131
+ function switchToLocal() {
132
+ printHeader();
133
+
134
+ if (!checkLocalPathExists()) {
135
+ return 1;
136
+ }
137
+
138
+ if (isUsingLocalVersion()) {
139
+ console.log('✅ Вже підключено локально.');
140
+ return 0;
141
+ }
142
+
143
+ try {
144
+ console.log('🔄 Видаляємо існуючий пакет...');
145
+ try {
146
+ npm(['uninstall', packageName], projectRoot);
147
+ } catch {
148
+ // Ігноруємо помилку якщо пакет не встановлений
149
+ }
150
+
151
+ // Створюємо глобальний лінк в локальній бібліотеці
152
+ // NB: react/react-dom лінкувати окремо НЕ потрібно — споживач
153
+ // (frontend-svc) має `resolve.dedupe: ['react','react-dom']` у
154
+ // vite.config.ts, що гарантує єдиний інстанс React навіть при
155
+ // symlink-resolution через node_modules/@cyber-harbour/ui.
156
+ console.log('🔄 Створюємо глобальний лінк...');
157
+ npm(['link'], localPath);
158
+
159
+ console.log('🔄 Підключаємо локальну версію...');
160
+ npm(['link', packageName], projectRoot);
161
+
162
+ console.log('✅ Успішно підключено локальну версію через npm link.');
163
+ return 0;
164
+ } catch (error) {
165
+ console.error('❌ Помилка при підключенні локальної версії:', error.message);
166
+ return 1;
167
+ }
168
+ }
169
+
170
+ function switchToNpm(versionOrTag) {
171
+ printHeader();
172
+
173
+ const version = versionOrTag || 'latest';
174
+ const packageToInstall = `${packageName}@${version}`;
175
+
176
+ try {
177
+ console.log('🔄 Видаляємо лінки...');
178
+ try {
179
+ npm(['unlink', packageName], projectRoot);
180
+ } catch {
181
+ // Ігноруємо помилку якщо лінк не існує
182
+ }
183
+
184
+ console.log(`🔄 Встановлюємо ${packageToInstall}...`);
185
+ npm(['install', packageToInstall], projectRoot);
186
+ console.log(`✅ Успішно підключено ${packageToInstall}.`);
187
+ return 0;
188
+ } catch (error) {
189
+ console.error('❌ Помилка при підключенні версії з NPM:', error.message);
190
+ return 1;
191
+ }
192
+ }
193
+
194
+ async function runInteractive() {
195
+ let prompts;
196
+ try {
197
+ require.resolve('prompts');
198
+ prompts = require('prompts');
199
+ } catch {
200
+ console.error('❌ Помилка: пакет "prompts" не знайдено.');
201
+ console.log('💡 Встановіть prompts: npm install --save-dev prompts');
202
+ console.log('💡 Або викличте з аргументами: switch-ui-lib local | npm [version] | status');
203
+ return 1;
204
+ }
205
+
206
+ printHeader();
81
207
 
82
208
  const response = await prompts({
83
209
  type: 'select',
@@ -92,43 +218,7 @@ async function main() {
92
218
  const { mode } = response;
93
219
 
94
220
  if (mode === 'local') {
95
- if (!checkLocalPathExists()) {
96
- return;
97
- }
98
-
99
- if (isUsingLocalVersion()) {
100
- console.log('✅ Вже підключено локально.');
101
- return;
102
- }
103
-
104
- try {
105
- // Спочатку видаляємо існуючий пакет
106
- console.log('🔄 Видаляємо існуючий пакет...');
107
- try {
108
- execSync(`npm uninstall ${packageName}`, { stdio: 'inherit', cwd: projectRoot });
109
- } catch {
110
- // Ігноруємо помилку якщо пакет не встановлений
111
- }
112
-
113
- // Створюємо глобальний лінк в локальній бібліотеці
114
- // NB: react/react-dom лінкувати окремо НЕ потрібно — споживач
115
- // (frontend-svc) має `resolve.dedupe: ['react','react-dom']` у
116
- // vite.config.ts, що гарантує єдиний інстанс React навіть при
117
- // symlink-resolution через node_modules/@cyber-harbour/ui.
118
- console.log('🔄 Створюємо глобальний лінк...');
119
- execSync('npm link', {
120
- stdio: 'inherit',
121
- cwd: localPath,
122
- });
123
-
124
- // Лінкуємо локальну бібліотеку до проекту
125
- console.log('🔄 Підключаємо локальну версію...');
126
- execSync(`npm link ${packageName}`, { stdio: 'inherit', cwd: projectRoot });
127
-
128
- console.log('✅ Успішно підключено локальну версію через npm link.');
129
- } catch (error) {
130
- console.error('❌ Помилка при підключенні локальної версії:', error.message);
131
- }
221
+ return switchToLocal();
132
222
  }
133
223
 
134
224
  if (mode === 'npm') {
@@ -169,7 +259,7 @@ async function main() {
169
259
 
170
260
  if (!selected) {
171
261
  console.log('❌ Операція скасована.');
172
- return;
262
+ return 1;
173
263
  }
174
264
 
175
265
  let version = selected;
@@ -184,39 +274,53 @@ async function main() {
184
274
 
185
275
  if (!custom) {
186
276
  console.log('❌ Операція скасована.');
187
- return;
277
+ return 1;
188
278
  }
189
279
 
190
280
  version = custom.startsWith('@') ? custom.substring(1) : custom;
191
281
  }
192
282
 
193
- const packageToInstall = `${packageName}@${version}`;
283
+ return switchToNpm(version);
284
+ }
194
285
 
195
- try {
196
- // Видаляємо лінк якщо він існує
197
- console.log('🔄 Видаляємо лінки...');
198
- try {
199
- execSync(`npm unlink ${packageName}`, { stdio: 'inherit', cwd: projectRoot });
200
- } catch {
201
- // Ігноруємо помилку якщо лінк не існує
202
- }
286
+ console.log('❌ Операція скасована.');
287
+ return 1;
288
+ }
203
289
 
204
- // Встановлюємо пакет з NPM
205
- console.log(`🔄 Встановлюємо ${packageToInstall}...`);
206
- execSync(`npm install ${packageToInstall}`, { stdio: 'inherit', cwd: projectRoot });
207
- console.log(`✅ Успішно підключено ${packageToInstall}.`);
208
- } catch (error) {
209
- console.error('❌ Помилка при підключенні версії з NPM:', error.message);
210
- }
290
+ async function main() {
291
+ const args = process.argv.slice(2);
292
+ const [command, ...rest] = args;
293
+
294
+ if (command === '-h' || command === '--help') {
295
+ printHelp();
296
+ return 0;
211
297
  }
212
- }
213
298
 
214
- // Перевіряємо чи prompts доступний
215
- try {
216
- require.resolve('prompts');
217
- main().catch(console.error);
218
- } catch (error) {
219
- console.error('❌ Помилка: пакет "prompts" не знайдено.');
220
- console.log('💡 Встановіть prompts: npm install --save-dev prompts');
221
- process.exit(1);
299
+ if (command === 'status') {
300
+ printStatus();
301
+ return 0;
302
+ }
303
+
304
+ if (command === 'local') {
305
+ return switchToLocal();
306
+ }
307
+
308
+ if (command === 'npm') {
309
+ return switchToNpm(rest[0]);
310
+ }
311
+
312
+ if (command !== undefined) {
313
+ console.error(`❌ Невідома команда: ${command}`);
314
+ printHelp();
315
+ return 2;
316
+ }
317
+
318
+ return runInteractive();
222
319
  }
320
+
321
+ main()
322
+ .then(code => process.exit(code ?? 0))
323
+ .catch(error => {
324
+ console.error(error);
325
+ process.exit(1);
326
+ });
@@ -169,6 +169,8 @@ declare const DirectionsRailwayIcon: (props: SVGProps<SVGSVGElement>) => react_j
169
169
 
170
170
  declare const DirectionsSubwayIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
171
171
 
172
+ declare const DirectionsWalkIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
173
+
172
174
  declare const DistanceIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
173
175
 
174
176
  declare const DomainIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -291,6 +293,12 @@ declare const LogoutIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.
291
293
 
292
294
  declare const MapIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
293
295
 
296
+ /**
297
+ * Max (oneme.ru) messenger mark — outline speech bubbles. The inner `translate`
298
+ * reproduces the icon's inset inside the 20×20 design-system frame.
299
+ */
300
+ declare const MaxIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
301
+
294
302
  declare const MonitoringIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
295
303
 
296
304
  declare const MoreHorizIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -345,6 +353,8 @@ declare const SignpostIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtim
345
353
 
346
354
  declare const SkullIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
347
355
 
356
+ declare const SupervisedUserCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
357
+
348
358
  declare const SwapVertIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
349
359
 
350
360
  declare const SyncAltIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -377,6 +387,8 @@ declare const UndoIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JS
377
387
 
378
388
  declare const UpgradeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
379
389
 
390
+ declare const VideocamIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
391
+
380
392
  declare const ViewRealSizeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
381
393
 
382
394
  declare const VillaIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -405,4 +417,4 @@ declare const ZoomOutIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime
405
417
 
406
418
  declare const ZoomOutMapIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
407
419
 
408
- export { AccountTreeIcon, AddColumnLeftIcon, AddIcon, AddLocationIcon, AirlinesIcon, AirplanemodeInactiveIcon, AndroidIcon, AppleIcon, ArrowBackIcon, ArrowDownwardIcon, ArrowDropDownCircleIcon, ArrowDropDownIcon, ArrowDropUpIcon, ArrowForwardIcon, ArrowForwardIosIcon, ArrowInsertIcon, ArrowLeftAltIcon, ArrowLeftIcon, ArrowOutwardIcon, ArrowRightAltIcon, ArrowTopLeftIcon, ArrowTopRightIcon, ArrowUploadProgressIcon, ArrowUploadReadyIcon, ArrowUpwardAltIcon, ArrowUpwardIcon, ArrowWarmUpIcon, ArrowsInputIcon, ArticleIcon, AssignmentAddIcon, AudiotrackIcon, AutomationIcon, BarChartIcon, BarcodeReaderIcon, BookIcon, BotAIIcon, BrokenImageIcon, BugReportIcon, BusFilledIcon, CachedIcon, CalendarMonthIcon, CalendarTodayIcon, CalendarViewWeekIcon, CampaignIcon, CancelIcon, CarFrontFilledIcon, CarFrontIcon, CardsStackIcon, CarryOnBagCheckedIcon, CarryOnBagIcon, CarryOnBagQuestionIcon, CheckBoxIcon, CheckCircleIcon, CheckIcon, CheckedBagQuestionIcon, ChevronDownIcon, ChevronForwardIcon, ChevronLeftIcon, ChevronLineUpIcon, CircleAlertFilledIcon, ClearDayIcon, CloseFullscreenIcon, CloseIcon, CodeXmlIcon, CollapseAllIcon, CollapseContentIcon, CompareArrowsIcon, ContactsIcon, ContentCopyIcon, CorporateFareIcon, CurlyBracketsIcon, DangerousIcon, DarkModeIcon, DataLossPreventionIcon, DatabaseDownloadIcon, DatabaseIcon, DatabaseUploadIcon, DehazeIcon, DescriptionIcon, DeveloperGuideIcon, DirectionsBoatIcon, DirectionsBusIcon, DirectionsCarIcon, DirectionsRailway2Icon, DirectionsRailwayIcon, DirectionsSubwayIcon, DistanceIcon, DomainIcon, DoneAllIcon, DownloadIcon, DraftIcon, EditCalendarIcon, ElectricBoltIcon, ErrorIcon, EventAvailableIcon, EventBusyIcon, EventNoteIcon, ExpandCircleDownIcon, ExpandCircleRightIcon, ExpandCircleUpIcon, FamiliarFaceAndZoneIcon, FileQuestionIcon, FilterAltIcon, FilterListIcon, FilterListOffIcon, FindReplaceIcon, FlightIcon, FlightLandIcon, FlightTakeoffIcon, FolderIcon, FolderInfoIcon, ForwardMediaIcon, Graph2Icon, Graph3Icon, GridOnIcon, GroupAddIcon, GroupRemoveIcon, GroupsIcon, HelmetIcon, HistoryIcon, HomeIcon, HomeStorageIcon, HowToRegIcon, InfoFilledIcon, InfoIcon, InsertChartIcon, InstantMixIcon, KeyIcon, KeyVerticalIcon, KeyboardArrowDownIcon, KeyboardArrowLeftIcon, KeyboardArrowRightIcon, KeyboardArrowUpIcon, KeyboardDoubleArrowDownIcon, KeyboardDoubleArrowLeftIcon, KeyboardDoubleArrowRightIcon, KeyboardDoubleArrowUpIcon, LanIcon, LanguageIcon, LineAxisIcon, LocationSearchingIcon, LockIcon, LockOpenIcon, LogoutIcon, MapIcon, MonitoringIcon, MoreHorizIcon, MoreVertIcon, OpenInFullIcon, OperatorIcon, PasswordIcon, PauseIcon, PenFilledIcon, PenIcon, PersonCancelIcon, PersonEditIcon, PersonIcon, PersonSearchIcon, PhotoLibraryIcon, PlayArrowIcon, PrintIcon, PromptSuggestionIcon, RedoIcon, ReleaseAlertIcon, ReplayIcon, RightClickIcon, RotateLeftIcon, RotateRightIcon, SearchGearIcon, SearchIcon, SignpostIcon, SkullIcon, SwapVertIcon, SyncAltIcon, SyncIcon, SyncProblemIcon, TableRowsNarrowIcon, TelevisionIcon, TravelIcon, TravelOutlineIcon, TrendingDownIcon, TrendingFlatIcon, TrendingUpIcon, TriangleAlertFilledIcon, TriangleAlertIcon, TripIcon, UndoIcon, UpgradeIcon, ViewRealSizeIcon, VillaIcon, VisibilityIcon, VisibilityOffIcon, VolumeOffIcon, VolumeUpIcon, WarningIcon, WindowsIcon, WorldIcon, YoutubeSearchedForIcon, ZoomInIcon, ZoomInMapIcon, ZoomOutIcon, ZoomOutMapIcon };
420
+ export { AccountTreeIcon, AddColumnLeftIcon, AddIcon, AddLocationIcon, AirlinesIcon, AirplanemodeInactiveIcon, AndroidIcon, AppleIcon, ArrowBackIcon, ArrowDownwardIcon, ArrowDropDownCircleIcon, ArrowDropDownIcon, ArrowDropUpIcon, ArrowForwardIcon, ArrowForwardIosIcon, ArrowInsertIcon, ArrowLeftAltIcon, ArrowLeftIcon, ArrowOutwardIcon, ArrowRightAltIcon, ArrowTopLeftIcon, ArrowTopRightIcon, ArrowUploadProgressIcon, ArrowUploadReadyIcon, ArrowUpwardAltIcon, ArrowUpwardIcon, ArrowWarmUpIcon, ArrowsInputIcon, ArticleIcon, AssignmentAddIcon, AudiotrackIcon, AutomationIcon, BarChartIcon, BarcodeReaderIcon, BookIcon, BotAIIcon, BrokenImageIcon, BugReportIcon, BusFilledIcon, CachedIcon, CalendarMonthIcon, CalendarTodayIcon, CalendarViewWeekIcon, CampaignIcon, CancelIcon, CarFrontFilledIcon, CarFrontIcon, CardsStackIcon, CarryOnBagCheckedIcon, CarryOnBagIcon, CarryOnBagQuestionIcon, CheckBoxIcon, CheckCircleIcon, CheckIcon, CheckedBagQuestionIcon, ChevronDownIcon, ChevronForwardIcon, ChevronLeftIcon, ChevronLineUpIcon, CircleAlertFilledIcon, ClearDayIcon, CloseFullscreenIcon, CloseIcon, CodeXmlIcon, CollapseAllIcon, CollapseContentIcon, CompareArrowsIcon, ContactsIcon, ContentCopyIcon, CorporateFareIcon, CurlyBracketsIcon, DangerousIcon, DarkModeIcon, DataLossPreventionIcon, DatabaseDownloadIcon, DatabaseIcon, DatabaseUploadIcon, DehazeIcon, DescriptionIcon, DeveloperGuideIcon, DirectionsBoatIcon, DirectionsBusIcon, DirectionsCarIcon, DirectionsRailway2Icon, DirectionsRailwayIcon, DirectionsSubwayIcon, DirectionsWalkIcon, DistanceIcon, DomainIcon, DoneAllIcon, DownloadIcon, DraftIcon, EditCalendarIcon, ElectricBoltIcon, ErrorIcon, EventAvailableIcon, EventBusyIcon, EventNoteIcon, ExpandCircleDownIcon, ExpandCircleRightIcon, ExpandCircleUpIcon, FamiliarFaceAndZoneIcon, FileQuestionIcon, FilterAltIcon, FilterListIcon, FilterListOffIcon, FindReplaceIcon, FlightIcon, FlightLandIcon, FlightTakeoffIcon, FolderIcon, FolderInfoIcon, ForwardMediaIcon, Graph2Icon, Graph3Icon, GridOnIcon, GroupAddIcon, GroupRemoveIcon, GroupsIcon, HelmetIcon, HistoryIcon, HomeIcon, HomeStorageIcon, HowToRegIcon, InfoFilledIcon, InfoIcon, InsertChartIcon, InstantMixIcon, KeyIcon, KeyVerticalIcon, KeyboardArrowDownIcon, KeyboardArrowLeftIcon, KeyboardArrowRightIcon, KeyboardArrowUpIcon, KeyboardDoubleArrowDownIcon, KeyboardDoubleArrowLeftIcon, KeyboardDoubleArrowRightIcon, KeyboardDoubleArrowUpIcon, LanIcon, LanguageIcon, LineAxisIcon, LocationSearchingIcon, LockIcon, LockOpenIcon, LogoutIcon, MapIcon, MaxIcon, MonitoringIcon, MoreHorizIcon, MoreVertIcon, OpenInFullIcon, OperatorIcon, PasswordIcon, PauseIcon, PenFilledIcon, PenIcon, PersonCancelIcon, PersonEditIcon, PersonIcon, PersonSearchIcon, PhotoLibraryIcon, PlayArrowIcon, PrintIcon, PromptSuggestionIcon, RedoIcon, ReleaseAlertIcon, ReplayIcon, RightClickIcon, RotateLeftIcon, RotateRightIcon, SearchGearIcon, SearchIcon, SignpostIcon, SkullIcon, SupervisedUserCircleIcon, SwapVertIcon, SyncAltIcon, SyncIcon, SyncProblemIcon, TableRowsNarrowIcon, TelevisionIcon, TravelIcon, TravelOutlineIcon, TrendingDownIcon, TrendingFlatIcon, TrendingUpIcon, TriangleAlertFilledIcon, TriangleAlertIcon, TripIcon, UndoIcon, UpgradeIcon, VideocamIcon, ViewRealSizeIcon, VillaIcon, VisibilityIcon, VisibilityOffIcon, VolumeOffIcon, VolumeUpIcon, WarningIcon, WindowsIcon, WorldIcon, YoutubeSearchedForIcon, ZoomInIcon, ZoomInMapIcon, ZoomOutIcon, ZoomOutMapIcon };
@@ -169,6 +169,8 @@ declare const DirectionsRailwayIcon: (props: SVGProps<SVGSVGElement>) => react_j
169
169
 
170
170
  declare const DirectionsSubwayIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
171
171
 
172
+ declare const DirectionsWalkIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
173
+
172
174
  declare const DistanceIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
173
175
 
174
176
  declare const DomainIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -291,6 +293,12 @@ declare const LogoutIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.
291
293
 
292
294
  declare const MapIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
293
295
 
296
+ /**
297
+ * Max (oneme.ru) messenger mark — outline speech bubbles. The inner `translate`
298
+ * reproduces the icon's inset inside the 20×20 design-system frame.
299
+ */
300
+ declare const MaxIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
301
+
294
302
  declare const MonitoringIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
295
303
 
296
304
  declare const MoreHorizIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -345,6 +353,8 @@ declare const SignpostIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtim
345
353
 
346
354
  declare const SkullIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
347
355
 
356
+ declare const SupervisedUserCircleIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
357
+
348
358
  declare const SwapVertIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
349
359
 
350
360
  declare const SyncAltIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -377,6 +387,8 @@ declare const UndoIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JS
377
387
 
378
388
  declare const UpgradeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
379
389
 
390
+ declare const VideocamIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
391
+
380
392
  declare const ViewRealSizeIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
381
393
 
382
394
  declare const VillaIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
@@ -405,4 +417,4 @@ declare const ZoomOutIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime
405
417
 
406
418
  declare const ZoomOutMapIcon: (props: SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
407
419
 
408
- export { AccountTreeIcon, AddColumnLeftIcon, AddIcon, AddLocationIcon, AirlinesIcon, AirplanemodeInactiveIcon, AndroidIcon, AppleIcon, ArrowBackIcon, ArrowDownwardIcon, ArrowDropDownCircleIcon, ArrowDropDownIcon, ArrowDropUpIcon, ArrowForwardIcon, ArrowForwardIosIcon, ArrowInsertIcon, ArrowLeftAltIcon, ArrowLeftIcon, ArrowOutwardIcon, ArrowRightAltIcon, ArrowTopLeftIcon, ArrowTopRightIcon, ArrowUploadProgressIcon, ArrowUploadReadyIcon, ArrowUpwardAltIcon, ArrowUpwardIcon, ArrowWarmUpIcon, ArrowsInputIcon, ArticleIcon, AssignmentAddIcon, AudiotrackIcon, AutomationIcon, BarChartIcon, BarcodeReaderIcon, BookIcon, BotAIIcon, BrokenImageIcon, BugReportIcon, BusFilledIcon, CachedIcon, CalendarMonthIcon, CalendarTodayIcon, CalendarViewWeekIcon, CampaignIcon, CancelIcon, CarFrontFilledIcon, CarFrontIcon, CardsStackIcon, CarryOnBagCheckedIcon, CarryOnBagIcon, CarryOnBagQuestionIcon, CheckBoxIcon, CheckCircleIcon, CheckIcon, CheckedBagQuestionIcon, ChevronDownIcon, ChevronForwardIcon, ChevronLeftIcon, ChevronLineUpIcon, CircleAlertFilledIcon, ClearDayIcon, CloseFullscreenIcon, CloseIcon, CodeXmlIcon, CollapseAllIcon, CollapseContentIcon, CompareArrowsIcon, ContactsIcon, ContentCopyIcon, CorporateFareIcon, CurlyBracketsIcon, DangerousIcon, DarkModeIcon, DataLossPreventionIcon, DatabaseDownloadIcon, DatabaseIcon, DatabaseUploadIcon, DehazeIcon, DescriptionIcon, DeveloperGuideIcon, DirectionsBoatIcon, DirectionsBusIcon, DirectionsCarIcon, DirectionsRailway2Icon, DirectionsRailwayIcon, DirectionsSubwayIcon, DistanceIcon, DomainIcon, DoneAllIcon, DownloadIcon, DraftIcon, EditCalendarIcon, ElectricBoltIcon, ErrorIcon, EventAvailableIcon, EventBusyIcon, EventNoteIcon, ExpandCircleDownIcon, ExpandCircleRightIcon, ExpandCircleUpIcon, FamiliarFaceAndZoneIcon, FileQuestionIcon, FilterAltIcon, FilterListIcon, FilterListOffIcon, FindReplaceIcon, FlightIcon, FlightLandIcon, FlightTakeoffIcon, FolderIcon, FolderInfoIcon, ForwardMediaIcon, Graph2Icon, Graph3Icon, GridOnIcon, GroupAddIcon, GroupRemoveIcon, GroupsIcon, HelmetIcon, HistoryIcon, HomeIcon, HomeStorageIcon, HowToRegIcon, InfoFilledIcon, InfoIcon, InsertChartIcon, InstantMixIcon, KeyIcon, KeyVerticalIcon, KeyboardArrowDownIcon, KeyboardArrowLeftIcon, KeyboardArrowRightIcon, KeyboardArrowUpIcon, KeyboardDoubleArrowDownIcon, KeyboardDoubleArrowLeftIcon, KeyboardDoubleArrowRightIcon, KeyboardDoubleArrowUpIcon, LanIcon, LanguageIcon, LineAxisIcon, LocationSearchingIcon, LockIcon, LockOpenIcon, LogoutIcon, MapIcon, MonitoringIcon, MoreHorizIcon, MoreVertIcon, OpenInFullIcon, OperatorIcon, PasswordIcon, PauseIcon, PenFilledIcon, PenIcon, PersonCancelIcon, PersonEditIcon, PersonIcon, PersonSearchIcon, PhotoLibraryIcon, PlayArrowIcon, PrintIcon, PromptSuggestionIcon, RedoIcon, ReleaseAlertIcon, ReplayIcon, RightClickIcon, RotateLeftIcon, RotateRightIcon, SearchGearIcon, SearchIcon, SignpostIcon, SkullIcon, SwapVertIcon, SyncAltIcon, SyncIcon, SyncProblemIcon, TableRowsNarrowIcon, TelevisionIcon, TravelIcon, TravelOutlineIcon, TrendingDownIcon, TrendingFlatIcon, TrendingUpIcon, TriangleAlertFilledIcon, TriangleAlertIcon, TripIcon, UndoIcon, UpgradeIcon, ViewRealSizeIcon, VillaIcon, VisibilityIcon, VisibilityOffIcon, VolumeOffIcon, VolumeUpIcon, WarningIcon, WindowsIcon, WorldIcon, YoutubeSearchedForIcon, ZoomInIcon, ZoomInMapIcon, ZoomOutIcon, ZoomOutMapIcon };
420
+ export { AccountTreeIcon, AddColumnLeftIcon, AddIcon, AddLocationIcon, AirlinesIcon, AirplanemodeInactiveIcon, AndroidIcon, AppleIcon, ArrowBackIcon, ArrowDownwardIcon, ArrowDropDownCircleIcon, ArrowDropDownIcon, ArrowDropUpIcon, ArrowForwardIcon, ArrowForwardIosIcon, ArrowInsertIcon, ArrowLeftAltIcon, ArrowLeftIcon, ArrowOutwardIcon, ArrowRightAltIcon, ArrowTopLeftIcon, ArrowTopRightIcon, ArrowUploadProgressIcon, ArrowUploadReadyIcon, ArrowUpwardAltIcon, ArrowUpwardIcon, ArrowWarmUpIcon, ArrowsInputIcon, ArticleIcon, AssignmentAddIcon, AudiotrackIcon, AutomationIcon, BarChartIcon, BarcodeReaderIcon, BookIcon, BotAIIcon, BrokenImageIcon, BugReportIcon, BusFilledIcon, CachedIcon, CalendarMonthIcon, CalendarTodayIcon, CalendarViewWeekIcon, CampaignIcon, CancelIcon, CarFrontFilledIcon, CarFrontIcon, CardsStackIcon, CarryOnBagCheckedIcon, CarryOnBagIcon, CarryOnBagQuestionIcon, CheckBoxIcon, CheckCircleIcon, CheckIcon, CheckedBagQuestionIcon, ChevronDownIcon, ChevronForwardIcon, ChevronLeftIcon, ChevronLineUpIcon, CircleAlertFilledIcon, ClearDayIcon, CloseFullscreenIcon, CloseIcon, CodeXmlIcon, CollapseAllIcon, CollapseContentIcon, CompareArrowsIcon, ContactsIcon, ContentCopyIcon, CorporateFareIcon, CurlyBracketsIcon, DangerousIcon, DarkModeIcon, DataLossPreventionIcon, DatabaseDownloadIcon, DatabaseIcon, DatabaseUploadIcon, DehazeIcon, DescriptionIcon, DeveloperGuideIcon, DirectionsBoatIcon, DirectionsBusIcon, DirectionsCarIcon, DirectionsRailway2Icon, DirectionsRailwayIcon, DirectionsSubwayIcon, DirectionsWalkIcon, DistanceIcon, DomainIcon, DoneAllIcon, DownloadIcon, DraftIcon, EditCalendarIcon, ElectricBoltIcon, ErrorIcon, EventAvailableIcon, EventBusyIcon, EventNoteIcon, ExpandCircleDownIcon, ExpandCircleRightIcon, ExpandCircleUpIcon, FamiliarFaceAndZoneIcon, FileQuestionIcon, FilterAltIcon, FilterListIcon, FilterListOffIcon, FindReplaceIcon, FlightIcon, FlightLandIcon, FlightTakeoffIcon, FolderIcon, FolderInfoIcon, ForwardMediaIcon, Graph2Icon, Graph3Icon, GridOnIcon, GroupAddIcon, GroupRemoveIcon, GroupsIcon, HelmetIcon, HistoryIcon, HomeIcon, HomeStorageIcon, HowToRegIcon, InfoFilledIcon, InfoIcon, InsertChartIcon, InstantMixIcon, KeyIcon, KeyVerticalIcon, KeyboardArrowDownIcon, KeyboardArrowLeftIcon, KeyboardArrowRightIcon, KeyboardArrowUpIcon, KeyboardDoubleArrowDownIcon, KeyboardDoubleArrowLeftIcon, KeyboardDoubleArrowRightIcon, KeyboardDoubleArrowUpIcon, LanIcon, LanguageIcon, LineAxisIcon, LocationSearchingIcon, LockIcon, LockOpenIcon, LogoutIcon, MapIcon, MaxIcon, MonitoringIcon, MoreHorizIcon, MoreVertIcon, OpenInFullIcon, OperatorIcon, PasswordIcon, PauseIcon, PenFilledIcon, PenIcon, PersonCancelIcon, PersonEditIcon, PersonIcon, PersonSearchIcon, PhotoLibraryIcon, PlayArrowIcon, PrintIcon, PromptSuggestionIcon, RedoIcon, ReleaseAlertIcon, ReplayIcon, RightClickIcon, RotateLeftIcon, RotateRightIcon, SearchGearIcon, SearchIcon, SignpostIcon, SkullIcon, SupervisedUserCircleIcon, SwapVertIcon, SyncAltIcon, SyncIcon, SyncProblemIcon, TableRowsNarrowIcon, TelevisionIcon, TravelIcon, TravelOutlineIcon, TrendingDownIcon, TrendingFlatIcon, TrendingUpIcon, TriangleAlertFilledIcon, TriangleAlertIcon, TripIcon, UndoIcon, UpgradeIcon, VideocamIcon, ViewRealSizeIcon, VillaIcon, VisibilityIcon, VisibilityOffIcon, VolumeOffIcon, VolumeUpIcon, WarningIcon, WindowsIcon, WorldIcon, YoutubeSearchedForIcon, ZoomInIcon, ZoomInMapIcon, ZoomOutIcon, ZoomOutMapIcon };
@@ -1,2 +1,2 @@
1
- 'use strict';var chunkDGMC3H7S_js=require('../chunk-DGMC3H7S.js'),chunkXH7KVB5H_js=require('../chunk-XH7KVB5H.js');require('../chunk-AYDF3IFZ.js');Object.defineProperty(exports,"AccountTreeIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.a}});Object.defineProperty(exports,"AddColumnLeftIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.b}});Object.defineProperty(exports,"AddIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.c}});Object.defineProperty(exports,"AddLocationIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.d}});Object.defineProperty(exports,"AirlinesIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.e}});Object.defineProperty(exports,"AirplanemodeInactiveIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.f}});Object.defineProperty(exports,"AndroidIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.g}});Object.defineProperty(exports,"AppleIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.h}});Object.defineProperty(exports,"ArrowBackIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.l}});Object.defineProperty(exports,"ArrowDownwardIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.m}});Object.defineProperty(exports,"ArrowDropDownCircleIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.n}});Object.defineProperty(exports,"ArrowDropDownIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.o}});Object.defineProperty(exports,"ArrowDropUpIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.p}});Object.defineProperty(exports,"ArrowForwardIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.q}});Object.defineProperty(exports,"ArrowForwardIosIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.r}});Object.defineProperty(exports,"ArrowInsertIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.s}});Object.defineProperty(exports,"ArrowLeftAltIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.t}});Object.defineProperty(exports,"ArrowLeftIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.u}});Object.defineProperty(exports,"ArrowOutwardIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.v}});Object.defineProperty(exports,"ArrowRightAltIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.w}});Object.defineProperty(exports,"ArrowTopLeftIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.x}});Object.defineProperty(exports,"ArrowTopRightIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.y}});Object.defineProperty(exports,"ArrowUploadProgressIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.z}});Object.defineProperty(exports,"ArrowUploadReadyIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.A}});Object.defineProperty(exports,"ArrowUpwardAltIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.B}});Object.defineProperty(exports,"ArrowUpwardIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.C}});Object.defineProperty(exports,"ArrowWarmUpIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.D}});Object.defineProperty(exports,"ArrowsInputIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.E}});Object.defineProperty(exports,"ArticleIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.i}});Object.defineProperty(exports,"AssignmentAddIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.j}});Object.defineProperty(exports,"AudiotrackIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.k}});Object.defineProperty(exports,"AutomationIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.F}});Object.defineProperty(exports,"BarChartIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.G}});Object.defineProperty(exports,"BarcodeReaderIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.H}});Object.defineProperty(exports,"BookIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.I}});Object.defineProperty(exports,"BotAIIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.J}});Object.defineProperty(exports,"BrokenImageIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Za}});Object.defineProperty(exports,"BugReportIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.K}});Object.defineProperty(exports,"BusFilledIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.L}});Object.defineProperty(exports,"CachedIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.M}});Object.defineProperty(exports,"CalendarMonthIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.N}});Object.defineProperty(exports,"CalendarTodayIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.O}});Object.defineProperty(exports,"CalendarViewWeekIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.P}});Object.defineProperty(exports,"CampaignIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Q}});Object.defineProperty(exports,"CancelIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.R}});Object.defineProperty(exports,"CarFrontFilledIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.S}});Object.defineProperty(exports,"CarFrontIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.T}});Object.defineProperty(exports,"CardsStackIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.U}});Object.defineProperty(exports,"CarryOnBagCheckedIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.V}});Object.defineProperty(exports,"CarryOnBagIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.W}});Object.defineProperty(exports,"CarryOnBagQuestionIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.X}});Object.defineProperty(exports,"CheckBoxIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Y}});Object.defineProperty(exports,"CheckCircleIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Z}});Object.defineProperty(exports,"CheckIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js._}});Object.defineProperty(exports,"CheckedBagQuestionIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.$}});Object.defineProperty(exports,"ChevronDownIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.aa}});Object.defineProperty(exports,"ChevronForwardIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ba}});Object.defineProperty(exports,"ChevronLeftIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ca}});Object.defineProperty(exports,"ChevronLineUpIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.da}});Object.defineProperty(exports,"CircleAlertFilledIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ea}});Object.defineProperty(exports,"ClearDayIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.fa}});Object.defineProperty(exports,"CloseIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ga}});Object.defineProperty(exports,"CodeXmlIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ha}});Object.defineProperty(exports,"CollapseAllIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ia}});Object.defineProperty(exports,"CollapseContentIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ja}});Object.defineProperty(exports,"CompareArrowsIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ka}});Object.defineProperty(exports,"ContactsIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.la}});Object.defineProperty(exports,"ContentCopyIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ma}});Object.defineProperty(exports,"CorporateFareIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.na}});Object.defineProperty(exports,"CurlyBracketsIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.oa}});Object.defineProperty(exports,"DangerousIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.pa}});Object.defineProperty(exports,"DarkModeIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.qa}});Object.defineProperty(exports,"DataLossPreventionIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ra}});Object.defineProperty(exports,"DatabaseDownloadIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.sa}});Object.defineProperty(exports,"DatabaseIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ta}});Object.defineProperty(exports,"DatabaseUploadIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ua}});Object.defineProperty(exports,"DehazeIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.va}});Object.defineProperty(exports,"DescriptionIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js._a}});Object.defineProperty(exports,"DeveloperGuideIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.wa}});Object.defineProperty(exports,"DirectionsBoatIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.xa}});Object.defineProperty(exports,"DirectionsBusIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ya}});Object.defineProperty(exports,"DirectionsCarIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.za}});Object.defineProperty(exports,"DirectionsRailway2Icon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Aa}});Object.defineProperty(exports,"DirectionsRailwayIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ba}});Object.defineProperty(exports,"DirectionsSubwayIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ca}});Object.defineProperty(exports,"DistanceIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Da}});Object.defineProperty(exports,"DomainIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ea}});Object.defineProperty(exports,"DoneAllIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Fa}});Object.defineProperty(exports,"DraftIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ga}});Object.defineProperty(exports,"EditCalendarIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ha}});Object.defineProperty(exports,"ElectricBoltIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ia}});Object.defineProperty(exports,"ErrorIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ja}});Object.defineProperty(exports,"EventAvailableIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ka}});Object.defineProperty(exports,"EventBusyIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.La}});Object.defineProperty(exports,"EventNoteIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ma}});Object.defineProperty(exports,"ExpandCircleDownIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Na}});Object.defineProperty(exports,"ExpandCircleRightIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Oa}});Object.defineProperty(exports,"ExpandCircleUpIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Pa}});Object.defineProperty(exports,"FamiliarFaceAndZoneIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Qa}});Object.defineProperty(exports,"FileQuestionIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ra}});Object.defineProperty(exports,"FilterAltIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Sa}});Object.defineProperty(exports,"FilterListIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ta}});Object.defineProperty(exports,"FilterListOffIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ua}});Object.defineProperty(exports,"FindReplaceIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Va}});Object.defineProperty(exports,"FlightIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Wa}});Object.defineProperty(exports,"FlightLandIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Xa}});Object.defineProperty(exports,"FlightTakeoffIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ya}});Object.defineProperty(exports,"FolderIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.$a}});Object.defineProperty(exports,"FolderInfoIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ab}});Object.defineProperty(exports,"ForwardMediaIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.bb}});Object.defineProperty(exports,"Graph2Icon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.cb}});Object.defineProperty(exports,"Graph3Icon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.db}});Object.defineProperty(exports,"GridOnIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.eb}});Object.defineProperty(exports,"GroupAddIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.fb}});Object.defineProperty(exports,"GroupRemoveIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.gb}});Object.defineProperty(exports,"GroupsIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.hb}});Object.defineProperty(exports,"HelmetIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ib}});Object.defineProperty(exports,"HistoryIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.jb}});Object.defineProperty(exports,"HomeIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.kb}});Object.defineProperty(exports,"HomeStorageIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.lb}});Object.defineProperty(exports,"HowToRegIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.mb}});Object.defineProperty(exports,"InfoFilledIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.nb}});Object.defineProperty(exports,"InfoIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ob}});Object.defineProperty(exports,"InsertChartIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.pb}});Object.defineProperty(exports,"InstantMixIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.qb}});Object.defineProperty(exports,"KeyIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.rb}});Object.defineProperty(exports,"KeyVerticalIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.sb}});Object.defineProperty(exports,"KeyboardArrowDownIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.tb}});Object.defineProperty(exports,"KeyboardArrowUpIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ub}});Object.defineProperty(exports,"KeyboardDoubleArrowDownIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.vb}});Object.defineProperty(exports,"KeyboardDoubleArrowLeftIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.wb}});Object.defineProperty(exports,"KeyboardDoubleArrowRightIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.xb}});Object.defineProperty(exports,"KeyboardDoubleArrowUpIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.yb}});Object.defineProperty(exports,"LanIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.zb}});Object.defineProperty(exports,"LanguageIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ab}});Object.defineProperty(exports,"LineAxisIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Bb}});Object.defineProperty(exports,"LocationSearchingIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Cb}});Object.defineProperty(exports,"LockIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Db}});Object.defineProperty(exports,"LockOpenIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Eb}});Object.defineProperty(exports,"LogoutIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Fb}});Object.defineProperty(exports,"MapIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Gb}});Object.defineProperty(exports,"MonitoringIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Hb}});Object.defineProperty(exports,"MoreHorizIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ib}});Object.defineProperty(exports,"MoreVertIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Jb}});Object.defineProperty(exports,"OperatorIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Kb}});Object.defineProperty(exports,"PasswordIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Lb}});Object.defineProperty(exports,"PenFilledIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Mb}});Object.defineProperty(exports,"PenIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Nb}});Object.defineProperty(exports,"PersonCancelIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ob}});Object.defineProperty(exports,"PersonEditIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Pb}});Object.defineProperty(exports,"PersonIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Qb}});Object.defineProperty(exports,"PersonSearchIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Rb}});Object.defineProperty(exports,"PhotoLibraryIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Sb}});Object.defineProperty(exports,"PrintIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Tb}});Object.defineProperty(exports,"PromptSuggestionIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ub}});Object.defineProperty(exports,"RedoIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Vb}});Object.defineProperty(exports,"ReleaseAlertIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Wb}});Object.defineProperty(exports,"ReplayIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Xb}});Object.defineProperty(exports,"RightClickIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Yb}});Object.defineProperty(exports,"RotateLeftIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Zb}});Object.defineProperty(exports,"RotateRightIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js._b}});Object.defineProperty(exports,"SearchGearIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.$b}});Object.defineProperty(exports,"SearchIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ac}});Object.defineProperty(exports,"SignpostIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.bc}});Object.defineProperty(exports,"SkullIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.cc}});Object.defineProperty(exports,"SwapVertIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.dc}});Object.defineProperty(exports,"SyncAltIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ec}});Object.defineProperty(exports,"SyncIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.fc}});Object.defineProperty(exports,"SyncProblemIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.gc}});Object.defineProperty(exports,"TableRowsNarrowIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.hc}});Object.defineProperty(exports,"TelevisionIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.ic}});Object.defineProperty(exports,"TravelIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.jc}});Object.defineProperty(exports,"TravelOutlineIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.kc}});Object.defineProperty(exports,"TrendingDownIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.lc}});Object.defineProperty(exports,"TrendingFlatIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.mc}});Object.defineProperty(exports,"TrendingUpIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.nc}});Object.defineProperty(exports,"TriangleAlertFilledIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.oc}});Object.defineProperty(exports,"TriangleAlertIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.pc}});Object.defineProperty(exports,"TripIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.qc}});Object.defineProperty(exports,"UndoIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.rc}});Object.defineProperty(exports,"UpgradeIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.sc}});Object.defineProperty(exports,"ViewRealSizeIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.tc}});Object.defineProperty(exports,"VillaIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.uc}});Object.defineProperty(exports,"VisibilityIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.vc}});Object.defineProperty(exports,"VisibilityOffIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.wc}});Object.defineProperty(exports,"WarningIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.xc}});Object.defineProperty(exports,"WindowsIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.yc}});Object.defineProperty(exports,"WorldIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.zc}});Object.defineProperty(exports,"YoutubeSearchedForIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Ac}});Object.defineProperty(exports,"ZoomInMapIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Bc}});Object.defineProperty(exports,"ZoomOutMapIcon",{enumerable:true,get:function(){return chunkDGMC3H7S_js.Cc}});Object.defineProperty(exports,"CloseFullscreenIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.a}});Object.defineProperty(exports,"DownloadIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.b}});Object.defineProperty(exports,"KeyboardArrowLeftIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.c}});Object.defineProperty(exports,"KeyboardArrowRightIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.d}});Object.defineProperty(exports,"OpenInFullIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.e}});Object.defineProperty(exports,"PauseIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.f}});Object.defineProperty(exports,"PlayArrowIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.g}});Object.defineProperty(exports,"VolumeOffIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.h}});Object.defineProperty(exports,"VolumeUpIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.i}});Object.defineProperty(exports,"ZoomInIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.j}});Object.defineProperty(exports,"ZoomOutIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.k}});//# sourceMappingURL=index.js.map
1
+ 'use strict';var chunkARPSN5G3_js=require('../chunk-ARPSN5G3.js'),chunkXH7KVB5H_js=require('../chunk-XH7KVB5H.js');require('../chunk-AYDF3IFZ.js');Object.defineProperty(exports,"AccountTreeIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.a}});Object.defineProperty(exports,"AddColumnLeftIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.b}});Object.defineProperty(exports,"AddIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.c}});Object.defineProperty(exports,"AddLocationIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.d}});Object.defineProperty(exports,"AirlinesIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.e}});Object.defineProperty(exports,"AirplanemodeInactiveIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.f}});Object.defineProperty(exports,"AndroidIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.g}});Object.defineProperty(exports,"AppleIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.h}});Object.defineProperty(exports,"ArrowBackIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.l}});Object.defineProperty(exports,"ArrowDownwardIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.m}});Object.defineProperty(exports,"ArrowDropDownCircleIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.n}});Object.defineProperty(exports,"ArrowDropDownIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.o}});Object.defineProperty(exports,"ArrowDropUpIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.p}});Object.defineProperty(exports,"ArrowForwardIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.q}});Object.defineProperty(exports,"ArrowForwardIosIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.r}});Object.defineProperty(exports,"ArrowInsertIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.s}});Object.defineProperty(exports,"ArrowLeftAltIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.t}});Object.defineProperty(exports,"ArrowLeftIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.u}});Object.defineProperty(exports,"ArrowOutwardIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.v}});Object.defineProperty(exports,"ArrowRightAltIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.w}});Object.defineProperty(exports,"ArrowTopLeftIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.x}});Object.defineProperty(exports,"ArrowTopRightIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.y}});Object.defineProperty(exports,"ArrowUploadProgressIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.z}});Object.defineProperty(exports,"ArrowUploadReadyIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.A}});Object.defineProperty(exports,"ArrowUpwardAltIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.B}});Object.defineProperty(exports,"ArrowUpwardIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.C}});Object.defineProperty(exports,"ArrowWarmUpIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.D}});Object.defineProperty(exports,"ArrowsInputIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.E}});Object.defineProperty(exports,"ArticleIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.i}});Object.defineProperty(exports,"AssignmentAddIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.j}});Object.defineProperty(exports,"AudiotrackIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.k}});Object.defineProperty(exports,"AutomationIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.F}});Object.defineProperty(exports,"BarChartIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.G}});Object.defineProperty(exports,"BarcodeReaderIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.H}});Object.defineProperty(exports,"BookIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.I}});Object.defineProperty(exports,"BotAIIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.J}});Object.defineProperty(exports,"BrokenImageIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js._a}});Object.defineProperty(exports,"BugReportIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.K}});Object.defineProperty(exports,"BusFilledIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.L}});Object.defineProperty(exports,"CachedIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.M}});Object.defineProperty(exports,"CalendarMonthIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.N}});Object.defineProperty(exports,"CalendarTodayIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.O}});Object.defineProperty(exports,"CalendarViewWeekIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.P}});Object.defineProperty(exports,"CampaignIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Q}});Object.defineProperty(exports,"CancelIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.R}});Object.defineProperty(exports,"CarFrontFilledIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.S}});Object.defineProperty(exports,"CarFrontIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.T}});Object.defineProperty(exports,"CardsStackIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.U}});Object.defineProperty(exports,"CarryOnBagCheckedIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.V}});Object.defineProperty(exports,"CarryOnBagIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.W}});Object.defineProperty(exports,"CarryOnBagQuestionIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.X}});Object.defineProperty(exports,"CheckBoxIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Y}});Object.defineProperty(exports,"CheckCircleIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Z}});Object.defineProperty(exports,"CheckIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js._}});Object.defineProperty(exports,"CheckedBagQuestionIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.$}});Object.defineProperty(exports,"ChevronDownIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.aa}});Object.defineProperty(exports,"ChevronForwardIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ba}});Object.defineProperty(exports,"ChevronLeftIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ca}});Object.defineProperty(exports,"ChevronLineUpIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.da}});Object.defineProperty(exports,"CircleAlertFilledIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ea}});Object.defineProperty(exports,"ClearDayIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.fa}});Object.defineProperty(exports,"CloseIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ga}});Object.defineProperty(exports,"CodeXmlIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ha}});Object.defineProperty(exports,"CollapseAllIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ia}});Object.defineProperty(exports,"CollapseContentIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ja}});Object.defineProperty(exports,"CompareArrowsIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ka}});Object.defineProperty(exports,"ContactsIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.la}});Object.defineProperty(exports,"ContentCopyIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ma}});Object.defineProperty(exports,"CorporateFareIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.na}});Object.defineProperty(exports,"CurlyBracketsIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.oa}});Object.defineProperty(exports,"DangerousIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.pa}});Object.defineProperty(exports,"DarkModeIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.qa}});Object.defineProperty(exports,"DataLossPreventionIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ra}});Object.defineProperty(exports,"DatabaseDownloadIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.sa}});Object.defineProperty(exports,"DatabaseIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ta}});Object.defineProperty(exports,"DatabaseUploadIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ua}});Object.defineProperty(exports,"DehazeIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.va}});Object.defineProperty(exports,"DescriptionIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.$a}});Object.defineProperty(exports,"DeveloperGuideIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.wa}});Object.defineProperty(exports,"DirectionsBoatIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.xa}});Object.defineProperty(exports,"DirectionsBusIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ya}});Object.defineProperty(exports,"DirectionsCarIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.za}});Object.defineProperty(exports,"DirectionsRailway2Icon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Aa}});Object.defineProperty(exports,"DirectionsRailwayIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ba}});Object.defineProperty(exports,"DirectionsSubwayIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ca}});Object.defineProperty(exports,"DirectionsWalkIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Da}});Object.defineProperty(exports,"DistanceIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ea}});Object.defineProperty(exports,"DomainIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Fa}});Object.defineProperty(exports,"DoneAllIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ga}});Object.defineProperty(exports,"DraftIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ha}});Object.defineProperty(exports,"EditCalendarIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ia}});Object.defineProperty(exports,"ElectricBoltIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ja}});Object.defineProperty(exports,"ErrorIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ka}});Object.defineProperty(exports,"EventAvailableIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.La}});Object.defineProperty(exports,"EventBusyIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ma}});Object.defineProperty(exports,"EventNoteIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Na}});Object.defineProperty(exports,"ExpandCircleDownIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Oa}});Object.defineProperty(exports,"ExpandCircleRightIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Pa}});Object.defineProperty(exports,"ExpandCircleUpIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Qa}});Object.defineProperty(exports,"FamiliarFaceAndZoneIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ra}});Object.defineProperty(exports,"FileQuestionIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Sa}});Object.defineProperty(exports,"FilterAltIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ta}});Object.defineProperty(exports,"FilterListIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ua}});Object.defineProperty(exports,"FilterListOffIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Va}});Object.defineProperty(exports,"FindReplaceIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Wa}});Object.defineProperty(exports,"FlightIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Xa}});Object.defineProperty(exports,"FlightLandIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ya}});Object.defineProperty(exports,"FlightTakeoffIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Za}});Object.defineProperty(exports,"FolderIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ab}});Object.defineProperty(exports,"FolderInfoIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.bb}});Object.defineProperty(exports,"ForwardMediaIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.cb}});Object.defineProperty(exports,"Graph2Icon",{enumerable:true,get:function(){return chunkARPSN5G3_js.db}});Object.defineProperty(exports,"Graph3Icon",{enumerable:true,get:function(){return chunkARPSN5G3_js.eb}});Object.defineProperty(exports,"GridOnIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.fb}});Object.defineProperty(exports,"GroupAddIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.gb}});Object.defineProperty(exports,"GroupRemoveIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.hb}});Object.defineProperty(exports,"GroupsIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ib}});Object.defineProperty(exports,"HelmetIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.jb}});Object.defineProperty(exports,"HistoryIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.kb}});Object.defineProperty(exports,"HomeIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.lb}});Object.defineProperty(exports,"HomeStorageIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.mb}});Object.defineProperty(exports,"HowToRegIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.nb}});Object.defineProperty(exports,"InfoFilledIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ob}});Object.defineProperty(exports,"InfoIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.pb}});Object.defineProperty(exports,"InsertChartIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.qb}});Object.defineProperty(exports,"InstantMixIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.rb}});Object.defineProperty(exports,"KeyIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.sb}});Object.defineProperty(exports,"KeyVerticalIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.tb}});Object.defineProperty(exports,"KeyboardArrowDownIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ub}});Object.defineProperty(exports,"KeyboardArrowUpIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.vb}});Object.defineProperty(exports,"KeyboardDoubleArrowDownIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.wb}});Object.defineProperty(exports,"KeyboardDoubleArrowLeftIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.xb}});Object.defineProperty(exports,"KeyboardDoubleArrowRightIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.yb}});Object.defineProperty(exports,"KeyboardDoubleArrowUpIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.zb}});Object.defineProperty(exports,"LanIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ab}});Object.defineProperty(exports,"LanguageIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Bb}});Object.defineProperty(exports,"LineAxisIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Cb}});Object.defineProperty(exports,"LocationSearchingIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Db}});Object.defineProperty(exports,"LockIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Eb}});Object.defineProperty(exports,"LockOpenIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Fb}});Object.defineProperty(exports,"LogoutIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Gb}});Object.defineProperty(exports,"MapIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Hb}});Object.defineProperty(exports,"MaxIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ib}});Object.defineProperty(exports,"MonitoringIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Jb}});Object.defineProperty(exports,"MoreHorizIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Kb}});Object.defineProperty(exports,"MoreVertIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Lb}});Object.defineProperty(exports,"OperatorIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Mb}});Object.defineProperty(exports,"PasswordIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Nb}});Object.defineProperty(exports,"PenFilledIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ob}});Object.defineProperty(exports,"PenIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Pb}});Object.defineProperty(exports,"PersonCancelIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Qb}});Object.defineProperty(exports,"PersonEditIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Rb}});Object.defineProperty(exports,"PersonIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Sb}});Object.defineProperty(exports,"PersonSearchIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Tb}});Object.defineProperty(exports,"PhotoLibraryIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ub}});Object.defineProperty(exports,"PrintIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Vb}});Object.defineProperty(exports,"PromptSuggestionIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Wb}});Object.defineProperty(exports,"RedoIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Xb}});Object.defineProperty(exports,"ReleaseAlertIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Yb}});Object.defineProperty(exports,"ReplayIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Zb}});Object.defineProperty(exports,"RightClickIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js._b}});Object.defineProperty(exports,"RotateLeftIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.$b}});Object.defineProperty(exports,"RotateRightIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ac}});Object.defineProperty(exports,"SearchGearIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.bc}});Object.defineProperty(exports,"SearchIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.cc}});Object.defineProperty(exports,"SignpostIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.dc}});Object.defineProperty(exports,"SkullIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ec}});Object.defineProperty(exports,"SupervisedUserCircleIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.fc}});Object.defineProperty(exports,"SwapVertIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.gc}});Object.defineProperty(exports,"SyncAltIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.hc}});Object.defineProperty(exports,"SyncIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.ic}});Object.defineProperty(exports,"SyncProblemIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.jc}});Object.defineProperty(exports,"TableRowsNarrowIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.kc}});Object.defineProperty(exports,"TelevisionIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.lc}});Object.defineProperty(exports,"TravelIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.mc}});Object.defineProperty(exports,"TravelOutlineIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.nc}});Object.defineProperty(exports,"TrendingDownIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.oc}});Object.defineProperty(exports,"TrendingFlatIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.pc}});Object.defineProperty(exports,"TrendingUpIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.qc}});Object.defineProperty(exports,"TriangleAlertFilledIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.rc}});Object.defineProperty(exports,"TriangleAlertIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.sc}});Object.defineProperty(exports,"TripIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.tc}});Object.defineProperty(exports,"UndoIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.uc}});Object.defineProperty(exports,"UpgradeIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.vc}});Object.defineProperty(exports,"VideocamIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.wc}});Object.defineProperty(exports,"ViewRealSizeIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.xc}});Object.defineProperty(exports,"VillaIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.yc}});Object.defineProperty(exports,"VisibilityIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.zc}});Object.defineProperty(exports,"VisibilityOffIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ac}});Object.defineProperty(exports,"WarningIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Bc}});Object.defineProperty(exports,"WindowsIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Cc}});Object.defineProperty(exports,"WorldIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Dc}});Object.defineProperty(exports,"YoutubeSearchedForIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Ec}});Object.defineProperty(exports,"ZoomInMapIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Fc}});Object.defineProperty(exports,"ZoomOutMapIcon",{enumerable:true,get:function(){return chunkARPSN5G3_js.Gc}});Object.defineProperty(exports,"CloseFullscreenIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.a}});Object.defineProperty(exports,"DownloadIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.b}});Object.defineProperty(exports,"KeyboardArrowLeftIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.c}});Object.defineProperty(exports,"KeyboardArrowRightIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.d}});Object.defineProperty(exports,"OpenInFullIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.e}});Object.defineProperty(exports,"PauseIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.f}});Object.defineProperty(exports,"PlayArrowIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.g}});Object.defineProperty(exports,"VolumeOffIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.h}});Object.defineProperty(exports,"VolumeUpIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.i}});Object.defineProperty(exports,"ZoomInIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.j}});Object.defineProperty(exports,"ZoomOutIcon",{enumerable:true,get:function(){return chunkXH7KVB5H_js.k}});//# sourceMappingURL=index.js.map
2
2
  //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
- export{a as AccountTreeIcon,b as AddColumnLeftIcon,c as AddIcon,d as AddLocationIcon,e as AirlinesIcon,f as AirplanemodeInactiveIcon,g as AndroidIcon,h as AppleIcon,l as ArrowBackIcon,m as ArrowDownwardIcon,n as ArrowDropDownCircleIcon,o as ArrowDropDownIcon,p as ArrowDropUpIcon,q as ArrowForwardIcon,r as ArrowForwardIosIcon,s as ArrowInsertIcon,t as ArrowLeftAltIcon,u as ArrowLeftIcon,v as ArrowOutwardIcon,w as ArrowRightAltIcon,x as ArrowTopLeftIcon,y as ArrowTopRightIcon,z as ArrowUploadProgressIcon,A as ArrowUploadReadyIcon,B as ArrowUpwardAltIcon,C as ArrowUpwardIcon,D as ArrowWarmUpIcon,E as ArrowsInputIcon,i as ArticleIcon,j as AssignmentAddIcon,k as AudiotrackIcon,F as AutomationIcon,G as BarChartIcon,H as BarcodeReaderIcon,I as BookIcon,J as BotAIIcon,Za as BrokenImageIcon,K as BugReportIcon,L as BusFilledIcon,M as CachedIcon,N as CalendarMonthIcon,O as CalendarTodayIcon,P as CalendarViewWeekIcon,Q as CampaignIcon,R as CancelIcon,S as CarFrontFilledIcon,T as CarFrontIcon,U as CardsStackIcon,V as CarryOnBagCheckedIcon,W as CarryOnBagIcon,X as CarryOnBagQuestionIcon,Y as CheckBoxIcon,Z as CheckCircleIcon,_ as CheckIcon,$ as CheckedBagQuestionIcon,aa as ChevronDownIcon,ba as ChevronForwardIcon,ca as ChevronLeftIcon,da as ChevronLineUpIcon,ea as CircleAlertFilledIcon,fa as ClearDayIcon,ga as CloseIcon,ha as CodeXmlIcon,ia as CollapseAllIcon,ja as CollapseContentIcon,ka as CompareArrowsIcon,la as ContactsIcon,ma as ContentCopyIcon,na as CorporateFareIcon,oa as CurlyBracketsIcon,pa as DangerousIcon,qa as DarkModeIcon,ra as DataLossPreventionIcon,sa as DatabaseDownloadIcon,ta as DatabaseIcon,ua as DatabaseUploadIcon,va as DehazeIcon,_a as DescriptionIcon,wa as DeveloperGuideIcon,xa as DirectionsBoatIcon,ya as DirectionsBusIcon,za as DirectionsCarIcon,Aa as DirectionsRailway2Icon,Ba as DirectionsRailwayIcon,Ca as DirectionsSubwayIcon,Da as DistanceIcon,Ea as DomainIcon,Fa as DoneAllIcon,Ga as DraftIcon,Ha as EditCalendarIcon,Ia as ElectricBoltIcon,Ja as ErrorIcon,Ka as EventAvailableIcon,La as EventBusyIcon,Ma as EventNoteIcon,Na as ExpandCircleDownIcon,Oa as ExpandCircleRightIcon,Pa as ExpandCircleUpIcon,Qa as FamiliarFaceAndZoneIcon,Ra as FileQuestionIcon,Sa as FilterAltIcon,Ta as FilterListIcon,Ua as FilterListOffIcon,Va as FindReplaceIcon,Wa as FlightIcon,Xa as FlightLandIcon,Ya as FlightTakeoffIcon,$a as FolderIcon,ab as FolderInfoIcon,bb as ForwardMediaIcon,cb as Graph2Icon,db as Graph3Icon,eb as GridOnIcon,fb as GroupAddIcon,gb as GroupRemoveIcon,hb as GroupsIcon,ib as HelmetIcon,jb as HistoryIcon,kb as HomeIcon,lb as HomeStorageIcon,mb as HowToRegIcon,nb as InfoFilledIcon,ob as InfoIcon,pb as InsertChartIcon,qb as InstantMixIcon,rb as KeyIcon,sb as KeyVerticalIcon,tb as KeyboardArrowDownIcon,ub as KeyboardArrowUpIcon,vb as KeyboardDoubleArrowDownIcon,wb as KeyboardDoubleArrowLeftIcon,xb as KeyboardDoubleArrowRightIcon,yb as KeyboardDoubleArrowUpIcon,zb as LanIcon,Ab as LanguageIcon,Bb as LineAxisIcon,Cb as LocationSearchingIcon,Db as LockIcon,Eb as LockOpenIcon,Fb as LogoutIcon,Gb as MapIcon,Hb as MonitoringIcon,Ib as MoreHorizIcon,Jb as MoreVertIcon,Kb as OperatorIcon,Lb as PasswordIcon,Mb as PenFilledIcon,Nb as PenIcon,Ob as PersonCancelIcon,Pb as PersonEditIcon,Qb as PersonIcon,Rb as PersonSearchIcon,Sb as PhotoLibraryIcon,Tb as PrintIcon,Ub as PromptSuggestionIcon,Vb as RedoIcon,Wb as ReleaseAlertIcon,Xb as ReplayIcon,Yb as RightClickIcon,Zb as RotateLeftIcon,_b as RotateRightIcon,$b as SearchGearIcon,ac as SearchIcon,bc as SignpostIcon,cc as SkullIcon,dc as SwapVertIcon,ec as SyncAltIcon,fc as SyncIcon,gc as SyncProblemIcon,hc as TableRowsNarrowIcon,ic as TelevisionIcon,jc as TravelIcon,kc as TravelOutlineIcon,lc as TrendingDownIcon,mc as TrendingFlatIcon,nc as TrendingUpIcon,oc as TriangleAlertFilledIcon,pc as TriangleAlertIcon,qc as TripIcon,rc as UndoIcon,sc as UpgradeIcon,tc as ViewRealSizeIcon,uc as VillaIcon,vc as VisibilityIcon,wc as VisibilityOffIcon,xc as WarningIcon,yc as WindowsIcon,zc as WorldIcon,Ac as YoutubeSearchedForIcon,Bc as ZoomInMapIcon,Cc as ZoomOutMapIcon}from'../chunk-YBGI5IOY.mjs';export{a as CloseFullscreenIcon,b as DownloadIcon,c as KeyboardArrowLeftIcon,d as KeyboardArrowRightIcon,e as OpenInFullIcon,f as PauseIcon,g as PlayArrowIcon,h as VolumeOffIcon,i as VolumeUpIcon,j as ZoomInIcon,k as ZoomOutIcon}from'../chunk-SHTTDVLH.mjs';import'../chunk-QWPVIX2T.mjs';//# sourceMappingURL=index.mjs.map
1
+ export{a as AccountTreeIcon,b as AddColumnLeftIcon,c as AddIcon,d as AddLocationIcon,e as AirlinesIcon,f as AirplanemodeInactiveIcon,g as AndroidIcon,h as AppleIcon,l as ArrowBackIcon,m as ArrowDownwardIcon,n as ArrowDropDownCircleIcon,o as ArrowDropDownIcon,p as ArrowDropUpIcon,q as ArrowForwardIcon,r as ArrowForwardIosIcon,s as ArrowInsertIcon,t as ArrowLeftAltIcon,u as ArrowLeftIcon,v as ArrowOutwardIcon,w as ArrowRightAltIcon,x as ArrowTopLeftIcon,y as ArrowTopRightIcon,z as ArrowUploadProgressIcon,A as ArrowUploadReadyIcon,B as ArrowUpwardAltIcon,C as ArrowUpwardIcon,D as ArrowWarmUpIcon,E as ArrowsInputIcon,i as ArticleIcon,j as AssignmentAddIcon,k as AudiotrackIcon,F as AutomationIcon,G as BarChartIcon,H as BarcodeReaderIcon,I as BookIcon,J as BotAIIcon,_a as BrokenImageIcon,K as BugReportIcon,L as BusFilledIcon,M as CachedIcon,N as CalendarMonthIcon,O as CalendarTodayIcon,P as CalendarViewWeekIcon,Q as CampaignIcon,R as CancelIcon,S as CarFrontFilledIcon,T as CarFrontIcon,U as CardsStackIcon,V as CarryOnBagCheckedIcon,W as CarryOnBagIcon,X as CarryOnBagQuestionIcon,Y as CheckBoxIcon,Z as CheckCircleIcon,_ as CheckIcon,$ as CheckedBagQuestionIcon,aa as ChevronDownIcon,ba as ChevronForwardIcon,ca as ChevronLeftIcon,da as ChevronLineUpIcon,ea as CircleAlertFilledIcon,fa as ClearDayIcon,ga as CloseIcon,ha as CodeXmlIcon,ia as CollapseAllIcon,ja as CollapseContentIcon,ka as CompareArrowsIcon,la as ContactsIcon,ma as ContentCopyIcon,na as CorporateFareIcon,oa as CurlyBracketsIcon,pa as DangerousIcon,qa as DarkModeIcon,ra as DataLossPreventionIcon,sa as DatabaseDownloadIcon,ta as DatabaseIcon,ua as DatabaseUploadIcon,va as DehazeIcon,$a as DescriptionIcon,wa as DeveloperGuideIcon,xa as DirectionsBoatIcon,ya as DirectionsBusIcon,za as DirectionsCarIcon,Aa as DirectionsRailway2Icon,Ba as DirectionsRailwayIcon,Ca as DirectionsSubwayIcon,Da as DirectionsWalkIcon,Ea as DistanceIcon,Fa as DomainIcon,Ga as DoneAllIcon,Ha as DraftIcon,Ia as EditCalendarIcon,Ja as ElectricBoltIcon,Ka as ErrorIcon,La as EventAvailableIcon,Ma as EventBusyIcon,Na as EventNoteIcon,Oa as ExpandCircleDownIcon,Pa as ExpandCircleRightIcon,Qa as ExpandCircleUpIcon,Ra as FamiliarFaceAndZoneIcon,Sa as FileQuestionIcon,Ta as FilterAltIcon,Ua as FilterListIcon,Va as FilterListOffIcon,Wa as FindReplaceIcon,Xa as FlightIcon,Ya as FlightLandIcon,Za as FlightTakeoffIcon,ab as FolderIcon,bb as FolderInfoIcon,cb as ForwardMediaIcon,db as Graph2Icon,eb as Graph3Icon,fb as GridOnIcon,gb as GroupAddIcon,hb as GroupRemoveIcon,ib as GroupsIcon,jb as HelmetIcon,kb as HistoryIcon,lb as HomeIcon,mb as HomeStorageIcon,nb as HowToRegIcon,ob as InfoFilledIcon,pb as InfoIcon,qb as InsertChartIcon,rb as InstantMixIcon,sb as KeyIcon,tb as KeyVerticalIcon,ub as KeyboardArrowDownIcon,vb as KeyboardArrowUpIcon,wb as KeyboardDoubleArrowDownIcon,xb as KeyboardDoubleArrowLeftIcon,yb as KeyboardDoubleArrowRightIcon,zb as KeyboardDoubleArrowUpIcon,Ab as LanIcon,Bb as LanguageIcon,Cb as LineAxisIcon,Db as LocationSearchingIcon,Eb as LockIcon,Fb as LockOpenIcon,Gb as LogoutIcon,Hb as MapIcon,Ib as MaxIcon,Jb as MonitoringIcon,Kb as MoreHorizIcon,Lb as MoreVertIcon,Mb as OperatorIcon,Nb as PasswordIcon,Ob as PenFilledIcon,Pb as PenIcon,Qb as PersonCancelIcon,Rb as PersonEditIcon,Sb as PersonIcon,Tb as PersonSearchIcon,Ub as PhotoLibraryIcon,Vb as PrintIcon,Wb as PromptSuggestionIcon,Xb as RedoIcon,Yb as ReleaseAlertIcon,Zb as ReplayIcon,_b as RightClickIcon,$b as RotateLeftIcon,ac as RotateRightIcon,bc as SearchGearIcon,cc as SearchIcon,dc as SignpostIcon,ec as SkullIcon,fc as SupervisedUserCircleIcon,gc as SwapVertIcon,hc as SyncAltIcon,ic as SyncIcon,jc as SyncProblemIcon,kc as TableRowsNarrowIcon,lc as TelevisionIcon,mc as TravelIcon,nc as TravelOutlineIcon,oc as TrendingDownIcon,pc as TrendingFlatIcon,qc as TrendingUpIcon,rc as TriangleAlertFilledIcon,sc as TriangleAlertIcon,tc as TripIcon,uc as UndoIcon,vc as UpgradeIcon,wc as VideocamIcon,xc as ViewRealSizeIcon,yc as VillaIcon,zc as VisibilityIcon,Ac as VisibilityOffIcon,Bc as WarningIcon,Cc as WindowsIcon,Dc as WorldIcon,Ec as YoutubeSearchedForIcon,Fc as ZoomInMapIcon,Gc as ZoomOutMapIcon}from'../chunk-QWGQC36Z.mjs';export{a as CloseFullscreenIcon,b as DownloadIcon,c as KeyboardArrowLeftIcon,d as KeyboardArrowRightIcon,e as OpenInFullIcon,f as PauseIcon,g as PlayArrowIcon,h as VolumeOffIcon,i as VolumeUpIcon,j as ZoomInIcon,k as ZoomOutIcon}from'../chunk-SHTTDVLH.mjs';import'../chunk-QWPVIX2T.mjs';//# sourceMappingURL=index.mjs.map
2
2
  //# sourceMappingURL=index.mjs.map
@@ -0,0 +1,2 @@
1
+ 'use strict';var chunkMTPO5UBW_js=require('./chunk-MTPO5UBW.js'),chunkXH7KVB5H_js=require('./chunk-XH7KVB5H.js');require('./chunk-NQZUCXJV.js');var chunkAYDF3IFZ_js=require('./chunk-AYDF3IFZ.js'),react=require('react'),V=require('lodash.debounce'),reactPdf=require('react-pdf');require('react-pdf/dist/Page/AnnotationLayer.css'),require('react-pdf/dist/Page/TextLayer.css');var reactVirtuoso=require('react-virtuoso'),jsxRuntime=require('react/jsx-runtime');function _interopDefault(e){return e&&e.__esModule?e:{default:e}}var V__default=/*#__PURE__*/_interopDefault(V);var f="/pdfjs";typeof window<"u"&&typeof document<"u"&&(reactPdf.pdfjs.GlobalWorkerOptions.workerSrc=`${f}/pdf.worker.min.js`);var xe=1e3,we=400,Ne=150,Ce=70,Pe=1.414,D=400,Ue=chunkAYDF3IFZ_js.a(({url:W,filename:F,onDownload:I,onPrev:y,onNext:R,hasPrev:K,hasNext:Y,positionLabel:q})=>{let J=!!(y||R),[i,Q]=react.useState(0),[s,h]=react.useState(1),[X,E]=react.useState(true),[L,ee]=react.useState(null),[v,te]=react.useState(D),[oe,re]=react.useState(D),[c,k]=react.useState(1),[x,ne]=react.useState(D),[A,ae]=react.useState(Pe),d=react.useRef(null),T=react.useRef(null),w=react.useRef(false),u=react.useRef(null),N=react.useRef(false),p=react.useCallback((t,o=true)=>{t<1||t>i||(w.current=true,T.current?.scrollToIndex({index:t-1,align:"start",behavior:o?"smooth":"auto"}),u.current&&clearTimeout(u.current),u.current=setTimeout(()=>{N.current&&(w.current=false);},xe));},[i]),C=react.useMemo(()=>V__default.default((t,o=false)=>{p(t,o);},we),[p]),ie=react.useCallback(()=>{k(t=>Math.min(t+.25,4));},[]),se=react.useCallback(()=>{k(t=>Math.max(t-.25,.25));},[]);react.useEffect(()=>{if(!d.current)return;let t=V__default.default(()=>{d.current&&(te(d.current.offsetWidth-Ce),re(d.current.clientHeight));},Ne);t();let o=new ResizeObserver(t);return o.observe(d.current),()=>{o.disconnect(),t.cancel();}},[]);let le=react.useMemo(()=>({cMapPacked:true,cMapUrl:`${f}/cmaps/`,standardFontDataUrl:`${f}/standard_fonts/`,wasmUrl:`${f}/wasm/`,iccUrl:`${f}/icc/`}),[]),ce=react.useCallback(({numPages:t})=>{Q(t),E(false);},[]),de=react.useCallback(t=>{ee(`Failed to load PDF: ${t.message}`),E(false);},[]),g=react.useCallback(t=>{let o=s+t;h(o),p(o);},[s,p]),ue=react.useCallback(()=>{g(-1);},[g]),me=react.useCallback(()=>{g(1);},[g]),fe=react.useCallback(t=>{if(w.current)return;let o=t.startIndex+1;o!==s&&h(o);},[s]);return react.useEffect(()=>(N.current=true,()=>{N.current=false,C.cancel(),u.current&&clearTimeout(u.current);}),[C]),react.useEffect(()=>{ne(v*c*A);},[v,c,A]),L?jsxRuntime.jsx("div",{"data-testid":"file-viewer-error","data-driver-kind":"pdf",className:"flex items-center justify-center h-full w-full px-8.5",children:jsxRuntime.jsx("div",{className:"text-center text-sm text-text-secondary",children:jsxRuntime.jsx("p",{children:L})})}):jsxRuntime.jsxs("div",{"data-testid":"file-viewer-driver","data-driver-kind":"pdf",className:"relative h-full w-full flex flex-col overflow-hidden bg-background-page",children:[X&&jsxRuntime.jsx("div",{className:"flex items-center justify-center h-full px-8.5",children:jsxRuntime.jsx("div",{className:"text-text-secondary",children:"Loading PDF..."})}),jsxRuntime.jsxs("div",{ref:d,className:"relative flex-1 overflow-hidden min-h-0",children:[jsxRuntime.jsx(reactPdf.Document,{options:le,file:W,onLoadSuccess:ce,onLoadError:de,loading:jsxRuntime.jsx("div",{className:"flex items-center justify-center",style:{height:x},children:jsxRuntime.jsx("div",{className:"h-10 w-10 rounded-full border-2 border-border-subtle animate-spin border-s-transparent"})}),children:jsxRuntime.jsx(reactVirtuoso.Virtuoso,{ref:T,style:{height:oe||"calc(100dvh - 120px)",width:"100%",scrollbarGutter:"stable both-edges"},totalCount:i,rangeChanged:fe,defaultItemHeight:x,itemContent:t=>jsxRuntime.jsx("div",{className:"mx-auto w-fit mb-4 border border-border-subtle",children:jsxRuntime.jsx(reactPdf.Page,{pageNumber:t+1,renderTextLayer:true,renderAnnotationLayer:true,width:v*c,onLoadSuccess:o=>{if(t===0){let pe=o.height/o.width;ae(pe);}},loading:jsxRuntime.jsx("div",{className:"flex items-center justify-center",style:{height:x},children:jsxRuntime.jsx("div",{className:"h-10 w-10 rounded-full border-2 border-border-subtle animate-spin border-s-transparent"})}),className:"h-auto w-full transition-[width] duration-[600ms] ease-in-out"})})})}),i>0&&jsxRuntime.jsxs(chunkMTPO5UBW_js.a,{"aria-label":"PDF controls",children:[jsxRuntime.jsxs(chunkMTPO5UBW_js.b,{children:[jsxRuntime.jsx(chunkMTPO5UBW_js.e,{"aria-label":"Zoom out",onClick:se,disabled:c<=.25,children:jsxRuntime.jsx(chunkXH7KVB5H_js.k,{width:16,height:16})}),jsxRuntime.jsxs(chunkMTPO5UBW_js.e,{"aria-label":"Current zoom",children:[Math.round(c*100),"%"]}),jsxRuntime.jsx(chunkMTPO5UBW_js.e,{"aria-label":"Zoom in",onClick:ie,disabled:c>=4,children:jsxRuntime.jsx(chunkXH7KVB5H_js.j,{width:16,height:16})})]}),jsxRuntime.jsx(chunkMTPO5UBW_js.d,{}),jsxRuntime.jsxs(chunkMTPO5UBW_js.c,{children:[jsxRuntime.jsx(chunkMTPO5UBW_js.e,{"aria-label":"Previous page",onClick:ue,disabled:s<=1,className:"px-3!",children:jsxRuntime.jsx(chunkXH7KVB5H_js.c,{width:12,height:12})}),jsxRuntime.jsxs("span",{className:"font-plex text-sm leading-4 tracking-[0.16px] text-text-body flex items-center",children:[jsxRuntime.jsx("input",{type:"number",min:1,max:i,value:s,onChange:t=>{let o=parseInt(t.target.value,10);o>=1&&o<=i&&(h(o),C(o,false));},className:"w-8 text-center bg-transparent outline-none font-plex text-sm leading-4 tracking-[0.16px] [appearance:textfield] [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none"}),jsxRuntime.jsxs("span",{children:["/",i]})]}),jsxRuntime.jsx(chunkMTPO5UBW_js.e,{"aria-label":"Next page",onClick:me,disabled:s>=i,className:"px-3!",children:jsxRuntime.jsx(chunkXH7KVB5H_js.d,{width:12,height:12})})]}),J&&jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx(chunkMTPO5UBW_js.d,{}),jsxRuntime.jsx(chunkMTPO5UBW_js.f,{onPrev:y,onNext:R,hasPrev:K,hasNext:Y,positionLabel:q})]}),I&&jsxRuntime.jsxs(jsxRuntime.Fragment,{children:[jsxRuntime.jsx(chunkMTPO5UBW_js.d,{}),jsxRuntime.jsx(chunkMTPO5UBW_js.e,{"aria-label":F?`Download ${F}`:"Download",onClick:I,children:jsxRuntime.jsx(chunkXH7KVB5H_js.b,{width:16,height:16})})]})]})]})]})},"PdfDriver");exports.PdfDriver=Ue;//# sourceMappingURL=PdfDriver-IHQMRDXD.js.map
2
+ //# sourceMappingURL=PdfDriver-IHQMRDXD.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/FileViewer/drivers/PdfDriver/PdfDriver.tsx"],"names":["BASE_DIR","pdfjs","SCROLL_ANIMATION_DURATION","INPUT_DEBOUNCE_DELAY","RESIZE_DEBOUNCE_DELAY","CONTAINER_PADDING","DEFAULT_RATIO_A4","DEFAULT_MIN_SIZE","PdfDriver","__name","url","filename","onDownload","onPrev","onNext","hasPrev","hasNext","positionLabel","hasNav","numPages","setNumPages","useState","pageNumber","setPageNumber","loading","setLoading","error","setError","width","setWidth","height","setHeight","scale","setScale","defaultPageHeight","setDefaultPageHeight","pageAspectRatio","setPageAspectRatio","containerRef","useRef","virtuosoRef","isUserScrollingRef","scrollTimeoutRef","isMountedRef","scrollToPage","useCallback","page","smooth","debouncedScroll","useMemo","debounce","handleZoomIn","prev","handleZoomOut","useEffect","updateSize","observer","options","onDocumentLoadSuccess","onDocumentLoadError","changePage","offset","newPage","previousPage","nextPage","handleRangeChanged","range","visiblePage","jsx","jsxs","Document","Virtuoso","index","Page","ratio","FloatingControls","FloatingControlsGroup","FloatingControlsButton","ZoomOutIcon","ZoomInIcon","FloatingControlsDivider","FloatingControlsBoxedGroup","KeyboardArrowLeftIcon","e","KeyboardArrowRightIcon","Fragment","MediaNavGroup","DownloadIcon"],"mappings":"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","file":"PdfDriver-IHQMRDXD.js","sourcesContent":["import React, { useCallback, useEffect, useMemo, useRef, useState } from 'react';\nimport debounce from 'lodash.debounce';\nimport { Document, Page, pdfjs } from 'react-pdf';\nimport 'react-pdf/dist/Page/AnnotationLayer.css';\nimport 'react-pdf/dist/Page/TextLayer.css';\nimport { Virtuoso, VirtuosoHandle } from 'react-virtuoso';\nimport { DownloadIcon } from '../../../Icons2/DownloadIcon';\nimport { KeyboardArrowLeftIcon } from '../../../Icons2/KeyboardArrowLeftIcon';\nimport { KeyboardArrowRightIcon } from '../../../Icons2/KeyboardArrowRightIcon';\nimport { ZoomInIcon } from '../../../Icons2/ZoomInIcon';\nimport { ZoomOutIcon } from '../../../Icons2/ZoomOutIcon';\nimport {\n FloatingControls,\n FloatingControlsBoxedGroup,\n FloatingControlsButton,\n FloatingControlsDivider,\n FloatingControlsGroup,\n MediaNavGroup,\n} from '../_shared';\nimport type { FileViewerNavProps } from '../../types';\n\nconst BASE_DIR = '/pdfjs';\n\n// Set up the worker - self-hosted configuration (client-side only)\nif (typeof window !== 'undefined' && typeof document !== 'undefined') {\n pdfjs.GlobalWorkerOptions.workerSrc = `${BASE_DIR}/pdf.worker.min.js`;\n}\n\ninterface PdfDriverProps extends FileViewerNavProps {\n url: string;\n filename?: string;\n onDownload?: () => void;\n}\nconst SCROLL_ANIMATION_DURATION = 1000;\nconst INPUT_DEBOUNCE_DELAY = 400;\nconst RESIZE_DEBOUNCE_DELAY = 150;\nconst CONTAINER_PADDING = 70;\nconst DEFAULT_RATIO_A4 = 1.414;\nconst DEFAULT_MIN_SIZE = 400;\n\nexport const PdfDriver: React.FC<PdfDriverProps> = ({\n url,\n filename,\n onDownload,\n onPrev,\n onNext,\n hasPrev,\n hasNext,\n positionLabel,\n}) => {\n const hasNav = !!(onPrev || onNext);\n const [numPages, setNumPages] = useState<number>(0);\n const [pageNumber, setPageNumber] = useState<number>(1);\n const [loading, setLoading] = useState<boolean>(true);\n const [error, setError] = useState<string | null>(null);\n const [width, setWidth] = useState<number>(DEFAULT_MIN_SIZE);\n const [height, setHeight] = useState<number>(DEFAULT_MIN_SIZE);\n const [scale, setScale] = useState(1);\n const [defaultPageHeight, setDefaultPageHeight] = useState(DEFAULT_MIN_SIZE);\n const [pageAspectRatio, setPageAspectRatio] = useState(DEFAULT_RATIO_A4);\n\n const containerRef = useRef<HTMLDivElement>(null);\n const virtuosoRef = useRef<VirtuosoHandle>(null);\n const isUserScrollingRef = useRef<boolean>(false);\n const scrollTimeoutRef = useRef<ReturnType<typeof setTimeout> | null>(null);\n const isMountedRef = useRef(false);\n\n const scrollToPage = useCallback(\n (page: number, smooth = true) => {\n if (page < 1 || page > numPages) return;\n\n isUserScrollingRef.current = true;\n virtuosoRef.current?.scrollToIndex({\n index: page - 1,\n align: 'start',\n behavior: smooth ? 'smooth' : 'auto',\n });\n\n if (scrollTimeoutRef.current) {\n clearTimeout(scrollTimeoutRef.current);\n }\n\n scrollTimeoutRef.current = setTimeout(() => {\n if (isMountedRef.current) isUserScrollingRef.current = false;\n }, SCROLL_ANIMATION_DURATION);\n },\n [numPages]\n );\n\n const debouncedScroll = useMemo(() => {\n return debounce((page: number, smooth = false) => {\n scrollToPage(page, smooth);\n }, INPUT_DEBOUNCE_DELAY);\n }, [scrollToPage]);\n\n const handleZoomIn = useCallback(() => {\n setScale((prev) => Math.min(prev + 0.25, 4));\n }, []);\n\n const handleZoomOut = useCallback(() => {\n setScale((prev) => Math.max(prev - 0.25, 0.25));\n }, []);\n\n useEffect(() => {\n if (!containerRef.current) return;\n const updateSize = debounce(() => {\n if (containerRef.current) {\n setWidth(containerRef.current.offsetWidth - CONTAINER_PADDING);\n setHeight(containerRef.current.clientHeight);\n }\n }, RESIZE_DEBOUNCE_DELAY);\n updateSize();\n const observer = new ResizeObserver(updateSize);\n observer.observe(containerRef.current);\n return () => {\n observer.disconnect();\n updateSize.cancel();\n };\n }, []);\n\n const options = useMemo(\n () => ({\n cMapPacked: true,\n cMapUrl: `${BASE_DIR}/cmaps/`,\n standardFontDataUrl: `${BASE_DIR}/standard_fonts/`,\n wasmUrl: `${BASE_DIR}/wasm/`,\n iccUrl: `${BASE_DIR}/icc/`,\n }),\n []\n );\n\n const onDocumentLoadSuccess = useCallback(({ numPages }: { numPages: number }): void => {\n setNumPages(numPages);\n setLoading(false);\n }, []);\n\n const onDocumentLoadError = useCallback((error: Error): void => {\n setError(`Failed to load PDF: ${error.message}`);\n setLoading(false);\n }, []);\n\n const changePage = useCallback(\n (offset: number): void => {\n const newPage = pageNumber + offset;\n setPageNumber(newPage);\n scrollToPage(newPage);\n },\n [pageNumber, scrollToPage]\n );\n\n const previousPage = useCallback((): void => {\n changePage(-1);\n }, [changePage]);\n\n const nextPage = useCallback((): void => {\n changePage(1);\n }, [changePage]);\n\n const handleRangeChanged = useCallback(\n (range: { startIndex: number; endIndex: number }) => {\n if (isUserScrollingRef.current) {\n return;\n }\n const visiblePage = range.startIndex + 1;\n if (visiblePage !== pageNumber) {\n setPageNumber(visiblePage);\n }\n },\n [pageNumber]\n );\n\n useEffect(() => {\n isMountedRef.current = true;\n return () => {\n isMountedRef.current = false;\n debouncedScroll.cancel();\n if (scrollTimeoutRef.current) {\n clearTimeout(scrollTimeoutRef.current);\n }\n };\n }, [debouncedScroll]);\n\n useEffect(() => {\n setDefaultPageHeight(width * scale * pageAspectRatio);\n }, [width, scale, pageAspectRatio]);\n\n if (error) {\n return (\n <div\n data-testid=\"file-viewer-error\"\n data-driver-kind=\"pdf\"\n className=\"flex items-center justify-center h-full w-full px-8.5\"\n >\n <div className=\"text-center text-sm text-text-secondary\">\n <p>{error}</p>\n </div>\n </div>\n );\n }\n\n return (\n <div\n data-testid=\"file-viewer-driver\"\n data-driver-kind=\"pdf\"\n className=\"relative h-full w-full flex flex-col overflow-hidden bg-background-page\"\n >\n {loading && (\n <div className=\"flex items-center justify-center h-full px-8.5\">\n <div className=\"text-text-secondary\">Loading PDF...</div>\n </div>\n )}\n <div ref={containerRef} className=\"relative flex-1 overflow-hidden min-h-0\">\n <Document\n options={options}\n file={url}\n onLoadSuccess={onDocumentLoadSuccess}\n onLoadError={onDocumentLoadError}\n loading={\n <div className=\"flex items-center justify-center\" style={{ height: defaultPageHeight }}>\n <div className=\"h-10 w-10 rounded-full border-2 border-border-subtle animate-spin border-s-transparent\" />\n </div>\n }\n >\n <Virtuoso\n ref={virtuosoRef}\n style={{\n height: height || 'calc(100dvh - 120px)',\n width: '100%',\n scrollbarGutter: 'stable both-edges',\n }}\n totalCount={numPages}\n rangeChanged={handleRangeChanged}\n defaultItemHeight={defaultPageHeight}\n itemContent={(index) => (\n <div className=\"mx-auto w-fit mb-4 border border-border-subtle\">\n <Page\n pageNumber={index + 1}\n renderTextLayer\n renderAnnotationLayer\n width={width * scale}\n onLoadSuccess={(page) => {\n if (index === 0) {\n const ratio = page.height / page.width;\n setPageAspectRatio(ratio);\n }\n }}\n loading={\n <div className=\"flex items-center justify-center\" style={{ height: defaultPageHeight }}>\n <div className=\"h-10 w-10 rounded-full border-2 border-border-subtle animate-spin border-s-transparent\" />\n </div>\n }\n className=\"h-auto w-full transition-[width] duration-[600ms] ease-in-out\"\n />\n </div>\n )}\n />\n </Document>\n\n {numPages > 0 && (\n <FloatingControls aria-label=\"PDF controls\">\n <FloatingControlsGroup>\n <FloatingControlsButton\n aria-label=\"Zoom out\"\n onClick={handleZoomOut}\n disabled={scale <= 0.25}\n >\n <ZoomOutIcon width={16} height={16} />\n </FloatingControlsButton>\n <FloatingControlsButton aria-label=\"Current zoom\">\n {Math.round(scale * 100)}%\n </FloatingControlsButton>\n <FloatingControlsButton\n aria-label=\"Zoom in\"\n onClick={handleZoomIn}\n disabled={scale >= 4}\n >\n <ZoomInIcon width={16} height={16} />\n </FloatingControlsButton>\n </FloatingControlsGroup>\n\n <FloatingControlsDivider />\n\n <FloatingControlsBoxedGroup>\n <FloatingControlsButton\n aria-label=\"Previous page\"\n onClick={previousPage}\n disabled={pageNumber <= 1}\n className=\"px-3!\"\n >\n <KeyboardArrowLeftIcon width={12} height={12} />\n </FloatingControlsButton>\n <span className=\"font-plex text-sm leading-4 tracking-[0.16px] text-text-body flex items-center\">\n <input\n type=\"number\"\n min={1}\n max={numPages}\n value={pageNumber}\n onChange={(e) => {\n const page = parseInt(e.target.value, 10);\n if (page >= 1 && page <= numPages) {\n setPageNumber(page);\n debouncedScroll(page, false);\n }\n }}\n className=\"w-8 text-center bg-transparent outline-none font-plex text-sm leading-4 tracking-[0.16px] [appearance:textfield] [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none\"\n />\n <span>/{numPages}</span>\n </span>\n <FloatingControlsButton\n aria-label=\"Next page\"\n onClick={nextPage}\n disabled={pageNumber >= numPages}\n className=\"px-3!\"\n >\n <KeyboardArrowRightIcon width={12} height={12} />\n </FloatingControlsButton>\n </FloatingControlsBoxedGroup>\n\n {hasNav && (\n <>\n <FloatingControlsDivider />\n <MediaNavGroup\n onPrev={onPrev}\n onNext={onNext}\n hasPrev={hasPrev}\n hasNext={hasNext}\n positionLabel={positionLabel}\n />\n </>\n )}\n\n {onDownload && (\n <>\n <FloatingControlsDivider />\n <FloatingControlsButton\n aria-label={filename ? `Download ${filename}` : 'Download'}\n onClick={onDownload}\n >\n <DownloadIcon width={16} height={16} />\n </FloatingControlsButton>\n </>\n )}\n </FloatingControls>\n )}\n </div>\n </div>\n );\n};\n"]}