@rebasepro/ui 0.7.0 → 0.8.0
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.
- package/dist/components/VirtualTable/fields/VirtualTableDateField.d.ts +13 -0
- package/dist/components/VirtualTable/fields/VirtualTableInput.d.ts +10 -0
- package/dist/components/VirtualTable/fields/VirtualTableNumberInput.d.ts +9 -0
- package/dist/components/VirtualTable/fields/VirtualTableSelect.d.ts +17 -0
- package/dist/components/VirtualTable/fields/VirtualTableSwitch.d.ts +8 -0
- package/dist/components/VirtualTable/index.d.ts +7 -0
- package/dist/components/VirtualTable/selection/SelectionContext.d.ts +11 -0
- package/dist/components/VirtualTable/selection/SelectionStore.d.ts +14 -0
- package/dist/index.d.ts +13 -4
- package/dist/index.es.js +2411 -2154
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/components/VirtualTable/fields/VirtualTableDateField.tsx +32 -0
- package/src/components/VirtualTable/fields/VirtualTableInput.tsx +82 -0
- package/src/components/VirtualTable/fields/VirtualTableNumberInput.tsx +71 -0
- package/src/components/VirtualTable/fields/VirtualTableSelect.tsx +107 -0
- package/src/components/VirtualTable/fields/VirtualTableSwitch.tsx +28 -0
- package/src/components/VirtualTable/index.tsx +7 -0
- package/src/components/VirtualTable/selection/SelectionContext.tsx +36 -0
- package/src/components/VirtualTable/selection/SelectionStore.ts +54 -0
- package/src/index.ts +42 -4
package/dist/index.es.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import * as React$1 from "react";
|
|
3
|
-
import React, { Children, createContext, createRef, forwardRef, memo, useCallback, useContext, useEffect, useId, useLayoutEffect, useMemo, useRef, useState } from "react";
|
|
3
|
+
import React, { Children, createContext, createRef, forwardRef, memo, useCallback, useContext, useEffect, useId, useLayoutEffect, useMemo, useRef, useState, useSyncExternalStore } from "react";
|
|
4
4
|
import { clsx } from "clsx";
|
|
5
5
|
import { twMerge } from "tailwind-merge";
|
|
6
6
|
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
@@ -171,13 +171,6 @@ function getColorSchemeForSeed(seed) {
|
|
|
171
171
|
return CHIP_COLORS[colorKeys[hash % colorKeys.length]];
|
|
172
172
|
}
|
|
173
173
|
//#endregion
|
|
174
|
-
//#region src/util/key_to_icon_component.ts
|
|
175
|
-
function keyToIconComponent(key) {
|
|
176
|
-
return (key.match(/^\d/) ? "_" : "") + key.split("_").map((word) => {
|
|
177
|
-
return word.charAt(0).toUpperCase() + word.slice(1);
|
|
178
|
-
}).join("") + "Icon";
|
|
179
|
-
}
|
|
180
|
-
//#endregion
|
|
181
174
|
//#region src/components/common/SelectInputLabel.tsx
|
|
182
175
|
function SelectInputLabel({ children, error }) {
|
|
183
176
|
return /* @__PURE__ */ jsx("div", {
|
|
@@ -4043,2054 +4036,267 @@ var SafeLinkRenderer = ({ text }) => {
|
|
|
4043
4036
|
});
|
|
4044
4037
|
};
|
|
4045
4038
|
//#endregion
|
|
4046
|
-
//#region src/
|
|
4047
|
-
|
|
4048
|
-
|
|
4049
|
-
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
|
|
4053
|
-
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
|
|
4071
|
-
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
|
|
4075
|
-
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4083
|
-
|
|
4084
|
-
"AlignRight",
|
|
4085
|
-
"AlignStartHorizontal",
|
|
4086
|
-
"AlignStartVertical",
|
|
4087
|
-
"AlignVerticalDistributeCenter",
|
|
4088
|
-
"AlignVerticalDistributeEnd",
|
|
4089
|
-
"AlignVerticalDistributeStart",
|
|
4090
|
-
"AlignVerticalJustifyCenter",
|
|
4091
|
-
"AlignVerticalJustifyEnd",
|
|
4092
|
-
"AlignVerticalJustifyStart",
|
|
4093
|
-
"AlignVerticalSpaceAround",
|
|
4094
|
-
"AlignVerticalSpaceBetween",
|
|
4095
|
-
"Ambulance",
|
|
4096
|
-
"Ampersand",
|
|
4097
|
-
"Ampersands",
|
|
4098
|
-
"Amphora",
|
|
4099
|
-
"Anchor",
|
|
4100
|
-
"Angry",
|
|
4101
|
-
"Annoyed",
|
|
4102
|
-
"Antenna",
|
|
4103
|
-
"Anvil",
|
|
4104
|
-
"Aperture",
|
|
4105
|
-
"AppWindow",
|
|
4106
|
-
"AppWindowMac",
|
|
4107
|
-
"Apple",
|
|
4108
|
-
"Archive",
|
|
4109
|
-
"ArchiveRestore",
|
|
4110
|
-
"ArchiveX",
|
|
4111
|
-
"AreaChart",
|
|
4112
|
-
"Armchair",
|
|
4113
|
-
"ArrowBigDown",
|
|
4114
|
-
"ArrowBigDownDash",
|
|
4115
|
-
"ArrowBigLeft",
|
|
4116
|
-
"ArrowBigLeftDash",
|
|
4117
|
-
"ArrowBigRight",
|
|
4118
|
-
"ArrowBigRightDash",
|
|
4119
|
-
"ArrowBigUp",
|
|
4120
|
-
"ArrowBigUpDash",
|
|
4121
|
-
"ArrowDown",
|
|
4122
|
-
"ArrowDown01",
|
|
4123
|
-
"ArrowDown10",
|
|
4124
|
-
"ArrowDownAZ",
|
|
4125
|
-
"ArrowDownCircle",
|
|
4126
|
-
"ArrowDownFromLine",
|
|
4127
|
-
"ArrowDownLeft",
|
|
4128
|
-
"ArrowDownLeftFromCircle",
|
|
4129
|
-
"ArrowDownLeftFromSquare",
|
|
4130
|
-
"ArrowDownLeftSquare",
|
|
4131
|
-
"ArrowDownNarrowWide",
|
|
4132
|
-
"ArrowDownRight",
|
|
4133
|
-
"ArrowDownRightFromCircle",
|
|
4134
|
-
"ArrowDownRightFromSquare",
|
|
4135
|
-
"ArrowDownRightSquare",
|
|
4136
|
-
"ArrowDownSquare",
|
|
4137
|
-
"ArrowDownToDot",
|
|
4138
|
-
"ArrowDownToLine",
|
|
4139
|
-
"ArrowDownUp",
|
|
4140
|
-
"ArrowDownWideNarrow",
|
|
4141
|
-
"ArrowDownZA",
|
|
4142
|
-
"ArrowLeft",
|
|
4143
|
-
"ArrowLeftCircle",
|
|
4144
|
-
"ArrowLeftFromLine",
|
|
4145
|
-
"ArrowLeftRight",
|
|
4146
|
-
"ArrowLeftSquare",
|
|
4147
|
-
"ArrowLeftToLine",
|
|
4148
|
-
"ArrowRight",
|
|
4149
|
-
"ArrowRightCircle",
|
|
4150
|
-
"ArrowRightFromLine",
|
|
4151
|
-
"ArrowRightLeft",
|
|
4152
|
-
"ArrowRightSquare",
|
|
4153
|
-
"ArrowRightToLine",
|
|
4154
|
-
"ArrowUp",
|
|
4155
|
-
"ArrowUp01",
|
|
4156
|
-
"ArrowUp10",
|
|
4157
|
-
"ArrowUpAZ",
|
|
4158
|
-
"ArrowUpCircle",
|
|
4159
|
-
"ArrowUpDown",
|
|
4160
|
-
"ArrowUpFromDot",
|
|
4161
|
-
"ArrowUpFromLine",
|
|
4162
|
-
"ArrowUpLeft",
|
|
4163
|
-
"ArrowUpLeftFromCircle",
|
|
4164
|
-
"ArrowUpLeftFromSquare",
|
|
4165
|
-
"ArrowUpLeftSquare",
|
|
4166
|
-
"ArrowUpNarrowWide",
|
|
4167
|
-
"ArrowUpRight",
|
|
4168
|
-
"ArrowUpRightFromCircle",
|
|
4169
|
-
"ArrowUpRightFromSquare",
|
|
4170
|
-
"ArrowUpRightSquare",
|
|
4171
|
-
"ArrowUpSquare",
|
|
4172
|
-
"ArrowUpToLine",
|
|
4173
|
-
"ArrowUpWideNarrow",
|
|
4174
|
-
"ArrowUpZA",
|
|
4175
|
-
"ArrowsUpFromLine",
|
|
4176
|
-
"Asterisk",
|
|
4177
|
-
"AsteriskSquare",
|
|
4178
|
-
"Astroid",
|
|
4179
|
-
"AtSign",
|
|
4180
|
-
"Atom",
|
|
4181
|
-
"AudioLines",
|
|
4182
|
-
"AudioWaveform",
|
|
4183
|
-
"Award",
|
|
4184
|
-
"Axe",
|
|
4185
|
-
"Axis3D",
|
|
4186
|
-
"Baby",
|
|
4187
|
-
"Backpack",
|
|
4188
|
-
"Badge",
|
|
4189
|
-
"BadgeAlert",
|
|
4190
|
-
"BadgeCent",
|
|
4191
|
-
"BadgeCheck",
|
|
4192
|
-
"BadgeDollarSign",
|
|
4193
|
-
"BadgeEuro",
|
|
4194
|
-
"BadgeHelp",
|
|
4195
|
-
"BadgeIndianRupee",
|
|
4196
|
-
"BadgeInfo",
|
|
4197
|
-
"BadgeJapaneseYen",
|
|
4198
|
-
"BadgeMinus",
|
|
4199
|
-
"BadgePercent",
|
|
4200
|
-
"BadgePlus",
|
|
4201
|
-
"BadgePoundSterling",
|
|
4202
|
-
"BadgeQuestionMark",
|
|
4203
|
-
"BadgeRussianRuble",
|
|
4204
|
-
"BadgeSwissFranc",
|
|
4205
|
-
"BadgeTurkishLira",
|
|
4206
|
-
"BadgeX",
|
|
4207
|
-
"BaggageClaim",
|
|
4208
|
-
"Balloon",
|
|
4209
|
-
"Ban",
|
|
4210
|
-
"Banana",
|
|
4211
|
-
"Bandage",
|
|
4212
|
-
"Banknote",
|
|
4213
|
-
"BanknoteArrowDown",
|
|
4214
|
-
"BanknoteArrowUp",
|
|
4215
|
-
"BanknoteX",
|
|
4216
|
-
"BarChart",
|
|
4217
|
-
"BarChart2",
|
|
4218
|
-
"BarChart3",
|
|
4219
|
-
"BarChart4",
|
|
4220
|
-
"BarChartBig",
|
|
4221
|
-
"BarChartHorizontal",
|
|
4222
|
-
"BarChartHorizontalBig",
|
|
4223
|
-
"Barcode",
|
|
4224
|
-
"Barrel",
|
|
4225
|
-
"Baseline",
|
|
4226
|
-
"Bath",
|
|
4227
|
-
"Battery",
|
|
4228
|
-
"BatteryCharging",
|
|
4229
|
-
"BatteryFull",
|
|
4230
|
-
"BatteryLow",
|
|
4231
|
-
"BatteryMedium",
|
|
4232
|
-
"BatteryPlus",
|
|
4233
|
-
"BatteryWarning",
|
|
4234
|
-
"Beaker",
|
|
4235
|
-
"Bean",
|
|
4236
|
-
"BeanOff",
|
|
4237
|
-
"Bed",
|
|
4238
|
-
"BedDouble",
|
|
4239
|
-
"BedSingle",
|
|
4240
|
-
"Beef",
|
|
4241
|
-
"BeefOff",
|
|
4242
|
-
"Beer",
|
|
4243
|
-
"BeerOff",
|
|
4244
|
-
"Bell",
|
|
4245
|
-
"BellCheck",
|
|
4246
|
-
"BellDot",
|
|
4247
|
-
"BellElectric",
|
|
4248
|
-
"BellMinus",
|
|
4249
|
-
"BellOff",
|
|
4250
|
-
"BellPlus",
|
|
4251
|
-
"BellRing",
|
|
4252
|
-
"BetweenHorizonalEnd",
|
|
4253
|
-
"BetweenHorizonalStart",
|
|
4254
|
-
"BetweenHorizontalEnd",
|
|
4255
|
-
"BetweenHorizontalStart",
|
|
4256
|
-
"BetweenVerticalEnd",
|
|
4257
|
-
"BetweenVerticalStart",
|
|
4258
|
-
"BicepsFlexed",
|
|
4259
|
-
"Bike",
|
|
4260
|
-
"Binary",
|
|
4261
|
-
"Binoculars",
|
|
4262
|
-
"Biohazard",
|
|
4263
|
-
"Bird",
|
|
4264
|
-
"Birdhouse",
|
|
4265
|
-
"Bitcoin",
|
|
4266
|
-
"Blend",
|
|
4267
|
-
"Blinds",
|
|
4268
|
-
"Blocks",
|
|
4269
|
-
"Bluetooth",
|
|
4270
|
-
"BluetoothConnected",
|
|
4271
|
-
"BluetoothOff",
|
|
4272
|
-
"BluetoothSearching",
|
|
4273
|
-
"Bold",
|
|
4274
|
-
"Bolt",
|
|
4275
|
-
"Bomb",
|
|
4276
|
-
"Bone",
|
|
4277
|
-
"Book",
|
|
4278
|
-
"BookA",
|
|
4279
|
-
"BookAlert",
|
|
4280
|
-
"BookAudio",
|
|
4281
|
-
"BookCheck",
|
|
4282
|
-
"BookCopy",
|
|
4283
|
-
"BookDashed",
|
|
4284
|
-
"BookDown",
|
|
4285
|
-
"BookHeadphones",
|
|
4286
|
-
"BookHeart",
|
|
4287
|
-
"BookImage",
|
|
4288
|
-
"BookKey",
|
|
4289
|
-
"BookLock",
|
|
4290
|
-
"BookMarked",
|
|
4291
|
-
"BookMinus",
|
|
4292
|
-
"BookOpen",
|
|
4293
|
-
"BookOpenCheck",
|
|
4294
|
-
"BookOpenText",
|
|
4295
|
-
"BookPlus",
|
|
4296
|
-
"BookSearch",
|
|
4297
|
-
"BookTemplate",
|
|
4298
|
-
"BookText",
|
|
4299
|
-
"BookType",
|
|
4300
|
-
"BookUp",
|
|
4301
|
-
"BookUp2",
|
|
4302
|
-
"BookUser",
|
|
4303
|
-
"BookX",
|
|
4304
|
-
"Bookmark",
|
|
4305
|
-
"BookmarkCheck",
|
|
4306
|
-
"BookmarkMinus",
|
|
4307
|
-
"BookmarkOff",
|
|
4308
|
-
"BookmarkPlus",
|
|
4309
|
-
"BookmarkX",
|
|
4310
|
-
"BoomBox",
|
|
4311
|
-
"Bot",
|
|
4312
|
-
"BotMessageSquare",
|
|
4313
|
-
"BotOff",
|
|
4314
|
-
"BottleWine",
|
|
4315
|
-
"BowArrow",
|
|
4316
|
-
"Box",
|
|
4317
|
-
"BoxSelect",
|
|
4318
|
-
"Boxes",
|
|
4319
|
-
"Braces",
|
|
4320
|
-
"Brackets",
|
|
4321
|
-
"Brain",
|
|
4322
|
-
"BrainCircuit",
|
|
4323
|
-
"BrainCog",
|
|
4324
|
-
"BrickWall",
|
|
4325
|
-
"BrickWallFire",
|
|
4326
|
-
"BrickWallShield",
|
|
4327
|
-
"Briefcase",
|
|
4328
|
-
"BriefcaseBusiness",
|
|
4329
|
-
"BriefcaseConveyorBelt",
|
|
4330
|
-
"BriefcaseMedical",
|
|
4331
|
-
"BringToFront",
|
|
4332
|
-
"Brush",
|
|
4333
|
-
"BrushCleaning",
|
|
4334
|
-
"Bubbles",
|
|
4335
|
-
"Bug",
|
|
4336
|
-
"BugOff",
|
|
4337
|
-
"BugPlay",
|
|
4338
|
-
"Building",
|
|
4339
|
-
"Building2",
|
|
4340
|
-
"Bus",
|
|
4341
|
-
"BusFront",
|
|
4342
|
-
"Cable",
|
|
4343
|
-
"CableCar",
|
|
4344
|
-
"Cake",
|
|
4345
|
-
"CakeSlice",
|
|
4346
|
-
"Calculator",
|
|
4347
|
-
"Calendar",
|
|
4348
|
-
"Calendar1",
|
|
4349
|
-
"CalendarArrowDown",
|
|
4350
|
-
"CalendarArrowUp",
|
|
4351
|
-
"CalendarCheck",
|
|
4352
|
-
"CalendarCheck2",
|
|
4353
|
-
"CalendarClock",
|
|
4354
|
-
"CalendarCog",
|
|
4355
|
-
"CalendarDays",
|
|
4356
|
-
"CalendarFold",
|
|
4357
|
-
"CalendarHeart",
|
|
4358
|
-
"CalendarMinus",
|
|
4359
|
-
"CalendarMinus2",
|
|
4360
|
-
"CalendarOff",
|
|
4361
|
-
"CalendarPlus",
|
|
4362
|
-
"CalendarPlus2",
|
|
4363
|
-
"CalendarRange",
|
|
4364
|
-
"CalendarSearch",
|
|
4365
|
-
"CalendarSync",
|
|
4366
|
-
"CalendarX",
|
|
4367
|
-
"CalendarX2",
|
|
4368
|
-
"Calendars",
|
|
4369
|
-
"Camera",
|
|
4370
|
-
"CameraOff",
|
|
4371
|
-
"CandlestickChart",
|
|
4372
|
-
"Candy",
|
|
4373
|
-
"CandyCane",
|
|
4374
|
-
"CandyOff",
|
|
4375
|
-
"Cannabis",
|
|
4376
|
-
"CannabisOff",
|
|
4377
|
-
"Captions",
|
|
4378
|
-
"CaptionsOff",
|
|
4379
|
-
"Car",
|
|
4380
|
-
"CarFront",
|
|
4381
|
-
"CarTaxiFront",
|
|
4382
|
-
"Caravan",
|
|
4383
|
-
"CardSim",
|
|
4384
|
-
"Carrot",
|
|
4385
|
-
"CaseLower",
|
|
4386
|
-
"CaseSensitive",
|
|
4387
|
-
"CaseUpper",
|
|
4388
|
-
"CassetteTape",
|
|
4389
|
-
"Cast",
|
|
4390
|
-
"Castle",
|
|
4391
|
-
"Cat",
|
|
4392
|
-
"Cctv",
|
|
4393
|
-
"CctvOff",
|
|
4394
|
-
"ChartArea",
|
|
4395
|
-
"ChartBar",
|
|
4396
|
-
"ChartBarBig",
|
|
4397
|
-
"ChartBarDecreasing",
|
|
4398
|
-
"ChartBarIncreasing",
|
|
4399
|
-
"ChartBarStacked",
|
|
4400
|
-
"ChartCandlestick",
|
|
4401
|
-
"ChartColumn",
|
|
4402
|
-
"ChartColumnBig",
|
|
4403
|
-
"ChartColumnDecreasing",
|
|
4404
|
-
"ChartColumnIncreasing",
|
|
4405
|
-
"ChartColumnStacked",
|
|
4406
|
-
"ChartGantt",
|
|
4407
|
-
"ChartLine",
|
|
4408
|
-
"ChartNetwork",
|
|
4409
|
-
"ChartNoAxesColumn",
|
|
4410
|
-
"ChartNoAxesColumnDecreasing",
|
|
4411
|
-
"ChartNoAxesColumnIncreasing",
|
|
4412
|
-
"ChartNoAxesCombined",
|
|
4413
|
-
"ChartNoAxesGantt",
|
|
4414
|
-
"ChartPie",
|
|
4415
|
-
"ChartScatter",
|
|
4416
|
-
"ChartSpline",
|
|
4417
|
-
"Check",
|
|
4418
|
-
"CheckCheck",
|
|
4419
|
-
"CheckCircle",
|
|
4420
|
-
"CheckCircle2",
|
|
4421
|
-
"CheckLine",
|
|
4422
|
-
"CheckSquare",
|
|
4423
|
-
"CheckSquare2",
|
|
4424
|
-
"ChefHat",
|
|
4425
|
-
"Cherry",
|
|
4426
|
-
"ChessBishop",
|
|
4427
|
-
"ChessKing",
|
|
4428
|
-
"ChessKnight",
|
|
4429
|
-
"ChessPawn",
|
|
4430
|
-
"ChessQueen",
|
|
4431
|
-
"ChessRook",
|
|
4432
|
-
"ChevronDown",
|
|
4433
|
-
"ChevronDownCircle",
|
|
4434
|
-
"ChevronDownSquare",
|
|
4435
|
-
"ChevronFirst",
|
|
4436
|
-
"ChevronLast",
|
|
4437
|
-
"ChevronLeft",
|
|
4438
|
-
"ChevronLeftCircle",
|
|
4439
|
-
"ChevronLeftSquare",
|
|
4440
|
-
"ChevronRight",
|
|
4441
|
-
"ChevronRightCircle",
|
|
4442
|
-
"ChevronRightSquare",
|
|
4443
|
-
"ChevronUp",
|
|
4444
|
-
"ChevronUpCircle",
|
|
4445
|
-
"ChevronUpSquare",
|
|
4446
|
-
"ChevronsDown",
|
|
4447
|
-
"ChevronsDownUp",
|
|
4448
|
-
"ChevronsLeft",
|
|
4449
|
-
"ChevronsLeftRight",
|
|
4450
|
-
"ChevronsLeftRightEllipsis",
|
|
4451
|
-
"ChevronsRight",
|
|
4452
|
-
"ChevronsRightLeft",
|
|
4453
|
-
"ChevronsUp",
|
|
4454
|
-
"ChevronsUpDown",
|
|
4455
|
-
"Church",
|
|
4456
|
-
"Cigarette",
|
|
4457
|
-
"CigaretteOff",
|
|
4458
|
-
"Circle",
|
|
4459
|
-
"CircleAlert",
|
|
4460
|
-
"CircleArrowDown",
|
|
4461
|
-
"CircleArrowLeft",
|
|
4462
|
-
"CircleArrowOutDownLeft",
|
|
4463
|
-
"CircleArrowOutDownRight",
|
|
4464
|
-
"CircleArrowOutUpLeft",
|
|
4465
|
-
"CircleArrowOutUpRight",
|
|
4466
|
-
"CircleArrowRight",
|
|
4467
|
-
"CircleArrowUp",
|
|
4468
|
-
"CircleCheck",
|
|
4469
|
-
"CircleCheckBig",
|
|
4470
|
-
"CircleChevronDown",
|
|
4471
|
-
"CircleChevronLeft",
|
|
4472
|
-
"CircleChevronRight",
|
|
4473
|
-
"CircleChevronUp",
|
|
4474
|
-
"CircleDashed",
|
|
4475
|
-
"CircleDivide",
|
|
4476
|
-
"CircleDollarSign",
|
|
4477
|
-
"CircleDot",
|
|
4478
|
-
"CircleDotDashed",
|
|
4479
|
-
"CircleEllipsis",
|
|
4480
|
-
"CircleEqual",
|
|
4481
|
-
"CircleFadingArrowUp",
|
|
4482
|
-
"CircleFadingPlus",
|
|
4483
|
-
"CircleGauge",
|
|
4484
|
-
"CircleHelp",
|
|
4485
|
-
"CircleMinus",
|
|
4486
|
-
"CircleOff",
|
|
4487
|
-
"CircleParking",
|
|
4488
|
-
"CircleParkingOff",
|
|
4489
|
-
"CirclePause",
|
|
4490
|
-
"CirclePercent",
|
|
4491
|
-
"CirclePile",
|
|
4492
|
-
"CirclePlay",
|
|
4493
|
-
"CirclePlus",
|
|
4494
|
-
"CirclePoundSterling",
|
|
4495
|
-
"CirclePower",
|
|
4496
|
-
"CircleQuestionMark",
|
|
4497
|
-
"CircleSlash",
|
|
4498
|
-
"CircleSlash2",
|
|
4499
|
-
"CircleSlashed",
|
|
4500
|
-
"CircleSmall",
|
|
4501
|
-
"CircleStar",
|
|
4502
|
-
"CircleStop",
|
|
4503
|
-
"CircleUser",
|
|
4504
|
-
"CircleUserRound",
|
|
4505
|
-
"CircleX",
|
|
4506
|
-
"CircuitBoard",
|
|
4507
|
-
"Citrus",
|
|
4508
|
-
"Clapperboard",
|
|
4509
|
-
"Clipboard",
|
|
4510
|
-
"ClipboardCheck",
|
|
4511
|
-
"ClipboardClock",
|
|
4512
|
-
"ClipboardCopy",
|
|
4513
|
-
"ClipboardEdit",
|
|
4514
|
-
"ClipboardList",
|
|
4515
|
-
"ClipboardMinus",
|
|
4516
|
-
"ClipboardPaste",
|
|
4517
|
-
"ClipboardPen",
|
|
4518
|
-
"ClipboardPenLine",
|
|
4519
|
-
"ClipboardPlus",
|
|
4520
|
-
"ClipboardSignature",
|
|
4521
|
-
"ClipboardType",
|
|
4522
|
-
"ClipboardX",
|
|
4523
|
-
"Clock",
|
|
4524
|
-
"Clock1",
|
|
4525
|
-
"Clock10",
|
|
4526
|
-
"Clock11",
|
|
4527
|
-
"Clock12",
|
|
4528
|
-
"Clock2",
|
|
4529
|
-
"Clock3",
|
|
4530
|
-
"Clock4",
|
|
4531
|
-
"Clock5",
|
|
4532
|
-
"Clock6",
|
|
4533
|
-
"Clock7",
|
|
4534
|
-
"Clock8",
|
|
4535
|
-
"Clock9",
|
|
4536
|
-
"ClockAlert",
|
|
4537
|
-
"ClockArrowDown",
|
|
4538
|
-
"ClockArrowUp",
|
|
4539
|
-
"ClockCheck",
|
|
4540
|
-
"ClockFading",
|
|
4541
|
-
"ClockPlus",
|
|
4542
|
-
"ClosedCaption",
|
|
4543
|
-
"Cloud",
|
|
4544
|
-
"CloudAlert",
|
|
4545
|
-
"CloudBackup",
|
|
4546
|
-
"CloudCheck",
|
|
4547
|
-
"CloudCog",
|
|
4548
|
-
"CloudDownload",
|
|
4549
|
-
"CloudDrizzle",
|
|
4550
|
-
"CloudFog",
|
|
4551
|
-
"CloudHail",
|
|
4552
|
-
"CloudLightning",
|
|
4553
|
-
"CloudMoon",
|
|
4554
|
-
"CloudMoonRain",
|
|
4555
|
-
"CloudOff",
|
|
4556
|
-
"CloudRain",
|
|
4557
|
-
"CloudRainWind",
|
|
4558
|
-
"CloudSnow",
|
|
4559
|
-
"CloudSun",
|
|
4560
|
-
"CloudSunRain",
|
|
4561
|
-
"CloudSync",
|
|
4562
|
-
"CloudUpload",
|
|
4563
|
-
"Cloudy",
|
|
4564
|
-
"Clover",
|
|
4565
|
-
"Club",
|
|
4566
|
-
"Code",
|
|
4567
|
-
"Code2",
|
|
4568
|
-
"CodeSquare",
|
|
4569
|
-
"CodeXml",
|
|
4570
|
-
"Coffee",
|
|
4571
|
-
"Cog",
|
|
4572
|
-
"Coins",
|
|
4573
|
-
"Columns",
|
|
4574
|
-
"Columns2",
|
|
4575
|
-
"Columns3",
|
|
4576
|
-
"Columns3Cog",
|
|
4577
|
-
"Columns4",
|
|
4578
|
-
"ColumnsSettings",
|
|
4579
|
-
"Combine",
|
|
4580
|
-
"Command",
|
|
4581
|
-
"Compass",
|
|
4582
|
-
"Component",
|
|
4583
|
-
"Computer",
|
|
4584
|
-
"ConciergeBell",
|
|
4585
|
-
"Cone",
|
|
4586
|
-
"Construction",
|
|
4587
|
-
"Contact",
|
|
4588
|
-
"Contact2",
|
|
4589
|
-
"ContactRound",
|
|
4590
|
-
"Container",
|
|
4591
|
-
"Contrast",
|
|
4592
|
-
"Cookie",
|
|
4593
|
-
"CookingPot",
|
|
4594
|
-
"Copy",
|
|
4595
|
-
"CopyCheck",
|
|
4596
|
-
"CopyMinus",
|
|
4597
|
-
"CopyPlus",
|
|
4598
|
-
"CopySlash",
|
|
4599
|
-
"CopyX",
|
|
4600
|
-
"Copyleft",
|
|
4601
|
-
"Copyright",
|
|
4602
|
-
"CornerDownLeft",
|
|
4603
|
-
"CornerDownRight",
|
|
4604
|
-
"CornerLeftDown",
|
|
4605
|
-
"CornerLeftUp",
|
|
4606
|
-
"CornerRightDown",
|
|
4607
|
-
"CornerRightUp",
|
|
4608
|
-
"CornerUpLeft",
|
|
4609
|
-
"CornerUpRight",
|
|
4610
|
-
"Cpu",
|
|
4611
|
-
"CreativeCommons",
|
|
4612
|
-
"CreditCard",
|
|
4613
|
-
"Croissant",
|
|
4614
|
-
"Crop",
|
|
4615
|
-
"Cross",
|
|
4616
|
-
"Crosshair",
|
|
4617
|
-
"Crown",
|
|
4618
|
-
"Cuboid",
|
|
4619
|
-
"CupSoda",
|
|
4620
|
-
"CurlyBraces",
|
|
4621
|
-
"Currency",
|
|
4622
|
-
"Cylinder",
|
|
4623
|
-
"Dam",
|
|
4624
|
-
"Database",
|
|
4625
|
-
"DatabaseBackup",
|
|
4626
|
-
"DatabaseSearch",
|
|
4627
|
-
"DatabaseZap",
|
|
4628
|
-
"DecimalsArrowLeft",
|
|
4629
|
-
"DecimalsArrowRight",
|
|
4630
|
-
"Delete",
|
|
4631
|
-
"Dessert",
|
|
4632
|
-
"Diameter",
|
|
4633
|
-
"Diamond",
|
|
4634
|
-
"DiamondMinus",
|
|
4635
|
-
"DiamondPercent",
|
|
4636
|
-
"DiamondPlus",
|
|
4637
|
-
"Dice1",
|
|
4638
|
-
"Dice2",
|
|
4639
|
-
"Dice3",
|
|
4640
|
-
"Dice4",
|
|
4641
|
-
"Dice5",
|
|
4642
|
-
"Dice6",
|
|
4643
|
-
"Dices",
|
|
4644
|
-
"Diff",
|
|
4645
|
-
"Disc",
|
|
4646
|
-
"Disc2",
|
|
4647
|
-
"Disc3",
|
|
4648
|
-
"DiscAlbum",
|
|
4649
|
-
"Divide",
|
|
4650
|
-
"DivideCircle",
|
|
4651
|
-
"DivideSquare",
|
|
4652
|
-
"Dna",
|
|
4653
|
-
"DnaOff",
|
|
4654
|
-
"Dock",
|
|
4655
|
-
"Dog",
|
|
4656
|
-
"DollarSign",
|
|
4657
|
-
"Donut",
|
|
4658
|
-
"DoorClosed",
|
|
4659
|
-
"DoorClosedLocked",
|
|
4660
|
-
"DoorOpen",
|
|
4661
|
-
"Dot",
|
|
4662
|
-
"DotSquare",
|
|
4663
|
-
"Download",
|
|
4664
|
-
"DownloadCloud",
|
|
4665
|
-
"DraftingCompass",
|
|
4666
|
-
"Drama",
|
|
4667
|
-
"Drill",
|
|
4668
|
-
"Drone",
|
|
4669
|
-
"Droplet",
|
|
4670
|
-
"DropletOff",
|
|
4671
|
-
"Droplets",
|
|
4672
|
-
"Drum",
|
|
4673
|
-
"Drumstick",
|
|
4674
|
-
"Dumbbell",
|
|
4675
|
-
"Ear",
|
|
4676
|
-
"EarOff",
|
|
4677
|
-
"Earth",
|
|
4678
|
-
"EarthLock",
|
|
4679
|
-
"Eclipse",
|
|
4680
|
-
"Edit",
|
|
4681
|
-
"Edit2",
|
|
4682
|
-
"Edit3",
|
|
4683
|
-
"Egg",
|
|
4684
|
-
"EggFried",
|
|
4685
|
-
"EggOff",
|
|
4686
|
-
"Ellipse",
|
|
4687
|
-
"Ellipsis",
|
|
4688
|
-
"EllipsisVertical",
|
|
4689
|
-
"Equal",
|
|
4690
|
-
"EqualApproximately",
|
|
4691
|
-
"EqualNot",
|
|
4692
|
-
"EqualSquare",
|
|
4693
|
-
"Eraser",
|
|
4694
|
-
"EthernetPort",
|
|
4695
|
-
"Euro",
|
|
4696
|
-
"EvCharger",
|
|
4697
|
-
"Expand",
|
|
4698
|
-
"ExternalLink",
|
|
4699
|
-
"Eye",
|
|
4700
|
-
"EyeClosed",
|
|
4701
|
-
"EyeOff",
|
|
4702
|
-
"Factory",
|
|
4703
|
-
"Fan",
|
|
4704
|
-
"FastForward",
|
|
4705
|
-
"Feather",
|
|
4706
|
-
"Fence",
|
|
4707
|
-
"FerrisWheel",
|
|
4708
|
-
"File",
|
|
4709
|
-
"FileArchive",
|
|
4710
|
-
"FileAudio",
|
|
4711
|
-
"FileAudio2",
|
|
4712
|
-
"FileAxis3D",
|
|
4713
|
-
"FileBadge",
|
|
4714
|
-
"FileBadge2",
|
|
4715
|
-
"FileBarChart",
|
|
4716
|
-
"FileBarChart2",
|
|
4717
|
-
"FileBox",
|
|
4718
|
-
"FileBraces",
|
|
4719
|
-
"FileBracesCorner",
|
|
4720
|
-
"FileChartColumn",
|
|
4721
|
-
"FileChartColumnIncreasing",
|
|
4722
|
-
"FileChartLine",
|
|
4723
|
-
"FileChartPie",
|
|
4724
|
-
"FileCheck",
|
|
4725
|
-
"FileCheck2",
|
|
4726
|
-
"FileCheckCorner",
|
|
4727
|
-
"FileClock",
|
|
4728
|
-
"FileCode",
|
|
4729
|
-
"FileCode2",
|
|
4730
|
-
"FileCodeCorner",
|
|
4731
|
-
"FileCog",
|
|
4732
|
-
"FileCog2",
|
|
4733
|
-
"FileDiff",
|
|
4734
|
-
"FileDigit",
|
|
4735
|
-
"FileDown",
|
|
4736
|
-
"FileEdit",
|
|
4737
|
-
"FileExclamationPoint",
|
|
4738
|
-
"FileHeadphone",
|
|
4739
|
-
"FileHeart",
|
|
4740
|
-
"FileImage",
|
|
4741
|
-
"FileInput",
|
|
4742
|
-
"FileJson",
|
|
4743
|
-
"FileJson2",
|
|
4744
|
-
"FileKey",
|
|
4745
|
-
"FileKey2",
|
|
4746
|
-
"FileLineChart",
|
|
4747
|
-
"FileLock",
|
|
4748
|
-
"FileLock2",
|
|
4749
|
-
"FileMinus",
|
|
4750
|
-
"FileMinus2",
|
|
4751
|
-
"FileMinusCorner",
|
|
4752
|
-
"FileMusic",
|
|
4753
|
-
"FileOutput",
|
|
4754
|
-
"FilePen",
|
|
4755
|
-
"FilePenLine",
|
|
4756
|
-
"FilePieChart",
|
|
4757
|
-
"FilePlay",
|
|
4758
|
-
"FilePlus",
|
|
4759
|
-
"FilePlus2",
|
|
4760
|
-
"FilePlusCorner",
|
|
4761
|
-
"FileQuestion",
|
|
4762
|
-
"FileQuestionMark",
|
|
4763
|
-
"FileScan",
|
|
4764
|
-
"FileSearch",
|
|
4765
|
-
"FileSearch2",
|
|
4766
|
-
"FileSearchCorner",
|
|
4767
|
-
"FileSignal",
|
|
4768
|
-
"FileSignature",
|
|
4769
|
-
"FileSliders",
|
|
4770
|
-
"FileSpreadsheet",
|
|
4771
|
-
"FileStack",
|
|
4772
|
-
"FileSymlink",
|
|
4773
|
-
"FileTerminal",
|
|
4774
|
-
"FileText",
|
|
4775
|
-
"FileType",
|
|
4776
|
-
"FileType2",
|
|
4777
|
-
"FileTypeCorner",
|
|
4778
|
-
"FileUp",
|
|
4779
|
-
"FileUser",
|
|
4780
|
-
"FileVideo",
|
|
4781
|
-
"FileVideo2",
|
|
4782
|
-
"FileVideoCamera",
|
|
4783
|
-
"FileVolume",
|
|
4784
|
-
"FileVolume2",
|
|
4785
|
-
"FileWarning",
|
|
4786
|
-
"FileX",
|
|
4787
|
-
"FileX2",
|
|
4788
|
-
"FileXCorner",
|
|
4789
|
-
"Files",
|
|
4790
|
-
"Film",
|
|
4791
|
-
"Filter",
|
|
4792
|
-
"FilterX",
|
|
4793
|
-
"Fingerprint",
|
|
4794
|
-
"FingerprintPattern",
|
|
4795
|
-
"FireExtinguisher",
|
|
4796
|
-
"Fish",
|
|
4797
|
-
"FishOff",
|
|
4798
|
-
"FishSymbol",
|
|
4799
|
-
"FishingHook",
|
|
4800
|
-
"FishingRod",
|
|
4801
|
-
"Flag",
|
|
4802
|
-
"FlagOff",
|
|
4803
|
-
"FlagTriangleLeft",
|
|
4804
|
-
"FlagTriangleRight",
|
|
4805
|
-
"Flame",
|
|
4806
|
-
"FlameKindling",
|
|
4807
|
-
"Flashlight",
|
|
4808
|
-
"FlashlightOff",
|
|
4809
|
-
"FlaskConical",
|
|
4810
|
-
"FlaskConicalOff",
|
|
4811
|
-
"FlaskRound",
|
|
4812
|
-
"FlipHorizontal",
|
|
4813
|
-
"FlipHorizontal2",
|
|
4814
|
-
"FlipVertical",
|
|
4815
|
-
"FlipVertical2",
|
|
4816
|
-
"Flower",
|
|
4817
|
-
"Flower2",
|
|
4818
|
-
"Focus",
|
|
4819
|
-
"FoldHorizontal",
|
|
4820
|
-
"FoldVertical",
|
|
4821
|
-
"Folder",
|
|
4822
|
-
"FolderArchive",
|
|
4823
|
-
"FolderBookmark",
|
|
4824
|
-
"FolderCheck",
|
|
4825
|
-
"FolderClock",
|
|
4826
|
-
"FolderClosed",
|
|
4827
|
-
"FolderCode",
|
|
4828
|
-
"FolderCog",
|
|
4829
|
-
"FolderCog2",
|
|
4830
|
-
"FolderDot",
|
|
4831
|
-
"FolderDown",
|
|
4832
|
-
"FolderEdit",
|
|
4833
|
-
"FolderGit",
|
|
4834
|
-
"FolderGit2",
|
|
4835
|
-
"FolderHeart",
|
|
4836
|
-
"FolderInput",
|
|
4837
|
-
"FolderKanban",
|
|
4838
|
-
"FolderKey",
|
|
4839
|
-
"FolderLock",
|
|
4840
|
-
"FolderMinus",
|
|
4841
|
-
"FolderOpen",
|
|
4842
|
-
"FolderOpenDot",
|
|
4843
|
-
"FolderOutput",
|
|
4844
|
-
"FolderPen",
|
|
4845
|
-
"FolderPlus",
|
|
4846
|
-
"FolderRoot",
|
|
4847
|
-
"FolderSearch",
|
|
4848
|
-
"FolderSearch2",
|
|
4849
|
-
"FolderSymlink",
|
|
4850
|
-
"FolderSync",
|
|
4851
|
-
"FolderTree",
|
|
4852
|
-
"FolderUp",
|
|
4853
|
-
"FolderX",
|
|
4854
|
-
"Folders",
|
|
4855
|
-
"Footprints",
|
|
4856
|
-
"ForkKnife",
|
|
4857
|
-
"ForkKnifeCrossed",
|
|
4858
|
-
"Forklift",
|
|
4859
|
-
"Form",
|
|
4860
|
-
"FormInput",
|
|
4861
|
-
"Forward",
|
|
4862
|
-
"Frame",
|
|
4863
|
-
"Frown",
|
|
4864
|
-
"Fuel",
|
|
4865
|
-
"Fullscreen",
|
|
4866
|
-
"FunctionSquare",
|
|
4867
|
-
"Funnel",
|
|
4868
|
-
"FunnelPlus",
|
|
4869
|
-
"FunnelX",
|
|
4870
|
-
"GalleryHorizontal",
|
|
4871
|
-
"GalleryHorizontalEnd",
|
|
4872
|
-
"GalleryThumbnails",
|
|
4873
|
-
"GalleryVertical",
|
|
4874
|
-
"GalleryVerticalEnd",
|
|
4875
|
-
"Gamepad",
|
|
4876
|
-
"Gamepad2",
|
|
4877
|
-
"GamepadDirectional",
|
|
4878
|
-
"GanttChart",
|
|
4879
|
-
"GanttChartSquare",
|
|
4880
|
-
"Gauge",
|
|
4881
|
-
"GaugeCircle",
|
|
4882
|
-
"Gavel",
|
|
4883
|
-
"Gem",
|
|
4884
|
-
"GeorgianLari",
|
|
4885
|
-
"Ghost",
|
|
4886
|
-
"Gift",
|
|
4887
|
-
"GitBranch",
|
|
4888
|
-
"GitBranchMinus",
|
|
4889
|
-
"GitBranchPlus",
|
|
4890
|
-
"GitCommit",
|
|
4891
|
-
"GitCommitHorizontal",
|
|
4892
|
-
"GitCommitVertical",
|
|
4893
|
-
"GitCompare",
|
|
4894
|
-
"GitCompareArrows",
|
|
4895
|
-
"GitFork",
|
|
4896
|
-
"GitGraph",
|
|
4897
|
-
"GitMerge",
|
|
4898
|
-
"GitMergeConflict",
|
|
4899
|
-
"GitPullRequest",
|
|
4900
|
-
"GitPullRequestArrow",
|
|
4901
|
-
"GitPullRequestClosed",
|
|
4902
|
-
"GitPullRequestCreate",
|
|
4903
|
-
"GitPullRequestCreateArrow",
|
|
4904
|
-
"GitPullRequestDraft",
|
|
4905
|
-
"GlassWater",
|
|
4906
|
-
"Glasses",
|
|
4907
|
-
"Globe",
|
|
4908
|
-
"Globe2",
|
|
4909
|
-
"GlobeLock",
|
|
4910
|
-
"GlobeOff",
|
|
4911
|
-
"GlobeX",
|
|
4912
|
-
"Goal",
|
|
4913
|
-
"Gpu",
|
|
4914
|
-
"Grab",
|
|
4915
|
-
"GraduationCap",
|
|
4916
|
-
"Grape",
|
|
4917
|
-
"Grid",
|
|
4918
|
-
"Grid2X2",
|
|
4919
|
-
"Grid2X2Check",
|
|
4920
|
-
"Grid2X2Plus",
|
|
4921
|
-
"Grid2X2X",
|
|
4922
|
-
"Grid3X3",
|
|
4923
|
-
"Grid3x2",
|
|
4924
|
-
"Grip",
|
|
4925
|
-
"GripHorizontal",
|
|
4926
|
-
"GripVertical",
|
|
4927
|
-
"Group",
|
|
4928
|
-
"Guitar",
|
|
4929
|
-
"Ham",
|
|
4930
|
-
"Hamburger",
|
|
4931
|
-
"Hammer",
|
|
4932
|
-
"Hand",
|
|
4933
|
-
"HandCoins",
|
|
4934
|
-
"HandFist",
|
|
4935
|
-
"HandGrab",
|
|
4936
|
-
"HandHeart",
|
|
4937
|
-
"HandHelping",
|
|
4938
|
-
"HandMetal",
|
|
4939
|
-
"HandPlatter",
|
|
4940
|
-
"Handbag",
|
|
4941
|
-
"Handshake",
|
|
4942
|
-
"HardDrive",
|
|
4943
|
-
"HardDriveDownload",
|
|
4944
|
-
"HardDriveUpload",
|
|
4945
|
-
"HardHat",
|
|
4946
|
-
"Hash",
|
|
4947
|
-
"HatGlasses",
|
|
4948
|
-
"Haze",
|
|
4949
|
-
"Hd",
|
|
4950
|
-
"HdmiPort",
|
|
4951
|
-
"Heading",
|
|
4952
|
-
"Heading1",
|
|
4953
|
-
"Heading2",
|
|
4954
|
-
"Heading3",
|
|
4955
|
-
"Heading4",
|
|
4956
|
-
"Heading5",
|
|
4957
|
-
"Heading6",
|
|
4958
|
-
"HeadphoneOff",
|
|
4959
|
-
"Headphones",
|
|
4960
|
-
"Headset",
|
|
4961
|
-
"Heart",
|
|
4962
|
-
"HeartCrack",
|
|
4963
|
-
"HeartHandshake",
|
|
4964
|
-
"HeartMinus",
|
|
4965
|
-
"HeartOff",
|
|
4966
|
-
"HeartPlus",
|
|
4967
|
-
"HeartPulse",
|
|
4968
|
-
"HeartX",
|
|
4969
|
-
"Heater",
|
|
4970
|
-
"Helicopter",
|
|
4971
|
-
"HelpCircle",
|
|
4972
|
-
"HelpingHand",
|
|
4973
|
-
"Hexagon",
|
|
4974
|
-
"Highlighter",
|
|
4975
|
-
"History",
|
|
4976
|
-
"Home",
|
|
4977
|
-
"Hop",
|
|
4978
|
-
"HopOff",
|
|
4979
|
-
"Hospital",
|
|
4980
|
-
"Hotel",
|
|
4981
|
-
"Hourglass",
|
|
4982
|
-
"House",
|
|
4983
|
-
"HouseHeart",
|
|
4984
|
-
"HousePlug",
|
|
4985
|
-
"HousePlus",
|
|
4986
|
-
"HouseWifi",
|
|
4987
|
-
"IceCream",
|
|
4988
|
-
"IceCream2",
|
|
4989
|
-
"IceCreamBowl",
|
|
4990
|
-
"IceCreamCone",
|
|
4991
|
-
"IdCard",
|
|
4992
|
-
"IdCardLanyard",
|
|
4993
|
-
"Image",
|
|
4994
|
-
"ImageDown",
|
|
4995
|
-
"ImageMinus",
|
|
4996
|
-
"ImageOff",
|
|
4997
|
-
"ImagePlay",
|
|
4998
|
-
"ImagePlus",
|
|
4999
|
-
"ImageUp",
|
|
5000
|
-
"ImageUpscale",
|
|
5001
|
-
"Images",
|
|
5002
|
-
"Import",
|
|
5003
|
-
"Inbox",
|
|
5004
|
-
"Indent",
|
|
5005
|
-
"IndentDecrease",
|
|
5006
|
-
"IndentIncrease",
|
|
5007
|
-
"IndianRupee",
|
|
5008
|
-
"Infinity",
|
|
5009
|
-
"Info",
|
|
5010
|
-
"Inspect",
|
|
5011
|
-
"InspectionPanel",
|
|
5012
|
-
"Italic",
|
|
5013
|
-
"IterationCcw",
|
|
5014
|
-
"IterationCw",
|
|
5015
|
-
"JapaneseYen",
|
|
5016
|
-
"Joystick",
|
|
5017
|
-
"Kanban",
|
|
5018
|
-
"KanbanSquare",
|
|
5019
|
-
"KanbanSquareDashed",
|
|
5020
|
-
"Kayak",
|
|
5021
|
-
"Key",
|
|
5022
|
-
"KeyRound",
|
|
5023
|
-
"KeySquare",
|
|
5024
|
-
"Keyboard",
|
|
5025
|
-
"KeyboardMusic",
|
|
5026
|
-
"KeyboardOff",
|
|
5027
|
-
"Lamp",
|
|
5028
|
-
"LampCeiling",
|
|
5029
|
-
"LampDesk",
|
|
5030
|
-
"LampFloor",
|
|
5031
|
-
"LampWallDown",
|
|
5032
|
-
"LampWallUp",
|
|
5033
|
-
"LandPlot",
|
|
5034
|
-
"Landmark",
|
|
5035
|
-
"Languages",
|
|
5036
|
-
"Laptop",
|
|
5037
|
-
"Laptop2",
|
|
5038
|
-
"LaptopMinimal",
|
|
5039
|
-
"LaptopMinimalCheck",
|
|
5040
|
-
"Lasso",
|
|
5041
|
-
"LassoSelect",
|
|
5042
|
-
"Laugh",
|
|
5043
|
-
"Layers",
|
|
5044
|
-
"Layers2",
|
|
5045
|
-
"Layers3",
|
|
5046
|
-
"LayersMinus",
|
|
5047
|
-
"LayersPlus",
|
|
5048
|
-
"Layout",
|
|
5049
|
-
"LayoutDashboard",
|
|
5050
|
-
"LayoutGrid",
|
|
5051
|
-
"LayoutList",
|
|
5052
|
-
"LayoutPanelLeft",
|
|
5053
|
-
"LayoutPanelTop",
|
|
5054
|
-
"LayoutTemplate",
|
|
5055
|
-
"Leaf",
|
|
5056
|
-
"LeafyGreen",
|
|
5057
|
-
"Lectern",
|
|
5058
|
-
"LensConcave",
|
|
5059
|
-
"LensConvex",
|
|
5060
|
-
"LetterText",
|
|
5061
|
-
"Library",
|
|
5062
|
-
"LibraryBig",
|
|
5063
|
-
"LibrarySquare",
|
|
5064
|
-
"LifeBuoy",
|
|
5065
|
-
"Ligature",
|
|
5066
|
-
"Lightbulb",
|
|
5067
|
-
"LightbulbOff",
|
|
5068
|
-
"LineChart",
|
|
5069
|
-
"LineDotRightHorizontal",
|
|
5070
|
-
"LineSquiggle",
|
|
5071
|
-
"LineStyle",
|
|
5072
|
-
"Link",
|
|
5073
|
-
"Link2",
|
|
5074
|
-
"Link2Off",
|
|
5075
|
-
"List",
|
|
5076
|
-
"ListCheck",
|
|
5077
|
-
"ListChecks",
|
|
5078
|
-
"ListChevronsDownUp",
|
|
5079
|
-
"ListChevronsUpDown",
|
|
5080
|
-
"ListCollapse",
|
|
5081
|
-
"ListEnd",
|
|
5082
|
-
"ListFilter",
|
|
5083
|
-
"ListFilterPlus",
|
|
5084
|
-
"ListIndentDecrease",
|
|
5085
|
-
"ListIndentIncrease",
|
|
5086
|
-
"ListMinus",
|
|
5087
|
-
"ListMusic",
|
|
5088
|
-
"ListOrdered",
|
|
5089
|
-
"ListPlus",
|
|
5090
|
-
"ListRestart",
|
|
5091
|
-
"ListStart",
|
|
5092
|
-
"ListTodo",
|
|
5093
|
-
"ListTree",
|
|
5094
|
-
"ListVideo",
|
|
5095
|
-
"ListX",
|
|
5096
|
-
"Loader",
|
|
5097
|
-
"Loader2",
|
|
5098
|
-
"LoaderCircle",
|
|
5099
|
-
"LoaderPinwheel",
|
|
5100
|
-
"Locate",
|
|
5101
|
-
"LocateFixed",
|
|
5102
|
-
"LocateOff",
|
|
5103
|
-
"LocationEdit",
|
|
5104
|
-
"Lock",
|
|
5105
|
-
"LockKeyhole",
|
|
5106
|
-
"LockKeyholeOpen",
|
|
5107
|
-
"LockOpen",
|
|
5108
|
-
"LogIn",
|
|
5109
|
-
"LogOut",
|
|
5110
|
-
"Logs",
|
|
5111
|
-
"Lollipop",
|
|
5112
|
-
"Luggage",
|
|
5113
|
-
"MSquare",
|
|
5114
|
-
"Magnet",
|
|
5115
|
-
"Mail",
|
|
5116
|
-
"MailCheck",
|
|
5117
|
-
"MailMinus",
|
|
5118
|
-
"MailOpen",
|
|
5119
|
-
"MailPlus",
|
|
5120
|
-
"MailQuestion",
|
|
5121
|
-
"MailQuestionMark",
|
|
5122
|
-
"MailSearch",
|
|
5123
|
-
"MailWarning",
|
|
5124
|
-
"MailX",
|
|
5125
|
-
"Mailbox",
|
|
5126
|
-
"Mails",
|
|
5127
|
-
"Map",
|
|
5128
|
-
"MapMinus",
|
|
5129
|
-
"MapPin",
|
|
5130
|
-
"MapPinCheck",
|
|
5131
|
-
"MapPinCheckInside",
|
|
5132
|
-
"MapPinHouse",
|
|
5133
|
-
"MapPinMinus",
|
|
5134
|
-
"MapPinMinusInside",
|
|
5135
|
-
"MapPinOff",
|
|
5136
|
-
"MapPinPen",
|
|
5137
|
-
"MapPinPlus",
|
|
5138
|
-
"MapPinPlusInside",
|
|
5139
|
-
"MapPinSearch",
|
|
5140
|
-
"MapPinX",
|
|
5141
|
-
"MapPinXInside",
|
|
5142
|
-
"MapPinned",
|
|
5143
|
-
"MapPlus",
|
|
5144
|
-
"Mars",
|
|
5145
|
-
"MarsStroke",
|
|
5146
|
-
"Martini",
|
|
5147
|
-
"Maximize",
|
|
5148
|
-
"Maximize2",
|
|
5149
|
-
"Medal",
|
|
5150
|
-
"Megaphone",
|
|
5151
|
-
"MegaphoneOff",
|
|
5152
|
-
"Meh",
|
|
5153
|
-
"MemoryStick",
|
|
5154
|
-
"Menu",
|
|
5155
|
-
"MenuSquare",
|
|
5156
|
-
"Merge",
|
|
5157
|
-
"MessageCircle",
|
|
5158
|
-
"MessageCircleCheck",
|
|
5159
|
-
"MessageCircleCode",
|
|
5160
|
-
"MessageCircleDashed",
|
|
5161
|
-
"MessageCircleHeart",
|
|
5162
|
-
"MessageCircleMore",
|
|
5163
|
-
"MessageCircleOff",
|
|
5164
|
-
"MessageCirclePlus",
|
|
5165
|
-
"MessageCircleQuestion",
|
|
5166
|
-
"MessageCircleQuestionMark",
|
|
5167
|
-
"MessageCircleReply",
|
|
5168
|
-
"MessageCircleWarning",
|
|
5169
|
-
"MessageCircleX",
|
|
5170
|
-
"MessageSquare",
|
|
5171
|
-
"MessageSquareCheck",
|
|
5172
|
-
"MessageSquareCode",
|
|
5173
|
-
"MessageSquareDashed",
|
|
5174
|
-
"MessageSquareDiff",
|
|
5175
|
-
"MessageSquareDot",
|
|
5176
|
-
"MessageSquareHeart",
|
|
5177
|
-
"MessageSquareLock",
|
|
5178
|
-
"MessageSquareMore",
|
|
5179
|
-
"MessageSquareOff",
|
|
5180
|
-
"MessageSquarePlus",
|
|
5181
|
-
"MessageSquareQuote",
|
|
5182
|
-
"MessageSquareReply",
|
|
5183
|
-
"MessageSquareShare",
|
|
5184
|
-
"MessageSquareText",
|
|
5185
|
-
"MessageSquareWarning",
|
|
5186
|
-
"MessageSquareX",
|
|
5187
|
-
"MessagesSquare",
|
|
5188
|
-
"Metronome",
|
|
5189
|
-
"Mic",
|
|
5190
|
-
"Mic2",
|
|
5191
|
-
"MicOff",
|
|
5192
|
-
"MicVocal",
|
|
5193
|
-
"Microchip",
|
|
5194
|
-
"Microscope",
|
|
5195
|
-
"Microwave",
|
|
5196
|
-
"Milestone",
|
|
5197
|
-
"Milk",
|
|
5198
|
-
"MilkOff",
|
|
5199
|
-
"Minimize",
|
|
5200
|
-
"Minimize2",
|
|
5201
|
-
"Minus",
|
|
5202
|
-
"MinusCircle",
|
|
5203
|
-
"MinusSquare",
|
|
5204
|
-
"MirrorRectangular",
|
|
5205
|
-
"MirrorRound",
|
|
5206
|
-
"Monitor",
|
|
5207
|
-
"MonitorCheck",
|
|
5208
|
-
"MonitorCloud",
|
|
5209
|
-
"MonitorCog",
|
|
5210
|
-
"MonitorDot",
|
|
5211
|
-
"MonitorDown",
|
|
5212
|
-
"MonitorOff",
|
|
5213
|
-
"MonitorPause",
|
|
5214
|
-
"MonitorPlay",
|
|
5215
|
-
"MonitorSmartphone",
|
|
5216
|
-
"MonitorSpeaker",
|
|
5217
|
-
"MonitorStop",
|
|
5218
|
-
"MonitorUp",
|
|
5219
|
-
"MonitorX",
|
|
5220
|
-
"Moon",
|
|
5221
|
-
"MoonStar",
|
|
5222
|
-
"MoreHorizontal",
|
|
5223
|
-
"MoreVertical",
|
|
5224
|
-
"Motorbike",
|
|
5225
|
-
"Mountain",
|
|
5226
|
-
"MountainSnow",
|
|
5227
|
-
"Mouse",
|
|
5228
|
-
"MouseLeft",
|
|
5229
|
-
"MouseOff",
|
|
5230
|
-
"MousePointer",
|
|
5231
|
-
"MousePointer2",
|
|
5232
|
-
"MousePointer2Off",
|
|
5233
|
-
"MousePointerBan",
|
|
5234
|
-
"MousePointerClick",
|
|
5235
|
-
"MousePointerSquareDashed",
|
|
5236
|
-
"MouseRight",
|
|
5237
|
-
"Move",
|
|
5238
|
-
"Move3D",
|
|
5239
|
-
"MoveDiagonal",
|
|
5240
|
-
"MoveDiagonal2",
|
|
5241
|
-
"MoveDown",
|
|
5242
|
-
"MoveDownLeft",
|
|
5243
|
-
"MoveDownRight",
|
|
5244
|
-
"MoveHorizontal",
|
|
5245
|
-
"MoveLeft",
|
|
5246
|
-
"MoveRight",
|
|
5247
|
-
"MoveUp",
|
|
5248
|
-
"MoveUpLeft",
|
|
5249
|
-
"MoveUpRight",
|
|
5250
|
-
"MoveVertical",
|
|
5251
|
-
"Music",
|
|
5252
|
-
"Music2",
|
|
5253
|
-
"Music3",
|
|
5254
|
-
"Music4",
|
|
5255
|
-
"Navigation",
|
|
5256
|
-
"Navigation2",
|
|
5257
|
-
"Navigation2Off",
|
|
5258
|
-
"NavigationOff",
|
|
5259
|
-
"Network",
|
|
5260
|
-
"Newspaper",
|
|
5261
|
-
"Nfc",
|
|
5262
|
-
"NonBinary",
|
|
5263
|
-
"Notebook",
|
|
5264
|
-
"NotebookPen",
|
|
5265
|
-
"NotebookTabs",
|
|
5266
|
-
"NotebookText",
|
|
5267
|
-
"NotepadText",
|
|
5268
|
-
"NotepadTextDashed",
|
|
5269
|
-
"Nut",
|
|
5270
|
-
"NutOff",
|
|
5271
|
-
"Octagon",
|
|
5272
|
-
"OctagonAlert",
|
|
5273
|
-
"OctagonMinus",
|
|
5274
|
-
"OctagonPause",
|
|
5275
|
-
"OctagonX",
|
|
5276
|
-
"Omega",
|
|
5277
|
-
"Option",
|
|
5278
|
-
"Orbit",
|
|
5279
|
-
"Origami",
|
|
5280
|
-
"Outdent",
|
|
5281
|
-
"Package",
|
|
5282
|
-
"Package2",
|
|
5283
|
-
"PackageCheck",
|
|
5284
|
-
"PackageMinus",
|
|
5285
|
-
"PackageOpen",
|
|
5286
|
-
"PackagePlus",
|
|
5287
|
-
"PackageSearch",
|
|
5288
|
-
"PackageX",
|
|
5289
|
-
"PaintBucket",
|
|
5290
|
-
"PaintRoller",
|
|
5291
|
-
"Paintbrush",
|
|
5292
|
-
"Paintbrush2",
|
|
5293
|
-
"PaintbrushVertical",
|
|
5294
|
-
"Palette",
|
|
5295
|
-
"Palmtree",
|
|
5296
|
-
"Panda",
|
|
5297
|
-
"PanelBottom",
|
|
5298
|
-
"PanelBottomClose",
|
|
5299
|
-
"PanelBottomDashed",
|
|
5300
|
-
"PanelBottomInactive",
|
|
5301
|
-
"PanelBottomOpen",
|
|
5302
|
-
"PanelLeft",
|
|
5303
|
-
"PanelLeftClose",
|
|
5304
|
-
"PanelLeftDashed",
|
|
5305
|
-
"PanelLeftInactive",
|
|
5306
|
-
"PanelLeftOpen",
|
|
5307
|
-
"PanelLeftRightDashed",
|
|
5308
|
-
"PanelRight",
|
|
5309
|
-
"PanelRightClose",
|
|
5310
|
-
"PanelRightDashed",
|
|
5311
|
-
"PanelRightInactive",
|
|
5312
|
-
"PanelRightOpen",
|
|
5313
|
-
"PanelTop",
|
|
5314
|
-
"PanelTopBottomDashed",
|
|
5315
|
-
"PanelTopClose",
|
|
5316
|
-
"PanelTopDashed",
|
|
5317
|
-
"PanelTopInactive",
|
|
5318
|
-
"PanelTopOpen",
|
|
5319
|
-
"PanelsLeftBottom",
|
|
5320
|
-
"PanelsLeftRight",
|
|
5321
|
-
"PanelsRightBottom",
|
|
5322
|
-
"PanelsTopBottom",
|
|
5323
|
-
"PanelsTopLeft",
|
|
5324
|
-
"Paperclip",
|
|
5325
|
-
"Parentheses",
|
|
5326
|
-
"ParkingCircle",
|
|
5327
|
-
"ParkingCircleOff",
|
|
5328
|
-
"ParkingMeter",
|
|
5329
|
-
"ParkingSquare",
|
|
5330
|
-
"ParkingSquareOff",
|
|
5331
|
-
"PartyPopper",
|
|
5332
|
-
"Pause",
|
|
5333
|
-
"PauseCircle",
|
|
5334
|
-
"PauseOctagon",
|
|
5335
|
-
"PawPrint",
|
|
5336
|
-
"PcCase",
|
|
5337
|
-
"Pen",
|
|
5338
|
-
"PenBox",
|
|
5339
|
-
"PenLine",
|
|
5340
|
-
"PenOff",
|
|
5341
|
-
"PenSquare",
|
|
5342
|
-
"PenTool",
|
|
5343
|
-
"Pencil",
|
|
5344
|
-
"PencilLine",
|
|
5345
|
-
"PencilOff",
|
|
5346
|
-
"PencilRuler",
|
|
5347
|
-
"Pentagon",
|
|
5348
|
-
"Percent",
|
|
5349
|
-
"PercentCircle",
|
|
5350
|
-
"PercentDiamond",
|
|
5351
|
-
"PercentSquare",
|
|
5352
|
-
"PersonStanding",
|
|
5353
|
-
"PhilippinePeso",
|
|
5354
|
-
"Phone",
|
|
5355
|
-
"PhoneCall",
|
|
5356
|
-
"PhoneForwarded",
|
|
5357
|
-
"PhoneIncoming",
|
|
5358
|
-
"PhoneMissed",
|
|
5359
|
-
"PhoneOff",
|
|
5360
|
-
"PhoneOutgoing",
|
|
5361
|
-
"Pi",
|
|
5362
|
-
"PiSquare",
|
|
5363
|
-
"Piano",
|
|
5364
|
-
"Pickaxe",
|
|
5365
|
-
"PictureInPicture",
|
|
5366
|
-
"PictureInPicture2",
|
|
5367
|
-
"PieChart",
|
|
5368
|
-
"PiggyBank",
|
|
5369
|
-
"Pilcrow",
|
|
5370
|
-
"PilcrowLeft",
|
|
5371
|
-
"PilcrowRight",
|
|
5372
|
-
"PilcrowSquare",
|
|
5373
|
-
"Pill",
|
|
5374
|
-
"PillBottle",
|
|
5375
|
-
"Pin",
|
|
5376
|
-
"PinOff",
|
|
5377
|
-
"Pipette",
|
|
5378
|
-
"Pizza",
|
|
5379
|
-
"Plane",
|
|
5380
|
-
"PlaneLanding",
|
|
5381
|
-
"PlaneTakeoff",
|
|
5382
|
-
"Play",
|
|
5383
|
-
"PlayCircle",
|
|
5384
|
-
"PlaySquare",
|
|
5385
|
-
"Plug",
|
|
5386
|
-
"Plug2",
|
|
5387
|
-
"PlugZap",
|
|
5388
|
-
"PlugZap2",
|
|
5389
|
-
"Plus",
|
|
5390
|
-
"PlusCircle",
|
|
5391
|
-
"PlusSquare",
|
|
5392
|
-
"PocketKnife",
|
|
5393
|
-
"Podcast",
|
|
5394
|
-
"Pointer",
|
|
5395
|
-
"PointerOff",
|
|
5396
|
-
"Popcorn",
|
|
5397
|
-
"Popsicle",
|
|
5398
|
-
"PoundSterling",
|
|
5399
|
-
"Power",
|
|
5400
|
-
"PowerCircle",
|
|
5401
|
-
"PowerOff",
|
|
5402
|
-
"PowerSquare",
|
|
5403
|
-
"Presentation",
|
|
5404
|
-
"Printer",
|
|
5405
|
-
"PrinterCheck",
|
|
5406
|
-
"PrinterX",
|
|
5407
|
-
"Projector",
|
|
5408
|
-
"Proportions",
|
|
5409
|
-
"Puzzle",
|
|
5410
|
-
"Pyramid",
|
|
5411
|
-
"QrCode",
|
|
5412
|
-
"Quote",
|
|
5413
|
-
"Rabbit",
|
|
5414
|
-
"Radar",
|
|
5415
|
-
"Radiation",
|
|
5416
|
-
"Radical",
|
|
5417
|
-
"Radio",
|
|
5418
|
-
"RadioOff",
|
|
5419
|
-
"RadioReceiver",
|
|
5420
|
-
"RadioTower",
|
|
5421
|
-
"Radius",
|
|
5422
|
-
"Rainbow",
|
|
5423
|
-
"Rat",
|
|
5424
|
-
"Ratio",
|
|
5425
|
-
"Receipt",
|
|
5426
|
-
"ReceiptCent",
|
|
5427
|
-
"ReceiptEuro",
|
|
5428
|
-
"ReceiptIndianRupee",
|
|
5429
|
-
"ReceiptJapaneseYen",
|
|
5430
|
-
"ReceiptPoundSterling",
|
|
5431
|
-
"ReceiptRussianRuble",
|
|
5432
|
-
"ReceiptSwissFranc",
|
|
5433
|
-
"ReceiptText",
|
|
5434
|
-
"ReceiptTurkishLira",
|
|
5435
|
-
"RectangleCircle",
|
|
5436
|
-
"RectangleEllipsis",
|
|
5437
|
-
"RectangleGoggles",
|
|
5438
|
-
"RectangleHorizontal",
|
|
5439
|
-
"RectangleVertical",
|
|
5440
|
-
"Recycle",
|
|
5441
|
-
"Redo",
|
|
5442
|
-
"Redo2",
|
|
5443
|
-
"RedoDot",
|
|
5444
|
-
"RefreshCcw",
|
|
5445
|
-
"RefreshCcwDot",
|
|
5446
|
-
"RefreshCw",
|
|
5447
|
-
"RefreshCwOff",
|
|
5448
|
-
"Refrigerator",
|
|
5449
|
-
"Regex",
|
|
5450
|
-
"RemoveFormatting",
|
|
5451
|
-
"Repeat",
|
|
5452
|
-
"Repeat1",
|
|
5453
|
-
"Repeat2",
|
|
5454
|
-
"RepeatOff",
|
|
5455
|
-
"Replace",
|
|
5456
|
-
"ReplaceAll",
|
|
5457
|
-
"Reply",
|
|
5458
|
-
"ReplyAll",
|
|
5459
|
-
"Rewind",
|
|
5460
|
-
"Ribbon",
|
|
5461
|
-
"Road",
|
|
5462
|
-
"Rocket",
|
|
5463
|
-
"RockingChair",
|
|
5464
|
-
"RollerCoaster",
|
|
5465
|
-
"Rose",
|
|
5466
|
-
"Rotate3D",
|
|
5467
|
-
"RotateCcw",
|
|
5468
|
-
"RotateCcwKey",
|
|
5469
|
-
"RotateCcwSquare",
|
|
5470
|
-
"RotateCw",
|
|
5471
|
-
"RotateCwSquare",
|
|
5472
|
-
"Route",
|
|
5473
|
-
"RouteOff",
|
|
5474
|
-
"Router",
|
|
5475
|
-
"Rows",
|
|
5476
|
-
"Rows2",
|
|
5477
|
-
"Rows3",
|
|
5478
|
-
"Rows4",
|
|
5479
|
-
"Rss",
|
|
5480
|
-
"Ruler",
|
|
5481
|
-
"RulerDimensionLine",
|
|
5482
|
-
"RussianRuble",
|
|
5483
|
-
"Sailboat",
|
|
5484
|
-
"Salad",
|
|
5485
|
-
"Sandwich",
|
|
5486
|
-
"Satellite",
|
|
5487
|
-
"SatelliteDish",
|
|
5488
|
-
"SaudiRiyal",
|
|
5489
|
-
"Save",
|
|
5490
|
-
"SaveAll",
|
|
5491
|
-
"SaveOff",
|
|
5492
|
-
"Scale",
|
|
5493
|
-
"Scale3D",
|
|
5494
|
-
"Scaling",
|
|
5495
|
-
"Scan",
|
|
5496
|
-
"ScanBarcode",
|
|
5497
|
-
"ScanEye",
|
|
5498
|
-
"ScanFace",
|
|
5499
|
-
"ScanHeart",
|
|
5500
|
-
"ScanLine",
|
|
5501
|
-
"ScanQrCode",
|
|
5502
|
-
"ScanSearch",
|
|
5503
|
-
"ScanText",
|
|
5504
|
-
"ScatterChart",
|
|
5505
|
-
"School",
|
|
5506
|
-
"School2",
|
|
5507
|
-
"Scissors",
|
|
5508
|
-
"ScissorsLineDashed",
|
|
5509
|
-
"ScissorsSquare",
|
|
5510
|
-
"ScissorsSquareDashedBottom",
|
|
5511
|
-
"Scooter",
|
|
5512
|
-
"ScreenShare",
|
|
5513
|
-
"ScreenShareOff",
|
|
5514
|
-
"Scroll",
|
|
5515
|
-
"ScrollText",
|
|
5516
|
-
"Search",
|
|
5517
|
-
"SearchAlert",
|
|
5518
|
-
"SearchCheck",
|
|
5519
|
-
"SearchCode",
|
|
5520
|
-
"SearchSlash",
|
|
5521
|
-
"SearchX",
|
|
5522
|
-
"Section",
|
|
5523
|
-
"Send",
|
|
5524
|
-
"SendHorizonal",
|
|
5525
|
-
"SendHorizontal",
|
|
5526
|
-
"SendToBack",
|
|
5527
|
-
"SeparatorHorizontal",
|
|
5528
|
-
"SeparatorVertical",
|
|
5529
|
-
"Server",
|
|
5530
|
-
"ServerCog",
|
|
5531
|
-
"ServerCrash",
|
|
5532
|
-
"ServerOff",
|
|
5533
|
-
"Settings",
|
|
5534
|
-
"Settings2",
|
|
5535
|
-
"Shapes",
|
|
5536
|
-
"Share",
|
|
5537
|
-
"Share2",
|
|
5538
|
-
"Sheet",
|
|
5539
|
-
"Shell",
|
|
5540
|
-
"ShelvingUnit",
|
|
5541
|
-
"Shield",
|
|
5542
|
-
"ShieldAlert",
|
|
5543
|
-
"ShieldBan",
|
|
5544
|
-
"ShieldCheck",
|
|
5545
|
-
"ShieldClose",
|
|
5546
|
-
"ShieldCog",
|
|
5547
|
-
"ShieldCogCorner",
|
|
5548
|
-
"ShieldEllipsis",
|
|
5549
|
-
"ShieldHalf",
|
|
5550
|
-
"ShieldMinus",
|
|
5551
|
-
"ShieldOff",
|
|
5552
|
-
"ShieldPlus",
|
|
5553
|
-
"ShieldQuestion",
|
|
5554
|
-
"ShieldQuestionMark",
|
|
5555
|
-
"ShieldUser",
|
|
5556
|
-
"ShieldX",
|
|
5557
|
-
"Ship",
|
|
5558
|
-
"ShipWheel",
|
|
5559
|
-
"Shirt",
|
|
5560
|
-
"ShoppingBag",
|
|
5561
|
-
"ShoppingBasket",
|
|
5562
|
-
"ShoppingCart",
|
|
5563
|
-
"Shovel",
|
|
5564
|
-
"ShowerHead",
|
|
5565
|
-
"Shredder",
|
|
5566
|
-
"Shrimp",
|
|
5567
|
-
"Shrink",
|
|
5568
|
-
"Shrub",
|
|
5569
|
-
"Shuffle",
|
|
5570
|
-
"Sidebar",
|
|
5571
|
-
"SidebarClose",
|
|
5572
|
-
"SidebarOpen",
|
|
5573
|
-
"Sigma",
|
|
5574
|
-
"SigmaSquare",
|
|
5575
|
-
"Signal",
|
|
5576
|
-
"SignalHigh",
|
|
5577
|
-
"SignalLow",
|
|
5578
|
-
"SignalMedium",
|
|
5579
|
-
"SignalZero",
|
|
5580
|
-
"Signature",
|
|
5581
|
-
"Signpost",
|
|
5582
|
-
"SignpostBig",
|
|
5583
|
-
"Siren",
|
|
5584
|
-
"SkipBack",
|
|
5585
|
-
"SkipForward",
|
|
5586
|
-
"Skull",
|
|
5587
|
-
"Slash",
|
|
5588
|
-
"SlashSquare",
|
|
5589
|
-
"Slice",
|
|
5590
|
-
"Sliders",
|
|
5591
|
-
"SlidersHorizontal",
|
|
5592
|
-
"SlidersVertical",
|
|
5593
|
-
"Smartphone",
|
|
5594
|
-
"SmartphoneCharging",
|
|
5595
|
-
"SmartphoneNfc",
|
|
5596
|
-
"Smile",
|
|
5597
|
-
"SmilePlus",
|
|
5598
|
-
"Snail",
|
|
5599
|
-
"Snowflake",
|
|
5600
|
-
"SoapDispenserDroplet",
|
|
5601
|
-
"Sofa",
|
|
5602
|
-
"SolarPanel",
|
|
5603
|
-
"SortAsc",
|
|
5604
|
-
"SortDesc",
|
|
5605
|
-
"Soup",
|
|
5606
|
-
"Space",
|
|
5607
|
-
"Spade",
|
|
5608
|
-
"Sparkle",
|
|
5609
|
-
"Sparkles",
|
|
5610
|
-
"Speaker",
|
|
5611
|
-
"Speech",
|
|
5612
|
-
"SpellCheck",
|
|
5613
|
-
"SpellCheck2",
|
|
5614
|
-
"Spline",
|
|
5615
|
-
"SplinePointer",
|
|
5616
|
-
"Split",
|
|
5617
|
-
"SplitSquareHorizontal",
|
|
5618
|
-
"SplitSquareVertical",
|
|
5619
|
-
"Spool",
|
|
5620
|
-
"SportShoe",
|
|
5621
|
-
"Spotlight",
|
|
5622
|
-
"SprayCan",
|
|
5623
|
-
"Sprout",
|
|
5624
|
-
"Square",
|
|
5625
|
-
"SquareActivity",
|
|
5626
|
-
"SquareArrowDown",
|
|
5627
|
-
"SquareArrowDownLeft",
|
|
5628
|
-
"SquareArrowDownRight",
|
|
5629
|
-
"SquareArrowLeft",
|
|
5630
|
-
"SquareArrowOutDownLeft",
|
|
5631
|
-
"SquareArrowOutDownRight",
|
|
5632
|
-
"SquareArrowOutUpLeft",
|
|
5633
|
-
"SquareArrowOutUpRight",
|
|
5634
|
-
"SquareArrowRight",
|
|
5635
|
-
"SquareArrowRightEnter",
|
|
5636
|
-
"SquareArrowRightExit",
|
|
5637
|
-
"SquareArrowUp",
|
|
5638
|
-
"SquareArrowUpLeft",
|
|
5639
|
-
"SquareArrowUpRight",
|
|
5640
|
-
"SquareAsterisk",
|
|
5641
|
-
"SquareBottomDashedScissors",
|
|
5642
|
-
"SquareCenterlineDashedHorizontal",
|
|
5643
|
-
"SquareCenterlineDashedVertical",
|
|
5644
|
-
"SquareChartGantt",
|
|
5645
|
-
"SquareCheck",
|
|
5646
|
-
"SquareCheckBig",
|
|
5647
|
-
"SquareChevronDown",
|
|
5648
|
-
"SquareChevronLeft",
|
|
5649
|
-
"SquareChevronRight",
|
|
5650
|
-
"SquareChevronUp",
|
|
5651
|
-
"SquareCode",
|
|
5652
|
-
"SquareDashed",
|
|
5653
|
-
"SquareDashedBottom",
|
|
5654
|
-
"SquareDashedBottomCode",
|
|
5655
|
-
"SquareDashedKanban",
|
|
5656
|
-
"SquareDashedMousePointer",
|
|
5657
|
-
"SquareDashedText",
|
|
5658
|
-
"SquareDashedTopSolid",
|
|
5659
|
-
"SquareDivide",
|
|
5660
|
-
"SquareDot",
|
|
5661
|
-
"SquareEqual",
|
|
5662
|
-
"SquareFunction",
|
|
5663
|
-
"SquareGanttChart",
|
|
5664
|
-
"SquareKanban",
|
|
5665
|
-
"SquareLibrary",
|
|
5666
|
-
"SquareM",
|
|
5667
|
-
"SquareMenu",
|
|
5668
|
-
"SquareMinus",
|
|
5669
|
-
"SquareMousePointer",
|
|
5670
|
-
"SquareParking",
|
|
5671
|
-
"SquareParkingOff",
|
|
5672
|
-
"SquarePause",
|
|
5673
|
-
"SquarePen",
|
|
5674
|
-
"SquarePercent",
|
|
5675
|
-
"SquarePi",
|
|
5676
|
-
"SquarePilcrow",
|
|
5677
|
-
"SquarePlay",
|
|
5678
|
-
"SquarePlus",
|
|
5679
|
-
"SquarePower",
|
|
5680
|
-
"SquareRadical",
|
|
5681
|
-
"SquareRoundCorner",
|
|
5682
|
-
"SquareScissors",
|
|
5683
|
-
"SquareSigma",
|
|
5684
|
-
"SquareSlash",
|
|
5685
|
-
"SquareSplitHorizontal",
|
|
5686
|
-
"SquareSplitVertical",
|
|
5687
|
-
"SquareSquare",
|
|
5688
|
-
"SquareStack",
|
|
5689
|
-
"SquareStar",
|
|
5690
|
-
"SquareStop",
|
|
5691
|
-
"SquareTerminal",
|
|
5692
|
-
"SquareUser",
|
|
5693
|
-
"SquareUserRound",
|
|
5694
|
-
"SquareX",
|
|
5695
|
-
"SquaresExclude",
|
|
5696
|
-
"SquaresIntersect",
|
|
5697
|
-
"SquaresSubtract",
|
|
5698
|
-
"SquaresUnite",
|
|
5699
|
-
"Squircle",
|
|
5700
|
-
"SquircleDashed",
|
|
5701
|
-
"Squirrel",
|
|
5702
|
-
"Stamp",
|
|
5703
|
-
"Star",
|
|
5704
|
-
"StarHalf",
|
|
5705
|
-
"StarOff",
|
|
5706
|
-
"Stars",
|
|
5707
|
-
"StepBack",
|
|
5708
|
-
"StepForward",
|
|
5709
|
-
"Stethoscope",
|
|
5710
|
-
"Sticker",
|
|
5711
|
-
"StickyNote",
|
|
5712
|
-
"Stone",
|
|
5713
|
-
"StopCircle",
|
|
5714
|
-
"Store",
|
|
5715
|
-
"StretchHorizontal",
|
|
5716
|
-
"StretchVertical",
|
|
5717
|
-
"Strikethrough",
|
|
5718
|
-
"Subscript",
|
|
5719
|
-
"Subtitles",
|
|
5720
|
-
"Sun",
|
|
5721
|
-
"SunDim",
|
|
5722
|
-
"SunMedium",
|
|
5723
|
-
"SunMoon",
|
|
5724
|
-
"SunSnow",
|
|
5725
|
-
"Sunrise",
|
|
5726
|
-
"Sunset",
|
|
5727
|
-
"Superscript",
|
|
5728
|
-
"SwatchBook",
|
|
5729
|
-
"SwissFranc",
|
|
5730
|
-
"SwitchCamera",
|
|
5731
|
-
"Sword",
|
|
5732
|
-
"Swords",
|
|
5733
|
-
"Syringe",
|
|
5734
|
-
"Table",
|
|
5735
|
-
"Table2",
|
|
5736
|
-
"TableCellsMerge",
|
|
5737
|
-
"TableCellsSplit",
|
|
5738
|
-
"TableColumnsSplit",
|
|
5739
|
-
"TableConfig",
|
|
5740
|
-
"TableOfContents",
|
|
5741
|
-
"TableProperties",
|
|
5742
|
-
"TableRowsSplit",
|
|
5743
|
-
"Tablet",
|
|
5744
|
-
"TabletSmartphone",
|
|
5745
|
-
"Tablets",
|
|
5746
|
-
"Tag",
|
|
5747
|
-
"Tags",
|
|
5748
|
-
"Tally1",
|
|
5749
|
-
"Tally2",
|
|
5750
|
-
"Tally3",
|
|
5751
|
-
"Tally4",
|
|
5752
|
-
"Tally5",
|
|
5753
|
-
"Tangent",
|
|
5754
|
-
"Target",
|
|
5755
|
-
"Telescope",
|
|
5756
|
-
"Tent",
|
|
5757
|
-
"TentTree",
|
|
5758
|
-
"Terminal",
|
|
5759
|
-
"TerminalSquare",
|
|
5760
|
-
"TestTube",
|
|
5761
|
-
"TestTube2",
|
|
5762
|
-
"TestTubeDiagonal",
|
|
5763
|
-
"TestTubes",
|
|
5764
|
-
"Text",
|
|
5765
|
-
"TextAlignCenter",
|
|
5766
|
-
"TextAlignEnd",
|
|
5767
|
-
"TextAlignJustify",
|
|
5768
|
-
"TextAlignStart",
|
|
5769
|
-
"TextCursor",
|
|
5770
|
-
"TextCursorInput",
|
|
5771
|
-
"TextInitial",
|
|
5772
|
-
"TextQuote",
|
|
5773
|
-
"TextSearch",
|
|
5774
|
-
"TextSelect",
|
|
5775
|
-
"TextSelection",
|
|
5776
|
-
"TextWrap",
|
|
5777
|
-
"Theater",
|
|
5778
|
-
"Thermometer",
|
|
5779
|
-
"ThermometerSnowflake",
|
|
5780
|
-
"ThermometerSun",
|
|
5781
|
-
"ThumbsDown",
|
|
5782
|
-
"ThumbsUp",
|
|
5783
|
-
"Ticket",
|
|
5784
|
-
"TicketCheck",
|
|
5785
|
-
"TicketMinus",
|
|
5786
|
-
"TicketPercent",
|
|
5787
|
-
"TicketPlus",
|
|
5788
|
-
"TicketSlash",
|
|
5789
|
-
"TicketX",
|
|
5790
|
-
"Tickets",
|
|
5791
|
-
"TicketsPlane",
|
|
5792
|
-
"Timeline",
|
|
5793
|
-
"Timer",
|
|
5794
|
-
"TimerOff",
|
|
5795
|
-
"TimerReset",
|
|
5796
|
-
"ToggleLeft",
|
|
5797
|
-
"ToggleRight",
|
|
5798
|
-
"Toilet",
|
|
5799
|
-
"ToolCase",
|
|
5800
|
-
"Toolbox",
|
|
5801
|
-
"Tornado",
|
|
5802
|
-
"Torus",
|
|
5803
|
-
"Touchpad",
|
|
5804
|
-
"TouchpadOff",
|
|
5805
|
-
"TowelRack",
|
|
5806
|
-
"TowerControl",
|
|
5807
|
-
"ToyBrick",
|
|
5808
|
-
"Tractor",
|
|
5809
|
-
"TrafficCone",
|
|
5810
|
-
"Train",
|
|
5811
|
-
"TrainFront",
|
|
5812
|
-
"TrainFrontTunnel",
|
|
5813
|
-
"TrainTrack",
|
|
5814
|
-
"TramFront",
|
|
5815
|
-
"Transgender",
|
|
5816
|
-
"Trash",
|
|
5817
|
-
"Trash2",
|
|
5818
|
-
"TreeDeciduous",
|
|
5819
|
-
"TreePalm",
|
|
5820
|
-
"TreePine",
|
|
5821
|
-
"Trees",
|
|
5822
|
-
"TrendingDown",
|
|
5823
|
-
"TrendingUp",
|
|
5824
|
-
"TrendingUpDown",
|
|
5825
|
-
"Triangle",
|
|
5826
|
-
"TriangleAlert",
|
|
5827
|
-
"TriangleDashed",
|
|
5828
|
-
"TriangleRight",
|
|
5829
|
-
"Trophy",
|
|
5830
|
-
"Truck",
|
|
5831
|
-
"TruckElectric",
|
|
5832
|
-
"TurkishLira",
|
|
5833
|
-
"Turntable",
|
|
5834
|
-
"Turtle",
|
|
5835
|
-
"Tv",
|
|
5836
|
-
"Tv2",
|
|
5837
|
-
"TvMinimal",
|
|
5838
|
-
"TvMinimalPlay",
|
|
5839
|
-
"Type",
|
|
5840
|
-
"TypeOutline",
|
|
5841
|
-
"Umbrella",
|
|
5842
|
-
"UmbrellaOff",
|
|
5843
|
-
"Underline",
|
|
5844
|
-
"Undo",
|
|
5845
|
-
"Undo2",
|
|
5846
|
-
"UndoDot",
|
|
5847
|
-
"UnfoldHorizontal",
|
|
5848
|
-
"UnfoldVertical",
|
|
5849
|
-
"Ungroup",
|
|
5850
|
-
"University",
|
|
5851
|
-
"Unlink",
|
|
5852
|
-
"Unlink2",
|
|
5853
|
-
"Unlock",
|
|
5854
|
-
"UnlockKeyhole",
|
|
5855
|
-
"Unplug",
|
|
5856
|
-
"Upload",
|
|
5857
|
-
"UploadCloud",
|
|
5858
|
-
"Usb",
|
|
5859
|
-
"User",
|
|
5860
|
-
"User2",
|
|
5861
|
-
"UserCheck",
|
|
5862
|
-
"UserCheck2",
|
|
5863
|
-
"UserCircle",
|
|
5864
|
-
"UserCircle2",
|
|
5865
|
-
"UserCog",
|
|
5866
|
-
"UserCog2",
|
|
5867
|
-
"UserKey",
|
|
5868
|
-
"UserLock",
|
|
5869
|
-
"UserMinus",
|
|
5870
|
-
"UserMinus2",
|
|
5871
|
-
"UserPen",
|
|
5872
|
-
"UserPlus",
|
|
5873
|
-
"UserPlus2",
|
|
5874
|
-
"UserRound",
|
|
5875
|
-
"UserRoundCheck",
|
|
5876
|
-
"UserRoundCog",
|
|
5877
|
-
"UserRoundKey",
|
|
5878
|
-
"UserRoundMinus",
|
|
5879
|
-
"UserRoundPen",
|
|
5880
|
-
"UserRoundPlus",
|
|
5881
|
-
"UserRoundSearch",
|
|
5882
|
-
"UserRoundX",
|
|
5883
|
-
"UserSearch",
|
|
5884
|
-
"UserSquare",
|
|
5885
|
-
"UserSquare2",
|
|
5886
|
-
"UserStar",
|
|
5887
|
-
"UserX",
|
|
5888
|
-
"UserX2",
|
|
5889
|
-
"Users",
|
|
5890
|
-
"Users2",
|
|
5891
|
-
"UsersRound",
|
|
5892
|
-
"Utensils",
|
|
5893
|
-
"UtensilsCrossed",
|
|
5894
|
-
"UtilityPole",
|
|
5895
|
-
"Van",
|
|
5896
|
-
"Variable",
|
|
5897
|
-
"Vault",
|
|
5898
|
-
"VectorSquare",
|
|
5899
|
-
"Vegan",
|
|
5900
|
-
"VenetianMask",
|
|
5901
|
-
"Venus",
|
|
5902
|
-
"VenusAndMars",
|
|
5903
|
-
"Verified",
|
|
5904
|
-
"Vibrate",
|
|
5905
|
-
"VibrateOff",
|
|
5906
|
-
"Video",
|
|
5907
|
-
"VideoOff",
|
|
5908
|
-
"Videotape",
|
|
5909
|
-
"View",
|
|
5910
|
-
"Voicemail",
|
|
5911
|
-
"Volleyball",
|
|
5912
|
-
"Volume",
|
|
5913
|
-
"Volume1",
|
|
5914
|
-
"Volume2",
|
|
5915
|
-
"VolumeOff",
|
|
5916
|
-
"VolumeX",
|
|
5917
|
-
"Vote",
|
|
5918
|
-
"Wallet",
|
|
5919
|
-
"Wallet2",
|
|
5920
|
-
"WalletCards",
|
|
5921
|
-
"WalletMinimal",
|
|
5922
|
-
"Wallpaper",
|
|
5923
|
-
"Wand",
|
|
5924
|
-
"Wand2",
|
|
5925
|
-
"WandSparkles",
|
|
5926
|
-
"Warehouse",
|
|
5927
|
-
"WashingMachine",
|
|
5928
|
-
"Watch",
|
|
5929
|
-
"Waves",
|
|
5930
|
-
"WavesArrowDown",
|
|
5931
|
-
"WavesArrowUp",
|
|
5932
|
-
"WavesHorizontal",
|
|
5933
|
-
"WavesLadder",
|
|
5934
|
-
"WavesVertical",
|
|
5935
|
-
"Waypoints",
|
|
5936
|
-
"Webcam",
|
|
5937
|
-
"Webhook",
|
|
5938
|
-
"WebhookOff",
|
|
5939
|
-
"Weight",
|
|
5940
|
-
"WeightTilde",
|
|
5941
|
-
"Wheat",
|
|
5942
|
-
"WheatOff",
|
|
5943
|
-
"WholeWord",
|
|
5944
|
-
"Wifi",
|
|
5945
|
-
"WifiCog",
|
|
5946
|
-
"WifiHigh",
|
|
5947
|
-
"WifiLow",
|
|
5948
|
-
"WifiOff",
|
|
5949
|
-
"WifiPen",
|
|
5950
|
-
"WifiSync",
|
|
5951
|
-
"WifiZero",
|
|
5952
|
-
"Wind",
|
|
5953
|
-
"WindArrowDown",
|
|
5954
|
-
"Wine",
|
|
5955
|
-
"WineOff",
|
|
5956
|
-
"Workflow",
|
|
5957
|
-
"Worm",
|
|
5958
|
-
"WrapText",
|
|
5959
|
-
"Wrench",
|
|
5960
|
-
"X",
|
|
5961
|
-
"XCircle",
|
|
5962
|
-
"XLineTop",
|
|
5963
|
-
"XOctagon",
|
|
5964
|
-
"XSquare",
|
|
5965
|
-
"Zap",
|
|
5966
|
-
"ZapOff",
|
|
5967
|
-
"ZodiacAquarius",
|
|
5968
|
-
"ZodiacAries",
|
|
5969
|
-
"ZodiacCancer",
|
|
5970
|
-
"ZodiacCapricorn",
|
|
5971
|
-
"ZodiacGemini",
|
|
5972
|
-
"ZodiacLeo",
|
|
5973
|
-
"ZodiacLibra",
|
|
5974
|
-
"ZodiacOphiuchus",
|
|
5975
|
-
"ZodiacPisces",
|
|
5976
|
-
"ZodiacSagittarius",
|
|
5977
|
-
"ZodiacScorpio",
|
|
5978
|
-
"ZodiacTaurus",
|
|
5979
|
-
"ZodiacVirgo",
|
|
5980
|
-
"ZoomIn",
|
|
5981
|
-
"ZoomOut"
|
|
5982
|
-
];
|
|
5983
|
-
//#endregion
|
|
5984
|
-
//#region src/icons/cool_icon_keys.ts
|
|
5985
|
-
var coolIconKeys = [
|
|
5986
|
-
"Rows4",
|
|
5987
|
-
"Video",
|
|
5988
|
-
"Plane",
|
|
5989
|
-
"LayoutDashboard",
|
|
5990
|
-
"LayoutGrid",
|
|
5991
|
-
"Square",
|
|
5992
|
-
"Snowflake",
|
|
5993
|
-
"CircleDashed",
|
|
5994
|
-
"AlignCenterHorizontal",
|
|
5995
|
-
"Disc",
|
|
5996
|
-
"Infinity",
|
|
5997
|
-
"Maximize",
|
|
5998
|
-
"Play",
|
|
5999
|
-
"Sparkles",
|
|
6000
|
-
"Music",
|
|
6001
|
-
"Wallet",
|
|
6002
|
-
"Layout",
|
|
6003
|
-
"Zap",
|
|
6004
|
-
"Circle",
|
|
6005
|
-
"Coffee",
|
|
6006
|
-
"ImageOff",
|
|
6007
|
-
"Sun",
|
|
6008
|
-
"Cable",
|
|
6009
|
-
"CalendarDays",
|
|
6010
|
-
"Dices",
|
|
6011
|
-
"Shapes",
|
|
6012
|
-
"Cloud",
|
|
6013
|
-
"Palette",
|
|
6014
|
-
"CreditCard",
|
|
6015
|
-
"Headphones",
|
|
6016
|
-
"Egg",
|
|
6017
|
-
"Disc3",
|
|
6018
|
-
"Flag",
|
|
6019
|
-
"Bandage",
|
|
6020
|
-
"Thermometer",
|
|
6021
|
-
"Hexagon",
|
|
6022
|
-
"Network",
|
|
6023
|
-
"Library",
|
|
6024
|
-
"Pizza",
|
|
6025
|
-
"Cpu",
|
|
6026
|
-
"Plug",
|
|
6027
|
-
"Files",
|
|
6028
|
-
"Globe",
|
|
6029
|
-
"SignalZero",
|
|
6030
|
-
"Gamepad2",
|
|
6031
|
-
"CloudLightning",
|
|
6032
|
-
"ListTree",
|
|
6033
|
-
"Command"
|
|
6034
|
-
];
|
|
4039
|
+
//#region src/components/VirtualTable/selection/SelectionStore.ts
|
|
4040
|
+
function createVirtualTableSelectionStore() {
|
|
4041
|
+
let selectedCell = void 0;
|
|
4042
|
+
const listeners = /* @__PURE__ */ new Set();
|
|
4043
|
+
function getSnapshot() {
|
|
4044
|
+
return selectedCell;
|
|
4045
|
+
}
|
|
4046
|
+
function subscribe(listener) {
|
|
4047
|
+
listeners.add(listener);
|
|
4048
|
+
return () => listeners.delete(listener);
|
|
4049
|
+
}
|
|
4050
|
+
function select(cell) {
|
|
4051
|
+
selectedCell = cell;
|
|
4052
|
+
listeners.forEach((l) => l());
|
|
4053
|
+
}
|
|
4054
|
+
return {
|
|
4055
|
+
getSnapshot,
|
|
4056
|
+
subscribe,
|
|
4057
|
+
select
|
|
4058
|
+
};
|
|
4059
|
+
}
|
|
4060
|
+
function useVirtualTableCellSelected(store, columnKey, rowId) {
|
|
4061
|
+
const selectorRef = useRef({
|
|
4062
|
+
columnKey,
|
|
4063
|
+
rowId
|
|
4064
|
+
});
|
|
4065
|
+
selectorRef.current = {
|
|
4066
|
+
columnKey,
|
|
4067
|
+
rowId
|
|
4068
|
+
};
|
|
4069
|
+
const getSnapshot = useCallback(() => {
|
|
4070
|
+
const cell = store.getSnapshot();
|
|
4071
|
+
if (!cell) return false;
|
|
4072
|
+
const s = selectorRef.current;
|
|
4073
|
+
return cell.columnKey === s.columnKey && cell.rowId === s.rowId;
|
|
4074
|
+
}, [store]);
|
|
4075
|
+
return useSyncExternalStore(store.subscribe, getSnapshot, getSnapshot);
|
|
4076
|
+
}
|
|
6035
4077
|
//#endregion
|
|
6036
|
-
//#region src/
|
|
6037
|
-
|
|
6038
|
-
|
|
6039
|
-
|
|
6040
|
-
|
|
6041
|
-
|
|
6042
|
-
|
|
6043
|
-
|
|
6044
|
-
|
|
6045
|
-
children
|
|
4078
|
+
//#region src/components/VirtualTable/selection/SelectionContext.tsx
|
|
4079
|
+
var SelectionContext = createContext(null);
|
|
4080
|
+
var VirtualTableSelectionProvider = ({ store, children }) => {
|
|
4081
|
+
const value = React.useMemo(() => ({
|
|
4082
|
+
selectionStore: store,
|
|
4083
|
+
select: store.select
|
|
4084
|
+
}), [store]);
|
|
4085
|
+
return /* @__PURE__ */ jsx(SelectionContext.Provider, {
|
|
4086
|
+
value,
|
|
4087
|
+
children
|
|
6046
4088
|
});
|
|
6047
|
-
}
|
|
4089
|
+
};
|
|
4090
|
+
var useVirtualTableSelection = () => {
|
|
4091
|
+
const context = useContext(SelectionContext);
|
|
4092
|
+
if (!context) throw new Error("useVirtualTableSelection must be used within a VirtualTableSelectionProvider");
|
|
4093
|
+
return context;
|
|
4094
|
+
};
|
|
6048
4095
|
//#endregion
|
|
6049
|
-
//#region src/
|
|
6050
|
-
function
|
|
6051
|
-
|
|
6052
|
-
|
|
6053
|
-
|
|
6054
|
-
|
|
6055
|
-
|
|
6056
|
-
|
|
6057
|
-
|
|
6058
|
-
|
|
6059
|
-
|
|
6060
|
-
|
|
6061
|
-
|
|
6062
|
-
|
|
6063
|
-
|
|
6064
|
-
|
|
6065
|
-
|
|
6066
|
-
|
|
6067
|
-
|
|
6068
|
-
|
|
6069
|
-
|
|
6070
|
-
|
|
6071
|
-
|
|
6072
|
-
|
|
6073
|
-
|
|
6074
|
-
|
|
6075
|
-
|
|
6076
|
-
|
|
6077
|
-
|
|
6078
|
-
|
|
6079
|
-
|
|
6080
|
-
|
|
6081
|
-
|
|
6082
|
-
|
|
6083
|
-
|
|
6084
|
-
|
|
6085
|
-
|
|
6086
|
-
|
|
6087
|
-
|
|
6088
|
-
|
|
6089
|
-
|
|
6090
|
-
|
|
6091
|
-
|
|
4096
|
+
//#region src/components/VirtualTable/fields/VirtualTableInput.tsx
|
|
4097
|
+
function VirtualTableInput(props) {
|
|
4098
|
+
const ref = React.useRef(null);
|
|
4099
|
+
const { disabled, value, multiline = false, updateValue, focused } = props;
|
|
4100
|
+
const prevValue = useRef(value);
|
|
4101
|
+
const [internalValue, setInternalValue] = useState(value);
|
|
4102
|
+
const focusedState = useRef(false);
|
|
4103
|
+
useEffect(() => {
|
|
4104
|
+
if (prevValue.current !== value && value !== internalValue) setInternalValue(value);
|
|
4105
|
+
prevValue.current = value;
|
|
4106
|
+
}, [value]);
|
|
4107
|
+
const doUpdate = React.useCallback(() => {
|
|
4108
|
+
if (!value && !internalValue) return;
|
|
4109
|
+
if (internalValue !== value && internalValue !== prevValue.current) {
|
|
4110
|
+
prevValue.current = internalValue;
|
|
4111
|
+
updateValue(internalValue);
|
|
4112
|
+
}
|
|
4113
|
+
}, [
|
|
4114
|
+
internalValue,
|
|
4115
|
+
updateValue,
|
|
4116
|
+
value
|
|
4117
|
+
]);
|
|
4118
|
+
useDebouncedCallback(internalValue, doUpdate, !focused, 400);
|
|
4119
|
+
useEffect(() => {
|
|
4120
|
+
if (ref.current && focused && !focusedState.current) {
|
|
4121
|
+
focusedState.current = true;
|
|
4122
|
+
ref.current.focus({ preventScroll: true });
|
|
4123
|
+
ref.current.selectionStart = ref.current.value.length;
|
|
4124
|
+
ref.current.selectionEnd = ref.current.value.length;
|
|
4125
|
+
} else focusedState.current = focused;
|
|
4126
|
+
}, [focused, ref]);
|
|
4127
|
+
return /* @__PURE__ */ jsx(TextareaAutosize, {
|
|
4128
|
+
className: focusedDisabled,
|
|
4129
|
+
ref,
|
|
4130
|
+
style: {
|
|
4131
|
+
padding: 0,
|
|
4132
|
+
margin: 0,
|
|
4133
|
+
width: "100%",
|
|
4134
|
+
color: "unset",
|
|
4135
|
+
fontWeight: "unset",
|
|
4136
|
+
fontSize: "unset",
|
|
4137
|
+
fontFamily: "unset",
|
|
4138
|
+
background: "unset",
|
|
4139
|
+
border: "unset",
|
|
4140
|
+
resize: "none",
|
|
4141
|
+
outline: "none"
|
|
4142
|
+
},
|
|
4143
|
+
value: internalValue ?? "",
|
|
4144
|
+
onChange: (evt) => {
|
|
4145
|
+
const newValue = evt.target.value;
|
|
4146
|
+
if (multiline || !newValue.endsWith("\n")) setInternalValue(newValue);
|
|
4147
|
+
},
|
|
4148
|
+
onFocus: () => {
|
|
4149
|
+
focusedState.current = true;
|
|
4150
|
+
},
|
|
4151
|
+
onBlur: () => {
|
|
4152
|
+
focusedState.current = false;
|
|
4153
|
+
doUpdate();
|
|
4154
|
+
if (props.onBlur) props.onBlur();
|
|
4155
|
+
}
|
|
4156
|
+
});
|
|
4157
|
+
}
|
|
4158
|
+
//#endregion
|
|
4159
|
+
//#region src/components/VirtualTable/fields/VirtualTableNumberInput.tsx
|
|
4160
|
+
function VirtualTableNumberInput(props) {
|
|
4161
|
+
const { align = "left", value, updateValue, focused } = props;
|
|
4162
|
+
const propStringValue = value && typeof value === "number" ? value.toString() : "";
|
|
4163
|
+
const [internalValue, setInternalValue] = useState(propStringValue);
|
|
4164
|
+
const prevValue = useRef(value);
|
|
4165
|
+
useEffect(() => {
|
|
4166
|
+
if (prevValue.current !== value && String(value) !== internalValue) setInternalValue(value ? value.toString() : null);
|
|
4167
|
+
prevValue.current = value;
|
|
4168
|
+
}, [value]);
|
|
4169
|
+
useDebouncedCallback(internalValue, React.useCallback(() => {
|
|
4170
|
+
if (internalValue !== propStringValue) if (internalValue !== void 0 && internalValue !== null) {
|
|
4171
|
+
const numberValue = parseFloat(internalValue);
|
|
4172
|
+
if (isNaN(numberValue)) return;
|
|
4173
|
+
updateValue(numberValue);
|
|
4174
|
+
} else updateValue(null);
|
|
4175
|
+
}, [internalValue, value]), !focused, 400);
|
|
4176
|
+
useEffect(() => {
|
|
4177
|
+
if (!focused && propStringValue !== internalValue) setInternalValue(value !== void 0 && value !== null ? value.toString() : null);
|
|
4178
|
+
}, [value, focused]);
|
|
4179
|
+
const inputRef = React.useRef(null);
|
|
4180
|
+
useEffect(() => {
|
|
4181
|
+
if (inputRef.current && focused) inputRef.current.focus({ preventScroll: true });
|
|
4182
|
+
}, [focused, inputRef]);
|
|
4183
|
+
const regexp = /^-?[0-9]+[,.]?[0-9]*$/;
|
|
4184
|
+
return /* @__PURE__ */ jsx(TextField, {
|
|
4185
|
+
inputRef,
|
|
4186
|
+
invisible: true,
|
|
4187
|
+
size: "small",
|
|
4188
|
+
className: "w-full",
|
|
4189
|
+
inputClassName: cls("p-0 m-0 bg-transparent border-none outline-hidden font-normal leading-normal text-unset", focusedDisabled),
|
|
4190
|
+
inputStyle: { textAlign: align },
|
|
4191
|
+
value: internalValue ?? "",
|
|
4192
|
+
onChange: (evt) => {
|
|
4193
|
+
const newValue = evt.target.value.replace(",", ".");
|
|
4194
|
+
if (newValue.length === 0) setInternalValue(null);
|
|
4195
|
+
if (regexp.test(newValue) || newValue.startsWith("-")) setInternalValue(newValue);
|
|
4196
|
+
}
|
|
4197
|
+
});
|
|
4198
|
+
}
|
|
4199
|
+
//#endregion
|
|
4200
|
+
//#region src/components/VirtualTable/fields/VirtualTableSwitch.tsx
|
|
4201
|
+
function VirtualTableSwitch(props) {
|
|
4202
|
+
const { internalValue, updateValue, focused } = props;
|
|
4203
|
+
const ref = React.useRef(null);
|
|
4204
|
+
useEffect(() => {
|
|
4205
|
+
if (ref.current && focused) ref.current.focus({ preventScroll: true });
|
|
4206
|
+
}, [focused, ref]);
|
|
4207
|
+
return /* @__PURE__ */ jsx(BooleanSwitch, {
|
|
4208
|
+
ref,
|
|
4209
|
+
size: "small",
|
|
4210
|
+
value: Boolean(internalValue),
|
|
4211
|
+
onValueChange: updateValue
|
|
4212
|
+
});
|
|
4213
|
+
}
|
|
4214
|
+
//#endregion
|
|
4215
|
+
//#region src/components/VirtualTable/fields/VirtualTableDateField.tsx
|
|
4216
|
+
function VirtualTableDateField(props) {
|
|
4217
|
+
const { disabled, error, mode, timezone, internalValue, updateValue, locale } = props;
|
|
4218
|
+
return /* @__PURE__ */ jsx(DateTimeField, {
|
|
4219
|
+
value: internalValue ?? void 0,
|
|
4220
|
+
onChange: (dateValue) => updateValue(dateValue ?? null),
|
|
4221
|
+
invisible: true,
|
|
4222
|
+
inputClassName: cls("w-full h-full", focusedDisabled),
|
|
4223
|
+
className: cls("w-full h-full", focusedDisabled),
|
|
4224
|
+
mode,
|
|
4225
|
+
timezone,
|
|
4226
|
+
locale
|
|
4227
|
+
});
|
|
4228
|
+
}
|
|
4229
|
+
//#endregion
|
|
4230
|
+
//#region src/components/VirtualTable/fields/VirtualTableSelect.tsx
|
|
4231
|
+
function VirtualTableSelect(props) {
|
|
4232
|
+
const { options, value, disabled, small = false, focused, updateValue, multiple = false } = props;
|
|
4233
|
+
const validValue = Array.isArray(value) && multiple || !Array.isArray(value) && !multiple;
|
|
4234
|
+
const ref = useRef(null);
|
|
4235
|
+
useEffect(() => {
|
|
4236
|
+
if (ref.current && focused) ref.current?.focus({ preventScroll: true });
|
|
4237
|
+
}, [focused, ref]);
|
|
4238
|
+
const onChange = useCallback((updatedValue) => {
|
|
4239
|
+
if (multiple) {
|
|
4240
|
+
const isNumber = options.some((o) => typeof o.value === "number");
|
|
4241
|
+
const newValue = updatedValue.map((v) => {
|
|
4242
|
+
return typeof options.find((o) => String(o.value) === v)?.value === "number" ? parseFloat(v) : v;
|
|
4243
|
+
});
|
|
4244
|
+
if (isNumber) updateValue(newValue);
|
|
4245
|
+
else updateValue(newValue);
|
|
4246
|
+
} else updateValue(typeof options.find((o) => String(o.value) === updatedValue)?.value === "number" ? parseFloat(updatedValue) : updatedValue || null);
|
|
4247
|
+
}, [
|
|
4248
|
+
multiple,
|
|
4249
|
+
updateValue,
|
|
4250
|
+
options
|
|
4251
|
+
]);
|
|
4252
|
+
const renderValue = (val) => {
|
|
4253
|
+
const option = options.find((o) => o.value === val);
|
|
4254
|
+
return /* @__PURE__ */ jsx(Chip, {
|
|
4255
|
+
size: small ? "small" : "medium",
|
|
4256
|
+
children: option ? option.label : String(val)
|
|
4257
|
+
});
|
|
4258
|
+
};
|
|
4259
|
+
const handleOpenChange = useCallback((open) => {
|
|
4260
|
+
if (!open && ref.current) setTimeout(() => {
|
|
4261
|
+
ref.current?.focus({ preventScroll: true });
|
|
4262
|
+
}, 0);
|
|
4263
|
+
}, []);
|
|
4264
|
+
return multiple ? /* @__PURE__ */ jsx(MultiSelect, {
|
|
4265
|
+
inputRef: ref,
|
|
4266
|
+
className: "w-full h-full p-0 bg-transparent outline-none",
|
|
4267
|
+
position: "item-aligned",
|
|
4268
|
+
disabled,
|
|
4269
|
+
includeClear: false,
|
|
4270
|
+
useChips: false,
|
|
4271
|
+
value: validValue ? value.map((v) => String(v)) : [],
|
|
4272
|
+
onValueChange: onChange,
|
|
4273
|
+
onOpenChange: handleOpenChange,
|
|
4274
|
+
children: options.map((opt) => /* @__PURE__ */ jsx(MultiSelectItem, {
|
|
4275
|
+
value: String(opt.value),
|
|
4276
|
+
children: /* @__PURE__ */ jsx(Chip, {
|
|
4277
|
+
size: small ? "small" : "medium",
|
|
4278
|
+
children: opt.label
|
|
6092
4279
|
})
|
|
6093
|
-
|
|
4280
|
+
}, String(opt.value)))
|
|
4281
|
+
}) : /* @__PURE__ */ jsx(Select, {
|
|
4282
|
+
inputRef: ref,
|
|
4283
|
+
fullWidth: true,
|
|
4284
|
+
className: "w-full h-full p-0 bg-transparent outline-none [&_button]:ring-0 [&_button]:ring-offset-0",
|
|
4285
|
+
inputClassName: "ring-0 ring-offset-0 focus:ring-0 focus-visible:ring-0 outline-none focus:outline-none focus-visible:outline-none focus-visible:ring-offset-0",
|
|
4286
|
+
position: "item-aligned",
|
|
4287
|
+
disabled,
|
|
4288
|
+
padding: false,
|
|
4289
|
+
value: validValue ? String(value) : "",
|
|
4290
|
+
onValueChange: onChange,
|
|
4291
|
+
onOpenChange: handleOpenChange,
|
|
4292
|
+
renderValue,
|
|
4293
|
+
children: options.map((opt) => /* @__PURE__ */ jsx(SelectItem, {
|
|
4294
|
+
value: String(opt.value),
|
|
4295
|
+
children: /* @__PURE__ */ jsx(Chip, {
|
|
4296
|
+
size: small ? "small" : "medium",
|
|
4297
|
+
children: opt.label
|
|
4298
|
+
})
|
|
4299
|
+
}, String(opt.value)))
|
|
6094
4300
|
});
|
|
6095
4301
|
}
|
|
6096
4302
|
//#endregion
|
|
@@ -6467,110 +4673,2161 @@ function CardView({ data, dataLoading = false, noMoreToLoad = false, dataLoading
|
|
|
6467
4673
|
});
|
|
6468
4674
|
}
|
|
6469
4675
|
//#endregion
|
|
6470
|
-
//#region src/views/Kanban/BoardSortableList.tsx
|
|
6471
|
-
function BoardSortableList({ columnId, items, ItemComponent, isDragging, isDragOverColumn, loading = false, hasMore = false, onLoadMore }) {
|
|
6472
|
-
const { setNodeRef } = useDroppable({
|
|
6473
|
-
id: columnId,
|
|
6474
|
-
data: { type: "ITEM-LIST" }
|
|
6475
|
-
});
|
|
6476
|
-
const sentinelRef = useRef(null);
|
|
6477
|
-
const isLoadingRef = useRef(loading);
|
|
6478
|
-
isLoadingRef.current = loading;
|
|
6479
|
-
const lastLoadTimeRef = useRef(0);
|
|
6480
|
-
useEffect(() => {
|
|
6481
|
-
if (!sentinelRef.current || !hasMore || !onLoadMore) return;
|
|
6482
|
-
const sentinel = sentinelRef.current;
|
|
6483
|
-
const observer = new IntersectionObserver((entries) => {
|
|
6484
|
-
const now = Date.now();
|
|
6485
|
-
if (entries[0].isIntersecting && hasMore && !isLoadingRef.current && now - lastLoadTimeRef.current > 500) {
|
|
6486
|
-
lastLoadTimeRef.current = now;
|
|
6487
|
-
onLoadMore();
|
|
6488
|
-
}
|
|
6489
|
-
}, { threshold: .1 });
|
|
6490
|
-
observer.observe(sentinel);
|
|
6491
|
-
const rect = sentinel.getBoundingClientRect();
|
|
6492
|
-
const containerRect = sentinel.parentElement?.getBoundingClientRect();
|
|
6493
|
-
if (containerRect && rect.top < containerRect.bottom && rect.bottom > containerRect.top) {
|
|
6494
|
-
const now = Date.now();
|
|
6495
|
-
if (hasMore && !isLoadingRef.current && now - lastLoadTimeRef.current > 500) {
|
|
6496
|
-
lastLoadTimeRef.current = now;
|
|
6497
|
-
onLoadMore();
|
|
6498
|
-
}
|
|
6499
|
-
}
|
|
6500
|
-
return () => observer.disconnect();
|
|
6501
|
-
}, [hasMore, onLoadMore]);
|
|
6502
|
-
return /* @__PURE__ */ jsx("div", {
|
|
6503
|
-
ref: setNodeRef,
|
|
6504
|
-
className: useMemo(() => cls("flex flex-col p-2 transition-opacity duration-100 transition-bg ease-linear w-full overflow-y-auto no-scrollbar flex-1 rounded-md", isDragging && isDragOverColumn ? "bg-surface-accent-200 dark:bg-surface-900" : isDragging ? "bg-surface-50 dark:bg-surface-900 hover:bg-surface-accent-100 dark:hover:bg-surface-800" : "bg-surface-50 dark:bg-surface-900"), [isDragging, isDragOverColumn]),
|
|
6505
|
-
style: { minHeight: 80 },
|
|
6506
|
-
children: /* @__PURE__ */ jsx(SortableContext, {
|
|
6507
|
-
items: items.map((i) => i.id),
|
|
6508
|
-
strategy: verticalListSortingStrategy,
|
|
6509
|
-
children: items.length === 0 && !loading ? /* @__PURE__ */ jsx("div", {
|
|
6510
|
-
className: "flex-1 flex items-center justify-center",
|
|
6511
|
-
children: /* @__PURE__ */ jsx("span", {
|
|
6512
|
-
className: "text-xs text-surface-400 dark:text-surface-500",
|
|
6513
|
-
children: "No items"
|
|
6514
|
-
})
|
|
6515
|
-
}) : /* @__PURE__ */ jsxs(Fragment, { children: [items.map((item, index) => /* @__PURE__ */ jsx(SortableItem, {
|
|
6516
|
-
item,
|
|
6517
|
-
index,
|
|
6518
|
-
columnId,
|
|
6519
|
-
ItemComponent
|
|
6520
|
-
}, item.id)), (loading || hasMore) && /* @__PURE__ */ jsx("div", {
|
|
6521
|
-
ref: sentinelRef,
|
|
6522
|
-
className: "flex items-center justify-center py-2 min-h-6",
|
|
6523
|
-
children: loading && /* @__PURE__ */ jsx(CircularProgress, { size: "smallest" })
|
|
6524
|
-
})] })
|
|
6525
|
-
})
|
|
4676
|
+
//#region src/views/Kanban/BoardSortableList.tsx
|
|
4677
|
+
function BoardSortableList({ columnId, items, ItemComponent, isDragging, isDragOverColumn, loading = false, hasMore = false, onLoadMore }) {
|
|
4678
|
+
const { setNodeRef } = useDroppable({
|
|
4679
|
+
id: columnId,
|
|
4680
|
+
data: { type: "ITEM-LIST" }
|
|
4681
|
+
});
|
|
4682
|
+
const sentinelRef = useRef(null);
|
|
4683
|
+
const isLoadingRef = useRef(loading);
|
|
4684
|
+
isLoadingRef.current = loading;
|
|
4685
|
+
const lastLoadTimeRef = useRef(0);
|
|
4686
|
+
useEffect(() => {
|
|
4687
|
+
if (!sentinelRef.current || !hasMore || !onLoadMore) return;
|
|
4688
|
+
const sentinel = sentinelRef.current;
|
|
4689
|
+
const observer = new IntersectionObserver((entries) => {
|
|
4690
|
+
const now = Date.now();
|
|
4691
|
+
if (entries[0].isIntersecting && hasMore && !isLoadingRef.current && now - lastLoadTimeRef.current > 500) {
|
|
4692
|
+
lastLoadTimeRef.current = now;
|
|
4693
|
+
onLoadMore();
|
|
4694
|
+
}
|
|
4695
|
+
}, { threshold: .1 });
|
|
4696
|
+
observer.observe(sentinel);
|
|
4697
|
+
const rect = sentinel.getBoundingClientRect();
|
|
4698
|
+
const containerRect = sentinel.parentElement?.getBoundingClientRect();
|
|
4699
|
+
if (containerRect && rect.top < containerRect.bottom && rect.bottom > containerRect.top) {
|
|
4700
|
+
const now = Date.now();
|
|
4701
|
+
if (hasMore && !isLoadingRef.current && now - lastLoadTimeRef.current > 500) {
|
|
4702
|
+
lastLoadTimeRef.current = now;
|
|
4703
|
+
onLoadMore();
|
|
4704
|
+
}
|
|
4705
|
+
}
|
|
4706
|
+
return () => observer.disconnect();
|
|
4707
|
+
}, [hasMore, onLoadMore]);
|
|
4708
|
+
return /* @__PURE__ */ jsx("div", {
|
|
4709
|
+
ref: setNodeRef,
|
|
4710
|
+
className: useMemo(() => cls("flex flex-col p-2 transition-opacity duration-100 transition-bg ease-linear w-full overflow-y-auto no-scrollbar flex-1 rounded-md", isDragging && isDragOverColumn ? "bg-surface-accent-200 dark:bg-surface-900" : isDragging ? "bg-surface-50 dark:bg-surface-900 hover:bg-surface-accent-100 dark:hover:bg-surface-800" : "bg-surface-50 dark:bg-surface-900"), [isDragging, isDragOverColumn]),
|
|
4711
|
+
style: { minHeight: 80 },
|
|
4712
|
+
children: /* @__PURE__ */ jsx(SortableContext, {
|
|
4713
|
+
items: items.map((i) => i.id),
|
|
4714
|
+
strategy: verticalListSortingStrategy,
|
|
4715
|
+
children: items.length === 0 && !loading ? /* @__PURE__ */ jsx("div", {
|
|
4716
|
+
className: "flex-1 flex items-center justify-center",
|
|
4717
|
+
children: /* @__PURE__ */ jsx("span", {
|
|
4718
|
+
className: "text-xs text-surface-400 dark:text-surface-500",
|
|
4719
|
+
children: "No items"
|
|
4720
|
+
})
|
|
4721
|
+
}) : /* @__PURE__ */ jsxs(Fragment, { children: [items.map((item, index) => /* @__PURE__ */ jsx(SortableItem, {
|
|
4722
|
+
item,
|
|
4723
|
+
index,
|
|
4724
|
+
columnId,
|
|
4725
|
+
ItemComponent
|
|
4726
|
+
}, item.id)), (loading || hasMore) && /* @__PURE__ */ jsx("div", {
|
|
4727
|
+
ref: sentinelRef,
|
|
4728
|
+
className: "flex items-center justify-center py-2 min-h-6",
|
|
4729
|
+
children: loading && /* @__PURE__ */ jsx(CircularProgress, { size: "smallest" })
|
|
4730
|
+
})] })
|
|
4731
|
+
})
|
|
4732
|
+
});
|
|
4733
|
+
}
|
|
4734
|
+
var SortableItem = memo(function SortableItem({ item, index, columnId, ItemComponent }) {
|
|
4735
|
+
const { setNodeRef, attributes, listeners, isDragging: isItemBeingDragged, transform, transition } = useSortable({
|
|
4736
|
+
id: item.id,
|
|
4737
|
+
data: {
|
|
4738
|
+
type: "ITEM",
|
|
4739
|
+
columnId
|
|
4740
|
+
}
|
|
4741
|
+
});
|
|
4742
|
+
return /* @__PURE__ */ jsx("div", {
|
|
4743
|
+
ref: setNodeRef,
|
|
4744
|
+
style: useMemo(() => ({
|
|
4745
|
+
transform: CSS.Transform.toString(transform),
|
|
4746
|
+
transition,
|
|
4747
|
+
zIndex: isItemBeingDragged ? 2 : 1,
|
|
4748
|
+
opacity: isItemBeingDragged ? 0 : 1
|
|
4749
|
+
}), [
|
|
4750
|
+
transform,
|
|
4751
|
+
transition,
|
|
4752
|
+
isItemBeingDragged
|
|
4753
|
+
]),
|
|
4754
|
+
...attributes,
|
|
4755
|
+
...listeners,
|
|
4756
|
+
children: /* @__PURE__ */ jsx(ItemComponent, {
|
|
4757
|
+
item,
|
|
4758
|
+
isDragging: isItemBeingDragged,
|
|
4759
|
+
index
|
|
4760
|
+
})
|
|
4761
|
+
});
|
|
4762
|
+
});
|
|
4763
|
+
//#endregion
|
|
4764
|
+
//#region src/views/Kanban/BoardColumnTitle.tsx
|
|
4765
|
+
function BoardColumnTitle({ children, className, color, ...props }) {
|
|
4766
|
+
const colorScheme = useMemo(() => {
|
|
4767
|
+
if (!color) return void 0;
|
|
4768
|
+
if (typeof color === "string") return getColorSchemeForKey(color);
|
|
4769
|
+
return color;
|
|
4770
|
+
}, [color]);
|
|
4771
|
+
return /* @__PURE__ */ jsxs(Typography, {
|
|
4772
|
+
variant: "subtitle2",
|
|
4773
|
+
component: "h4",
|
|
4774
|
+
className: cls("py-3 px-3 transition-colors duration-200 flex-grow select-none relative outline-none focus:outline focus:outline-2 focus:outline-offset-2 flex items-center gap-3", className),
|
|
4775
|
+
...props,
|
|
4776
|
+
children: [colorScheme && /* @__PURE__ */ jsx("div", {
|
|
4777
|
+
className: "w-3 h-3 rounded-full flex-shrink-0",
|
|
4778
|
+
style: { backgroundColor: colorScheme.darkColor ?? colorScheme.color }
|
|
4779
|
+
}), children]
|
|
4780
|
+
});
|
|
4781
|
+
}
|
|
4782
|
+
//#endregion
|
|
4783
|
+
//#region src/icons/icon_keys.ts
|
|
4784
|
+
var iconKeys = [
|
|
4785
|
+
"AArrowDown",
|
|
4786
|
+
"AArrowUp",
|
|
4787
|
+
"ALargeSmall",
|
|
4788
|
+
"Accessibility",
|
|
4789
|
+
"Activity",
|
|
4790
|
+
"ActivitySquare",
|
|
4791
|
+
"AirVent",
|
|
4792
|
+
"Airplay",
|
|
4793
|
+
"AlarmCheck",
|
|
4794
|
+
"AlarmClock",
|
|
4795
|
+
"AlarmClockCheck",
|
|
4796
|
+
"AlarmClockMinus",
|
|
4797
|
+
"AlarmClockOff",
|
|
4798
|
+
"AlarmClockPlus",
|
|
4799
|
+
"AlarmMinus",
|
|
4800
|
+
"AlarmPlus",
|
|
4801
|
+
"AlarmSmoke",
|
|
4802
|
+
"Album",
|
|
4803
|
+
"AlertCircle",
|
|
4804
|
+
"AlertOctagon",
|
|
4805
|
+
"AlertTriangle",
|
|
4806
|
+
"AlignCenter",
|
|
4807
|
+
"AlignCenterHorizontal",
|
|
4808
|
+
"AlignCenterVertical",
|
|
4809
|
+
"AlignEndHorizontal",
|
|
4810
|
+
"AlignEndVertical",
|
|
4811
|
+
"AlignHorizontalDistributeCenter",
|
|
4812
|
+
"AlignHorizontalDistributeEnd",
|
|
4813
|
+
"AlignHorizontalDistributeStart",
|
|
4814
|
+
"AlignHorizontalJustifyCenter",
|
|
4815
|
+
"AlignHorizontalJustifyEnd",
|
|
4816
|
+
"AlignHorizontalJustifyStart",
|
|
4817
|
+
"AlignHorizontalSpaceAround",
|
|
4818
|
+
"AlignHorizontalSpaceBetween",
|
|
4819
|
+
"AlignJustify",
|
|
4820
|
+
"AlignLeft",
|
|
4821
|
+
"AlignRight",
|
|
4822
|
+
"AlignStartHorizontal",
|
|
4823
|
+
"AlignStartVertical",
|
|
4824
|
+
"AlignVerticalDistributeCenter",
|
|
4825
|
+
"AlignVerticalDistributeEnd",
|
|
4826
|
+
"AlignVerticalDistributeStart",
|
|
4827
|
+
"AlignVerticalJustifyCenter",
|
|
4828
|
+
"AlignVerticalJustifyEnd",
|
|
4829
|
+
"AlignVerticalJustifyStart",
|
|
4830
|
+
"AlignVerticalSpaceAround",
|
|
4831
|
+
"AlignVerticalSpaceBetween",
|
|
4832
|
+
"Ambulance",
|
|
4833
|
+
"Ampersand",
|
|
4834
|
+
"Ampersands",
|
|
4835
|
+
"Amphora",
|
|
4836
|
+
"Anchor",
|
|
4837
|
+
"Angry",
|
|
4838
|
+
"Annoyed",
|
|
4839
|
+
"Antenna",
|
|
4840
|
+
"Anvil",
|
|
4841
|
+
"Aperture",
|
|
4842
|
+
"AppWindow",
|
|
4843
|
+
"AppWindowMac",
|
|
4844
|
+
"Apple",
|
|
4845
|
+
"Archive",
|
|
4846
|
+
"ArchiveRestore",
|
|
4847
|
+
"ArchiveX",
|
|
4848
|
+
"AreaChart",
|
|
4849
|
+
"Armchair",
|
|
4850
|
+
"ArrowBigDown",
|
|
4851
|
+
"ArrowBigDownDash",
|
|
4852
|
+
"ArrowBigLeft",
|
|
4853
|
+
"ArrowBigLeftDash",
|
|
4854
|
+
"ArrowBigRight",
|
|
4855
|
+
"ArrowBigRightDash",
|
|
4856
|
+
"ArrowBigUp",
|
|
4857
|
+
"ArrowBigUpDash",
|
|
4858
|
+
"ArrowDown",
|
|
4859
|
+
"ArrowDown01",
|
|
4860
|
+
"ArrowDown10",
|
|
4861
|
+
"ArrowDownAZ",
|
|
4862
|
+
"ArrowDownCircle",
|
|
4863
|
+
"ArrowDownFromLine",
|
|
4864
|
+
"ArrowDownLeft",
|
|
4865
|
+
"ArrowDownLeftFromCircle",
|
|
4866
|
+
"ArrowDownLeftFromSquare",
|
|
4867
|
+
"ArrowDownLeftSquare",
|
|
4868
|
+
"ArrowDownNarrowWide",
|
|
4869
|
+
"ArrowDownRight",
|
|
4870
|
+
"ArrowDownRightFromCircle",
|
|
4871
|
+
"ArrowDownRightFromSquare",
|
|
4872
|
+
"ArrowDownRightSquare",
|
|
4873
|
+
"ArrowDownSquare",
|
|
4874
|
+
"ArrowDownToDot",
|
|
4875
|
+
"ArrowDownToLine",
|
|
4876
|
+
"ArrowDownUp",
|
|
4877
|
+
"ArrowDownWideNarrow",
|
|
4878
|
+
"ArrowDownZA",
|
|
4879
|
+
"ArrowLeft",
|
|
4880
|
+
"ArrowLeftCircle",
|
|
4881
|
+
"ArrowLeftFromLine",
|
|
4882
|
+
"ArrowLeftRight",
|
|
4883
|
+
"ArrowLeftSquare",
|
|
4884
|
+
"ArrowLeftToLine",
|
|
4885
|
+
"ArrowRight",
|
|
4886
|
+
"ArrowRightCircle",
|
|
4887
|
+
"ArrowRightFromLine",
|
|
4888
|
+
"ArrowRightLeft",
|
|
4889
|
+
"ArrowRightSquare",
|
|
4890
|
+
"ArrowRightToLine",
|
|
4891
|
+
"ArrowUp",
|
|
4892
|
+
"ArrowUp01",
|
|
4893
|
+
"ArrowUp10",
|
|
4894
|
+
"ArrowUpAZ",
|
|
4895
|
+
"ArrowUpCircle",
|
|
4896
|
+
"ArrowUpDown",
|
|
4897
|
+
"ArrowUpFromDot",
|
|
4898
|
+
"ArrowUpFromLine",
|
|
4899
|
+
"ArrowUpLeft",
|
|
4900
|
+
"ArrowUpLeftFromCircle",
|
|
4901
|
+
"ArrowUpLeftFromSquare",
|
|
4902
|
+
"ArrowUpLeftSquare",
|
|
4903
|
+
"ArrowUpNarrowWide",
|
|
4904
|
+
"ArrowUpRight",
|
|
4905
|
+
"ArrowUpRightFromCircle",
|
|
4906
|
+
"ArrowUpRightFromSquare",
|
|
4907
|
+
"ArrowUpRightSquare",
|
|
4908
|
+
"ArrowUpSquare",
|
|
4909
|
+
"ArrowUpToLine",
|
|
4910
|
+
"ArrowUpWideNarrow",
|
|
4911
|
+
"ArrowUpZA",
|
|
4912
|
+
"ArrowsUpFromLine",
|
|
4913
|
+
"Asterisk",
|
|
4914
|
+
"AsteriskSquare",
|
|
4915
|
+
"Astroid",
|
|
4916
|
+
"AtSign",
|
|
4917
|
+
"Atom",
|
|
4918
|
+
"AudioLines",
|
|
4919
|
+
"AudioWaveform",
|
|
4920
|
+
"Award",
|
|
4921
|
+
"Axe",
|
|
4922
|
+
"Axis3D",
|
|
4923
|
+
"Baby",
|
|
4924
|
+
"Backpack",
|
|
4925
|
+
"Badge",
|
|
4926
|
+
"BadgeAlert",
|
|
4927
|
+
"BadgeCent",
|
|
4928
|
+
"BadgeCheck",
|
|
4929
|
+
"BadgeDollarSign",
|
|
4930
|
+
"BadgeEuro",
|
|
4931
|
+
"BadgeHelp",
|
|
4932
|
+
"BadgeIndianRupee",
|
|
4933
|
+
"BadgeInfo",
|
|
4934
|
+
"BadgeJapaneseYen",
|
|
4935
|
+
"BadgeMinus",
|
|
4936
|
+
"BadgePercent",
|
|
4937
|
+
"BadgePlus",
|
|
4938
|
+
"BadgePoundSterling",
|
|
4939
|
+
"BadgeQuestionMark",
|
|
4940
|
+
"BadgeRussianRuble",
|
|
4941
|
+
"BadgeSwissFranc",
|
|
4942
|
+
"BadgeTurkishLira",
|
|
4943
|
+
"BadgeX",
|
|
4944
|
+
"BaggageClaim",
|
|
4945
|
+
"Balloon",
|
|
4946
|
+
"Ban",
|
|
4947
|
+
"Banana",
|
|
4948
|
+
"Bandage",
|
|
4949
|
+
"Banknote",
|
|
4950
|
+
"BanknoteArrowDown",
|
|
4951
|
+
"BanknoteArrowUp",
|
|
4952
|
+
"BanknoteX",
|
|
4953
|
+
"BarChart",
|
|
4954
|
+
"BarChart2",
|
|
4955
|
+
"BarChart3",
|
|
4956
|
+
"BarChart4",
|
|
4957
|
+
"BarChartBig",
|
|
4958
|
+
"BarChartHorizontal",
|
|
4959
|
+
"BarChartHorizontalBig",
|
|
4960
|
+
"Barcode",
|
|
4961
|
+
"Barrel",
|
|
4962
|
+
"Baseline",
|
|
4963
|
+
"Bath",
|
|
4964
|
+
"Battery",
|
|
4965
|
+
"BatteryCharging",
|
|
4966
|
+
"BatteryFull",
|
|
4967
|
+
"BatteryLow",
|
|
4968
|
+
"BatteryMedium",
|
|
4969
|
+
"BatteryPlus",
|
|
4970
|
+
"BatteryWarning",
|
|
4971
|
+
"Beaker",
|
|
4972
|
+
"Bean",
|
|
4973
|
+
"BeanOff",
|
|
4974
|
+
"Bed",
|
|
4975
|
+
"BedDouble",
|
|
4976
|
+
"BedSingle",
|
|
4977
|
+
"Beef",
|
|
4978
|
+
"BeefOff",
|
|
4979
|
+
"Beer",
|
|
4980
|
+
"BeerOff",
|
|
4981
|
+
"Bell",
|
|
4982
|
+
"BellCheck",
|
|
4983
|
+
"BellDot",
|
|
4984
|
+
"BellElectric",
|
|
4985
|
+
"BellMinus",
|
|
4986
|
+
"BellOff",
|
|
4987
|
+
"BellPlus",
|
|
4988
|
+
"BellRing",
|
|
4989
|
+
"BetweenHorizonalEnd",
|
|
4990
|
+
"BetweenHorizonalStart",
|
|
4991
|
+
"BetweenHorizontalEnd",
|
|
4992
|
+
"BetweenHorizontalStart",
|
|
4993
|
+
"BetweenVerticalEnd",
|
|
4994
|
+
"BetweenVerticalStart",
|
|
4995
|
+
"BicepsFlexed",
|
|
4996
|
+
"Bike",
|
|
4997
|
+
"Binary",
|
|
4998
|
+
"Binoculars",
|
|
4999
|
+
"Biohazard",
|
|
5000
|
+
"Bird",
|
|
5001
|
+
"Birdhouse",
|
|
5002
|
+
"Bitcoin",
|
|
5003
|
+
"Blend",
|
|
5004
|
+
"Blinds",
|
|
5005
|
+
"Blocks",
|
|
5006
|
+
"Bluetooth",
|
|
5007
|
+
"BluetoothConnected",
|
|
5008
|
+
"BluetoothOff",
|
|
5009
|
+
"BluetoothSearching",
|
|
5010
|
+
"Bold",
|
|
5011
|
+
"Bolt",
|
|
5012
|
+
"Bomb",
|
|
5013
|
+
"Bone",
|
|
5014
|
+
"Book",
|
|
5015
|
+
"BookA",
|
|
5016
|
+
"BookAlert",
|
|
5017
|
+
"BookAudio",
|
|
5018
|
+
"BookCheck",
|
|
5019
|
+
"BookCopy",
|
|
5020
|
+
"BookDashed",
|
|
5021
|
+
"BookDown",
|
|
5022
|
+
"BookHeadphones",
|
|
5023
|
+
"BookHeart",
|
|
5024
|
+
"BookImage",
|
|
5025
|
+
"BookKey",
|
|
5026
|
+
"BookLock",
|
|
5027
|
+
"BookMarked",
|
|
5028
|
+
"BookMinus",
|
|
5029
|
+
"BookOpen",
|
|
5030
|
+
"BookOpenCheck",
|
|
5031
|
+
"BookOpenText",
|
|
5032
|
+
"BookPlus",
|
|
5033
|
+
"BookSearch",
|
|
5034
|
+
"BookTemplate",
|
|
5035
|
+
"BookText",
|
|
5036
|
+
"BookType",
|
|
5037
|
+
"BookUp",
|
|
5038
|
+
"BookUp2",
|
|
5039
|
+
"BookUser",
|
|
5040
|
+
"BookX",
|
|
5041
|
+
"Bookmark",
|
|
5042
|
+
"BookmarkCheck",
|
|
5043
|
+
"BookmarkMinus",
|
|
5044
|
+
"BookmarkOff",
|
|
5045
|
+
"BookmarkPlus",
|
|
5046
|
+
"BookmarkX",
|
|
5047
|
+
"BoomBox",
|
|
5048
|
+
"Bot",
|
|
5049
|
+
"BotMessageSquare",
|
|
5050
|
+
"BotOff",
|
|
5051
|
+
"BottleWine",
|
|
5052
|
+
"BowArrow",
|
|
5053
|
+
"Box",
|
|
5054
|
+
"BoxSelect",
|
|
5055
|
+
"Boxes",
|
|
5056
|
+
"Braces",
|
|
5057
|
+
"Brackets",
|
|
5058
|
+
"Brain",
|
|
5059
|
+
"BrainCircuit",
|
|
5060
|
+
"BrainCog",
|
|
5061
|
+
"BrickWall",
|
|
5062
|
+
"BrickWallFire",
|
|
5063
|
+
"BrickWallShield",
|
|
5064
|
+
"Briefcase",
|
|
5065
|
+
"BriefcaseBusiness",
|
|
5066
|
+
"BriefcaseConveyorBelt",
|
|
5067
|
+
"BriefcaseMedical",
|
|
5068
|
+
"BringToFront",
|
|
5069
|
+
"Brush",
|
|
5070
|
+
"BrushCleaning",
|
|
5071
|
+
"Bubbles",
|
|
5072
|
+
"Bug",
|
|
5073
|
+
"BugOff",
|
|
5074
|
+
"BugPlay",
|
|
5075
|
+
"Building",
|
|
5076
|
+
"Building2",
|
|
5077
|
+
"Bus",
|
|
5078
|
+
"BusFront",
|
|
5079
|
+
"Cable",
|
|
5080
|
+
"CableCar",
|
|
5081
|
+
"Cake",
|
|
5082
|
+
"CakeSlice",
|
|
5083
|
+
"Calculator",
|
|
5084
|
+
"Calendar",
|
|
5085
|
+
"Calendar1",
|
|
5086
|
+
"CalendarArrowDown",
|
|
5087
|
+
"CalendarArrowUp",
|
|
5088
|
+
"CalendarCheck",
|
|
5089
|
+
"CalendarCheck2",
|
|
5090
|
+
"CalendarClock",
|
|
5091
|
+
"CalendarCog",
|
|
5092
|
+
"CalendarDays",
|
|
5093
|
+
"CalendarFold",
|
|
5094
|
+
"CalendarHeart",
|
|
5095
|
+
"CalendarMinus",
|
|
5096
|
+
"CalendarMinus2",
|
|
5097
|
+
"CalendarOff",
|
|
5098
|
+
"CalendarPlus",
|
|
5099
|
+
"CalendarPlus2",
|
|
5100
|
+
"CalendarRange",
|
|
5101
|
+
"CalendarSearch",
|
|
5102
|
+
"CalendarSync",
|
|
5103
|
+
"CalendarX",
|
|
5104
|
+
"CalendarX2",
|
|
5105
|
+
"Calendars",
|
|
5106
|
+
"Camera",
|
|
5107
|
+
"CameraOff",
|
|
5108
|
+
"CandlestickChart",
|
|
5109
|
+
"Candy",
|
|
5110
|
+
"CandyCane",
|
|
5111
|
+
"CandyOff",
|
|
5112
|
+
"Cannabis",
|
|
5113
|
+
"CannabisOff",
|
|
5114
|
+
"Captions",
|
|
5115
|
+
"CaptionsOff",
|
|
5116
|
+
"Car",
|
|
5117
|
+
"CarFront",
|
|
5118
|
+
"CarTaxiFront",
|
|
5119
|
+
"Caravan",
|
|
5120
|
+
"CardSim",
|
|
5121
|
+
"Carrot",
|
|
5122
|
+
"CaseLower",
|
|
5123
|
+
"CaseSensitive",
|
|
5124
|
+
"CaseUpper",
|
|
5125
|
+
"CassetteTape",
|
|
5126
|
+
"Cast",
|
|
5127
|
+
"Castle",
|
|
5128
|
+
"Cat",
|
|
5129
|
+
"Cctv",
|
|
5130
|
+
"CctvOff",
|
|
5131
|
+
"ChartArea",
|
|
5132
|
+
"ChartBar",
|
|
5133
|
+
"ChartBarBig",
|
|
5134
|
+
"ChartBarDecreasing",
|
|
5135
|
+
"ChartBarIncreasing",
|
|
5136
|
+
"ChartBarStacked",
|
|
5137
|
+
"ChartCandlestick",
|
|
5138
|
+
"ChartColumn",
|
|
5139
|
+
"ChartColumnBig",
|
|
5140
|
+
"ChartColumnDecreasing",
|
|
5141
|
+
"ChartColumnIncreasing",
|
|
5142
|
+
"ChartColumnStacked",
|
|
5143
|
+
"ChartGantt",
|
|
5144
|
+
"ChartLine",
|
|
5145
|
+
"ChartNetwork",
|
|
5146
|
+
"ChartNoAxesColumn",
|
|
5147
|
+
"ChartNoAxesColumnDecreasing",
|
|
5148
|
+
"ChartNoAxesColumnIncreasing",
|
|
5149
|
+
"ChartNoAxesCombined",
|
|
5150
|
+
"ChartNoAxesGantt",
|
|
5151
|
+
"ChartPie",
|
|
5152
|
+
"ChartScatter",
|
|
5153
|
+
"ChartSpline",
|
|
5154
|
+
"Check",
|
|
5155
|
+
"CheckCheck",
|
|
5156
|
+
"CheckCircle",
|
|
5157
|
+
"CheckCircle2",
|
|
5158
|
+
"CheckLine",
|
|
5159
|
+
"CheckSquare",
|
|
5160
|
+
"CheckSquare2",
|
|
5161
|
+
"ChefHat",
|
|
5162
|
+
"Cherry",
|
|
5163
|
+
"ChessBishop",
|
|
5164
|
+
"ChessKing",
|
|
5165
|
+
"ChessKnight",
|
|
5166
|
+
"ChessPawn",
|
|
5167
|
+
"ChessQueen",
|
|
5168
|
+
"ChessRook",
|
|
5169
|
+
"ChevronDown",
|
|
5170
|
+
"ChevronDownCircle",
|
|
5171
|
+
"ChevronDownSquare",
|
|
5172
|
+
"ChevronFirst",
|
|
5173
|
+
"ChevronLast",
|
|
5174
|
+
"ChevronLeft",
|
|
5175
|
+
"ChevronLeftCircle",
|
|
5176
|
+
"ChevronLeftSquare",
|
|
5177
|
+
"ChevronRight",
|
|
5178
|
+
"ChevronRightCircle",
|
|
5179
|
+
"ChevronRightSquare",
|
|
5180
|
+
"ChevronUp",
|
|
5181
|
+
"ChevronUpCircle",
|
|
5182
|
+
"ChevronUpSquare",
|
|
5183
|
+
"ChevronsDown",
|
|
5184
|
+
"ChevronsDownUp",
|
|
5185
|
+
"ChevronsLeft",
|
|
5186
|
+
"ChevronsLeftRight",
|
|
5187
|
+
"ChevronsLeftRightEllipsis",
|
|
5188
|
+
"ChevronsRight",
|
|
5189
|
+
"ChevronsRightLeft",
|
|
5190
|
+
"ChevronsUp",
|
|
5191
|
+
"ChevronsUpDown",
|
|
5192
|
+
"Church",
|
|
5193
|
+
"Cigarette",
|
|
5194
|
+
"CigaretteOff",
|
|
5195
|
+
"Circle",
|
|
5196
|
+
"CircleAlert",
|
|
5197
|
+
"CircleArrowDown",
|
|
5198
|
+
"CircleArrowLeft",
|
|
5199
|
+
"CircleArrowOutDownLeft",
|
|
5200
|
+
"CircleArrowOutDownRight",
|
|
5201
|
+
"CircleArrowOutUpLeft",
|
|
5202
|
+
"CircleArrowOutUpRight",
|
|
5203
|
+
"CircleArrowRight",
|
|
5204
|
+
"CircleArrowUp",
|
|
5205
|
+
"CircleCheck",
|
|
5206
|
+
"CircleCheckBig",
|
|
5207
|
+
"CircleChevronDown",
|
|
5208
|
+
"CircleChevronLeft",
|
|
5209
|
+
"CircleChevronRight",
|
|
5210
|
+
"CircleChevronUp",
|
|
5211
|
+
"CircleDashed",
|
|
5212
|
+
"CircleDivide",
|
|
5213
|
+
"CircleDollarSign",
|
|
5214
|
+
"CircleDot",
|
|
5215
|
+
"CircleDotDashed",
|
|
5216
|
+
"CircleEllipsis",
|
|
5217
|
+
"CircleEqual",
|
|
5218
|
+
"CircleFadingArrowUp",
|
|
5219
|
+
"CircleFadingPlus",
|
|
5220
|
+
"CircleGauge",
|
|
5221
|
+
"CircleHelp",
|
|
5222
|
+
"CircleMinus",
|
|
5223
|
+
"CircleOff",
|
|
5224
|
+
"CircleParking",
|
|
5225
|
+
"CircleParkingOff",
|
|
5226
|
+
"CirclePause",
|
|
5227
|
+
"CirclePercent",
|
|
5228
|
+
"CirclePile",
|
|
5229
|
+
"CirclePlay",
|
|
5230
|
+
"CirclePlus",
|
|
5231
|
+
"CirclePoundSterling",
|
|
5232
|
+
"CirclePower",
|
|
5233
|
+
"CircleQuestionMark",
|
|
5234
|
+
"CircleSlash",
|
|
5235
|
+
"CircleSlash2",
|
|
5236
|
+
"CircleSlashed",
|
|
5237
|
+
"CircleSmall",
|
|
5238
|
+
"CircleStar",
|
|
5239
|
+
"CircleStop",
|
|
5240
|
+
"CircleUser",
|
|
5241
|
+
"CircleUserRound",
|
|
5242
|
+
"CircleX",
|
|
5243
|
+
"CircuitBoard",
|
|
5244
|
+
"Citrus",
|
|
5245
|
+
"Clapperboard",
|
|
5246
|
+
"Clipboard",
|
|
5247
|
+
"ClipboardCheck",
|
|
5248
|
+
"ClipboardClock",
|
|
5249
|
+
"ClipboardCopy",
|
|
5250
|
+
"ClipboardEdit",
|
|
5251
|
+
"ClipboardList",
|
|
5252
|
+
"ClipboardMinus",
|
|
5253
|
+
"ClipboardPaste",
|
|
5254
|
+
"ClipboardPen",
|
|
5255
|
+
"ClipboardPenLine",
|
|
5256
|
+
"ClipboardPlus",
|
|
5257
|
+
"ClipboardSignature",
|
|
5258
|
+
"ClipboardType",
|
|
5259
|
+
"ClipboardX",
|
|
5260
|
+
"Clock",
|
|
5261
|
+
"Clock1",
|
|
5262
|
+
"Clock10",
|
|
5263
|
+
"Clock11",
|
|
5264
|
+
"Clock12",
|
|
5265
|
+
"Clock2",
|
|
5266
|
+
"Clock3",
|
|
5267
|
+
"Clock4",
|
|
5268
|
+
"Clock5",
|
|
5269
|
+
"Clock6",
|
|
5270
|
+
"Clock7",
|
|
5271
|
+
"Clock8",
|
|
5272
|
+
"Clock9",
|
|
5273
|
+
"ClockAlert",
|
|
5274
|
+
"ClockArrowDown",
|
|
5275
|
+
"ClockArrowUp",
|
|
5276
|
+
"ClockCheck",
|
|
5277
|
+
"ClockFading",
|
|
5278
|
+
"ClockPlus",
|
|
5279
|
+
"ClosedCaption",
|
|
5280
|
+
"Cloud",
|
|
5281
|
+
"CloudAlert",
|
|
5282
|
+
"CloudBackup",
|
|
5283
|
+
"CloudCheck",
|
|
5284
|
+
"CloudCog",
|
|
5285
|
+
"CloudDownload",
|
|
5286
|
+
"CloudDrizzle",
|
|
5287
|
+
"CloudFog",
|
|
5288
|
+
"CloudHail",
|
|
5289
|
+
"CloudLightning",
|
|
5290
|
+
"CloudMoon",
|
|
5291
|
+
"CloudMoonRain",
|
|
5292
|
+
"CloudOff",
|
|
5293
|
+
"CloudRain",
|
|
5294
|
+
"CloudRainWind",
|
|
5295
|
+
"CloudSnow",
|
|
5296
|
+
"CloudSun",
|
|
5297
|
+
"CloudSunRain",
|
|
5298
|
+
"CloudSync",
|
|
5299
|
+
"CloudUpload",
|
|
5300
|
+
"Cloudy",
|
|
5301
|
+
"Clover",
|
|
5302
|
+
"Club",
|
|
5303
|
+
"Code",
|
|
5304
|
+
"Code2",
|
|
5305
|
+
"CodeSquare",
|
|
5306
|
+
"CodeXml",
|
|
5307
|
+
"Coffee",
|
|
5308
|
+
"Cog",
|
|
5309
|
+
"Coins",
|
|
5310
|
+
"Columns",
|
|
5311
|
+
"Columns2",
|
|
5312
|
+
"Columns3",
|
|
5313
|
+
"Columns3Cog",
|
|
5314
|
+
"Columns4",
|
|
5315
|
+
"ColumnsSettings",
|
|
5316
|
+
"Combine",
|
|
5317
|
+
"Command",
|
|
5318
|
+
"Compass",
|
|
5319
|
+
"Component",
|
|
5320
|
+
"Computer",
|
|
5321
|
+
"ConciergeBell",
|
|
5322
|
+
"Cone",
|
|
5323
|
+
"Construction",
|
|
5324
|
+
"Contact",
|
|
5325
|
+
"Contact2",
|
|
5326
|
+
"ContactRound",
|
|
5327
|
+
"Container",
|
|
5328
|
+
"Contrast",
|
|
5329
|
+
"Cookie",
|
|
5330
|
+
"CookingPot",
|
|
5331
|
+
"Copy",
|
|
5332
|
+
"CopyCheck",
|
|
5333
|
+
"CopyMinus",
|
|
5334
|
+
"CopyPlus",
|
|
5335
|
+
"CopySlash",
|
|
5336
|
+
"CopyX",
|
|
5337
|
+
"Copyleft",
|
|
5338
|
+
"Copyright",
|
|
5339
|
+
"CornerDownLeft",
|
|
5340
|
+
"CornerDownRight",
|
|
5341
|
+
"CornerLeftDown",
|
|
5342
|
+
"CornerLeftUp",
|
|
5343
|
+
"CornerRightDown",
|
|
5344
|
+
"CornerRightUp",
|
|
5345
|
+
"CornerUpLeft",
|
|
5346
|
+
"CornerUpRight",
|
|
5347
|
+
"Cpu",
|
|
5348
|
+
"CreativeCommons",
|
|
5349
|
+
"CreditCard",
|
|
5350
|
+
"Croissant",
|
|
5351
|
+
"Crop",
|
|
5352
|
+
"Cross",
|
|
5353
|
+
"Crosshair",
|
|
5354
|
+
"Crown",
|
|
5355
|
+
"Cuboid",
|
|
5356
|
+
"CupSoda",
|
|
5357
|
+
"CurlyBraces",
|
|
5358
|
+
"Currency",
|
|
5359
|
+
"Cylinder",
|
|
5360
|
+
"Dam",
|
|
5361
|
+
"Database",
|
|
5362
|
+
"DatabaseBackup",
|
|
5363
|
+
"DatabaseSearch",
|
|
5364
|
+
"DatabaseZap",
|
|
5365
|
+
"DecimalsArrowLeft",
|
|
5366
|
+
"DecimalsArrowRight",
|
|
5367
|
+
"Delete",
|
|
5368
|
+
"Dessert",
|
|
5369
|
+
"Diameter",
|
|
5370
|
+
"Diamond",
|
|
5371
|
+
"DiamondMinus",
|
|
5372
|
+
"DiamondPercent",
|
|
5373
|
+
"DiamondPlus",
|
|
5374
|
+
"Dice1",
|
|
5375
|
+
"Dice2",
|
|
5376
|
+
"Dice3",
|
|
5377
|
+
"Dice4",
|
|
5378
|
+
"Dice5",
|
|
5379
|
+
"Dice6",
|
|
5380
|
+
"Dices",
|
|
5381
|
+
"Diff",
|
|
5382
|
+
"Disc",
|
|
5383
|
+
"Disc2",
|
|
5384
|
+
"Disc3",
|
|
5385
|
+
"DiscAlbum",
|
|
5386
|
+
"Divide",
|
|
5387
|
+
"DivideCircle",
|
|
5388
|
+
"DivideSquare",
|
|
5389
|
+
"Dna",
|
|
5390
|
+
"DnaOff",
|
|
5391
|
+
"Dock",
|
|
5392
|
+
"Dog",
|
|
5393
|
+
"DollarSign",
|
|
5394
|
+
"Donut",
|
|
5395
|
+
"DoorClosed",
|
|
5396
|
+
"DoorClosedLocked",
|
|
5397
|
+
"DoorOpen",
|
|
5398
|
+
"Dot",
|
|
5399
|
+
"DotSquare",
|
|
5400
|
+
"Download",
|
|
5401
|
+
"DownloadCloud",
|
|
5402
|
+
"DraftingCompass",
|
|
5403
|
+
"Drama",
|
|
5404
|
+
"Drill",
|
|
5405
|
+
"Drone",
|
|
5406
|
+
"Droplet",
|
|
5407
|
+
"DropletOff",
|
|
5408
|
+
"Droplets",
|
|
5409
|
+
"Drum",
|
|
5410
|
+
"Drumstick",
|
|
5411
|
+
"Dumbbell",
|
|
5412
|
+
"Ear",
|
|
5413
|
+
"EarOff",
|
|
5414
|
+
"Earth",
|
|
5415
|
+
"EarthLock",
|
|
5416
|
+
"Eclipse",
|
|
5417
|
+
"Edit",
|
|
5418
|
+
"Edit2",
|
|
5419
|
+
"Edit3",
|
|
5420
|
+
"Egg",
|
|
5421
|
+
"EggFried",
|
|
5422
|
+
"EggOff",
|
|
5423
|
+
"Ellipse",
|
|
5424
|
+
"Ellipsis",
|
|
5425
|
+
"EllipsisVertical",
|
|
5426
|
+
"Equal",
|
|
5427
|
+
"EqualApproximately",
|
|
5428
|
+
"EqualNot",
|
|
5429
|
+
"EqualSquare",
|
|
5430
|
+
"Eraser",
|
|
5431
|
+
"EthernetPort",
|
|
5432
|
+
"Euro",
|
|
5433
|
+
"EvCharger",
|
|
5434
|
+
"Expand",
|
|
5435
|
+
"ExternalLink",
|
|
5436
|
+
"Eye",
|
|
5437
|
+
"EyeClosed",
|
|
5438
|
+
"EyeOff",
|
|
5439
|
+
"Factory",
|
|
5440
|
+
"Fan",
|
|
5441
|
+
"FastForward",
|
|
5442
|
+
"Feather",
|
|
5443
|
+
"Fence",
|
|
5444
|
+
"FerrisWheel",
|
|
5445
|
+
"File",
|
|
5446
|
+
"FileArchive",
|
|
5447
|
+
"FileAudio",
|
|
5448
|
+
"FileAudio2",
|
|
5449
|
+
"FileAxis3D",
|
|
5450
|
+
"FileBadge",
|
|
5451
|
+
"FileBadge2",
|
|
5452
|
+
"FileBarChart",
|
|
5453
|
+
"FileBarChart2",
|
|
5454
|
+
"FileBox",
|
|
5455
|
+
"FileBraces",
|
|
5456
|
+
"FileBracesCorner",
|
|
5457
|
+
"FileChartColumn",
|
|
5458
|
+
"FileChartColumnIncreasing",
|
|
5459
|
+
"FileChartLine",
|
|
5460
|
+
"FileChartPie",
|
|
5461
|
+
"FileCheck",
|
|
5462
|
+
"FileCheck2",
|
|
5463
|
+
"FileCheckCorner",
|
|
5464
|
+
"FileClock",
|
|
5465
|
+
"FileCode",
|
|
5466
|
+
"FileCode2",
|
|
5467
|
+
"FileCodeCorner",
|
|
5468
|
+
"FileCog",
|
|
5469
|
+
"FileCog2",
|
|
5470
|
+
"FileDiff",
|
|
5471
|
+
"FileDigit",
|
|
5472
|
+
"FileDown",
|
|
5473
|
+
"FileEdit",
|
|
5474
|
+
"FileExclamationPoint",
|
|
5475
|
+
"FileHeadphone",
|
|
5476
|
+
"FileHeart",
|
|
5477
|
+
"FileImage",
|
|
5478
|
+
"FileInput",
|
|
5479
|
+
"FileJson",
|
|
5480
|
+
"FileJson2",
|
|
5481
|
+
"FileKey",
|
|
5482
|
+
"FileKey2",
|
|
5483
|
+
"FileLineChart",
|
|
5484
|
+
"FileLock",
|
|
5485
|
+
"FileLock2",
|
|
5486
|
+
"FileMinus",
|
|
5487
|
+
"FileMinus2",
|
|
5488
|
+
"FileMinusCorner",
|
|
5489
|
+
"FileMusic",
|
|
5490
|
+
"FileOutput",
|
|
5491
|
+
"FilePen",
|
|
5492
|
+
"FilePenLine",
|
|
5493
|
+
"FilePieChart",
|
|
5494
|
+
"FilePlay",
|
|
5495
|
+
"FilePlus",
|
|
5496
|
+
"FilePlus2",
|
|
5497
|
+
"FilePlusCorner",
|
|
5498
|
+
"FileQuestion",
|
|
5499
|
+
"FileQuestionMark",
|
|
5500
|
+
"FileScan",
|
|
5501
|
+
"FileSearch",
|
|
5502
|
+
"FileSearch2",
|
|
5503
|
+
"FileSearchCorner",
|
|
5504
|
+
"FileSignal",
|
|
5505
|
+
"FileSignature",
|
|
5506
|
+
"FileSliders",
|
|
5507
|
+
"FileSpreadsheet",
|
|
5508
|
+
"FileStack",
|
|
5509
|
+
"FileSymlink",
|
|
5510
|
+
"FileTerminal",
|
|
5511
|
+
"FileText",
|
|
5512
|
+
"FileType",
|
|
5513
|
+
"FileType2",
|
|
5514
|
+
"FileTypeCorner",
|
|
5515
|
+
"FileUp",
|
|
5516
|
+
"FileUser",
|
|
5517
|
+
"FileVideo",
|
|
5518
|
+
"FileVideo2",
|
|
5519
|
+
"FileVideoCamera",
|
|
5520
|
+
"FileVolume",
|
|
5521
|
+
"FileVolume2",
|
|
5522
|
+
"FileWarning",
|
|
5523
|
+
"FileX",
|
|
5524
|
+
"FileX2",
|
|
5525
|
+
"FileXCorner",
|
|
5526
|
+
"Files",
|
|
5527
|
+
"Film",
|
|
5528
|
+
"Filter",
|
|
5529
|
+
"FilterX",
|
|
5530
|
+
"Fingerprint",
|
|
5531
|
+
"FingerprintPattern",
|
|
5532
|
+
"FireExtinguisher",
|
|
5533
|
+
"Fish",
|
|
5534
|
+
"FishOff",
|
|
5535
|
+
"FishSymbol",
|
|
5536
|
+
"FishingHook",
|
|
5537
|
+
"FishingRod",
|
|
5538
|
+
"Flag",
|
|
5539
|
+
"FlagOff",
|
|
5540
|
+
"FlagTriangleLeft",
|
|
5541
|
+
"FlagTriangleRight",
|
|
5542
|
+
"Flame",
|
|
5543
|
+
"FlameKindling",
|
|
5544
|
+
"Flashlight",
|
|
5545
|
+
"FlashlightOff",
|
|
5546
|
+
"FlaskConical",
|
|
5547
|
+
"FlaskConicalOff",
|
|
5548
|
+
"FlaskRound",
|
|
5549
|
+
"FlipHorizontal",
|
|
5550
|
+
"FlipHorizontal2",
|
|
5551
|
+
"FlipVertical",
|
|
5552
|
+
"FlipVertical2",
|
|
5553
|
+
"Flower",
|
|
5554
|
+
"Flower2",
|
|
5555
|
+
"Focus",
|
|
5556
|
+
"FoldHorizontal",
|
|
5557
|
+
"FoldVertical",
|
|
5558
|
+
"Folder",
|
|
5559
|
+
"FolderArchive",
|
|
5560
|
+
"FolderBookmark",
|
|
5561
|
+
"FolderCheck",
|
|
5562
|
+
"FolderClock",
|
|
5563
|
+
"FolderClosed",
|
|
5564
|
+
"FolderCode",
|
|
5565
|
+
"FolderCog",
|
|
5566
|
+
"FolderCog2",
|
|
5567
|
+
"FolderDot",
|
|
5568
|
+
"FolderDown",
|
|
5569
|
+
"FolderEdit",
|
|
5570
|
+
"FolderGit",
|
|
5571
|
+
"FolderGit2",
|
|
5572
|
+
"FolderHeart",
|
|
5573
|
+
"FolderInput",
|
|
5574
|
+
"FolderKanban",
|
|
5575
|
+
"FolderKey",
|
|
5576
|
+
"FolderLock",
|
|
5577
|
+
"FolderMinus",
|
|
5578
|
+
"FolderOpen",
|
|
5579
|
+
"FolderOpenDot",
|
|
5580
|
+
"FolderOutput",
|
|
5581
|
+
"FolderPen",
|
|
5582
|
+
"FolderPlus",
|
|
5583
|
+
"FolderRoot",
|
|
5584
|
+
"FolderSearch",
|
|
5585
|
+
"FolderSearch2",
|
|
5586
|
+
"FolderSymlink",
|
|
5587
|
+
"FolderSync",
|
|
5588
|
+
"FolderTree",
|
|
5589
|
+
"FolderUp",
|
|
5590
|
+
"FolderX",
|
|
5591
|
+
"Folders",
|
|
5592
|
+
"Footprints",
|
|
5593
|
+
"ForkKnife",
|
|
5594
|
+
"ForkKnifeCrossed",
|
|
5595
|
+
"Forklift",
|
|
5596
|
+
"Form",
|
|
5597
|
+
"FormInput",
|
|
5598
|
+
"Forward",
|
|
5599
|
+
"Frame",
|
|
5600
|
+
"Frown",
|
|
5601
|
+
"Fuel",
|
|
5602
|
+
"Fullscreen",
|
|
5603
|
+
"FunctionSquare",
|
|
5604
|
+
"Funnel",
|
|
5605
|
+
"FunnelPlus",
|
|
5606
|
+
"FunnelX",
|
|
5607
|
+
"GalleryHorizontal",
|
|
5608
|
+
"GalleryHorizontalEnd",
|
|
5609
|
+
"GalleryThumbnails",
|
|
5610
|
+
"GalleryVertical",
|
|
5611
|
+
"GalleryVerticalEnd",
|
|
5612
|
+
"Gamepad",
|
|
5613
|
+
"Gamepad2",
|
|
5614
|
+
"GamepadDirectional",
|
|
5615
|
+
"GanttChart",
|
|
5616
|
+
"GanttChartSquare",
|
|
5617
|
+
"Gauge",
|
|
5618
|
+
"GaugeCircle",
|
|
5619
|
+
"Gavel",
|
|
5620
|
+
"Gem",
|
|
5621
|
+
"GeorgianLari",
|
|
5622
|
+
"Ghost",
|
|
5623
|
+
"Gift",
|
|
5624
|
+
"GitBranch",
|
|
5625
|
+
"GitBranchMinus",
|
|
5626
|
+
"GitBranchPlus",
|
|
5627
|
+
"GitCommit",
|
|
5628
|
+
"GitCommitHorizontal",
|
|
5629
|
+
"GitCommitVertical",
|
|
5630
|
+
"GitCompare",
|
|
5631
|
+
"GitCompareArrows",
|
|
5632
|
+
"GitFork",
|
|
5633
|
+
"GitGraph",
|
|
5634
|
+
"GitMerge",
|
|
5635
|
+
"GitMergeConflict",
|
|
5636
|
+
"GitPullRequest",
|
|
5637
|
+
"GitPullRequestArrow",
|
|
5638
|
+
"GitPullRequestClosed",
|
|
5639
|
+
"GitPullRequestCreate",
|
|
5640
|
+
"GitPullRequestCreateArrow",
|
|
5641
|
+
"GitPullRequestDraft",
|
|
5642
|
+
"GlassWater",
|
|
5643
|
+
"Glasses",
|
|
5644
|
+
"Globe",
|
|
5645
|
+
"Globe2",
|
|
5646
|
+
"GlobeLock",
|
|
5647
|
+
"GlobeOff",
|
|
5648
|
+
"GlobeX",
|
|
5649
|
+
"Goal",
|
|
5650
|
+
"Gpu",
|
|
5651
|
+
"Grab",
|
|
5652
|
+
"GraduationCap",
|
|
5653
|
+
"Grape",
|
|
5654
|
+
"Grid",
|
|
5655
|
+
"Grid2X2",
|
|
5656
|
+
"Grid2X2Check",
|
|
5657
|
+
"Grid2X2Plus",
|
|
5658
|
+
"Grid2X2X",
|
|
5659
|
+
"Grid3X3",
|
|
5660
|
+
"Grid3x2",
|
|
5661
|
+
"Grip",
|
|
5662
|
+
"GripHorizontal",
|
|
5663
|
+
"GripVertical",
|
|
5664
|
+
"Group",
|
|
5665
|
+
"Guitar",
|
|
5666
|
+
"Ham",
|
|
5667
|
+
"Hamburger",
|
|
5668
|
+
"Hammer",
|
|
5669
|
+
"Hand",
|
|
5670
|
+
"HandCoins",
|
|
5671
|
+
"HandFist",
|
|
5672
|
+
"HandGrab",
|
|
5673
|
+
"HandHeart",
|
|
5674
|
+
"HandHelping",
|
|
5675
|
+
"HandMetal",
|
|
5676
|
+
"HandPlatter",
|
|
5677
|
+
"Handbag",
|
|
5678
|
+
"Handshake",
|
|
5679
|
+
"HardDrive",
|
|
5680
|
+
"HardDriveDownload",
|
|
5681
|
+
"HardDriveUpload",
|
|
5682
|
+
"HardHat",
|
|
5683
|
+
"Hash",
|
|
5684
|
+
"HatGlasses",
|
|
5685
|
+
"Haze",
|
|
5686
|
+
"Hd",
|
|
5687
|
+
"HdmiPort",
|
|
5688
|
+
"Heading",
|
|
5689
|
+
"Heading1",
|
|
5690
|
+
"Heading2",
|
|
5691
|
+
"Heading3",
|
|
5692
|
+
"Heading4",
|
|
5693
|
+
"Heading5",
|
|
5694
|
+
"Heading6",
|
|
5695
|
+
"HeadphoneOff",
|
|
5696
|
+
"Headphones",
|
|
5697
|
+
"Headset",
|
|
5698
|
+
"Heart",
|
|
5699
|
+
"HeartCrack",
|
|
5700
|
+
"HeartHandshake",
|
|
5701
|
+
"HeartMinus",
|
|
5702
|
+
"HeartOff",
|
|
5703
|
+
"HeartPlus",
|
|
5704
|
+
"HeartPulse",
|
|
5705
|
+
"HeartX",
|
|
5706
|
+
"Heater",
|
|
5707
|
+
"Helicopter",
|
|
5708
|
+
"HelpCircle",
|
|
5709
|
+
"HelpingHand",
|
|
5710
|
+
"Hexagon",
|
|
5711
|
+
"Highlighter",
|
|
5712
|
+
"History",
|
|
5713
|
+
"Home",
|
|
5714
|
+
"Hop",
|
|
5715
|
+
"HopOff",
|
|
5716
|
+
"Hospital",
|
|
5717
|
+
"Hotel",
|
|
5718
|
+
"Hourglass",
|
|
5719
|
+
"House",
|
|
5720
|
+
"HouseHeart",
|
|
5721
|
+
"HousePlug",
|
|
5722
|
+
"HousePlus",
|
|
5723
|
+
"HouseWifi",
|
|
5724
|
+
"IceCream",
|
|
5725
|
+
"IceCream2",
|
|
5726
|
+
"IceCreamBowl",
|
|
5727
|
+
"IceCreamCone",
|
|
5728
|
+
"IdCard",
|
|
5729
|
+
"IdCardLanyard",
|
|
5730
|
+
"Image",
|
|
5731
|
+
"ImageDown",
|
|
5732
|
+
"ImageMinus",
|
|
5733
|
+
"ImageOff",
|
|
5734
|
+
"ImagePlay",
|
|
5735
|
+
"ImagePlus",
|
|
5736
|
+
"ImageUp",
|
|
5737
|
+
"ImageUpscale",
|
|
5738
|
+
"Images",
|
|
5739
|
+
"Import",
|
|
5740
|
+
"Inbox",
|
|
5741
|
+
"Indent",
|
|
5742
|
+
"IndentDecrease",
|
|
5743
|
+
"IndentIncrease",
|
|
5744
|
+
"IndianRupee",
|
|
5745
|
+
"Infinity",
|
|
5746
|
+
"Info",
|
|
5747
|
+
"Inspect",
|
|
5748
|
+
"InspectionPanel",
|
|
5749
|
+
"Italic",
|
|
5750
|
+
"IterationCcw",
|
|
5751
|
+
"IterationCw",
|
|
5752
|
+
"JapaneseYen",
|
|
5753
|
+
"Joystick",
|
|
5754
|
+
"Kanban",
|
|
5755
|
+
"KanbanSquare",
|
|
5756
|
+
"KanbanSquareDashed",
|
|
5757
|
+
"Kayak",
|
|
5758
|
+
"Key",
|
|
5759
|
+
"KeyRound",
|
|
5760
|
+
"KeySquare",
|
|
5761
|
+
"Keyboard",
|
|
5762
|
+
"KeyboardMusic",
|
|
5763
|
+
"KeyboardOff",
|
|
5764
|
+
"Lamp",
|
|
5765
|
+
"LampCeiling",
|
|
5766
|
+
"LampDesk",
|
|
5767
|
+
"LampFloor",
|
|
5768
|
+
"LampWallDown",
|
|
5769
|
+
"LampWallUp",
|
|
5770
|
+
"LandPlot",
|
|
5771
|
+
"Landmark",
|
|
5772
|
+
"Languages",
|
|
5773
|
+
"Laptop",
|
|
5774
|
+
"Laptop2",
|
|
5775
|
+
"LaptopMinimal",
|
|
5776
|
+
"LaptopMinimalCheck",
|
|
5777
|
+
"Lasso",
|
|
5778
|
+
"LassoSelect",
|
|
5779
|
+
"Laugh",
|
|
5780
|
+
"Layers",
|
|
5781
|
+
"Layers2",
|
|
5782
|
+
"Layers3",
|
|
5783
|
+
"LayersMinus",
|
|
5784
|
+
"LayersPlus",
|
|
5785
|
+
"Layout",
|
|
5786
|
+
"LayoutDashboard",
|
|
5787
|
+
"LayoutGrid",
|
|
5788
|
+
"LayoutList",
|
|
5789
|
+
"LayoutPanelLeft",
|
|
5790
|
+
"LayoutPanelTop",
|
|
5791
|
+
"LayoutTemplate",
|
|
5792
|
+
"Leaf",
|
|
5793
|
+
"LeafyGreen",
|
|
5794
|
+
"Lectern",
|
|
5795
|
+
"LensConcave",
|
|
5796
|
+
"LensConvex",
|
|
5797
|
+
"LetterText",
|
|
5798
|
+
"Library",
|
|
5799
|
+
"LibraryBig",
|
|
5800
|
+
"LibrarySquare",
|
|
5801
|
+
"LifeBuoy",
|
|
5802
|
+
"Ligature",
|
|
5803
|
+
"Lightbulb",
|
|
5804
|
+
"LightbulbOff",
|
|
5805
|
+
"LineChart",
|
|
5806
|
+
"LineDotRightHorizontal",
|
|
5807
|
+
"LineSquiggle",
|
|
5808
|
+
"LineStyle",
|
|
5809
|
+
"Link",
|
|
5810
|
+
"Link2",
|
|
5811
|
+
"Link2Off",
|
|
5812
|
+
"List",
|
|
5813
|
+
"ListCheck",
|
|
5814
|
+
"ListChecks",
|
|
5815
|
+
"ListChevronsDownUp",
|
|
5816
|
+
"ListChevronsUpDown",
|
|
5817
|
+
"ListCollapse",
|
|
5818
|
+
"ListEnd",
|
|
5819
|
+
"ListFilter",
|
|
5820
|
+
"ListFilterPlus",
|
|
5821
|
+
"ListIndentDecrease",
|
|
5822
|
+
"ListIndentIncrease",
|
|
5823
|
+
"ListMinus",
|
|
5824
|
+
"ListMusic",
|
|
5825
|
+
"ListOrdered",
|
|
5826
|
+
"ListPlus",
|
|
5827
|
+
"ListRestart",
|
|
5828
|
+
"ListStart",
|
|
5829
|
+
"ListTodo",
|
|
5830
|
+
"ListTree",
|
|
5831
|
+
"ListVideo",
|
|
5832
|
+
"ListX",
|
|
5833
|
+
"Loader",
|
|
5834
|
+
"Loader2",
|
|
5835
|
+
"LoaderCircle",
|
|
5836
|
+
"LoaderPinwheel",
|
|
5837
|
+
"Locate",
|
|
5838
|
+
"LocateFixed",
|
|
5839
|
+
"LocateOff",
|
|
5840
|
+
"LocationEdit",
|
|
5841
|
+
"Lock",
|
|
5842
|
+
"LockKeyhole",
|
|
5843
|
+
"LockKeyholeOpen",
|
|
5844
|
+
"LockOpen",
|
|
5845
|
+
"LogIn",
|
|
5846
|
+
"LogOut",
|
|
5847
|
+
"Logs",
|
|
5848
|
+
"Lollipop",
|
|
5849
|
+
"Luggage",
|
|
5850
|
+
"MSquare",
|
|
5851
|
+
"Magnet",
|
|
5852
|
+
"Mail",
|
|
5853
|
+
"MailCheck",
|
|
5854
|
+
"MailMinus",
|
|
5855
|
+
"MailOpen",
|
|
5856
|
+
"MailPlus",
|
|
5857
|
+
"MailQuestion",
|
|
5858
|
+
"MailQuestionMark",
|
|
5859
|
+
"MailSearch",
|
|
5860
|
+
"MailWarning",
|
|
5861
|
+
"MailX",
|
|
5862
|
+
"Mailbox",
|
|
5863
|
+
"Mails",
|
|
5864
|
+
"Map",
|
|
5865
|
+
"MapMinus",
|
|
5866
|
+
"MapPin",
|
|
5867
|
+
"MapPinCheck",
|
|
5868
|
+
"MapPinCheckInside",
|
|
5869
|
+
"MapPinHouse",
|
|
5870
|
+
"MapPinMinus",
|
|
5871
|
+
"MapPinMinusInside",
|
|
5872
|
+
"MapPinOff",
|
|
5873
|
+
"MapPinPen",
|
|
5874
|
+
"MapPinPlus",
|
|
5875
|
+
"MapPinPlusInside",
|
|
5876
|
+
"MapPinSearch",
|
|
5877
|
+
"MapPinX",
|
|
5878
|
+
"MapPinXInside",
|
|
5879
|
+
"MapPinned",
|
|
5880
|
+
"MapPlus",
|
|
5881
|
+
"Mars",
|
|
5882
|
+
"MarsStroke",
|
|
5883
|
+
"Martini",
|
|
5884
|
+
"Maximize",
|
|
5885
|
+
"Maximize2",
|
|
5886
|
+
"Medal",
|
|
5887
|
+
"Megaphone",
|
|
5888
|
+
"MegaphoneOff",
|
|
5889
|
+
"Meh",
|
|
5890
|
+
"MemoryStick",
|
|
5891
|
+
"Menu",
|
|
5892
|
+
"MenuSquare",
|
|
5893
|
+
"Merge",
|
|
5894
|
+
"MessageCircle",
|
|
5895
|
+
"MessageCircleCheck",
|
|
5896
|
+
"MessageCircleCode",
|
|
5897
|
+
"MessageCircleDashed",
|
|
5898
|
+
"MessageCircleHeart",
|
|
5899
|
+
"MessageCircleMore",
|
|
5900
|
+
"MessageCircleOff",
|
|
5901
|
+
"MessageCirclePlus",
|
|
5902
|
+
"MessageCircleQuestion",
|
|
5903
|
+
"MessageCircleQuestionMark",
|
|
5904
|
+
"MessageCircleReply",
|
|
5905
|
+
"MessageCircleWarning",
|
|
5906
|
+
"MessageCircleX",
|
|
5907
|
+
"MessageSquare",
|
|
5908
|
+
"MessageSquareCheck",
|
|
5909
|
+
"MessageSquareCode",
|
|
5910
|
+
"MessageSquareDashed",
|
|
5911
|
+
"MessageSquareDiff",
|
|
5912
|
+
"MessageSquareDot",
|
|
5913
|
+
"MessageSquareHeart",
|
|
5914
|
+
"MessageSquareLock",
|
|
5915
|
+
"MessageSquareMore",
|
|
5916
|
+
"MessageSquareOff",
|
|
5917
|
+
"MessageSquarePlus",
|
|
5918
|
+
"MessageSquareQuote",
|
|
5919
|
+
"MessageSquareReply",
|
|
5920
|
+
"MessageSquareShare",
|
|
5921
|
+
"MessageSquareText",
|
|
5922
|
+
"MessageSquareWarning",
|
|
5923
|
+
"MessageSquareX",
|
|
5924
|
+
"MessagesSquare",
|
|
5925
|
+
"Metronome",
|
|
5926
|
+
"Mic",
|
|
5927
|
+
"Mic2",
|
|
5928
|
+
"MicOff",
|
|
5929
|
+
"MicVocal",
|
|
5930
|
+
"Microchip",
|
|
5931
|
+
"Microscope",
|
|
5932
|
+
"Microwave",
|
|
5933
|
+
"Milestone",
|
|
5934
|
+
"Milk",
|
|
5935
|
+
"MilkOff",
|
|
5936
|
+
"Minimize",
|
|
5937
|
+
"Minimize2",
|
|
5938
|
+
"Minus",
|
|
5939
|
+
"MinusCircle",
|
|
5940
|
+
"MinusSquare",
|
|
5941
|
+
"MirrorRectangular",
|
|
5942
|
+
"MirrorRound",
|
|
5943
|
+
"Monitor",
|
|
5944
|
+
"MonitorCheck",
|
|
5945
|
+
"MonitorCloud",
|
|
5946
|
+
"MonitorCog",
|
|
5947
|
+
"MonitorDot",
|
|
5948
|
+
"MonitorDown",
|
|
5949
|
+
"MonitorOff",
|
|
5950
|
+
"MonitorPause",
|
|
5951
|
+
"MonitorPlay",
|
|
5952
|
+
"MonitorSmartphone",
|
|
5953
|
+
"MonitorSpeaker",
|
|
5954
|
+
"MonitorStop",
|
|
5955
|
+
"MonitorUp",
|
|
5956
|
+
"MonitorX",
|
|
5957
|
+
"Moon",
|
|
5958
|
+
"MoonStar",
|
|
5959
|
+
"MoreHorizontal",
|
|
5960
|
+
"MoreVertical",
|
|
5961
|
+
"Motorbike",
|
|
5962
|
+
"Mountain",
|
|
5963
|
+
"MountainSnow",
|
|
5964
|
+
"Mouse",
|
|
5965
|
+
"MouseLeft",
|
|
5966
|
+
"MouseOff",
|
|
5967
|
+
"MousePointer",
|
|
5968
|
+
"MousePointer2",
|
|
5969
|
+
"MousePointer2Off",
|
|
5970
|
+
"MousePointerBan",
|
|
5971
|
+
"MousePointerClick",
|
|
5972
|
+
"MousePointerSquareDashed",
|
|
5973
|
+
"MouseRight",
|
|
5974
|
+
"Move",
|
|
5975
|
+
"Move3D",
|
|
5976
|
+
"MoveDiagonal",
|
|
5977
|
+
"MoveDiagonal2",
|
|
5978
|
+
"MoveDown",
|
|
5979
|
+
"MoveDownLeft",
|
|
5980
|
+
"MoveDownRight",
|
|
5981
|
+
"MoveHorizontal",
|
|
5982
|
+
"MoveLeft",
|
|
5983
|
+
"MoveRight",
|
|
5984
|
+
"MoveUp",
|
|
5985
|
+
"MoveUpLeft",
|
|
5986
|
+
"MoveUpRight",
|
|
5987
|
+
"MoveVertical",
|
|
5988
|
+
"Music",
|
|
5989
|
+
"Music2",
|
|
5990
|
+
"Music3",
|
|
5991
|
+
"Music4",
|
|
5992
|
+
"Navigation",
|
|
5993
|
+
"Navigation2",
|
|
5994
|
+
"Navigation2Off",
|
|
5995
|
+
"NavigationOff",
|
|
5996
|
+
"Network",
|
|
5997
|
+
"Newspaper",
|
|
5998
|
+
"Nfc",
|
|
5999
|
+
"NonBinary",
|
|
6000
|
+
"Notebook",
|
|
6001
|
+
"NotebookPen",
|
|
6002
|
+
"NotebookTabs",
|
|
6003
|
+
"NotebookText",
|
|
6004
|
+
"NotepadText",
|
|
6005
|
+
"NotepadTextDashed",
|
|
6006
|
+
"Nut",
|
|
6007
|
+
"NutOff",
|
|
6008
|
+
"Octagon",
|
|
6009
|
+
"OctagonAlert",
|
|
6010
|
+
"OctagonMinus",
|
|
6011
|
+
"OctagonPause",
|
|
6012
|
+
"OctagonX",
|
|
6013
|
+
"Omega",
|
|
6014
|
+
"Option",
|
|
6015
|
+
"Orbit",
|
|
6016
|
+
"Origami",
|
|
6017
|
+
"Outdent",
|
|
6018
|
+
"Package",
|
|
6019
|
+
"Package2",
|
|
6020
|
+
"PackageCheck",
|
|
6021
|
+
"PackageMinus",
|
|
6022
|
+
"PackageOpen",
|
|
6023
|
+
"PackagePlus",
|
|
6024
|
+
"PackageSearch",
|
|
6025
|
+
"PackageX",
|
|
6026
|
+
"PaintBucket",
|
|
6027
|
+
"PaintRoller",
|
|
6028
|
+
"Paintbrush",
|
|
6029
|
+
"Paintbrush2",
|
|
6030
|
+
"PaintbrushVertical",
|
|
6031
|
+
"Palette",
|
|
6032
|
+
"Palmtree",
|
|
6033
|
+
"Panda",
|
|
6034
|
+
"PanelBottom",
|
|
6035
|
+
"PanelBottomClose",
|
|
6036
|
+
"PanelBottomDashed",
|
|
6037
|
+
"PanelBottomInactive",
|
|
6038
|
+
"PanelBottomOpen",
|
|
6039
|
+
"PanelLeft",
|
|
6040
|
+
"PanelLeftClose",
|
|
6041
|
+
"PanelLeftDashed",
|
|
6042
|
+
"PanelLeftInactive",
|
|
6043
|
+
"PanelLeftOpen",
|
|
6044
|
+
"PanelLeftRightDashed",
|
|
6045
|
+
"PanelRight",
|
|
6046
|
+
"PanelRightClose",
|
|
6047
|
+
"PanelRightDashed",
|
|
6048
|
+
"PanelRightInactive",
|
|
6049
|
+
"PanelRightOpen",
|
|
6050
|
+
"PanelTop",
|
|
6051
|
+
"PanelTopBottomDashed",
|
|
6052
|
+
"PanelTopClose",
|
|
6053
|
+
"PanelTopDashed",
|
|
6054
|
+
"PanelTopInactive",
|
|
6055
|
+
"PanelTopOpen",
|
|
6056
|
+
"PanelsLeftBottom",
|
|
6057
|
+
"PanelsLeftRight",
|
|
6058
|
+
"PanelsRightBottom",
|
|
6059
|
+
"PanelsTopBottom",
|
|
6060
|
+
"PanelsTopLeft",
|
|
6061
|
+
"Paperclip",
|
|
6062
|
+
"Parentheses",
|
|
6063
|
+
"ParkingCircle",
|
|
6064
|
+
"ParkingCircleOff",
|
|
6065
|
+
"ParkingMeter",
|
|
6066
|
+
"ParkingSquare",
|
|
6067
|
+
"ParkingSquareOff",
|
|
6068
|
+
"PartyPopper",
|
|
6069
|
+
"Pause",
|
|
6070
|
+
"PauseCircle",
|
|
6071
|
+
"PauseOctagon",
|
|
6072
|
+
"PawPrint",
|
|
6073
|
+
"PcCase",
|
|
6074
|
+
"Pen",
|
|
6075
|
+
"PenBox",
|
|
6076
|
+
"PenLine",
|
|
6077
|
+
"PenOff",
|
|
6078
|
+
"PenSquare",
|
|
6079
|
+
"PenTool",
|
|
6080
|
+
"Pencil",
|
|
6081
|
+
"PencilLine",
|
|
6082
|
+
"PencilOff",
|
|
6083
|
+
"PencilRuler",
|
|
6084
|
+
"Pentagon",
|
|
6085
|
+
"Percent",
|
|
6086
|
+
"PercentCircle",
|
|
6087
|
+
"PercentDiamond",
|
|
6088
|
+
"PercentSquare",
|
|
6089
|
+
"PersonStanding",
|
|
6090
|
+
"PhilippinePeso",
|
|
6091
|
+
"Phone",
|
|
6092
|
+
"PhoneCall",
|
|
6093
|
+
"PhoneForwarded",
|
|
6094
|
+
"PhoneIncoming",
|
|
6095
|
+
"PhoneMissed",
|
|
6096
|
+
"PhoneOff",
|
|
6097
|
+
"PhoneOutgoing",
|
|
6098
|
+
"Pi",
|
|
6099
|
+
"PiSquare",
|
|
6100
|
+
"Piano",
|
|
6101
|
+
"Pickaxe",
|
|
6102
|
+
"PictureInPicture",
|
|
6103
|
+
"PictureInPicture2",
|
|
6104
|
+
"PieChart",
|
|
6105
|
+
"PiggyBank",
|
|
6106
|
+
"Pilcrow",
|
|
6107
|
+
"PilcrowLeft",
|
|
6108
|
+
"PilcrowRight",
|
|
6109
|
+
"PilcrowSquare",
|
|
6110
|
+
"Pill",
|
|
6111
|
+
"PillBottle",
|
|
6112
|
+
"Pin",
|
|
6113
|
+
"PinOff",
|
|
6114
|
+
"Pipette",
|
|
6115
|
+
"Pizza",
|
|
6116
|
+
"Plane",
|
|
6117
|
+
"PlaneLanding",
|
|
6118
|
+
"PlaneTakeoff",
|
|
6119
|
+
"Play",
|
|
6120
|
+
"PlayCircle",
|
|
6121
|
+
"PlaySquare",
|
|
6122
|
+
"Plug",
|
|
6123
|
+
"Plug2",
|
|
6124
|
+
"PlugZap",
|
|
6125
|
+
"PlugZap2",
|
|
6126
|
+
"Plus",
|
|
6127
|
+
"PlusCircle",
|
|
6128
|
+
"PlusSquare",
|
|
6129
|
+
"PocketKnife",
|
|
6130
|
+
"Podcast",
|
|
6131
|
+
"Pointer",
|
|
6132
|
+
"PointerOff",
|
|
6133
|
+
"Popcorn",
|
|
6134
|
+
"Popsicle",
|
|
6135
|
+
"PoundSterling",
|
|
6136
|
+
"Power",
|
|
6137
|
+
"PowerCircle",
|
|
6138
|
+
"PowerOff",
|
|
6139
|
+
"PowerSquare",
|
|
6140
|
+
"Presentation",
|
|
6141
|
+
"Printer",
|
|
6142
|
+
"PrinterCheck",
|
|
6143
|
+
"PrinterX",
|
|
6144
|
+
"Projector",
|
|
6145
|
+
"Proportions",
|
|
6146
|
+
"Puzzle",
|
|
6147
|
+
"Pyramid",
|
|
6148
|
+
"QrCode",
|
|
6149
|
+
"Quote",
|
|
6150
|
+
"Rabbit",
|
|
6151
|
+
"Radar",
|
|
6152
|
+
"Radiation",
|
|
6153
|
+
"Radical",
|
|
6154
|
+
"Radio",
|
|
6155
|
+
"RadioOff",
|
|
6156
|
+
"RadioReceiver",
|
|
6157
|
+
"RadioTower",
|
|
6158
|
+
"Radius",
|
|
6159
|
+
"Rainbow",
|
|
6160
|
+
"Rat",
|
|
6161
|
+
"Ratio",
|
|
6162
|
+
"Receipt",
|
|
6163
|
+
"ReceiptCent",
|
|
6164
|
+
"ReceiptEuro",
|
|
6165
|
+
"ReceiptIndianRupee",
|
|
6166
|
+
"ReceiptJapaneseYen",
|
|
6167
|
+
"ReceiptPoundSterling",
|
|
6168
|
+
"ReceiptRussianRuble",
|
|
6169
|
+
"ReceiptSwissFranc",
|
|
6170
|
+
"ReceiptText",
|
|
6171
|
+
"ReceiptTurkishLira",
|
|
6172
|
+
"RectangleCircle",
|
|
6173
|
+
"RectangleEllipsis",
|
|
6174
|
+
"RectangleGoggles",
|
|
6175
|
+
"RectangleHorizontal",
|
|
6176
|
+
"RectangleVertical",
|
|
6177
|
+
"Recycle",
|
|
6178
|
+
"Redo",
|
|
6179
|
+
"Redo2",
|
|
6180
|
+
"RedoDot",
|
|
6181
|
+
"RefreshCcw",
|
|
6182
|
+
"RefreshCcwDot",
|
|
6183
|
+
"RefreshCw",
|
|
6184
|
+
"RefreshCwOff",
|
|
6185
|
+
"Refrigerator",
|
|
6186
|
+
"Regex",
|
|
6187
|
+
"RemoveFormatting",
|
|
6188
|
+
"Repeat",
|
|
6189
|
+
"Repeat1",
|
|
6190
|
+
"Repeat2",
|
|
6191
|
+
"RepeatOff",
|
|
6192
|
+
"Replace",
|
|
6193
|
+
"ReplaceAll",
|
|
6194
|
+
"Reply",
|
|
6195
|
+
"ReplyAll",
|
|
6196
|
+
"Rewind",
|
|
6197
|
+
"Ribbon",
|
|
6198
|
+
"Road",
|
|
6199
|
+
"Rocket",
|
|
6200
|
+
"RockingChair",
|
|
6201
|
+
"RollerCoaster",
|
|
6202
|
+
"Rose",
|
|
6203
|
+
"Rotate3D",
|
|
6204
|
+
"RotateCcw",
|
|
6205
|
+
"RotateCcwKey",
|
|
6206
|
+
"RotateCcwSquare",
|
|
6207
|
+
"RotateCw",
|
|
6208
|
+
"RotateCwSquare",
|
|
6209
|
+
"Route",
|
|
6210
|
+
"RouteOff",
|
|
6211
|
+
"Router",
|
|
6212
|
+
"Rows",
|
|
6213
|
+
"Rows2",
|
|
6214
|
+
"Rows3",
|
|
6215
|
+
"Rows4",
|
|
6216
|
+
"Rss",
|
|
6217
|
+
"Ruler",
|
|
6218
|
+
"RulerDimensionLine",
|
|
6219
|
+
"RussianRuble",
|
|
6220
|
+
"Sailboat",
|
|
6221
|
+
"Salad",
|
|
6222
|
+
"Sandwich",
|
|
6223
|
+
"Satellite",
|
|
6224
|
+
"SatelliteDish",
|
|
6225
|
+
"SaudiRiyal",
|
|
6226
|
+
"Save",
|
|
6227
|
+
"SaveAll",
|
|
6228
|
+
"SaveOff",
|
|
6229
|
+
"Scale",
|
|
6230
|
+
"Scale3D",
|
|
6231
|
+
"Scaling",
|
|
6232
|
+
"Scan",
|
|
6233
|
+
"ScanBarcode",
|
|
6234
|
+
"ScanEye",
|
|
6235
|
+
"ScanFace",
|
|
6236
|
+
"ScanHeart",
|
|
6237
|
+
"ScanLine",
|
|
6238
|
+
"ScanQrCode",
|
|
6239
|
+
"ScanSearch",
|
|
6240
|
+
"ScanText",
|
|
6241
|
+
"ScatterChart",
|
|
6242
|
+
"School",
|
|
6243
|
+
"School2",
|
|
6244
|
+
"Scissors",
|
|
6245
|
+
"ScissorsLineDashed",
|
|
6246
|
+
"ScissorsSquare",
|
|
6247
|
+
"ScissorsSquareDashedBottom",
|
|
6248
|
+
"Scooter",
|
|
6249
|
+
"ScreenShare",
|
|
6250
|
+
"ScreenShareOff",
|
|
6251
|
+
"Scroll",
|
|
6252
|
+
"ScrollText",
|
|
6253
|
+
"Search",
|
|
6254
|
+
"SearchAlert",
|
|
6255
|
+
"SearchCheck",
|
|
6256
|
+
"SearchCode",
|
|
6257
|
+
"SearchSlash",
|
|
6258
|
+
"SearchX",
|
|
6259
|
+
"Section",
|
|
6260
|
+
"Send",
|
|
6261
|
+
"SendHorizonal",
|
|
6262
|
+
"SendHorizontal",
|
|
6263
|
+
"SendToBack",
|
|
6264
|
+
"SeparatorHorizontal",
|
|
6265
|
+
"SeparatorVertical",
|
|
6266
|
+
"Server",
|
|
6267
|
+
"ServerCog",
|
|
6268
|
+
"ServerCrash",
|
|
6269
|
+
"ServerOff",
|
|
6270
|
+
"Settings",
|
|
6271
|
+
"Settings2",
|
|
6272
|
+
"Shapes",
|
|
6273
|
+
"Share",
|
|
6274
|
+
"Share2",
|
|
6275
|
+
"Sheet",
|
|
6276
|
+
"Shell",
|
|
6277
|
+
"ShelvingUnit",
|
|
6278
|
+
"Shield",
|
|
6279
|
+
"ShieldAlert",
|
|
6280
|
+
"ShieldBan",
|
|
6281
|
+
"ShieldCheck",
|
|
6282
|
+
"ShieldClose",
|
|
6283
|
+
"ShieldCog",
|
|
6284
|
+
"ShieldCogCorner",
|
|
6285
|
+
"ShieldEllipsis",
|
|
6286
|
+
"ShieldHalf",
|
|
6287
|
+
"ShieldMinus",
|
|
6288
|
+
"ShieldOff",
|
|
6289
|
+
"ShieldPlus",
|
|
6290
|
+
"ShieldQuestion",
|
|
6291
|
+
"ShieldQuestionMark",
|
|
6292
|
+
"ShieldUser",
|
|
6293
|
+
"ShieldX",
|
|
6294
|
+
"Ship",
|
|
6295
|
+
"ShipWheel",
|
|
6296
|
+
"Shirt",
|
|
6297
|
+
"ShoppingBag",
|
|
6298
|
+
"ShoppingBasket",
|
|
6299
|
+
"ShoppingCart",
|
|
6300
|
+
"Shovel",
|
|
6301
|
+
"ShowerHead",
|
|
6302
|
+
"Shredder",
|
|
6303
|
+
"Shrimp",
|
|
6304
|
+
"Shrink",
|
|
6305
|
+
"Shrub",
|
|
6306
|
+
"Shuffle",
|
|
6307
|
+
"Sidebar",
|
|
6308
|
+
"SidebarClose",
|
|
6309
|
+
"SidebarOpen",
|
|
6310
|
+
"Sigma",
|
|
6311
|
+
"SigmaSquare",
|
|
6312
|
+
"Signal",
|
|
6313
|
+
"SignalHigh",
|
|
6314
|
+
"SignalLow",
|
|
6315
|
+
"SignalMedium",
|
|
6316
|
+
"SignalZero",
|
|
6317
|
+
"Signature",
|
|
6318
|
+
"Signpost",
|
|
6319
|
+
"SignpostBig",
|
|
6320
|
+
"Siren",
|
|
6321
|
+
"SkipBack",
|
|
6322
|
+
"SkipForward",
|
|
6323
|
+
"Skull",
|
|
6324
|
+
"Slash",
|
|
6325
|
+
"SlashSquare",
|
|
6326
|
+
"Slice",
|
|
6327
|
+
"Sliders",
|
|
6328
|
+
"SlidersHorizontal",
|
|
6329
|
+
"SlidersVertical",
|
|
6330
|
+
"Smartphone",
|
|
6331
|
+
"SmartphoneCharging",
|
|
6332
|
+
"SmartphoneNfc",
|
|
6333
|
+
"Smile",
|
|
6334
|
+
"SmilePlus",
|
|
6335
|
+
"Snail",
|
|
6336
|
+
"Snowflake",
|
|
6337
|
+
"SoapDispenserDroplet",
|
|
6338
|
+
"Sofa",
|
|
6339
|
+
"SolarPanel",
|
|
6340
|
+
"SortAsc",
|
|
6341
|
+
"SortDesc",
|
|
6342
|
+
"Soup",
|
|
6343
|
+
"Space",
|
|
6344
|
+
"Spade",
|
|
6345
|
+
"Sparkle",
|
|
6346
|
+
"Sparkles",
|
|
6347
|
+
"Speaker",
|
|
6348
|
+
"Speech",
|
|
6349
|
+
"SpellCheck",
|
|
6350
|
+
"SpellCheck2",
|
|
6351
|
+
"Spline",
|
|
6352
|
+
"SplinePointer",
|
|
6353
|
+
"Split",
|
|
6354
|
+
"SplitSquareHorizontal",
|
|
6355
|
+
"SplitSquareVertical",
|
|
6356
|
+
"Spool",
|
|
6357
|
+
"SportShoe",
|
|
6358
|
+
"Spotlight",
|
|
6359
|
+
"SprayCan",
|
|
6360
|
+
"Sprout",
|
|
6361
|
+
"Square",
|
|
6362
|
+
"SquareActivity",
|
|
6363
|
+
"SquareArrowDown",
|
|
6364
|
+
"SquareArrowDownLeft",
|
|
6365
|
+
"SquareArrowDownRight",
|
|
6366
|
+
"SquareArrowLeft",
|
|
6367
|
+
"SquareArrowOutDownLeft",
|
|
6368
|
+
"SquareArrowOutDownRight",
|
|
6369
|
+
"SquareArrowOutUpLeft",
|
|
6370
|
+
"SquareArrowOutUpRight",
|
|
6371
|
+
"SquareArrowRight",
|
|
6372
|
+
"SquareArrowRightEnter",
|
|
6373
|
+
"SquareArrowRightExit",
|
|
6374
|
+
"SquareArrowUp",
|
|
6375
|
+
"SquareArrowUpLeft",
|
|
6376
|
+
"SquareArrowUpRight",
|
|
6377
|
+
"SquareAsterisk",
|
|
6378
|
+
"SquareBottomDashedScissors",
|
|
6379
|
+
"SquareCenterlineDashedHorizontal",
|
|
6380
|
+
"SquareCenterlineDashedVertical",
|
|
6381
|
+
"SquareChartGantt",
|
|
6382
|
+
"SquareCheck",
|
|
6383
|
+
"SquareCheckBig",
|
|
6384
|
+
"SquareChevronDown",
|
|
6385
|
+
"SquareChevronLeft",
|
|
6386
|
+
"SquareChevronRight",
|
|
6387
|
+
"SquareChevronUp",
|
|
6388
|
+
"SquareCode",
|
|
6389
|
+
"SquareDashed",
|
|
6390
|
+
"SquareDashedBottom",
|
|
6391
|
+
"SquareDashedBottomCode",
|
|
6392
|
+
"SquareDashedKanban",
|
|
6393
|
+
"SquareDashedMousePointer",
|
|
6394
|
+
"SquareDashedText",
|
|
6395
|
+
"SquareDashedTopSolid",
|
|
6396
|
+
"SquareDivide",
|
|
6397
|
+
"SquareDot",
|
|
6398
|
+
"SquareEqual",
|
|
6399
|
+
"SquareFunction",
|
|
6400
|
+
"SquareGanttChart",
|
|
6401
|
+
"SquareKanban",
|
|
6402
|
+
"SquareLibrary",
|
|
6403
|
+
"SquareM",
|
|
6404
|
+
"SquareMenu",
|
|
6405
|
+
"SquareMinus",
|
|
6406
|
+
"SquareMousePointer",
|
|
6407
|
+
"SquareParking",
|
|
6408
|
+
"SquareParkingOff",
|
|
6409
|
+
"SquarePause",
|
|
6410
|
+
"SquarePen",
|
|
6411
|
+
"SquarePercent",
|
|
6412
|
+
"SquarePi",
|
|
6413
|
+
"SquarePilcrow",
|
|
6414
|
+
"SquarePlay",
|
|
6415
|
+
"SquarePlus",
|
|
6416
|
+
"SquarePower",
|
|
6417
|
+
"SquareRadical",
|
|
6418
|
+
"SquareRoundCorner",
|
|
6419
|
+
"SquareScissors",
|
|
6420
|
+
"SquareSigma",
|
|
6421
|
+
"SquareSlash",
|
|
6422
|
+
"SquareSplitHorizontal",
|
|
6423
|
+
"SquareSplitVertical",
|
|
6424
|
+
"SquareSquare",
|
|
6425
|
+
"SquareStack",
|
|
6426
|
+
"SquareStar",
|
|
6427
|
+
"SquareStop",
|
|
6428
|
+
"SquareTerminal",
|
|
6429
|
+
"SquareUser",
|
|
6430
|
+
"SquareUserRound",
|
|
6431
|
+
"SquareX",
|
|
6432
|
+
"SquaresExclude",
|
|
6433
|
+
"SquaresIntersect",
|
|
6434
|
+
"SquaresSubtract",
|
|
6435
|
+
"SquaresUnite",
|
|
6436
|
+
"Squircle",
|
|
6437
|
+
"SquircleDashed",
|
|
6438
|
+
"Squirrel",
|
|
6439
|
+
"Stamp",
|
|
6440
|
+
"Star",
|
|
6441
|
+
"StarHalf",
|
|
6442
|
+
"StarOff",
|
|
6443
|
+
"Stars",
|
|
6444
|
+
"StepBack",
|
|
6445
|
+
"StepForward",
|
|
6446
|
+
"Stethoscope",
|
|
6447
|
+
"Sticker",
|
|
6448
|
+
"StickyNote",
|
|
6449
|
+
"Stone",
|
|
6450
|
+
"StopCircle",
|
|
6451
|
+
"Store",
|
|
6452
|
+
"StretchHorizontal",
|
|
6453
|
+
"StretchVertical",
|
|
6454
|
+
"Strikethrough",
|
|
6455
|
+
"Subscript",
|
|
6456
|
+
"Subtitles",
|
|
6457
|
+
"Sun",
|
|
6458
|
+
"SunDim",
|
|
6459
|
+
"SunMedium",
|
|
6460
|
+
"SunMoon",
|
|
6461
|
+
"SunSnow",
|
|
6462
|
+
"Sunrise",
|
|
6463
|
+
"Sunset",
|
|
6464
|
+
"Superscript",
|
|
6465
|
+
"SwatchBook",
|
|
6466
|
+
"SwissFranc",
|
|
6467
|
+
"SwitchCamera",
|
|
6468
|
+
"Sword",
|
|
6469
|
+
"Swords",
|
|
6470
|
+
"Syringe",
|
|
6471
|
+
"Table",
|
|
6472
|
+
"Table2",
|
|
6473
|
+
"TableCellsMerge",
|
|
6474
|
+
"TableCellsSplit",
|
|
6475
|
+
"TableColumnsSplit",
|
|
6476
|
+
"TableConfig",
|
|
6477
|
+
"TableOfContents",
|
|
6478
|
+
"TableProperties",
|
|
6479
|
+
"TableRowsSplit",
|
|
6480
|
+
"Tablet",
|
|
6481
|
+
"TabletSmartphone",
|
|
6482
|
+
"Tablets",
|
|
6483
|
+
"Tag",
|
|
6484
|
+
"Tags",
|
|
6485
|
+
"Tally1",
|
|
6486
|
+
"Tally2",
|
|
6487
|
+
"Tally3",
|
|
6488
|
+
"Tally4",
|
|
6489
|
+
"Tally5",
|
|
6490
|
+
"Tangent",
|
|
6491
|
+
"Target",
|
|
6492
|
+
"Telescope",
|
|
6493
|
+
"Tent",
|
|
6494
|
+
"TentTree",
|
|
6495
|
+
"Terminal",
|
|
6496
|
+
"TerminalSquare",
|
|
6497
|
+
"TestTube",
|
|
6498
|
+
"TestTube2",
|
|
6499
|
+
"TestTubeDiagonal",
|
|
6500
|
+
"TestTubes",
|
|
6501
|
+
"Text",
|
|
6502
|
+
"TextAlignCenter",
|
|
6503
|
+
"TextAlignEnd",
|
|
6504
|
+
"TextAlignJustify",
|
|
6505
|
+
"TextAlignStart",
|
|
6506
|
+
"TextCursor",
|
|
6507
|
+
"TextCursorInput",
|
|
6508
|
+
"TextInitial",
|
|
6509
|
+
"TextQuote",
|
|
6510
|
+
"TextSearch",
|
|
6511
|
+
"TextSelect",
|
|
6512
|
+
"TextSelection",
|
|
6513
|
+
"TextWrap",
|
|
6514
|
+
"Theater",
|
|
6515
|
+
"Thermometer",
|
|
6516
|
+
"ThermometerSnowflake",
|
|
6517
|
+
"ThermometerSun",
|
|
6518
|
+
"ThumbsDown",
|
|
6519
|
+
"ThumbsUp",
|
|
6520
|
+
"Ticket",
|
|
6521
|
+
"TicketCheck",
|
|
6522
|
+
"TicketMinus",
|
|
6523
|
+
"TicketPercent",
|
|
6524
|
+
"TicketPlus",
|
|
6525
|
+
"TicketSlash",
|
|
6526
|
+
"TicketX",
|
|
6527
|
+
"Tickets",
|
|
6528
|
+
"TicketsPlane",
|
|
6529
|
+
"Timeline",
|
|
6530
|
+
"Timer",
|
|
6531
|
+
"TimerOff",
|
|
6532
|
+
"TimerReset",
|
|
6533
|
+
"ToggleLeft",
|
|
6534
|
+
"ToggleRight",
|
|
6535
|
+
"Toilet",
|
|
6536
|
+
"ToolCase",
|
|
6537
|
+
"Toolbox",
|
|
6538
|
+
"Tornado",
|
|
6539
|
+
"Torus",
|
|
6540
|
+
"Touchpad",
|
|
6541
|
+
"TouchpadOff",
|
|
6542
|
+
"TowelRack",
|
|
6543
|
+
"TowerControl",
|
|
6544
|
+
"ToyBrick",
|
|
6545
|
+
"Tractor",
|
|
6546
|
+
"TrafficCone",
|
|
6547
|
+
"Train",
|
|
6548
|
+
"TrainFront",
|
|
6549
|
+
"TrainFrontTunnel",
|
|
6550
|
+
"TrainTrack",
|
|
6551
|
+
"TramFront",
|
|
6552
|
+
"Transgender",
|
|
6553
|
+
"Trash",
|
|
6554
|
+
"Trash2",
|
|
6555
|
+
"TreeDeciduous",
|
|
6556
|
+
"TreePalm",
|
|
6557
|
+
"TreePine",
|
|
6558
|
+
"Trees",
|
|
6559
|
+
"TrendingDown",
|
|
6560
|
+
"TrendingUp",
|
|
6561
|
+
"TrendingUpDown",
|
|
6562
|
+
"Triangle",
|
|
6563
|
+
"TriangleAlert",
|
|
6564
|
+
"TriangleDashed",
|
|
6565
|
+
"TriangleRight",
|
|
6566
|
+
"Trophy",
|
|
6567
|
+
"Truck",
|
|
6568
|
+
"TruckElectric",
|
|
6569
|
+
"TurkishLira",
|
|
6570
|
+
"Turntable",
|
|
6571
|
+
"Turtle",
|
|
6572
|
+
"Tv",
|
|
6573
|
+
"Tv2",
|
|
6574
|
+
"TvMinimal",
|
|
6575
|
+
"TvMinimalPlay",
|
|
6576
|
+
"Type",
|
|
6577
|
+
"TypeOutline",
|
|
6578
|
+
"Umbrella",
|
|
6579
|
+
"UmbrellaOff",
|
|
6580
|
+
"Underline",
|
|
6581
|
+
"Undo",
|
|
6582
|
+
"Undo2",
|
|
6583
|
+
"UndoDot",
|
|
6584
|
+
"UnfoldHorizontal",
|
|
6585
|
+
"UnfoldVertical",
|
|
6586
|
+
"Ungroup",
|
|
6587
|
+
"University",
|
|
6588
|
+
"Unlink",
|
|
6589
|
+
"Unlink2",
|
|
6590
|
+
"Unlock",
|
|
6591
|
+
"UnlockKeyhole",
|
|
6592
|
+
"Unplug",
|
|
6593
|
+
"Upload",
|
|
6594
|
+
"UploadCloud",
|
|
6595
|
+
"Usb",
|
|
6596
|
+
"User",
|
|
6597
|
+
"User2",
|
|
6598
|
+
"UserCheck",
|
|
6599
|
+
"UserCheck2",
|
|
6600
|
+
"UserCircle",
|
|
6601
|
+
"UserCircle2",
|
|
6602
|
+
"UserCog",
|
|
6603
|
+
"UserCog2",
|
|
6604
|
+
"UserKey",
|
|
6605
|
+
"UserLock",
|
|
6606
|
+
"UserMinus",
|
|
6607
|
+
"UserMinus2",
|
|
6608
|
+
"UserPen",
|
|
6609
|
+
"UserPlus",
|
|
6610
|
+
"UserPlus2",
|
|
6611
|
+
"UserRound",
|
|
6612
|
+
"UserRoundCheck",
|
|
6613
|
+
"UserRoundCog",
|
|
6614
|
+
"UserRoundKey",
|
|
6615
|
+
"UserRoundMinus",
|
|
6616
|
+
"UserRoundPen",
|
|
6617
|
+
"UserRoundPlus",
|
|
6618
|
+
"UserRoundSearch",
|
|
6619
|
+
"UserRoundX",
|
|
6620
|
+
"UserSearch",
|
|
6621
|
+
"UserSquare",
|
|
6622
|
+
"UserSquare2",
|
|
6623
|
+
"UserStar",
|
|
6624
|
+
"UserX",
|
|
6625
|
+
"UserX2",
|
|
6626
|
+
"Users",
|
|
6627
|
+
"Users2",
|
|
6628
|
+
"UsersRound",
|
|
6629
|
+
"Utensils",
|
|
6630
|
+
"UtensilsCrossed",
|
|
6631
|
+
"UtilityPole",
|
|
6632
|
+
"Van",
|
|
6633
|
+
"Variable",
|
|
6634
|
+
"Vault",
|
|
6635
|
+
"VectorSquare",
|
|
6636
|
+
"Vegan",
|
|
6637
|
+
"VenetianMask",
|
|
6638
|
+
"Venus",
|
|
6639
|
+
"VenusAndMars",
|
|
6640
|
+
"Verified",
|
|
6641
|
+
"Vibrate",
|
|
6642
|
+
"VibrateOff",
|
|
6643
|
+
"Video",
|
|
6644
|
+
"VideoOff",
|
|
6645
|
+
"Videotape",
|
|
6646
|
+
"View",
|
|
6647
|
+
"Voicemail",
|
|
6648
|
+
"Volleyball",
|
|
6649
|
+
"Volume",
|
|
6650
|
+
"Volume1",
|
|
6651
|
+
"Volume2",
|
|
6652
|
+
"VolumeOff",
|
|
6653
|
+
"VolumeX",
|
|
6654
|
+
"Vote",
|
|
6655
|
+
"Wallet",
|
|
6656
|
+
"Wallet2",
|
|
6657
|
+
"WalletCards",
|
|
6658
|
+
"WalletMinimal",
|
|
6659
|
+
"Wallpaper",
|
|
6660
|
+
"Wand",
|
|
6661
|
+
"Wand2",
|
|
6662
|
+
"WandSparkles",
|
|
6663
|
+
"Warehouse",
|
|
6664
|
+
"WashingMachine",
|
|
6665
|
+
"Watch",
|
|
6666
|
+
"Waves",
|
|
6667
|
+
"WavesArrowDown",
|
|
6668
|
+
"WavesArrowUp",
|
|
6669
|
+
"WavesHorizontal",
|
|
6670
|
+
"WavesLadder",
|
|
6671
|
+
"WavesVertical",
|
|
6672
|
+
"Waypoints",
|
|
6673
|
+
"Webcam",
|
|
6674
|
+
"Webhook",
|
|
6675
|
+
"WebhookOff",
|
|
6676
|
+
"Weight",
|
|
6677
|
+
"WeightTilde",
|
|
6678
|
+
"Wheat",
|
|
6679
|
+
"WheatOff",
|
|
6680
|
+
"WholeWord",
|
|
6681
|
+
"Wifi",
|
|
6682
|
+
"WifiCog",
|
|
6683
|
+
"WifiHigh",
|
|
6684
|
+
"WifiLow",
|
|
6685
|
+
"WifiOff",
|
|
6686
|
+
"WifiPen",
|
|
6687
|
+
"WifiSync",
|
|
6688
|
+
"WifiZero",
|
|
6689
|
+
"Wind",
|
|
6690
|
+
"WindArrowDown",
|
|
6691
|
+
"Wine",
|
|
6692
|
+
"WineOff",
|
|
6693
|
+
"Workflow",
|
|
6694
|
+
"Worm",
|
|
6695
|
+
"WrapText",
|
|
6696
|
+
"Wrench",
|
|
6697
|
+
"X",
|
|
6698
|
+
"XCircle",
|
|
6699
|
+
"XLineTop",
|
|
6700
|
+
"XOctagon",
|
|
6701
|
+
"XSquare",
|
|
6702
|
+
"Zap",
|
|
6703
|
+
"ZapOff",
|
|
6704
|
+
"ZodiacAquarius",
|
|
6705
|
+
"ZodiacAries",
|
|
6706
|
+
"ZodiacCancer",
|
|
6707
|
+
"ZodiacCapricorn",
|
|
6708
|
+
"ZodiacGemini",
|
|
6709
|
+
"ZodiacLeo",
|
|
6710
|
+
"ZodiacLibra",
|
|
6711
|
+
"ZodiacOphiuchus",
|
|
6712
|
+
"ZodiacPisces",
|
|
6713
|
+
"ZodiacSagittarius",
|
|
6714
|
+
"ZodiacScorpio",
|
|
6715
|
+
"ZodiacTaurus",
|
|
6716
|
+
"ZodiacVirgo",
|
|
6717
|
+
"ZoomIn",
|
|
6718
|
+
"ZoomOut"
|
|
6719
|
+
];
|
|
6720
|
+
//#endregion
|
|
6721
|
+
//#region src/icons/cool_icon_keys.ts
|
|
6722
|
+
var coolIconKeys = [
|
|
6723
|
+
"Rows4",
|
|
6724
|
+
"Video",
|
|
6725
|
+
"Plane",
|
|
6726
|
+
"LayoutDashboard",
|
|
6727
|
+
"LayoutGrid",
|
|
6728
|
+
"Square",
|
|
6729
|
+
"Snowflake",
|
|
6730
|
+
"CircleDashed",
|
|
6731
|
+
"AlignCenterHorizontal",
|
|
6732
|
+
"Disc",
|
|
6733
|
+
"Infinity",
|
|
6734
|
+
"Maximize",
|
|
6735
|
+
"Play",
|
|
6736
|
+
"Sparkles",
|
|
6737
|
+
"Music",
|
|
6738
|
+
"Wallet",
|
|
6739
|
+
"Layout",
|
|
6740
|
+
"Zap",
|
|
6741
|
+
"Circle",
|
|
6742
|
+
"Coffee",
|
|
6743
|
+
"ImageOff",
|
|
6744
|
+
"Sun",
|
|
6745
|
+
"Cable",
|
|
6746
|
+
"CalendarDays",
|
|
6747
|
+
"Dices",
|
|
6748
|
+
"Shapes",
|
|
6749
|
+
"Cloud",
|
|
6750
|
+
"Palette",
|
|
6751
|
+
"CreditCard",
|
|
6752
|
+
"Headphones",
|
|
6753
|
+
"Egg",
|
|
6754
|
+
"Disc3",
|
|
6755
|
+
"Flag",
|
|
6756
|
+
"Bandage",
|
|
6757
|
+
"Thermometer",
|
|
6758
|
+
"Hexagon",
|
|
6759
|
+
"Network",
|
|
6760
|
+
"Library",
|
|
6761
|
+
"Pizza",
|
|
6762
|
+
"Cpu",
|
|
6763
|
+
"Plug",
|
|
6764
|
+
"Files",
|
|
6765
|
+
"Globe",
|
|
6766
|
+
"SignalZero",
|
|
6767
|
+
"Gamepad2",
|
|
6768
|
+
"CloudLightning",
|
|
6769
|
+
"ListTree",
|
|
6770
|
+
"Command"
|
|
6771
|
+
];
|
|
6772
|
+
//#endregion
|
|
6773
|
+
//#region src/icons/GitHubIcon.tsx
|
|
6774
|
+
function GitHubIcon(props) {
|
|
6775
|
+
return /* @__PURE__ */ jsx("svg", {
|
|
6776
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6777
|
+
className: props.className,
|
|
6778
|
+
fill: "currentColor",
|
|
6779
|
+
width: props.size ?? 24,
|
|
6780
|
+
height: props.size ?? 24,
|
|
6781
|
+
viewBox: "0 0 24 24",
|
|
6782
|
+
children: /* @__PURE__ */ jsx("path", { d: "M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z" })
|
|
6526
6783
|
});
|
|
6527
6784
|
}
|
|
6528
|
-
var SortableItem = memo(function SortableItem({ item, index, columnId, ItemComponent }) {
|
|
6529
|
-
const { setNodeRef, attributes, listeners, isDragging: isItemBeingDragged, transform, transition } = useSortable({
|
|
6530
|
-
id: item.id,
|
|
6531
|
-
data: {
|
|
6532
|
-
type: "ITEM",
|
|
6533
|
-
columnId
|
|
6534
|
-
}
|
|
6535
|
-
});
|
|
6536
|
-
return /* @__PURE__ */ jsx("div", {
|
|
6537
|
-
ref: setNodeRef,
|
|
6538
|
-
style: useMemo(() => ({
|
|
6539
|
-
transform: CSS.Transform.toString(transform),
|
|
6540
|
-
transition,
|
|
6541
|
-
zIndex: isItemBeingDragged ? 2 : 1,
|
|
6542
|
-
opacity: isItemBeingDragged ? 0 : 1
|
|
6543
|
-
}), [
|
|
6544
|
-
transform,
|
|
6545
|
-
transition,
|
|
6546
|
-
isItemBeingDragged
|
|
6547
|
-
]),
|
|
6548
|
-
...attributes,
|
|
6549
|
-
...listeners,
|
|
6550
|
-
children: /* @__PURE__ */ jsx(ItemComponent, {
|
|
6551
|
-
item,
|
|
6552
|
-
isDragging: isItemBeingDragged,
|
|
6553
|
-
index
|
|
6554
|
-
})
|
|
6555
|
-
});
|
|
6556
|
-
});
|
|
6557
6785
|
//#endregion
|
|
6558
|
-
//#region src/
|
|
6559
|
-
function
|
|
6560
|
-
|
|
6561
|
-
|
|
6562
|
-
|
|
6563
|
-
|
|
6564
|
-
|
|
6565
|
-
|
|
6566
|
-
|
|
6567
|
-
|
|
6568
|
-
|
|
6569
|
-
|
|
6570
|
-
|
|
6571
|
-
|
|
6572
|
-
|
|
6573
|
-
|
|
6786
|
+
//#region src/icons/HandleIcon.tsx
|
|
6787
|
+
function HandleIcon() {
|
|
6788
|
+
return /* @__PURE__ */ jsxs("svg", {
|
|
6789
|
+
width: "24",
|
|
6790
|
+
height: "24",
|
|
6791
|
+
viewBox: "0 0 100 100",
|
|
6792
|
+
fill: "none",
|
|
6793
|
+
children: [
|
|
6794
|
+
/* @__PURE__ */ jsx("circle", {
|
|
6795
|
+
cx: "28",
|
|
6796
|
+
cy: "50",
|
|
6797
|
+
r: "9",
|
|
6798
|
+
fill: "currentColor"
|
|
6799
|
+
}),
|
|
6800
|
+
/* @__PURE__ */ jsx("circle", {
|
|
6801
|
+
cx: "28",
|
|
6802
|
+
cy: "21",
|
|
6803
|
+
r: "9",
|
|
6804
|
+
fill: "currentColor"
|
|
6805
|
+
}),
|
|
6806
|
+
/* @__PURE__ */ jsx("circle", {
|
|
6807
|
+
cx: "71",
|
|
6808
|
+
cy: "21",
|
|
6809
|
+
r: "9",
|
|
6810
|
+
fill: "currentColor"
|
|
6811
|
+
}),
|
|
6812
|
+
/* @__PURE__ */ jsx("circle", {
|
|
6813
|
+
cx: "71",
|
|
6814
|
+
cy: "50",
|
|
6815
|
+
r: "9",
|
|
6816
|
+
fill: "currentColor"
|
|
6817
|
+
}),
|
|
6818
|
+
/* @__PURE__ */ jsx("circle", {
|
|
6819
|
+
cx: "71",
|
|
6820
|
+
cy: "78",
|
|
6821
|
+
r: "9",
|
|
6822
|
+
fill: "currentColor"
|
|
6823
|
+
}),
|
|
6824
|
+
/* @__PURE__ */ jsx("circle", {
|
|
6825
|
+
cx: "28",
|
|
6826
|
+
cy: "78",
|
|
6827
|
+
r: "9",
|
|
6828
|
+
fill: "currentColor"
|
|
6829
|
+
})
|
|
6830
|
+
]
|
|
6574
6831
|
});
|
|
6575
6832
|
}
|
|
6576
6833
|
//#endregion
|
|
@@ -8131,6 +8388,6 @@ function CollectionView({ dataController, properties, propertiesOrder, displayed
|
|
|
8131
8388
|
});
|
|
8132
8389
|
}
|
|
8133
8390
|
//#endregion
|
|
8134
|
-
export { Alert, AlertCircleIcon, AlertTriangleIcon, AlignLeftIcon, AppWindow, ArrowDownToLineIcon, ArrowLeftIcon, ArrowRightFromLineIcon, ArrowRightIcon, ArrowRightToLineIcon, ArrowUpToLineIcon, Autocomplete, AutocompleteItem, Avatar, Badge, BoldIcon, BookOpenIcon, BooleanSwitch, BooleanSwitchWithLabel, Button, CHIP_COLORS, CalendarIcon, Card, CardView, CenteredView, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpDownIcon, Chip, CircleIcon, CircleUserIcon, CircularProgress, CircularProgressCenter, CodeIcon, Collapse, CollectionCardView, CollectionKanbanView, CollectionListView, CollectionTableView, CollectionView, CollectionViewToolbar, ColorPicker, ColumnsIcon, Container, CopyIcon, DatabaseIcon, DateTimeField, DebouncedTextField, DefaultCellRenderer, Dialog, DialogActions, DialogContent, DialogTitle, DownloadIcon, ErrorBoundary, ExpandablePanel, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileSearchIcon, FileTextIcon, FileUpload, FilterChip, FilterIcon, FilterXIcon, FlagIcon, FolderIcon, FolderPlusIcon, FolderUpIcon, FunctionSquareIcon, GitBranchIcon, GitHubIcon, GlobeIcon, HandleIcon, HashIcon, Heading1Icon, Heading2Icon, Heading3Icon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, ImageIcon, ImageOffIcon, InfoIcon, InfoLabel, InputLabel, ItalicIcon, KanbanIcon, KanbanView, KeyIcon, KeyRoundIcon, Label, LanguagesIcon, LayoutGridIcon, Link2Icon, LinkIcon, ListIcon, ListOrderedIcon, ListView, LoaderIcon, LoadingButton, LockIcon, LogOutIcon, MailIcon, Markdown, Maximize2Icon, Menu, MenuIcon, MenuItem, Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarItemIndicator, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarSubTriggerIndicator, MenubarTrigger, MinusCircleIcon, MinusIcon, MoonIcon, MoreVerticalIcon, MultiSelect, MultiSelectContext, MultiSelectItem, Music2Icon, PanelLeftIcon, Paper, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, Popover, PopoverPrimitive, Portal, PortalContainerProvider, QuoteIcon, RadioGroup, RadioGroupItem, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, ResizablePanels, Rows3Icon, SaveIcon, SearchBar, SearchIcon, Select, SelectGroup, SelectInputLabel, SelectItem, SendIcon, Separator, SettingsIcon, Sheet, ShieldIcon, ShoppingCartIcon, Skeleton, Slider, SlidersHorizontalIcon, Slot, SquareIcon, StarIcon, StrikethroughIcon, SunIcon, SunMoonIcon, Tab, Table, TableBody, TableCell, TableHeader, TableIcon, TableRow, VirtualTable as TableView, VirtualTable, Tabs, TagIcon, TerminalIcon, TextField, TextIcon, TextareaAutosize, ToggleButtonGroup, Tooltip, Trash2Icon, TypeIcon, Typography, UnderlineIcon, UndoIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserPlus, VideoIcon, VoteIcon, Wand2Icon, XCircleIcon, XIcon, cardClickableMixin, cardMixin, cardSelectedMixin, cls, colorClassesMapping, coolIconKeys, debounce, defaultBorderMixin, fieldBackgroundDisabledMixin, fieldBackgroundHoverMixin, fieldBackgroundInvisibleMixin, fieldBackgroundMixin, focusedClasses, focusedDisabled, focusedInvisibleMixin, getColorSchemeForKey, getColorSchemeForSeed, iconKeys, iconSize,
|
|
8391
|
+
export { Alert, AlertCircleIcon, AlertTriangleIcon, AlignLeftIcon, AppWindow, ArrowDownToLineIcon, ArrowLeftIcon, ArrowRightFromLineIcon, ArrowRightIcon, ArrowRightToLineIcon, ArrowUpToLineIcon, Autocomplete, AutocompleteItem, Avatar, Badge, BoldIcon, BookOpenIcon, BooleanSwitch, BooleanSwitchWithLabel, Button, CHIP_COLORS, CalendarIcon, Card, CardView, CenteredView, CheckCircleIcon, CheckIcon, CheckSquareIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpDownIcon, Chip, CircleIcon, CircleUserIcon, CircularProgress, CircularProgressCenter, CodeIcon, Collapse, CollectionCardView, CollectionKanbanView, CollectionListView, CollectionTableView, CollectionView, CollectionViewToolbar, ColorPicker, ColumnsIcon, Container, CopyIcon, DatabaseIcon, DateTimeField, DebouncedTextField, DefaultCellRenderer, Dialog, DialogActions, DialogContent, DialogTitle, DownloadIcon, ErrorBoundary, ExpandablePanel, ExternalLinkIcon, EyeIcon, EyeOffIcon, FileIcon, FileSearchIcon, FileTextIcon, FileUpload, FilterChip, FilterIcon, FilterXIcon, FlagIcon, FolderIcon, FolderPlusIcon, FolderUpIcon, FunctionSquareIcon, GitBranchIcon, GitHubIcon, GlobeIcon, HandleIcon, HashIcon, Heading1Icon, Heading2Icon, Heading3Icon, HelpCircleIcon, HistoryIcon, HomeIcon, IconButton, ImageIcon, ImageOffIcon, InfoIcon, InfoLabel, InputLabel, ItalicIcon, KanbanIcon, KanbanView, KeyIcon, KeyRoundIcon, Label, LanguagesIcon, LayoutGridIcon, Link2Icon, LinkIcon, ListIcon, ListOrderedIcon, ListView, LoaderIcon, LoadingButton, LockIcon, LogOutIcon, MailIcon, Markdown, Maximize2Icon, Menu, MenuIcon, MenuItem, Menubar, MenubarCheckboxItem, MenubarContent, MenubarItem, MenubarItemIndicator, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarSubTriggerIndicator, MenubarTrigger, MinusCircleIcon, MinusIcon, MoonIcon, MoreVerticalIcon, MultiSelect, MultiSelectContext, MultiSelectItem, Music2Icon, PanelLeftIcon, Paper, PauseIcon, PencilIcon, PhoneIcon, PlayIcon, PlusIcon, Popover, PopoverPrimitive, Portal, PortalContainerProvider, QuoteIcon, RadioGroup, RadioGroupItem, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, ResizablePanels, Rows3Icon, SaveIcon, SearchBar, SearchIcon, Select, SelectGroup, SelectInputLabel, SelectItem, SendIcon, Separator, SettingsIcon, Sheet, ShieldIcon, ShoppingCartIcon, Skeleton, Slider, SlidersHorizontalIcon, Slot, SquareIcon, StarIcon, StrikethroughIcon, SunIcon, SunMoonIcon, Tab, Table, TableBody, TableCell, TableHeader, TableIcon, TableRow, VirtualTable as TableView, VirtualTable, Tabs, TagIcon, TerminalIcon, TextField, TextIcon, TextareaAutosize, ToggleButtonGroup, Tooltip, Trash2Icon, TypeIcon, Typography, UnderlineIcon, UndoIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserPlus, VideoIcon, VirtualTableDateField, VirtualTableInput, VirtualTableNumberInput, VirtualTableSelect, VirtualTableSelectionProvider, VirtualTableSwitch, VoteIcon, Wand2Icon, XCircleIcon, XIcon, cardClickableMixin, cardMixin, cardSelectedMixin, cls, colorClassesMapping, coolIconKeys, createVirtualTableSelectionStore, debounce, defaultBorderMixin, fieldBackgroundDisabledMixin, fieldBackgroundHoverMixin, fieldBackgroundInvisibleMixin, fieldBackgroundMixin, focusedClasses, focusedDisabled, focusedInvisibleMixin, getColorSchemeForKey, getColorSchemeForSeed, iconKeys, iconSize, lucideIcons, paperMixin, useAutoComplete, useDebounceCallback, useDebounceValue, useDebouncedCallback, useInjectStyles, useOutsideAlerter, usePortalContainer, useVirtualTableCellSelected, useVirtualTableSelection };
|
|
8135
8392
|
|
|
8136
8393
|
//# sourceMappingURL=index.es.js.map
|