@citizenplane/pimp 8.0.2 → 8.1.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/pimp.es.js CHANGED
@@ -1,34 +1,3 @@
1
- var __defProp = Object.defineProperty;
2
- var __defProps = Object.defineProperties;
3
- var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
4
- var __getOwnPropSymbols = Object.getOwnPropertySymbols;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __propIsEnum = Object.prototype.propertyIsEnumerable;
7
- var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
8
- var __spreadValues = (a2, b) => {
9
- for (var prop in b || (b = {}))
10
- if (__hasOwnProp.call(b, prop))
11
- __defNormalProp(a2, prop, b[prop]);
12
- if (__getOwnPropSymbols)
13
- for (var prop of __getOwnPropSymbols(b)) {
14
- if (__propIsEnum.call(b, prop))
15
- __defNormalProp(a2, prop, b[prop]);
16
- }
17
- return a2;
18
- };
19
- var __spreadProps = (a2, b) => __defProps(a2, __getOwnPropDescs(b));
20
- var __objRest = (source, exclude) => {
21
- var target = {};
22
- for (var prop in source)
23
- if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
24
- target[prop] = source[prop];
25
- if (source != null && __getOwnPropSymbols)
26
- for (var prop of __getOwnPropSymbols(source)) {
27
- if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
28
- target[prop] = source[prop];
29
- }
30
- return target;
31
- };
32
1
  import { resolveComponent, openBlock, createElementBlock, normalizeClass, renderSlot, createBlock, createCommentVNode, createElementVNode, resolveDynamicComponent, mergeProps, withCtx, createVNode, resolveDirective, createTextVNode, toDisplayString, withDirectives, vModelText, Fragment, renderList, vModelSelect, defineComponent, watch, h as h$1, Transition, normalizeStyle, withKeys, TransitionGroup, vShow, ref, withModifiers, vModelCheckbox } from "vue";
33
2
  function _mergeNamespaces(n2, m) {
34
3
  m.forEach(function(e2) {
@@ -44,7 +13,7 @@ function _mergeNamespaces(n2, m) {
44
13
  }
45
14
  });
46
15
  });
47
- return Object.freeze(n2);
16
+ return Object.freeze(Object.defineProperty(n2, Symbol.toStringTag, { value: "Module" }));
48
17
  }
49
18
  /*!
50
19
  * maska v1.5.0
@@ -540,7 +509,7 @@ function parseZoneInfo(ts, offsetFormat, locale, timeZone = null) {
540
509
  if (timeZone) {
541
510
  intlOpts.timeZone = timeZone;
542
511
  }
543
- const modified = __spreadValues({ timeZoneName: offsetFormat }, intlOpts);
512
+ const modified = { timeZoneName: offsetFormat, ...intlOpts };
544
513
  const parsed = new Intl.DateTimeFormat(locale, modified).formatToParts(date).find((m) => m.type.toLowerCase() === "timezonename");
545
514
  return parsed ? parsed.value : null;
546
515
  }
@@ -586,7 +555,7 @@ function formatOffset(offset2, format) {
586
555
  function timeObject(obj) {
587
556
  return pick(obj, ["hour", "minute", "second", "millisecond"]);
588
557
  }
589
- const ianaRegex = /[A-Za-z_+-]{1,256}(:?\/[A-Za-z0-9_+-]{1,256}(\/[A-Za-z0-9_+-]{1,256})?)?/;
558
+ const ianaRegex = /[A-Za-z_+-]{1,256}(?::?\/[A-Za-z0-9_+-]{1,256}(?:\/[A-Za-z0-9_+-]{1,256})?)?/;
590
559
  const monthsLong = [
591
560
  "January",
592
561
  "February",
@@ -789,26 +758,26 @@ class Formatter {
789
758
  if (this.systemLoc === null) {
790
759
  this.systemLoc = this.loc.redefaultToSystem();
791
760
  }
792
- const df = this.systemLoc.dtFormatter(dt, __spreadValues(__spreadValues({}, this.opts), opts));
761
+ const df = this.systemLoc.dtFormatter(dt, { ...this.opts, ...opts });
793
762
  return df.format();
794
763
  }
795
764
  formatDateTime(dt, opts = {}) {
796
- const df = this.loc.dtFormatter(dt, __spreadValues(__spreadValues({}, this.opts), opts));
765
+ const df = this.loc.dtFormatter(dt, { ...this.opts, ...opts });
797
766
  return df.format();
798
767
  }
799
768
  formatDateTimeParts(dt, opts = {}) {
800
- const df = this.loc.dtFormatter(dt, __spreadValues(__spreadValues({}, this.opts), opts));
769
+ const df = this.loc.dtFormatter(dt, { ...this.opts, ...opts });
801
770
  return df.formatToParts();
802
771
  }
803
772
  resolvedOptions(dt, opts = {}) {
804
- const df = this.loc.dtFormatter(dt, __spreadValues(__spreadValues({}, this.opts), opts));
773
+ const df = this.loc.dtFormatter(dt, { ...this.opts, ...opts });
805
774
  return df.resolvedOptions();
806
775
  }
807
776
  num(n2, p2 = 0) {
808
777
  if (this.opts.forceSimple) {
809
778
  return padStart(n2, p2);
810
779
  }
811
- const opts = __spreadValues({}, this.opts);
780
+ const opts = { ...this.opts };
812
781
  if (p2 > 0) {
813
782
  opts.padTo = p2;
814
783
  }
@@ -961,6 +930,8 @@ class Formatter {
961
930
  return "hour";
962
931
  case "d":
963
932
  return "day";
933
+ case "w":
934
+ return "week";
964
935
  case "M":
965
936
  return "month";
966
937
  case "y":
@@ -999,6 +970,9 @@ class Zone {
999
970
  get name() {
1000
971
  throw new ZoneIsAbstractError();
1001
972
  }
973
+ get ianaName() {
974
+ return this.name;
975
+ }
1002
976
  get isUniversal() {
1003
977
  throw new ZoneIsAbstractError();
1004
978
  }
@@ -1051,7 +1025,6 @@ class SystemZone extends Zone {
1051
1025
  return true;
1052
1026
  }
1053
1027
  }
1054
- const matchingRegex = RegExp(`^${ianaRegex.source}$`);
1055
1028
  let dtfCache = {};
1056
1029
  function makeDTF(zone) {
1057
1030
  if (!dtfCache[zone]) {
@@ -1063,7 +1036,8 @@ function makeDTF(zone) {
1063
1036
  day: "2-digit",
1064
1037
  hour: "2-digit",
1065
1038
  minute: "2-digit",
1066
- second: "2-digit"
1039
+ second: "2-digit",
1040
+ era: "short"
1067
1041
  });
1068
1042
  }
1069
1043
  return dtfCache[zone];
@@ -1072,19 +1046,24 @@ const typeToPos = {
1072
1046
  year: 0,
1073
1047
  month: 1,
1074
1048
  day: 2,
1075
- hour: 3,
1076
- minute: 4,
1077
- second: 5
1049
+ era: 3,
1050
+ hour: 4,
1051
+ minute: 5,
1052
+ second: 6
1078
1053
  };
1079
1054
  function hackyOffset(dtf, date) {
1080
- const formatted = dtf.format(date).replace(/\u200E/g, ""), parsed = /(\d+)\/(\d+)\/(\d+),? (\d+):(\d+):(\d+)/.exec(formatted), [, fMonth, fDay, fYear, fHour, fMinute, fSecond] = parsed;
1081
- return [fYear, fMonth, fDay, fHour, fMinute, fSecond];
1055
+ const formatted = dtf.format(date).replace(/\u200E/g, ""), parsed = /(\d+)\/(\d+)\/(\d+) (AD|BC),? (\d+):(\d+):(\d+)/.exec(formatted), [, fMonth, fDay, fYear, fadOrBc, fHour, fMinute, fSecond] = parsed;
1056
+ return [fYear, fMonth, fDay, fadOrBc, fHour, fMinute, fSecond];
1082
1057
  }
1083
1058
  function partsOffset(dtf, date) {
1084
- const formatted = dtf.formatToParts(date), filled = [];
1059
+ const formatted = dtf.formatToParts(date);
1060
+ const filled = [];
1085
1061
  for (let i2 = 0; i2 < formatted.length; i2++) {
1086
- const { type, value } = formatted[i2], pos = typeToPos[type];
1087
- if (!isUndefined(pos)) {
1062
+ const { type, value } = formatted[i2];
1063
+ const pos = typeToPos[type];
1064
+ if (type === "era") {
1065
+ filled[pos] = value;
1066
+ } else if (!isUndefined(pos)) {
1088
1067
  filled[pos] = parseInt(value, 10);
1089
1068
  }
1090
1069
  }
@@ -1103,7 +1082,7 @@ class IANAZone extends Zone {
1103
1082
  dtfCache = {};
1104
1083
  }
1105
1084
  static isValidSpecifier(s2) {
1106
- return !!(s2 && s2.match(matchingRegex));
1085
+ return this.isValidZone(s2);
1107
1086
  }
1108
1087
  static isValidZone(zone) {
1109
1088
  if (!zone) {
@@ -1140,7 +1119,11 @@ class IANAZone extends Zone {
1140
1119
  const date = new Date(ts);
1141
1120
  if (isNaN(date))
1142
1121
  return NaN;
1143
- const dtf = makeDTF(this.name), [year, month, day, hour, minute, second] = dtf.formatToParts ? partsOffset(dtf, date) : hackyOffset(dtf, date);
1122
+ const dtf = makeDTF(this.name);
1123
+ let [year, month, day, adOrBc, hour, minute, second] = dtf.formatToParts ? partsOffset(dtf, date) : hackyOffset(dtf, date);
1124
+ if (adOrBc === "BC") {
1125
+ year = -Math.abs(year) + 1;
1126
+ }
1144
1127
  const adjustedHour = hour === 24 ? 0 : hour;
1145
1128
  const asUTC = objToLocalTS({
1146
1129
  year,
@@ -1193,6 +1176,13 @@ class FixedOffsetZone extends Zone {
1193
1176
  get name() {
1194
1177
  return this.fixed === 0 ? "UTC" : `UTC${formatOffset(this.fixed, "narrow")}`;
1195
1178
  }
1179
+ get ianaName() {
1180
+ if (this.fixed === 0) {
1181
+ return "Etc/UTC";
1182
+ } else {
1183
+ return `Etc/GMT${formatOffset(-this.fixed, "narrow")}`;
1184
+ }
1185
+ }
1196
1186
  offsetName() {
1197
1187
  return this.name;
1198
1188
  }
@@ -1249,14 +1239,14 @@ function normalizeZone(input, defaultZone2) {
1249
1239
  return input;
1250
1240
  } else if (isString(input)) {
1251
1241
  const lowered = input.toLowerCase();
1252
- if (lowered === "local" || lowered === "system")
1242
+ if (lowered === "default")
1253
1243
  return defaultZone2;
1244
+ else if (lowered === "local" || lowered === "system")
1245
+ return SystemZone.instance;
1254
1246
  else if (lowered === "utc" || lowered === "gmt")
1255
1247
  return FixedOffsetZone.utcInstance;
1256
- else if (IANAZone.isValidSpecifier(lowered))
1257
- return IANAZone.create(input);
1258
1248
  else
1259
- return FixedOffsetZone.parseSpecifier(lowered) || new InvalidZone(input);
1249
+ return FixedOffsetZone.parseSpecifier(lowered) || IANAZone.create(input);
1260
1250
  } else if (isNumber(input)) {
1261
1251
  return FixedOffsetZone.instance(input);
1262
1252
  } else if (typeof input === "object" && input.offset && typeof input.offset === "number") {
@@ -1340,7 +1330,7 @@ function getCachedINF(locString, opts = {}) {
1340
1330
  }
1341
1331
  let intlRelCache = {};
1342
1332
  function getCachedRTF(locString, opts = {}) {
1343
- const _a = opts, { base } = _a, cacheKeyOpts = __objRest(_a, ["base"]);
1333
+ const { base, ...cacheKeyOpts } = opts;
1344
1334
  const key = JSON.stringify([locString, cacheKeyOpts]);
1345
1335
  let inf = intlRelCache[key];
1346
1336
  if (!inf) {
@@ -1425,9 +1415,9 @@ class PolyNumberFormatter {
1425
1415
  constructor(intl, forceSimple, opts) {
1426
1416
  this.padTo = opts.padTo || 0;
1427
1417
  this.floor = opts.floor || false;
1428
- const _a = opts, { padTo, floor } = _a, otherOpts = __objRest(_a, ["padTo", "floor"]);
1418
+ const { padTo, floor, ...otherOpts } = opts;
1429
1419
  if (!forceSimple || Object.keys(otherOpts).length > 0) {
1430
- const intlOpts = __spreadValues({ useGrouping: false }, opts);
1420
+ const intlOpts = { useGrouping: false, ...opts };
1431
1421
  if (opts.padTo > 0)
1432
1422
  intlOpts.minimumIntegerDigits = opts.padTo;
1433
1423
  this.inf = getCachedINF(intl, intlOpts);
@@ -1467,7 +1457,7 @@ class PolyDateFormatter {
1467
1457
  this.dt = dt;
1468
1458
  z = dt.zone.name;
1469
1459
  }
1470
- const intlOpts = __spreadValues({}, this.opts);
1460
+ const intlOpts = { ...this.opts };
1471
1461
  if (z) {
1472
1462
  intlOpts.timeZone = z;
1473
1463
  }
@@ -1485,7 +1475,7 @@ class PolyDateFormatter {
1485
1475
  }
1486
1476
  class PolyRelFormatter {
1487
1477
  constructor(intl, isEnglish, opts) {
1488
- this.opts = __spreadValues({ style: "long" }, opts);
1478
+ this.opts = { style: "long", ...opts };
1489
1479
  if (!isEnglish && hasRelative()) {
1490
1480
  this.rtf = getCachedRTF(intl, opts);
1491
1481
  }
@@ -1557,10 +1547,10 @@ class Locale {
1557
1547
  }
1558
1548
  }
1559
1549
  redefaultToEN(alts = {}) {
1560
- return this.clone(__spreadProps(__spreadValues({}, alts), { defaultToEN: true }));
1550
+ return this.clone({ ...alts, defaultToEN: true });
1561
1551
  }
1562
1552
  redefaultToSystem(alts = {}) {
1563
- return this.clone(__spreadProps(__spreadValues({}, alts), { defaultToEN: false }));
1553
+ return this.clone({ ...alts, defaultToEN: false });
1564
1554
  }
1565
1555
  months(length, format = false, defaultOK = true) {
1566
1556
  return listStuff(this, length, defaultOK, months, () => {
@@ -1628,7 +1618,7 @@ function combineRegexes(...regexes) {
1628
1618
  function combineExtractors(...extractors) {
1629
1619
  return (m) => extractors.reduce(([mergedVals, mergedZone, cursor], ex) => {
1630
1620
  const [val, zone, next] = ex(m, cursor);
1631
- return [__spreadValues(__spreadValues({}, mergedVals), val), mergedZone || zone, next];
1621
+ return [{ ...mergedVals, ...val }, zone || mergedZone, next];
1632
1622
  }, [{}, null, 1]).slice(0, 2);
1633
1623
  }
1634
1624
  function parse(s2, ...patterns) {
@@ -1653,7 +1643,19 @@ function simpleParse(...keys) {
1653
1643
  return [ret, null, cursor + i2];
1654
1644
  };
1655
1645
  }
1656
- const offsetRegex = /(?:(Z)|([+-]\d\d)(?::?(\d\d))?)/, isoTimeBaseRegex = /(\d\d)(?::?(\d\d)(?::?(\d\d)(?:[.,](\d{1,30}))?)?)?/, isoTimeRegex = RegExp(`${isoTimeBaseRegex.source}${offsetRegex.source}?`), isoTimeExtensionRegex = RegExp(`(?:T${isoTimeRegex.source})?`), isoYmdRegex = /([+-]\d{6}|\d{4})(?:-?(\d\d)(?:-?(\d\d))?)?/, isoWeekRegex = /(\d{4})-?W(\d\d)(?:-?(\d))?/, isoOrdinalRegex = /(\d{4})-?(\d{3})/, extractISOWeekData = simpleParse("weekYear", "weekNumber", "weekDay"), extractISOOrdinalData = simpleParse("year", "ordinal"), sqlYmdRegex = /(\d{4})-(\d\d)-(\d\d)/, sqlTimeRegex = RegExp(`${isoTimeBaseRegex.source} ?(?:${offsetRegex.source}|(${ianaRegex.source}))?`), sqlTimeExtensionRegex = RegExp(`(?: ${sqlTimeRegex.source})?`);
1646
+ const offsetRegex = /(?:(Z)|([+-]\d\d)(?::?(\d\d))?)/;
1647
+ const isoExtendedZone = `(?:${offsetRegex.source}?(?:\\[(${ianaRegex.source})\\])?)?`;
1648
+ const isoTimeBaseRegex = /(\d\d)(?::?(\d\d)(?::?(\d\d)(?:[.,](\d{1,30}))?)?)?/;
1649
+ const isoTimeRegex = RegExp(`${isoTimeBaseRegex.source}${isoExtendedZone}`);
1650
+ const isoTimeExtensionRegex = RegExp(`(?:T${isoTimeRegex.source})?`);
1651
+ const isoYmdRegex = /([+-]\d{6}|\d{4})(?:-?(\d\d)(?:-?(\d\d))?)?/;
1652
+ const isoWeekRegex = /(\d{4})-?W(\d\d)(?:-?(\d))?/;
1653
+ const isoOrdinalRegex = /(\d{4})-?(\d{3})/;
1654
+ const extractISOWeekData = simpleParse("weekYear", "weekNumber", "weekDay");
1655
+ const extractISOOrdinalData = simpleParse("year", "ordinal");
1656
+ const sqlYmdRegex = /(\d{4})-(\d\d)-(\d\d)/;
1657
+ const sqlTimeRegex = RegExp(`${isoTimeBaseRegex.source} ?(?:${offsetRegex.source}|(${ianaRegex.source}))?`);
1658
+ const sqlTimeExtensionRegex = RegExp(`(?: ${sqlTimeRegex.source})?`);
1657
1659
  function int(match2, pos, fallback) {
1658
1660
  const m = match2[pos];
1659
1661
  return isUndefined(m) ? fallback : parseInteger(m);
@@ -1684,7 +1686,7 @@ function extractIANAZone(match2, cursor) {
1684
1686
  return [{}, zone, cursor + 1];
1685
1687
  }
1686
1688
  const isoTimeOnly = RegExp(`^T?${isoTimeBaseRegex.source}$`);
1687
- const isoDuration = /^-?P(?:(?:(-?\d{1,9}(?:\.\d{1,9})?)Y)?(?:(-?\d{1,9}(?:\.\d{1,9})?)M)?(?:(-?\d{1,9}(?:\.\d{1,9})?)W)?(?:(-?\d{1,9}(?:\.\d{1,9})?)D)?(?:T(?:(-?\d{1,9}(?:\.\d{1,9})?)H)?(?:(-?\d{1,9}(?:\.\d{1,9})?)M)?(?:(-?\d{1,20})(?:[.,](-?\d{1,9}))?S)?)?)$/;
1689
+ const isoDuration = /^-?P(?:(?:(-?\d{1,20}(?:\.\d{1,20})?)Y)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20}(?:\.\d{1,20})?)W)?(?:(-?\d{1,20}(?:\.\d{1,20})?)D)?(?:T(?:(-?\d{1,20}(?:\.\d{1,20})?)H)?(?:(-?\d{1,20}(?:\.\d{1,20})?)M)?(?:(-?\d{1,20})(?:[.,](-?\d{1,20}))?S)?)?)$/;
1688
1690
  function extractISODuration(match2) {
1689
1691
  const [s2, yearStr, monthStr, weekStr, dayStr, hourStr, minuteStr, secondStr, millisecondsStr] = match2;
1690
1692
  const hasNegativePrefix = s2[0] === "-";
@@ -1758,7 +1760,7 @@ function extractRFC2822(match2) {
1758
1760
  function preprocessRFC2822(s2) {
1759
1761
  return s2.replace(/\([^)]*\)|[\n\t]/g, " ").replace(/(\s\s+)/g, " ").trim();
1760
1762
  }
1761
- const rfc1123 = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/, rfc850 = /^(Monday|Tuesday|Wedsday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/, ascii = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/;
1763
+ const rfc1123 = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d\d) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d\d):(\d\d):(\d\d) GMT$/, rfc850 = /^(Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday), (\d\d)-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-(\d\d) (\d\d):(\d\d):(\d\d) GMT$/, ascii = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ( \d|\d\d) (\d\d):(\d\d):(\d\d) (\d{4})$/;
1762
1764
  function extractRFC1123Or850(match2) {
1763
1765
  const [, weekdayStr, dayStr, monthStr, yearStr, hourStr, minuteStr, secondStr] = match2, result = fromStrings(weekdayStr, yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr);
1764
1766
  return [result, FixedOffsetZone.utcInstance];
@@ -1771,10 +1773,10 @@ const isoYmdWithTimeExtensionRegex = combineRegexes(isoYmdRegex, isoTimeExtensio
1771
1773
  const isoWeekWithTimeExtensionRegex = combineRegexes(isoWeekRegex, isoTimeExtensionRegex);
1772
1774
  const isoOrdinalWithTimeExtensionRegex = combineRegexes(isoOrdinalRegex, isoTimeExtensionRegex);
1773
1775
  const isoTimeCombinedRegex = combineRegexes(isoTimeRegex);
1774
- const extractISOYmdTimeAndOffset = combineExtractors(extractISOYmd, extractISOTime, extractISOOffset);
1775
- const extractISOWeekTimeAndOffset = combineExtractors(extractISOWeekData, extractISOTime, extractISOOffset);
1776
- const extractISOOrdinalDateAndTime = combineExtractors(extractISOOrdinalData, extractISOTime, extractISOOffset);
1777
- const extractISOTimeAndOffset = combineExtractors(extractISOTime, extractISOOffset);
1776
+ const extractISOYmdTimeAndOffset = combineExtractors(extractISOYmd, extractISOTime, extractISOOffset, extractIANAZone);
1777
+ const extractISOWeekTimeAndOffset = combineExtractors(extractISOWeekData, extractISOTime, extractISOOffset, extractIANAZone);
1778
+ const extractISOOrdinalDateAndTime = combineExtractors(extractISOOrdinalData, extractISOTime, extractISOOffset, extractIANAZone);
1779
+ const extractISOTimeAndOffset = combineExtractors(extractISOTime, extractISOOffset, extractIANAZone);
1778
1780
  function parseISODate(s2) {
1779
1781
  return parse(s2, [isoYmdWithTimeExtensionRegex, extractISOYmdTimeAndOffset], [isoWeekWithTimeExtensionRegex, extractISOWeekTimeAndOffset], [isoOrdinalWithTimeExtensionRegex, extractISOOrdinalDateAndTime], [isoTimeCombinedRegex, extractISOTimeAndOffset]);
1780
1782
  }
@@ -1793,10 +1795,9 @@ function parseISOTimeOnly(s2) {
1793
1795
  }
1794
1796
  const sqlYmdWithTimeExtensionRegex = combineRegexes(sqlYmdRegex, sqlTimeExtensionRegex);
1795
1797
  const sqlTimeCombinedRegex = combineRegexes(sqlTimeRegex);
1796
- const extractISOYmdTimeOffsetAndIANAZone = combineExtractors(extractISOYmd, extractISOTime, extractISOOffset, extractIANAZone);
1797
1798
  const extractISOTimeOffsetAndIANAZone = combineExtractors(extractISOTime, extractISOOffset, extractIANAZone);
1798
1799
  function parseSQL(s2) {
1799
- return parse(s2, [sqlYmdWithTimeExtensionRegex, extractISOYmdTimeOffsetAndIANAZone], [sqlTimeCombinedRegex, extractISOTimeOffsetAndIANAZone]);
1800
+ return parse(s2, [sqlYmdWithTimeExtensionRegex, extractISOYmdTimeAndOffset], [sqlTimeCombinedRegex, extractISOTimeOffsetAndIANAZone]);
1800
1801
  }
1801
1802
  const INVALID$2 = "Invalid Duration";
1802
1803
  const lowOrderMatrix = {
@@ -1816,7 +1817,7 @@ const lowOrderMatrix = {
1816
1817
  hours: { minutes: 60, seconds: 60 * 60, milliseconds: 60 * 60 * 1e3 },
1817
1818
  minutes: { seconds: 60, milliseconds: 60 * 1e3 },
1818
1819
  seconds: { milliseconds: 1e3 }
1819
- }, casualMatrix = __spreadValues({
1820
+ }, casualMatrix = {
1820
1821
  years: {
1821
1822
  quarters: 4,
1822
1823
  months: 12,
@@ -1843,8 +1844,9 @@ const lowOrderMatrix = {
1843
1844
  minutes: 30 * 24 * 60,
1844
1845
  seconds: 30 * 24 * 60 * 60,
1845
1846
  milliseconds: 30 * 24 * 60 * 60 * 1e3
1846
- }
1847
- }, lowOrderMatrix), daysInYearAccurate = 146097 / 400, daysInMonthAccurate = 146097 / 4800, accurateMatrix = __spreadValues({
1847
+ },
1848
+ ...lowOrderMatrix
1849
+ }, daysInYearAccurate = 146097 / 400, daysInMonthAccurate = 146097 / 4800, accurateMatrix = {
1848
1850
  years: {
1849
1851
  quarters: 4,
1850
1852
  months: 12,
@@ -1871,8 +1873,9 @@ const lowOrderMatrix = {
1871
1873
  minutes: daysInMonthAccurate * 24 * 60,
1872
1874
  seconds: daysInMonthAccurate * 24 * 60 * 60,
1873
1875
  milliseconds: daysInMonthAccurate * 24 * 60 * 60 * 1e3
1874
- }
1875
- }, lowOrderMatrix);
1876
+ },
1877
+ ...lowOrderMatrix
1878
+ };
1876
1879
  const orderedUnits$1 = [
1877
1880
  "years",
1878
1881
  "quarters",
@@ -1887,9 +1890,10 @@ const orderedUnits$1 = [
1887
1890
  const reverseUnits = orderedUnits$1.slice(0).reverse();
1888
1891
  function clone$1(dur, alts, clear = false) {
1889
1892
  const conf = {
1890
- values: clear ? alts.values : __spreadValues(__spreadValues({}, dur.values), alts.values || {}),
1893
+ values: clear ? alts.values : { ...dur.values, ...alts.values || {} },
1891
1894
  loc: dur.loc.clone(alts.loc),
1892
- conversionAccuracy: alts.conversionAccuracy || dur.conversionAccuracy
1895
+ conversionAccuracy: alts.conversionAccuracy || dur.conversionAccuracy,
1896
+ matrix: alts.matrix || dur.matrix
1893
1897
  };
1894
1898
  return new Duration(conf);
1895
1899
  }
@@ -1913,14 +1917,27 @@ function normalizeValues(matrix, vals) {
1913
1917
  }
1914
1918
  }, null);
1915
1919
  }
1920
+ function removeZeroes(vals) {
1921
+ const newVals = {};
1922
+ for (const [key, value] of Object.entries(vals)) {
1923
+ if (value !== 0) {
1924
+ newVals[key] = value;
1925
+ }
1926
+ }
1927
+ return newVals;
1928
+ }
1916
1929
  class Duration {
1917
1930
  constructor(config) {
1918
1931
  const accurate = config.conversionAccuracy === "longterm" || false;
1932
+ let matrix = accurate ? accurateMatrix : casualMatrix;
1933
+ if (config.matrix) {
1934
+ matrix = config.matrix;
1935
+ }
1919
1936
  this.values = config.values;
1920
1937
  this.loc = config.loc || Locale.create();
1921
1938
  this.conversionAccuracy = accurate ? "longterm" : "casual";
1922
1939
  this.invalid = config.invalid || null;
1923
- this.matrix = accurate ? accurateMatrix : casualMatrix;
1940
+ this.matrix = matrix;
1924
1941
  this.isLuxonDuration = true;
1925
1942
  }
1926
1943
  static fromMillis(count, opts) {
@@ -1933,7 +1950,8 @@ class Duration {
1933
1950
  return new Duration({
1934
1951
  values: normalizeObject(obj, Duration.normalizeUnit),
1935
1952
  loc: Locale.fromObject(opts),
1936
- conversionAccuracy: opts.conversionAccuracy
1953
+ conversionAccuracy: opts.conversionAccuracy,
1954
+ matrix: opts.matrix
1937
1955
  });
1938
1956
  }
1939
1957
  static fromDurationLike(durationLike) {
@@ -2009,9 +2027,10 @@ class Duration {
2009
2027
  return this.isValid ? this.loc.numberingSystem : null;
2010
2028
  }
2011
2029
  toFormat(fmt, opts = {}) {
2012
- const fmtOpts = __spreadProps(__spreadValues({}, opts), {
2030
+ const fmtOpts = {
2031
+ ...opts,
2013
2032
  floor: opts.round !== false && opts.floor !== false
2014
- });
2033
+ };
2015
2034
  return this.isValid ? Formatter.create(this.loc, fmtOpts).formatDurationFromString(this, fmt) : INVALID$2;
2016
2035
  }
2017
2036
  toHuman(opts = {}) {
@@ -2020,14 +2039,14 @@ class Duration {
2020
2039
  if (isUndefined(val)) {
2021
2040
  return null;
2022
2041
  }
2023
- return this.loc.numberFormatter(__spreadProps(__spreadValues({ style: "unit", unitDisplay: "long" }, opts), { unit: unit.slice(0, -1) })).format(val);
2042
+ return this.loc.numberFormatter({ style: "unit", unitDisplay: "long", ...opts, unit: unit.slice(0, -1) }).format(val);
2024
2043
  }).filter((n2) => n2);
2025
- return this.loc.listFormatter(__spreadValues({ type: "conjunction", style: opts.listStyle || "narrow" }, opts)).format(l2);
2044
+ return this.loc.listFormatter({ type: "conjunction", style: opts.listStyle || "narrow", ...opts }).format(l2);
2026
2045
  }
2027
2046
  toObject() {
2028
2047
  if (!this.isValid)
2029
2048
  return {};
2030
- return __spreadValues({}, this.values);
2049
+ return { ...this.values };
2031
2050
  }
2032
2051
  toISO() {
2033
2052
  if (!this.isValid)
@@ -2059,12 +2078,13 @@ class Duration {
2059
2078
  const millis = this.toMillis();
2060
2079
  if (millis < 0 || millis >= 864e5)
2061
2080
  return null;
2062
- opts = __spreadValues({
2081
+ opts = {
2063
2082
  suppressMilliseconds: false,
2064
2083
  suppressSeconds: false,
2065
2084
  includePrefix: false,
2066
- format: "extended"
2067
- }, opts);
2085
+ format: "extended",
2086
+ ...opts
2087
+ };
2068
2088
  const value = this.shiftTo("hours", "minutes", "seconds", "milliseconds");
2069
2089
  let fmt = opts.format === "basic" ? "hhmm" : "hh:mm";
2070
2090
  if (!opts.suppressSeconds || value.seconds !== 0 || value.milliseconds !== 0) {
@@ -2123,14 +2143,12 @@ class Duration {
2123
2143
  set(values) {
2124
2144
  if (!this.isValid)
2125
2145
  return this;
2126
- const mixed = __spreadValues(__spreadValues({}, this.values), normalizeObject(values, Duration.normalizeUnit));
2146
+ const mixed = { ...this.values, ...normalizeObject(values, Duration.normalizeUnit) };
2127
2147
  return clone$1(this, { values: mixed });
2128
2148
  }
2129
- reconfigure({ locale, numberingSystem, conversionAccuracy } = {}) {
2130
- const loc = this.loc.clone({ locale, numberingSystem }), opts = { loc };
2131
- if (conversionAccuracy) {
2132
- opts.conversionAccuracy = conversionAccuracy;
2133
- }
2149
+ reconfigure({ locale, numberingSystem, conversionAccuracy, matrix } = {}) {
2150
+ const loc = this.loc.clone({ locale, numberingSystem });
2151
+ const opts = { loc, matrix, conversionAccuracy };
2134
2152
  return clone$1(this, opts);
2135
2153
  }
2136
2154
  as(unit) {
@@ -2143,6 +2161,12 @@ class Duration {
2143
2161
  normalizeValues(this.matrix, vals);
2144
2162
  return clone$1(this, { values: vals }, true);
2145
2163
  }
2164
+ rescale() {
2165
+ if (!this.isValid)
2166
+ return this;
2167
+ const vals = removeZeroes(this.normalize().shiftToAll().toObject());
2168
+ return clone$1(this, { values: vals }, true);
2169
+ }
2146
2170
  shiftTo(...units) {
2147
2171
  if (!this.isValid)
2148
2172
  return this;
@@ -2182,12 +2206,17 @@ class Duration {
2182
2206
  }
2183
2207
  return clone$1(this, { values: built }, true).normalize();
2184
2208
  }
2209
+ shiftToAll() {
2210
+ if (!this.isValid)
2211
+ return this;
2212
+ return this.shiftTo("years", "months", "weeks", "days", "hours", "minutes", "seconds", "milliseconds");
2213
+ }
2185
2214
  negate() {
2186
2215
  if (!this.isValid)
2187
2216
  return this;
2188
2217
  const negated = {};
2189
2218
  for (const k2 of Object.keys(this.values)) {
2190
- negated[k2] = -this.values[k2];
2219
+ negated[k2] = this.values[k2] === 0 ? 0 : -this.values[k2];
2191
2220
  }
2192
2221
  return clone$1(this, { values: negated }, true);
2193
2222
  }
@@ -2536,7 +2565,7 @@ class Info {
2536
2565
  return !zone.isUniversal && proto.offset !== proto.set({ month: 6 }).offset;
2537
2566
  }
2538
2567
  static isValidIANAZone(zone) {
2539
- return IANAZone.isValidSpecifier(zone) && IANAZone.isValidZone(zone);
2568
+ return IANAZone.isValidZone(zone);
2540
2569
  }
2541
2570
  static normalizeZone(input) {
2542
2571
  return normalizeZone(input, Settings.defaultZone);
@@ -2570,7 +2599,7 @@ function dayDiff(earlier, later) {
2570
2599
  function highOrderDiffs(cursor, later, units) {
2571
2600
  const differs = [
2572
2601
  ["years", (a2, b) => b.year - a2.year],
2573
- ["quarters", (a2, b) => b.quarter - a2.quarter],
2602
+ ["quarters", (a2, b) => b.quarter - a2.quarter + (b.year - a2.year) * 4],
2574
2603
  ["months", (a2, b) => b.month - a2.month + (b.year - a2.year) * 12],
2575
2604
  [
2576
2605
  "weeks",
@@ -2693,7 +2722,7 @@ function intUnit(regex, post = (i2) => i2) {
2693
2722
  return { regex, deser: ([s2]) => post(parseDigits(s2)) };
2694
2723
  }
2695
2724
  const NBSP = String.fromCharCode(160);
2696
- const spaceOrNBSP = `( |${NBSP})`;
2725
+ const spaceOrNBSP = `[ ${NBSP}]`;
2697
2726
  const spaceOrNBSPRegExp = new RegExp(spaceOrNBSP, "g");
2698
2727
  function fixListRegex(s2) {
2699
2728
  return s2.replace(/\./g, "\\.?").replace(spaceOrNBSPRegExp, spaceOrNBSP);
@@ -2864,6 +2893,10 @@ const partTypeStyleToTokenVal = {
2864
2893
  second: {
2865
2894
  numeric: "s",
2866
2895
  "2-digit": "ss"
2896
+ },
2897
+ timeZoneName: {
2898
+ long: "ZZZZZ",
2899
+ short: "ZZZ"
2867
2900
  }
2868
2901
  };
2869
2902
  function tokenForPart(part, locale, formatOpts) {
@@ -2992,13 +3025,8 @@ function maybeExpandMacroToken(token, locale) {
2992
3025
  return token;
2993
3026
  }
2994
3027
  const formatOpts = Formatter.macroTokenToFormatOpts(token.val);
2995
- if (!formatOpts) {
2996
- return token;
2997
- }
2998
- const formatter = Formatter.create(locale, formatOpts);
2999
- const parts = formatter.formatDateTimeParts(getDummyDateTime());
3000
- const tokens = parts.map((p2) => tokenForPart(p2, locale, formatOpts));
3001
- if (tokens.includes(void 0)) {
3028
+ const tokens = formatOptsToTokens(formatOpts, locale);
3029
+ if (tokens == null || tokens.includes(void 0)) {
3002
3030
  return token;
3003
3031
  }
3004
3032
  return tokens;
@@ -3022,12 +3050,24 @@ function parseFromTokens(locale, input, format) {
3022
3050
  const { result, zone, specificOffset, invalidReason } = explainFromTokens(locale, input, format);
3023
3051
  return [result, zone, specificOffset, invalidReason];
3024
3052
  }
3053
+ function formatOptsToTokens(formatOpts, locale) {
3054
+ if (!formatOpts) {
3055
+ return null;
3056
+ }
3057
+ const formatter = Formatter.create(locale, formatOpts);
3058
+ const parts = formatter.formatDateTimeParts(getDummyDateTime());
3059
+ return parts.map((p2) => tokenForPart(p2, locale, formatOpts));
3060
+ }
3025
3061
  const nonLeapLadder = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334], leapLadder = [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335];
3026
3062
  function unitOutOfRange(unit, value) {
3027
3063
  return new Invalid("unit out of range", `you specified ${value} (of type ${typeof value}) as a ${unit}, which is invalid`);
3028
3064
  }
3029
3065
  function dayOfWeek(year, month, day) {
3030
- const js = new Date(Date.UTC(year, month - 1, day)).getUTCDay();
3066
+ const d2 = new Date(Date.UTC(year, month - 1, day));
3067
+ if (year < 100 && year >= 0) {
3068
+ d2.setUTCFullYear(d2.getUTCFullYear() - 1900);
3069
+ }
3070
+ const js = d2.getUTCDay();
3031
3071
  return js === 0 ? 7 : js;
3032
3072
  }
3033
3073
  function computeOrdinal(year, month, day) {
@@ -3049,7 +3089,7 @@ function gregorianToWeek(gregObj) {
3049
3089
  } else {
3050
3090
  weekYear = year;
3051
3091
  }
3052
- return __spreadValues({ weekYear, weekNumber, weekday }, timeObject(gregObj));
3092
+ return { weekYear, weekNumber, weekday, ...timeObject(gregObj) };
3053
3093
  }
3054
3094
  function weekToGregorian(weekData) {
3055
3095
  const { weekYear, weekNumber, weekday } = weekData, weekdayOfJan4 = dayOfWeek(weekYear, 1, 4), yearInDays = daysInYear(weekYear);
@@ -3064,17 +3104,17 @@ function weekToGregorian(weekData) {
3064
3104
  year = weekYear;
3065
3105
  }
3066
3106
  const { month, day } = uncomputeOrdinal(year, ordinal);
3067
- return __spreadValues({ year, month, day }, timeObject(weekData));
3107
+ return { year, month, day, ...timeObject(weekData) };
3068
3108
  }
3069
3109
  function gregorianToOrdinal(gregData) {
3070
3110
  const { year, month, day } = gregData;
3071
3111
  const ordinal = computeOrdinal(year, month, day);
3072
- return __spreadValues({ year, ordinal }, timeObject(gregData));
3112
+ return { year, ordinal, ...timeObject(gregData) };
3073
3113
  }
3074
3114
  function ordinalToGregorian(ordinalData) {
3075
3115
  const { year, ordinal } = ordinalData;
3076
3116
  const { month, day } = uncomputeOrdinal(year, ordinal);
3077
- return __spreadValues({ year, month, day }, timeObject(ordinalData));
3117
+ return { year, month, day, ...timeObject(ordinalData) };
3078
3118
  }
3079
3119
  function hasInvalidWeekData(obj) {
3080
3120
  const validYear = isInteger(obj.weekYear), validWeek = integerBetween(obj.weekNumber, 1, weeksInWeekYear(obj.weekYear)), validWeekday = integerBetween(obj.weekday, 1, 7);
@@ -3141,7 +3181,7 @@ function clone(inst, alts) {
3141
3181
  loc: inst.loc,
3142
3182
  invalid: inst.invalid
3143
3183
  };
3144
- return new DateTime(__spreadProps(__spreadValues(__spreadValues({}, current), alts), { old: current }));
3184
+ return new DateTime({ ...current, ...alts, old: current });
3145
3185
  }
3146
3186
  function fixOffset(localTS, o2, tz) {
3147
3187
  let utcGuess = localTS - o2 * 60 * 1e3;
@@ -3173,11 +3213,12 @@ function objToTS(obj, offset2, zone) {
3173
3213
  return fixOffset(objToLocalTS(obj), offset2, zone);
3174
3214
  }
3175
3215
  function adjustTime(inst, dur) {
3176
- const oPre = inst.o, year = inst.c.year + Math.trunc(dur.years), month = inst.c.month + Math.trunc(dur.months) + Math.trunc(dur.quarters) * 3, c2 = __spreadProps(__spreadValues({}, inst.c), {
3216
+ const oPre = inst.o, year = inst.c.year + Math.trunc(dur.years), month = inst.c.month + Math.trunc(dur.months) + Math.trunc(dur.quarters) * 3, c2 = {
3217
+ ...inst.c,
3177
3218
  year,
3178
3219
  month,
3179
3220
  day: Math.min(inst.c.day, daysInMonth(year, month)) + Math.trunc(dur.days) + Math.trunc(dur.weeks) * 7
3180
- }), millisToAdd = Duration.fromObject({
3221
+ }, millisToAdd = Duration.fromObject({
3181
3222
  years: dur.years - Math.trunc(dur.years),
3182
3223
  quarters: dur.quarters - Math.trunc(dur.quarters),
3183
3224
  months: dur.months - Math.trunc(dur.months),
@@ -3198,10 +3239,11 @@ function adjustTime(inst, dur) {
3198
3239
  function parseDataToDateTime(parsed, parsedZone, opts, format, text, specificOffset) {
3199
3240
  const { setZone, zone } = opts;
3200
3241
  if (parsed && Object.keys(parsed).length !== 0) {
3201
- const interpretationZone = parsedZone || zone, inst = DateTime.fromObject(parsed, __spreadProps(__spreadValues({}, opts), {
3242
+ const interpretationZone = parsedZone || zone, inst = DateTime.fromObject(parsed, {
3243
+ ...opts,
3202
3244
  zone: interpretationZone,
3203
3245
  specificOffset
3204
- }));
3246
+ });
3205
3247
  return setZone ? inst : inst.setZone(zone);
3206
3248
  } else {
3207
3249
  return DateTime.invalid(new Invalid("unparsable", `the input "${text}" can't be parsed as ${format}`));
@@ -3230,7 +3272,7 @@ function toISODate(o2, extended) {
3230
3272
  }
3231
3273
  return c2;
3232
3274
  }
3233
- function toISOTime(o2, extended, suppressSeconds, suppressMilliseconds, includeOffset) {
3275
+ function toISOTime(o2, extended, suppressSeconds, suppressMilliseconds, includeOffset, extendedZone) {
3234
3276
  let c2 = padStart(o2.c.hour);
3235
3277
  if (extended) {
3236
3278
  c2 += ":";
@@ -3249,7 +3291,7 @@ function toISOTime(o2, extended, suppressSeconds, suppressMilliseconds, includeO
3249
3291
  }
3250
3292
  }
3251
3293
  if (includeOffset) {
3252
- if (o2.isOffsetFixed && o2.offset === 0) {
3294
+ if (o2.isOffsetFixed && o2.offset === 0 && !extendedZone) {
3253
3295
  c2 += "Z";
3254
3296
  } else if (o2.o < 0) {
3255
3297
  c2 += "-";
@@ -3263,6 +3305,9 @@ function toISOTime(o2, extended, suppressSeconds, suppressMilliseconds, includeO
3263
3305
  c2 += padStart(Math.trunc(o2.o % 60));
3264
3306
  }
3265
3307
  }
3308
+ if (extendedZone) {
3309
+ c2 += "[" + o2.zone.ianaName + "]";
3310
+ }
3266
3311
  return c2;
3267
3312
  }
3268
3313
  const defaultUnitValues = {
@@ -3560,6 +3605,14 @@ class DateTime {
3560
3605
  static isDateTime(o2) {
3561
3606
  return o2 && o2.isLuxonDateTime || false;
3562
3607
  }
3608
+ static parseFormatForOpts(formatOpts, localeOpts = {}) {
3609
+ const tokenList = formatOptsToTokens(formatOpts, Locale.fromObject(localeOpts));
3610
+ return !tokenList ? null : tokenList.map((t2) => t2 ? t2.val : null).join("");
3611
+ }
3612
+ static expandFormat(fmt, localeOpts = {}) {
3613
+ const expanded = expandMacroTokens(Formatter.parseFormat(fmt), Locale.fromObject(localeOpts));
3614
+ return expanded.map((t2) => t2.val).join("");
3615
+ }
3563
3616
  get(unit) {
3564
3617
  return this[unit];
3565
3618
  }
@@ -3665,7 +3718,7 @@ class DateTime {
3665
3718
  if (this.isOffsetFixed) {
3666
3719
  return false;
3667
3720
  } else {
3668
- return this.offset > this.set({ month: 1 }).offset || this.offset > this.set({ month: 5 }).offset;
3721
+ return this.offset > this.set({ month: 1, day: 1 }).offset || this.offset > this.set({ month: 5 }).offset;
3669
3722
  }
3670
3723
  }
3671
3724
  get isInLeapYear() {
@@ -3725,11 +3778,11 @@ class DateTime {
3725
3778
  }
3726
3779
  let mixed;
3727
3780
  if (settingWeekStuff) {
3728
- mixed = weekToGregorian(__spreadValues(__spreadValues({}, gregorianToWeek(this.c)), normalized));
3781
+ mixed = weekToGregorian({ ...gregorianToWeek(this.c), ...normalized });
3729
3782
  } else if (!isUndefined(normalized.ordinal)) {
3730
- mixed = ordinalToGregorian(__spreadValues(__spreadValues({}, gregorianToOrdinal(this.c)), normalized));
3783
+ mixed = ordinalToGregorian({ ...gregorianToOrdinal(this.c), ...normalized });
3731
3784
  } else {
3732
- mixed = __spreadValues(__spreadValues({}, this.toObject()), normalized);
3785
+ mixed = { ...this.toObject(), ...normalized };
3733
3786
  if (isUndefined(normalized.day)) {
3734
3787
  mixed.day = Math.min(daysInMonth(mixed.year, mixed.month), mixed.day);
3735
3788
  }
@@ -3795,7 +3848,8 @@ class DateTime {
3795
3848
  format = "extended",
3796
3849
  suppressSeconds = false,
3797
3850
  suppressMilliseconds = false,
3798
- includeOffset = true
3851
+ includeOffset = true,
3852
+ extendedZone = false
3799
3853
  } = {}) {
3800
3854
  if (!this.isValid) {
3801
3855
  return null;
@@ -3803,7 +3857,7 @@ class DateTime {
3803
3857
  const ext = format === "extended";
3804
3858
  let c2 = toISODate(this, ext);
3805
3859
  c2 += "T";
3806
- c2 += toISOTime(this, ext, suppressSeconds, suppressMilliseconds, includeOffset);
3860
+ c2 += toISOTime(this, ext, suppressSeconds, suppressMilliseconds, includeOffset, extendedZone);
3807
3861
  return c2;
3808
3862
  }
3809
3863
  toISODate({ format = "extended" } = {}) {
@@ -3820,13 +3874,14 @@ class DateTime {
3820
3874
  suppressSeconds = false,
3821
3875
  includeOffset = true,
3822
3876
  includePrefix = false,
3877
+ extendedZone = false,
3823
3878
  format = "extended"
3824
3879
  } = {}) {
3825
3880
  if (!this.isValid) {
3826
3881
  return null;
3827
3882
  }
3828
3883
  let c2 = includePrefix ? "T" : "";
3829
- return c2 + toISOTime(this, format === "extended", suppressSeconds, suppressMilliseconds, includeOffset);
3884
+ return c2 + toISOTime(this, format === "extended", suppressSeconds, suppressMilliseconds, includeOffset, extendedZone);
3830
3885
  }
3831
3886
  toRFC2822() {
3832
3887
  return toTechFormat(this, "EEE, dd LLL yyyy HH:mm:ss ZZZ", false);
@@ -3840,10 +3895,12 @@ class DateTime {
3840
3895
  }
3841
3896
  return toISODate(this, true);
3842
3897
  }
3843
- toSQLTime({ includeOffset = true, includeZone = false } = {}) {
3898
+ toSQLTime({ includeOffset = true, includeZone = false, includeOffsetSpace = true } = {}) {
3844
3899
  let fmt = "HH:mm:ss.SSS";
3845
3900
  if (includeZone || includeOffset) {
3846
- fmt += " ";
3901
+ if (includeOffsetSpace) {
3902
+ fmt += " ";
3903
+ }
3847
3904
  if (includeZone) {
3848
3905
  fmt += "z";
3849
3906
  } else if (includeOffset) {
@@ -3870,6 +3927,9 @@ class DateTime {
3870
3927
  toSeconds() {
3871
3928
  return this.isValid ? this.ts / 1e3 : NaN;
3872
3929
  }
3930
+ toUnixInteger() {
3931
+ return this.isValid ? Math.floor(this.ts / 1e3) : NaN;
3932
+ }
3873
3933
  toJSON() {
3874
3934
  return this.toISO();
3875
3935
  }
@@ -3879,7 +3939,7 @@ class DateTime {
3879
3939
  toObject(opts = {}) {
3880
3940
  if (!this.isValid)
3881
3941
  return {};
3882
- const base = __spreadValues({}, this.c);
3942
+ const base = { ...this.c };
3883
3943
  if (opts.includeConfig) {
3884
3944
  base.outputCalendar = this.outputCalendar;
3885
3945
  base.numberingSystem = this.loc.numberingSystem;
@@ -3894,7 +3954,7 @@ class DateTime {
3894
3954
  if (!this.isValid || !otherDateTime.isValid) {
3895
3955
  return Duration.invalid("created by diffing an invalid DateTime");
3896
3956
  }
3897
- const durOpts = __spreadValues({ locale: this.locale, numberingSystem: this.numberingSystem }, opts);
3957
+ const durOpts = { locale: this.locale, numberingSystem: this.numberingSystem, ...opts };
3898
3958
  const units = maybeArray(unit).map(Duration.normalizeUnit), otherIsLater = otherDateTime.valueOf() > this.valueOf(), earlier = otherIsLater ? this : otherDateTime, later = otherIsLater ? otherDateTime : this, diffed = diff(earlier, later, units, durOpts);
3899
3959
  return otherIsLater ? diffed.negate() : diffed;
3900
3960
  }
@@ -3924,20 +3984,22 @@ class DateTime {
3924
3984
  units = options.unit;
3925
3985
  unit = void 0;
3926
3986
  }
3927
- return diffRelative(base, this.plus(padding), __spreadProps(__spreadValues({}, options), {
3987
+ return diffRelative(base, this.plus(padding), {
3988
+ ...options,
3928
3989
  numeric: "always",
3929
3990
  units,
3930
3991
  unit
3931
- }));
3992
+ });
3932
3993
  }
3933
3994
  toRelativeCalendar(options = {}) {
3934
3995
  if (!this.isValid)
3935
3996
  return null;
3936
- return diffRelative(options.base || DateTime.fromObject({}, { zone: this.zone }), this, __spreadProps(__spreadValues({}, options), {
3997
+ return diffRelative(options.base || DateTime.fromObject({}, { zone: this.zone }), this, {
3998
+ ...options,
3937
3999
  numeric: "auto",
3938
4000
  units: ["years", "months", "days"],
3939
4001
  calendary: true
3940
- }));
4002
+ });
3941
4003
  }
3942
4004
  static min(...dateTimes) {
3943
4005
  if (!dateTimes.every(DateTime.isDateTime)) {
@@ -4058,7 +4120,7 @@ const capitalizeFirstLetter = (rawString) => {
4058
4120
  return "";
4059
4121
  return rawString.charAt(0).toUpperCase() + rawString.slice(1);
4060
4122
  };
4061
- var CpBadge_vue_vue_type_style_index_0_lang = "";
4123
+ var CpBadge_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis,.cpBadge__label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpBadge{display:inline-flex;align-items:center;padding:.25rem .5rem;font-size:.875em;font-weight:500;border-radius:62.5rem;border:.0625rem solid #d8d8de}.cpBadge:not(.cpBadge--isPlain):not(.cpBadge--hasIcon):before{content:"";width:.375rem;height:.375rem;margin-right:.375rem;border-radius:100%;flex-shrink:0;background-color:currentColor}.cpBadge--isSolid{color:#fff}.cpBadge__label{flex:1}.cpBadge__icon{width:1rem;height:1rem;margin-right:.25rem;color:currentColor;stroke:currentColor}.cpBadge__icon svg{width:100%;height:100%}.cpBadge--isNeutral:not(.cpBadge--isSolid){background-color:#3e3e5b24;border-color:transparent;color:#3e3e5b}.cpBadge--isNeutral.cpBadge--isSolid{background-color:#3e3e5b;border-color:transparent}.cpBadge--isBlue:not(.cpBadge--isSolid){background-color:#144dc224;border-color:transparent;color:#144dc2}.cpBadge--isBlue.cpBadge--isSolid{background-color:#144dc2;border-color:transparent}.cpBadge--isGreen:not(.cpBadge--isSolid){background-color:#00c58224;border-color:transparent;color:#00c582}.cpBadge--isGreen.cpBadge--isSolid{background-color:#00c582;border-color:transparent}.cpBadge--isRed:not(.cpBadge--isSolid){background-color:#eb050524;border-color:transparent;color:#eb0505}.cpBadge--isRed.cpBadge--isSolid{background-color:#eb0505;border-color:transparent}.cpBadge--isOrange:not(.cpBadge--isSolid){background-color:#ffa80024;border-color:transparent;color:#ffa800}.cpBadge--isOrange.cpBadge--isSolid{background-color:#ffa800;border-color:transparent}.cpBadge--isPurple:not(.cpBadge--isSolid){background-color:#5341f924;border-color:transparent;color:#5341f9}.cpBadge--isPurple.cpBadge--isSolid{background-color:#5341f9;border-color:transparent}.cpBadge--isTeal:not(.cpBadge--isSolid){background-color:#56c1fe24;border-color:transparent;color:#56c1fe}.cpBadge--isTeal.cpBadge--isSolid{background-color:#56c1fe;border-color:transparent}.cpBadge--isPink:not(.cpBadge--isSolid){background-color:#ff7dc124;border-color:transparent;color:#ff7dc1}.cpBadge--isPink.cpBadge--isSolid{background-color:#ff7dc1;border-color:transparent}.cpBadge--isYellow:not(.cpBadge--isSolid){background-color:#ffd00b24;border-color:transparent;color:#ffd00b}.cpBadge--isYellow.cpBadge--isSolid{background-color:#ffd00b;border-color:transparent}.cpBadge--isYellow.cpBadge--isSolid{color:#a48400}.cpBadge--isYellow.cpBadge--isSolid:before{background-color:#a48400}\n')();
4062
4124
  var _export_sfc = (sfc, props) => {
4063
4125
  const target = sfc.__vccOpts || sfc;
4064
4126
  for (const [key, val] of props) {
@@ -4131,7 +4193,7 @@ function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
4131
4193
  ], 2);
4132
4194
  }
4133
4195
  var CpBadge = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["render", _sfc_render$j]]);
4134
- var index_vue_vue_type_style_index_0_lang$8 = "";
4196
+ var index_vue_vue_type_style_index_0_lang$8 = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpHeading{color:#3e3e5b}.cpHeading:first-letter{text-transform:capitalize}.cpHeading--100{font-size:.6875rem;font-weight:400;line-height:1rem;letter-spacing:.0375em;color:#8b8b9d}.cpHeading--200{font-size:.75rem;font-weight:600;line-height:1rem;color:#8b8b9d}.cpHeading--300{font-size:.75rem;font-weight:600;line-height:1rem}.cpHeading--400{font-size:.875rem;font-weight:500;line-height:1.125rem}.cpHeading--500{font-size:1rem;font-weight:500;line-height:1.25rem}.cpHeading--600{font-size:1.125rem;font-weight:500;line-height:1.4375rem;letter-spacing:.025em}.cpHeading--700{font-size:1.25rem;font-weight:500;line-height:1.5625rem;letter-spacing:.025em}.cpHeading--800{font-size:1.8125rem;font-weight:500;line-height:2rem;letter-spacing:.025em}.cpHeading--900{font-size:2.1875rem;font-weight:500;line-height:2.5rem;letter-spacing:.025em}\n')();
4135
4197
  const headingLevels = ["h1", "h2", "h3", "h4", "h5", "h6"];
4136
4198
  const sizes = [100, 200, 300, 400, 500, 600, 700, 800, 900];
4137
4199
  const _sfc_main$j = {
@@ -4229,7 +4291,7 @@ function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) {
4229
4291
  ]);
4230
4292
  }
4231
4293
  var CpLoader = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["render", _sfc_render$h]]);
4232
- var CpButton_vue_vue_type_style_index_0_lang = "";
4294
+ var CpButton_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpButton{border:.0625rem solid;border-radius:62.5rem;background-color:transparent;padding:.75em 1em;min-width:10ch;height:2.75em;font-size:inherit;line-height:1.1;text-decoration:none;color:#3e3e5b;font-weight:500;transition-property:box-shadow,background-color,transform,width;transition-duration:.15s;transition-timing-function:ease-in-out;cursor:pointer}.cpButton,.cpButton:visited{color:#3e3e5b}.cpButton,.cpButton__body{display:inline-flex;justify-content:center;align-items:center}@media screen and (-ms-high-contrast: active){.cpButton{border:.125em solid currentcolor}}.cpButton:hover{transform:translateY(-.0625rem)}.cpButton:active{transform:translateY(.0625rem)}.cpButton:focus{outline:none!important}.cpButton--isDefault{background-color:#fff;border-color:#d8d8de}.cpButton--isDefault:hover{background-color:#fbfbfc;box-shadow:0 .0625rem .125rem #3e3e5b14,0 .1875rem .375rem #3e3e5b14}.cpButton--isDefault:active{background-color:#f4f4f8}.cpButton--isDefault:focus{border-color:transparent}.cpButton--isDefault,.cpButton--isPrimary{filter:drop-shadow(0 .0625rem .125rem rgba(62,62,91,.08))}.cpButton--isDefault:focus,.cpButton--isDisabled:focus{box-shadow:0 0 0 .1875em #bcd0f8!important}.cpButton--isDefault.cpButton--isBlue,.cpButton--isDefault.cpButton--isBlue:visited{color:#144dc2}.cpButton--isDefault.cpButton--isPurple,.cpButton--isDefault.cpButton--isPurple:visited{color:#5341f9}.cpButton--isDefault.cpButton--isGreen,.cpButton--isDefault.cpButton--isGreen:visited{color:#00c582}.cpButton--isDefault.cpButton--isOrange,.cpButton--isDefault.cpButton--isOrange:visited{color:#ffa800}.cpButton--isDefault.cpButton--isRed,.cpButton--isDefault.cpButton--isRed:visited{color:#eb0505}.cpButton--isPrimary,.cpButton--isPrimary:visited{color:#fff}.cpButton--isPrimary:hover{box-shadow:0 .25rem .375rem #32325d1c,0 .0625rem .1875rem #3e3e5b14}.cpButton--isPrimary:active{box-shadow:inset 0 0 0 .0625em #435a6f24,inset 0 .0625em .0625em #435a6f0f}.cpButton--isMinimal{border-color:transparent}.cpButton--isPrimary.cpButton--isBlue{background-color:#144dc2;border-color:#144dc2}.cpButton--isPrimary.cpButton--isBlue:hover{background-color:#1654d5;border-color:#1654d5}.cpButton--isPrimary.cpButton--isBlue:active{background-color:#1244ab;border-color:#1244ab}.cpButton--isMinimal.cpButton--isBlue,.cpButton--isMinimal.cpButton--isBlue:visited{color:#144dc2}.cpButton--isMinimal.cpButton--isBlue:hover{background:#e4ecfc}.cpButton--isMinimal.cpButton--isBlue:active{background:#c9d9f9;color:#1245af}.cpButton--isPrimary.cpButton--isBlue:focus,.cpButton--isMinimal.cpButton--isBlue:focus{box-shadow:0 0 0 .1875em #aec6f7}.cpButton--isPrimary.cpButton--isPurple{background-color:#5341f9;border-color:#5341f9}.cpButton--isPrimary.cpButton--isPurple:hover{background-color:#5f4ef9;border-color:#5f4ef9}.cpButton--isPrimary.cpButton--isPurple:active{background-color:#321cf8;border-color:#321cf8}.cpButton--isMinimal.cpButton--isPurple,.cpButton--isMinimal.cpButton--isPurple:visited{color:#5341f9}.cpButton--isMinimal.cpButton--isPurple:hover{background:#eeecfe}.cpButton--isMinimal.cpButton--isPurple:active{background:#ddd9fe;color:#3723f8}.cpButton--isPrimary.cpButton--isPurple:focus,.cpButton--isMinimal.cpButton--isPurple:focus{box-shadow:0 0 0 .1875em #cbc6fd}.cpButton--isPrimary.cpButton--isGreen{background-color:#00c582;border-color:#00c582}.cpButton--isPrimary.cpButton--isGreen:hover{background-color:#00db90;border-color:#00db90}.cpButton--isPrimary.cpButton--isGreen:active{background-color:#00ad72;border-color:#00ad72}.cpButton--isMinimal.cpButton--isGreen,.cpButton--isMinimal.cpButton--isGreen:visited{color:#00c582}.cpButton--isMinimal.cpButton--isGreen:hover{background:#e0fff4}.cpButton--isMinimal.cpButton--isGreen:active{background:#c0ffea;color:#00b175}.cpButton--isPrimary.cpButton--isGreen:focus,.cpButton--isMinimal.cpButton--isGreen:focus{box-shadow:0 0 0 .1875em #a1ffdf}.cpButton--isPrimary.cpButton--isOrange{background-color:#ffa800;border-color:#ffa800}.cpButton--isPrimary.cpButton--isOrange:hover{background-color:#ffae12;border-color:#ffae12}.cpButton--isPrimary.cpButton--isOrange:active{background-color:#e09400;border-color:#e09400}.cpButton--isMinimal.cpButton--isOrange,.cpButton--isMinimal.cpButton--isOrange:visited{color:#ffa800}.cpButton--isMinimal.cpButton--isOrange:hover{background:#fff6e6}.cpButton--isMinimal.cpButton--isOrange:active{background:#ffeecc;color:#e69700}.cpButton--isPrimary.cpButton--isOrange:focus,.cpButton--isMinimal.cpButton--isOrange:focus{box-shadow:0 0 0 .1875em #ffe5b3}.cpButton--isPrimary.cpButton--isRed{background-color:#eb0505;border-color:#eb0505}.cpButton--isPrimary.cpButton--isRed:hover{background-color:#fa0909;border-color:#fa0909}.cpButton--isPrimary.cpButton--isRed:active{background-color:#cf0404;border-color:#cf0404}.cpButton--isMinimal.cpButton--isRed,.cpButton--isMinimal.cpButton--isRed:visited{color:#eb0505}.cpButton--isMinimal.cpButton--isRed:hover{background:#fee5e5}.cpButton--isMinimal.cpButton--isRed:active{background:#fecaca;color:#d40505}.cpButton--isPrimary.cpButton--isRed:focus,.cpButton--isMinimal.cpButton--isRed:focus{box-shadow:0 0 0 .1875em #fdb0b0}.cpButton--isDisabled{box-shadow:none!important;border-color:#f8faff!important;background-color:#f8faff!important;color:#b2b2bd!important;cursor:not-allowed!important;user-select:none}.cpButton--isDisabled:hover,.cpButton--isDisabled:active{transform:none}.cpButton--isIcon{min-width:2.75em;padding:.625em}.cpButton__body{position:relative;text-align:center;transition:all .15s ease-in-out}.cpButton__icon,.cpButton__loader{display:flex;align-items:center;justify-content:center}.cpButton__icon svg,.cpButton__icon>img,.cpButton__loader svg,.cpButton__loader>img{width:100%;height:100%}.cpButton__icon{width:1em;height:1em;flex-shrink:0}.cpButton__icon--isBefore:not(:only-child){margin-right:.5em}.cpButton__icon--isAfter:not(:only-child){margin-left:.5em}.cpButton--isLoading .cpButton__body{padding-left:2em}.cpButton__loader{position:absolute;left:0;top:50%;transform:translateY(-50%);width:1.5em;height:1.5em}.cpButton--isSquare{border-radius:.625rem}.cpButton--isLarge{height:3.375em;text-transform:uppercase}\n')();
4233
4295
  const ButtonAppearances = {
4234
4296
  default: "default",
4235
4297
  primary: "primary",
@@ -4381,7 +4443,7 @@ function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
4381
4443
  }, 8, ["type", "aria-disabled", "disabled", "class", "onClick"]);
4382
4444
  }
4383
4445
  var CpButton = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["render", _sfc_render$g]]);
4384
- var index_vue_vue_type_style_index_0_lang$7 = "";
4446
+ var index_vue_vue_type_style_index_0_lang$7 = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis,.cpDate__month select{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpDate input,.cpDate select{background-color:transparent;color:#3e3e5b}.cpDate input::-webkit-outer-spin-button,.cpDate input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.cpDate input[type=number]{-moz-appearance:textfield}.cpDate select{appearance:none;-webkit-appearance:none;-moz-appearance:none;outline:none;border:none}.cpDate input::placeholder,.cpDate__month--isEmpty{color:#3e3e5b}.cpDate__label{display:flex;align-items:center;margin-bottom:.375em;font-size:.875em}.cpDate__label svg{margin-left:.25rem;width:1rem;height:1rem;stroke:#eb0505}.cpDate__inputs{display:flex;height:2.75em;border:.0625rem solid #d8d8de;border-radius:.625em;overflow:hidden;background-color:#fff;box-shadow:inset 0 .0625em .125em #3e3e5b1f}.cpDate__inputs:hover,.cpDate__inputs:focus-within{border-color:#144dc2;background-color:#fff}.cpDate__inputs:focus-within{box-shadow:#144dc21a 0 0 0 .25rem,#144dc2 0 0 0 .03125rem}.cpDate__divider{flex-shrink:0;width:.0625rem;height:100%;background-color:#d8d8de}.cpDate__month,.cpDate__day,.cpDate__year{min-width:0}.cpDate__month{position:relative;flex:1 1 50%}.cpDate__month:after{position:absolute;top:50%;right:.75em;width:1.25em;height:1.25em;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNCAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNiA5LjY4Mjk4TDEyIDE1LjY4M0wxOCA5LjY4Mjk4IiBzdHJva2U9IiMzRTNFNUIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);background-size:cover;transform:translateY(-50%);content:"";pointer-events:none}.cpDate__month select{width:100%;padding:.75em 2.5em .75em .75em;color:inherit;cursor:pointer}.cpDate__month select:focus-visible{text-decoration:underline;font-weight:500}.cpDate__month select>option:not(:disabled){color:#3e3e5b}.cpDate__day,.cpDate__year{flex:0 0 25%;padding:.75rem}.cpDate--isInvalid .cpDate__inputs,.cpDate--isInvalid .cpDate__inputs:hover,.cpDate--isInvalid .cpDate__inputs:focus-within{border-color:#eb0505}.cpDate--isInvalid .cpDate__inputs:focus-within{box-shadow:0 0 0 .1875em #fd9595}.cpDate--isInvalid .cpDate__divider{background-color:#eb0505}.cpDate--isDisabled .cpDate__inputs{border-color:#d8d8de;background:#f8faff}.cpDate--isDisabled .cpDate__inputs *{color:#b2b2bd!important;cursor:not-allowed!important}.cpDate--isDisabled .cpDate__month:after{opacity:.4}.cpDate__errorMessage{margin-top:.375rem;color:#eb0505;font-weight:500;font-size:.875em}\n')();
4385
4447
  const HUMAN_MAX_AGE = 120;
4386
4448
  const _sfc_main$g = {
4387
4449
  props: {
@@ -4750,7 +4812,7 @@ var feather$2 = { exports: {} };
4750
4812
  return __webpack_require__(__webpack_require__.s = 0);
4751
4813
  }({
4752
4814
  "./dist/icons.json": function(module2) {
4753
- module2.exports = { "activity": '<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"></polyline>', "airplay": '<path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"></path><polygon points="12 15 17 21 7 21 12 15"></polygon>', "alert-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line>', "alert-octagon": '<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"></polygon><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line>', "alert-triangle": '<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path><line x1="12" y1="9" x2="12" y2="13"></line><line x1="12" y1="17" x2="12.01" y2="17"></line>', "align-center": '<line x1="18" y1="10" x2="6" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="18" y1="18" x2="6" y2="18"></line>', "align-justify": '<line x1="21" y1="10" x2="3" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="21" y1="18" x2="3" y2="18"></line>', "align-left": '<line x1="17" y1="10" x2="3" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="17" y1="18" x2="3" y2="18"></line>', "align-right": '<line x1="21" y1="10" x2="7" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="21" y1="18" x2="7" y2="18"></line>', "anchor": '<circle cx="12" cy="5" r="3"></circle><line x1="12" y1="22" x2="12" y2="8"></line><path d="M5 12H2a10 10 0 0 0 20 0h-3"></path>', "aperture": '<circle cx="12" cy="12" r="10"></circle><line x1="14.31" y1="8" x2="20.05" y2="17.94"></line><line x1="9.69" y1="8" x2="21.17" y2="8"></line><line x1="7.38" y1="12" x2="13.12" y2="2.06"></line><line x1="9.69" y1="16" x2="3.95" y2="6.06"></line><line x1="14.31" y1="16" x2="2.83" y2="16"></line><line x1="16.62" y1="12" x2="10.88" y2="21.94"></line>', "archive": '<polyline points="21 8 21 21 3 21 3 8"></polyline><rect x="1" y="3" width="22" height="5"></rect><line x1="10" y1="12" x2="14" y2="12"></line>', "arrow-down-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="8 12 12 16 16 12"></polyline><line x1="12" y1="8" x2="12" y2="16"></line>', "arrow-down-left": '<line x1="17" y1="7" x2="7" y2="17"></line><polyline points="17 17 7 17 7 7"></polyline>', "arrow-down-right": '<line x1="7" y1="7" x2="17" y2="17"></line><polyline points="17 7 17 17 7 17"></polyline>', "arrow-down": '<line x1="12" y1="5" x2="12" y2="19"></line><polyline points="19 12 12 19 5 12"></polyline>', "arrow-left-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="12 8 8 12 12 16"></polyline><line x1="16" y1="12" x2="8" y2="12"></line>', "arrow-left": '<line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline>', "arrow-right-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="12 16 16 12 12 8"></polyline><line x1="8" y1="12" x2="16" y2="12"></line>', "arrow-right": '<line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline>', "arrow-up-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="16 12 12 8 8 12"></polyline><line x1="12" y1="16" x2="12" y2="8"></line>', "arrow-up-left": '<line x1="17" y1="17" x2="7" y2="7"></line><polyline points="7 17 7 7 17 7"></polyline>', "arrow-up-right": '<line x1="7" y1="17" x2="17" y2="7"></line><polyline points="7 7 17 7 17 17"></polyline>', "arrow-up": '<line x1="12" y1="19" x2="12" y2="5"></line><polyline points="5 12 12 5 19 12"></polyline>', "at-sign": '<circle cx="12" cy="12" r="4"></circle><path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"></path>', "award": '<circle cx="12" cy="8" r="7"></circle><polyline points="8.21 13.89 7 23 12 20 17 23 15.79 13.88"></polyline>', "bar-chart-2": '<line x1="18" y1="20" x2="18" y2="10"></line><line x1="12" y1="20" x2="12" y2="4"></line><line x1="6" y1="20" x2="6" y2="14"></line>', "bar-chart": '<line x1="12" y1="20" x2="12" y2="10"></line><line x1="18" y1="20" x2="18" y2="4"></line><line x1="6" y1="20" x2="6" y2="16"></line>', "battery-charging": '<path d="M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"></path><line x1="23" y1="13" x2="23" y2="11"></line><polyline points="11 6 7 12 13 12 9 18"></polyline>', "battery": '<rect x="1" y="6" width="18" height="12" rx="2" ry="2"></rect><line x1="23" y1="13" x2="23" y2="11"></line>', "bell-off": '<path d="M13.73 21a2 2 0 0 1-3.46 0"></path><path d="M18.63 13A17.89 17.89 0 0 1 18 8"></path><path d="M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"></path><path d="M18 8a6 6 0 0 0-9.33-5"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "bell": '<path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path><path d="M13.73 21a2 2 0 0 1-3.46 0"></path>', "bluetooth": '<polyline points="6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"></polyline>', "bold": '<path d="M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"></path><path d="M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"></path>', "book-open": '<path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"></path><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"></path>', "book": '<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path>', "bookmark": '<path d="M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"></path>', "box": '<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line>', "briefcase": '<rect x="2" y="7" width="20" height="14" rx="2" ry="2"></rect><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path>', "calendar": '<rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line>', "camera-off": '<line x1="1" y1="1" x2="23" y2="23"></line><path d="M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"></path>', "camera": '<path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"></path><circle cx="12" cy="13" r="4"></circle>', "cast": '<path d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"></path><line x1="2" y1="20" x2="2.01" y2="20"></line>', "check-circle": '<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline>', "check-square": '<polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path>', "check": '<polyline points="20 6 9 17 4 12"></polyline>', "chevron-down": '<polyline points="6 9 12 15 18 9"></polyline>', "chevron-left": '<polyline points="15 18 9 12 15 6"></polyline>', "chevron-right": '<polyline points="9 18 15 12 9 6"></polyline>', "chevron-up": '<polyline points="18 15 12 9 6 15"></polyline>', "chevrons-down": '<polyline points="7 13 12 18 17 13"></polyline><polyline points="7 6 12 11 17 6"></polyline>', "chevrons-left": '<polyline points="11 17 6 12 11 7"></polyline><polyline points="18 17 13 12 18 7"></polyline>', "chevrons-right": '<polyline points="13 17 18 12 13 7"></polyline><polyline points="6 17 11 12 6 7"></polyline>', "chevrons-up": '<polyline points="17 11 12 6 7 11"></polyline><polyline points="17 18 12 13 7 18"></polyline>', "chrome": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="4"></circle><line x1="21.17" y1="8" x2="12" y2="8"></line><line x1="3.95" y1="6.06" x2="8.54" y2="14"></line><line x1="10.88" y1="21.94" x2="15.46" y2="14"></line>', "circle": '<circle cx="12" cy="12" r="10"></circle>', "clipboard": '<path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect x="8" y="2" width="8" height="4" rx="1" ry="1"></rect>', "clock": '<circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline>', "cloud-drizzle": '<line x1="8" y1="19" x2="8" y2="21"></line><line x1="8" y1="13" x2="8" y2="15"></line><line x1="16" y1="19" x2="16" y2="21"></line><line x1="16" y1="13" x2="16" y2="15"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="12" y1="15" x2="12" y2="17"></line><path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"></path>', "cloud-lightning": '<path d="M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"></path><polyline points="13 11 9 17 15 17 11 23"></polyline>', "cloud-off": '<path d="M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "cloud-rain": '<line x1="16" y1="13" x2="16" y2="21"></line><line x1="8" y1="13" x2="8" y2="21"></line><line x1="12" y1="15" x2="12" y2="23"></line><path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"></path>', "cloud-snow": '<path d="M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"></path><line x1="8" y1="16" x2="8.01" y2="16"></line><line x1="8" y1="20" x2="8.01" y2="20"></line><line x1="12" y1="18" x2="12.01" y2="18"></line><line x1="12" y1="22" x2="12.01" y2="22"></line><line x1="16" y1="16" x2="16.01" y2="16"></line><line x1="16" y1="20" x2="16.01" y2="20"></line>', "cloud": '<path d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"></path>', "code": '<polyline points="16 18 22 12 16 6"></polyline><polyline points="8 6 2 12 8 18"></polyline>', "codepen": '<polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"></polygon><line x1="12" y1="22" x2="12" y2="15.5"></line><polyline points="22 8.5 12 15.5 2 8.5"></polyline><polyline points="2 15.5 12 8.5 22 15.5"></polyline><line x1="12" y1="2" x2="12" y2="8.5"></line>', "codesandbox": '<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="7.5 4.21 12 6.81 16.5 4.21"></polyline><polyline points="7.5 19.79 7.5 14.6 3 12"></polyline><polyline points="21 12 16.5 14.6 16.5 19.79"></polyline><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line>', "coffee": '<path d="M18 8h1a4 4 0 0 1 0 8h-1"></path><path d="M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"></path><line x1="6" y1="1" x2="6" y2="4"></line><line x1="10" y1="1" x2="10" y2="4"></line><line x1="14" y1="1" x2="14" y2="4"></line>', "columns": '<path d="M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18"></path>', "command": '<path d="M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"></path>', "compass": '<circle cx="12" cy="12" r="10"></circle><polygon points="16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"></polygon>', "copy": '<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path>', "corner-down-left": '<polyline points="9 10 4 15 9 20"></polyline><path d="M20 4v7a4 4 0 0 1-4 4H4"></path>', "corner-down-right": '<polyline points="15 10 20 15 15 20"></polyline><path d="M4 4v7a4 4 0 0 0 4 4h12"></path>', "corner-left-down": '<polyline points="14 15 9 20 4 15"></polyline><path d="M20 4h-7a4 4 0 0 0-4 4v12"></path>', "corner-left-up": '<polyline points="14 9 9 4 4 9"></polyline><path d="M20 20h-7a4 4 0 0 1-4-4V4"></path>', "corner-right-down": '<polyline points="10 15 15 20 20 15"></polyline><path d="M4 4h7a4 4 0 0 1 4 4v12"></path>', "corner-right-up": '<polyline points="10 9 15 4 20 9"></polyline><path d="M4 20h7a4 4 0 0 0 4-4V4"></path>', "corner-up-left": '<polyline points="9 14 4 9 9 4"></polyline><path d="M20 20v-7a4 4 0 0 0-4-4H4"></path>', "corner-up-right": '<polyline points="15 14 20 9 15 4"></polyline><path d="M4 20v-7a4 4 0 0 1 4-4h12"></path>', "cpu": '<rect x="4" y="4" width="16" height="16" rx="2" ry="2"></rect><rect x="9" y="9" width="6" height="6"></rect><line x1="9" y1="1" x2="9" y2="4"></line><line x1="15" y1="1" x2="15" y2="4"></line><line x1="9" y1="20" x2="9" y2="23"></line><line x1="15" y1="20" x2="15" y2="23"></line><line x1="20" y1="9" x2="23" y2="9"></line><line x1="20" y1="14" x2="23" y2="14"></line><line x1="1" y1="9" x2="4" y2="9"></line><line x1="1" y1="14" x2="4" y2="14"></line>', "credit-card": '<rect x="1" y="4" width="22" height="16" rx="2" ry="2"></rect><line x1="1" y1="10" x2="23" y2="10"></line>', "crop": '<path d="M6.13 1L6 16a2 2 0 0 0 2 2h15"></path><path d="M1 6.13L16 6a2 2 0 0 1 2 2v15"></path>', "crosshair": '<circle cx="12" cy="12" r="10"></circle><line x1="22" y1="12" x2="18" y2="12"></line><line x1="6" y1="12" x2="2" y2="12"></line><line x1="12" y1="6" x2="12" y2="2"></line><line x1="12" y1="22" x2="12" y2="18"></line>', "database": '<ellipse cx="12" cy="5" rx="9" ry="3"></ellipse><path d="M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"></path><path d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"></path>', "delete": '<path d="M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"></path><line x1="18" y1="9" x2="12" y2="15"></line><line x1="12" y1="9" x2="18" y2="15"></line>', "disc": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="3"></circle>', "divide-circle": '<line x1="8" y1="12" x2="16" y2="12"></line><line x1="12" y1="16" x2="12" y2="16"></line><line x1="12" y1="8" x2="12" y2="8"></line><circle cx="12" cy="12" r="10"></circle>', "divide-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="8" y1="12" x2="16" y2="12"></line><line x1="12" y1="16" x2="12" y2="16"></line><line x1="12" y1="8" x2="12" y2="8"></line>', "divide": '<circle cx="12" cy="6" r="2"></circle><line x1="5" y1="12" x2="19" y2="12"></line><circle cx="12" cy="18" r="2"></circle>', "dollar-sign": '<line x1="12" y1="1" x2="12" y2="23"></line><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"></path>', "download-cloud": '<polyline points="8 17 12 21 16 17"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"></path>', "download": '<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="7 10 12 15 17 10"></polyline><line x1="12" y1="15" x2="12" y2="3"></line>', "dribbble": '<circle cx="12" cy="12" r="10"></circle><path d="M8.56 2.75c4.37 6.03 6.02 9.42 8.03 17.72m2.54-15.38c-3.72 4.35-8.94 5.66-16.88 5.85m19.5 1.9c-3.5-.93-6.63-.82-8.94 0-2.58.92-5.01 2.86-7.44 6.32"></path>', "droplet": '<path d="M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"></path>', "edit-2": '<path d="M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"></path>', "edit-3": '<path d="M12 20h9"></path><path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"></path>', "edit": '<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"></path><path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"></path>', "external-link": '<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line>', "eye-off": '<path d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "eye": '<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path><circle cx="12" cy="12" r="3"></circle>', "facebook": '<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path>', "fast-forward": '<polygon points="13 19 22 12 13 5 13 19"></polygon><polygon points="2 19 11 12 2 5 2 19"></polygon>', "feather": '<path d="M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"></path><line x1="16" y1="8" x2="2" y2="22"></line><line x1="17.5" y1="15" x2="9" y2="15"></line>', "figma": '<path d="M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"></path><path d="M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"></path><path d="M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"></path><path d="M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"></path><path d="M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"></path>', "file-minus": '<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="9" y1="15" x2="15" y2="15"></line>', "file-plus": '<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="12" y1="18" x2="12" y2="12"></line><line x1="9" y1="15" x2="15" y2="15"></line>', "file-text": '<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline>', "file": '<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path><polyline points="13 2 13 9 20 9"></polyline>', "film": '<rect x="2" y="2" width="20" height="20" rx="2.18" ry="2.18"></rect><line x1="7" y1="2" x2="7" y2="22"></line><line x1="17" y1="2" x2="17" y2="22"></line><line x1="2" y1="12" x2="22" y2="12"></line><line x1="2" y1="7" x2="7" y2="7"></line><line x1="2" y1="17" x2="7" y2="17"></line><line x1="17" y1="17" x2="22" y2="17"></line><line x1="17" y1="7" x2="22" y2="7"></line>', "filter": '<polygon points="22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"></polygon>', "flag": '<path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"></path><line x1="4" y1="22" x2="4" y2="15"></line>', "folder-minus": '<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="9" y1="14" x2="15" y2="14"></line>', "folder-plus": '<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="12" y1="11" x2="12" y2="17"></line><line x1="9" y1="14" x2="15" y2="14"></line>', "folder": '<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path>', "framer": '<path d="M5 16V9h14V2H5l14 14h-7m-7 0l7 7v-7m-7 0h7"></path>', "frown": '<circle cx="12" cy="12" r="10"></circle><path d="M16 16s-1.5-2-4-2-4 2-4 2"></path><line x1="9" y1="9" x2="9.01" y2="9"></line><line x1="15" y1="9" x2="15.01" y2="9"></line>', "gift": '<polyline points="20 12 20 22 4 22 4 12"></polyline><rect x="2" y="7" width="20" height="5"></rect><line x1="12" y1="22" x2="12" y2="7"></line><path d="M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"></path><path d="M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"></path>', "git-branch": '<line x1="6" y1="3" x2="6" y2="15"></line><circle cx="18" cy="6" r="3"></circle><circle cx="6" cy="18" r="3"></circle><path d="M18 9a9 9 0 0 1-9 9"></path>', "git-commit": '<circle cx="12" cy="12" r="4"></circle><line x1="1.05" y1="12" x2="7" y2="12"></line><line x1="17.01" y1="12" x2="22.96" y2="12"></line>', "git-merge": '<circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M6 21V9a9 9 0 0 0 9 9"></path>', "git-pull-request": '<circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M13 6h3a2 2 0 0 1 2 2v7"></path><line x1="6" y1="9" x2="6" y2="21"></line>', "github": '<path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path>', "gitlab": '<path d="M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"></path>', "globe": '<circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path>', "grid": '<rect x="3" y="3" width="7" height="7"></rect><rect x="14" y="3" width="7" height="7"></rect><rect x="14" y="14" width="7" height="7"></rect><rect x="3" y="14" width="7" height="7"></rect>', "hard-drive": '<line x1="22" y1="12" x2="2" y2="12"></line><path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path><line x1="6" y1="16" x2="6.01" y2="16"></line><line x1="10" y1="16" x2="10.01" y2="16"></line>', "hash": '<line x1="4" y1="9" x2="20" y2="9"></line><line x1="4" y1="15" x2="20" y2="15"></line><line x1="10" y1="3" x2="8" y2="21"></line><line x1="16" y1="3" x2="14" y2="21"></line>', "headphones": '<path d="M3 18v-6a9 9 0 0 1 18 0v6"></path><path d="M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"></path>', "heart": '<path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>', "help-circle": '<circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12.01" y2="17"></line>', "hexagon": '<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path>', "home": '<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline>', "image": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline>', "inbox": '<polyline points="22 12 16 12 14 15 10 15 8 12 2 12"></polyline><path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path>', "info": '<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12.01" y2="8"></line>', "instagram": '<rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line>', "italic": '<line x1="19" y1="4" x2="10" y2="4"></line><line x1="14" y1="20" x2="5" y2="20"></line><line x1="15" y1="4" x2="9" y2="20"></line>', "key": '<path d="M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4"></path>', "layers": '<polygon points="12 2 2 7 12 12 22 7 12 2"></polygon><polyline points="2 17 12 22 22 17"></polyline><polyline points="2 12 12 17 22 12"></polyline>', "layout": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line>', "life-buoy": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="4"></circle><line x1="4.93" y1="4.93" x2="9.17" y2="9.17"></line><line x1="14.83" y1="14.83" x2="19.07" y2="19.07"></line><line x1="14.83" y1="9.17" x2="19.07" y2="4.93"></line><line x1="14.83" y1="9.17" x2="18.36" y2="5.64"></line><line x1="4.93" y1="19.07" x2="9.17" y2="14.83"></line>', "link-2": '<path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"></path><line x1="8" y1="12" x2="16" y2="12"></line>', "link": '<path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path>', "linkedin": '<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect x="2" y="9" width="4" height="12"></rect><circle cx="4" cy="4" r="2"></circle>', "list": '<line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3.01" y2="6"></line><line x1="3" y1="12" x2="3.01" y2="12"></line><line x1="3" y1="18" x2="3.01" y2="18"></line>', "loader": '<line x1="12" y1="2" x2="12" y2="6"></line><line x1="12" y1="18" x2="12" y2="22"></line><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"></line><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"></line><line x1="2" y1="12" x2="6" y2="12"></line><line x1="18" y1="12" x2="22" y2="12"></line><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"></line><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"></line>', "lock": '<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path>', "log-in": '<path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"></path><polyline points="10 17 15 12 10 7"></polyline><line x1="15" y1="12" x2="3" y2="12"></line>', "log-out": '<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line>', "mail": '<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline>', "map-pin": '<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle>', "map": '<polygon points="1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"></polygon><line x1="8" y1="2" x2="8" y2="18"></line><line x1="16" y1="6" x2="16" y2="22"></line>', "maximize-2": '<polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" y1="3" x2="14" y2="10"></line><line x1="3" y1="21" x2="10" y2="14"></line>', "maximize": '<path d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"></path>', "meh": '<circle cx="12" cy="12" r="10"></circle><line x1="8" y1="15" x2="16" y2="15"></line><line x1="9" y1="9" x2="9.01" y2="9"></line><line x1="15" y1="9" x2="15.01" y2="9"></line>', "menu": '<line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line>', "message-circle": '<path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"></path>', "message-square": '<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path>', "mic-off": '<line x1="1" y1="1" x2="23" y2="23"></line><path d="M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6"></path><path d="M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23"></path><line x1="12" y1="19" x2="12" y2="23"></line><line x1="8" y1="23" x2="16" y2="23"></line>', "mic": '<path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"></path><path d="M19 10v2a7 7 0 0 1-14 0v-2"></path><line x1="12" y1="19" x2="12" y2="23"></line><line x1="8" y1="23" x2="16" y2="23"></line>', "minimize-2": '<polyline points="4 14 10 14 10 20"></polyline><polyline points="20 10 14 10 14 4"></polyline><line x1="14" y1="10" x2="21" y2="3"></line><line x1="3" y1="21" x2="10" y2="14"></line>', "minimize": '<path d="M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"></path>', "minus-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="8" y1="12" x2="16" y2="12"></line>', "minus-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="8" y1="12" x2="16" y2="12"></line>', "minus": '<line x1="5" y1="12" x2="19" y2="12"></line>', "monitor": '<rect x="2" y="3" width="20" height="14" rx="2" ry="2"></rect><line x1="8" y1="21" x2="16" y2="21"></line><line x1="12" y1="17" x2="12" y2="21"></line>', "moon": '<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>', "more-horizontal": '<circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle>', "more-vertical": '<circle cx="12" cy="12" r="1"></circle><circle cx="12" cy="5" r="1"></circle><circle cx="12" cy="19" r="1"></circle>', "mouse-pointer": '<path d="M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z"></path><path d="M13 13l6 6"></path>', "move": '<polyline points="5 9 2 12 5 15"></polyline><polyline points="9 5 12 2 15 5"></polyline><polyline points="15 19 12 22 9 19"></polyline><polyline points="19 9 22 12 19 15"></polyline><line x1="2" y1="12" x2="22" y2="12"></line><line x1="12" y1="2" x2="12" y2="22"></line>', "music": '<path d="M9 18V5l12-2v13"></path><circle cx="6" cy="18" r="3"></circle><circle cx="18" cy="16" r="3"></circle>', "navigation-2": '<polygon points="12 2 19 21 12 17 5 21 12 2"></polygon>', "navigation": '<polygon points="3 11 22 2 13 21 11 13 3 11"></polygon>', "octagon": '<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"></polygon>', "package": '<line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line>', "paperclip": '<path d="M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"></path>', "pause-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="10" y1="15" x2="10" y2="9"></line><line x1="14" y1="15" x2="14" y2="9"></line>', "pause": '<rect x="6" y="4" width="4" height="16"></rect><rect x="14" y="4" width="4" height="16"></rect>', "pen-tool": '<path d="M12 19l7-7 3 3-7 7-3-3z"></path><path d="M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z"></path><path d="M2 2l7.586 7.586"></path><circle cx="11" cy="11" r="2"></circle>', "percent": '<line x1="19" y1="5" x2="5" y2="19"></line><circle cx="6.5" cy="6.5" r="2.5"></circle><circle cx="17.5" cy="17.5" r="2.5"></circle>', "phone-call": '<path d="M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-forwarded": '<polyline points="19 1 23 5 19 9"></polyline><line x1="15" y1="5" x2="23" y2="5"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-incoming": '<polyline points="16 2 16 8 22 8"></polyline><line x1="23" y1="1" x2="16" y2="8"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-missed": '<line x1="23" y1="1" x2="17" y2="7"></line><line x1="17" y1="1" x2="23" y2="7"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-off": '<path d="M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"></path><line x1="23" y1="1" x2="1" y2="23"></line>', "phone-outgoing": '<polyline points="23 7 23 1 17 1"></polyline><line x1="16" y1="8" x2="23" y2="1"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone": '<path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "pie-chart": '<path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path>', "play-circle": '<circle cx="12" cy="12" r="10"></circle><polygon points="10 8 16 12 10 16 10 8"></polygon>', "play": '<polygon points="5 3 19 12 5 21 5 3"></polygon>', "plus-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line>', "plus-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line>', "plus": '<line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line>', "pocket": '<path d="M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"></path><polyline points="8 10 12 14 16 10"></polyline>', "power": '<path d="M18.36 6.64a9 9 0 1 1-12.73 0"></path><line x1="12" y1="2" x2="12" y2="12"></line>', "printer": '<polyline points="6 9 6 2 18 2 18 9"></polyline><path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"></path><rect x="6" y="14" width="12" height="8"></rect>', "radio": '<circle cx="12" cy="12" r="2"></circle><path d="M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"></path>', "refresh-ccw": '<polyline points="1 4 1 10 7 10"></polyline><polyline points="23 20 23 14 17 14"></polyline><path d="M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"></path>', "refresh-cw": '<polyline points="23 4 23 10 17 10"></polyline><polyline points="1 20 1 14 7 14"></polyline><path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"></path>', "repeat": '<polyline points="17 1 21 5 17 9"></polyline><path d="M3 11V9a4 4 0 0 1 4-4h14"></path><polyline points="7 23 3 19 7 15"></polyline><path d="M21 13v2a4 4 0 0 1-4 4H3"></path>', "rewind": '<polygon points="11 19 2 12 11 5 11 19"></polygon><polygon points="22 19 13 12 22 5 22 19"></polygon>', "rotate-ccw": '<polyline points="1 4 1 10 7 10"></polyline><path d="M3.51 15a9 9 0 1 0 2.13-9.36L1 10"></path>', "rotate-cw": '<polyline points="23 4 23 10 17 10"></polyline><path d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10"></path>', "rss": '<path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle>', "save": '<path d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"></path><polyline points="17 21 17 13 7 13 7 21"></polyline><polyline points="7 3 7 8 15 8"></polyline>', "scissors": '<circle cx="6" cy="6" r="3"></circle><circle cx="6" cy="18" r="3"></circle><line x1="20" y1="4" x2="8.12" y2="15.88"></line><line x1="14.47" y1="14.48" x2="20" y2="20"></line><line x1="8.12" y1="8.12" x2="12" y2="12"></line>', "search": '<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line>', "send": '<line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon>', "server": '<rect x="2" y="2" width="20" height="8" rx="2" ry="2"></rect><rect x="2" y="14" width="20" height="8" rx="2" ry="2"></rect><line x1="6" y1="6" x2="6.01" y2="6"></line><line x1="6" y1="18" x2="6.01" y2="18"></line>', "settings": '<circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path>', "share-2": '<circle cx="18" cy="5" r="3"></circle><circle cx="6" cy="12" r="3"></circle><circle cx="18" cy="19" r="3"></circle><line x1="8.59" y1="13.51" x2="15.42" y2="17.49"></line><line x1="15.41" y1="6.51" x2="8.59" y2="10.49"></line>', "share": '<path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"></path><polyline points="16 6 12 2 8 6"></polyline><line x1="12" y1="2" x2="12" y2="15"></line>', "shield-off": '<path d="M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"></path><path d="M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "shield": '<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path>', "shopping-bag": '<path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path>', "shopping-cart": '<circle cx="9" cy="21" r="1"></circle><circle cx="20" cy="21" r="1"></circle><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"></path>', "shuffle": '<polyline points="16 3 21 3 21 8"></polyline><line x1="4" y1="20" x2="21" y2="3"></line><polyline points="21 16 21 21 16 21"></polyline><line x1="15" y1="15" x2="21" y2="21"></line><line x1="4" y1="4" x2="9" y2="9"></line>', "sidebar": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="9" y1="3" x2="9" y2="21"></line>', "skip-back": '<polygon points="19 20 9 12 19 4 19 20"></polygon><line x1="5" y1="19" x2="5" y2="5"></line>', "skip-forward": '<polygon points="5 4 15 12 5 20 5 4"></polygon><line x1="19" y1="5" x2="19" y2="19"></line>', "slack": '<path d="M14.5 10c-.83 0-1.5-.67-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5z"></path><path d="M20.5 10H19V8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"></path><path d="M9.5 14c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5S8 21.33 8 20.5v-5c0-.83.67-1.5 1.5-1.5z"></path><path d="M3.5 14H5v1.5c0 .83-.67 1.5-1.5 1.5S2 16.33 2 15.5 2.67 14 3.5 14z"></path><path d="M14 14.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-5c-.83 0-1.5-.67-1.5-1.5z"></path><path d="M15.5 19H14v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"></path><path d="M10 9.5C10 8.67 9.33 8 8.5 8h-5C2.67 8 2 8.67 2 9.5S2.67 11 3.5 11h5c.83 0 1.5-.67 1.5-1.5z"></path><path d="M8.5 5H10V3.5C10 2.67 9.33 2 8.5 2S7 2.67 7 3.5 7.67 5 8.5 5z"></path>', "slash": '<circle cx="12" cy="12" r="10"></circle><line x1="4.93" y1="4.93" x2="19.07" y2="19.07"></line>', "sliders": '<line x1="4" y1="21" x2="4" y2="14"></line><line x1="4" y1="10" x2="4" y2="3"></line><line x1="12" y1="21" x2="12" y2="12"></line><line x1="12" y1="8" x2="12" y2="3"></line><line x1="20" y1="21" x2="20" y2="16"></line><line x1="20" y1="12" x2="20" y2="3"></line><line x1="1" y1="14" x2="7" y2="14"></line><line x1="9" y1="8" x2="15" y2="8"></line><line x1="17" y1="16" x2="23" y2="16"></line>', "smartphone": '<rect x="5" y="2" width="14" height="20" rx="2" ry="2"></rect><line x1="12" y1="18" x2="12.01" y2="18"></line>', "smile": '<circle cx="12" cy="12" r="10"></circle><path d="M8 14s1.5 2 4 2 4-2 4-2"></path><line x1="9" y1="9" x2="9.01" y2="9"></line><line x1="15" y1="9" x2="15.01" y2="9"></line>', "speaker": '<rect x="4" y="2" width="16" height="20" rx="2" ry="2"></rect><circle cx="12" cy="14" r="4"></circle><line x1="12" y1="6" x2="12.01" y2="6"></line>', "square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>', "star": '<polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon>', "stop-circle": '<circle cx="12" cy="12" r="10"></circle><rect x="9" y="9" width="6" height="6"></rect>', "sun": '<circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>', "sunrise": '<path d="M17 18a5 5 0 0 0-10 0"></path><line x1="12" y1="2" x2="12" y2="9"></line><line x1="4.22" y1="10.22" x2="5.64" y2="11.64"></line><line x1="1" y1="18" x2="3" y2="18"></line><line x1="21" y1="18" x2="23" y2="18"></line><line x1="18.36" y1="11.64" x2="19.78" y2="10.22"></line><line x1="23" y1="22" x2="1" y2="22"></line><polyline points="8 6 12 2 16 6"></polyline>', "sunset": '<path d="M17 18a5 5 0 0 0-10 0"></path><line x1="12" y1="9" x2="12" y2="2"></line><line x1="4.22" y1="10.22" x2="5.64" y2="11.64"></line><line x1="1" y1="18" x2="3" y2="18"></line><line x1="21" y1="18" x2="23" y2="18"></line><line x1="18.36" y1="11.64" x2="19.78" y2="10.22"></line><line x1="23" y1="22" x2="1" y2="22"></line><polyline points="16 5 12 9 8 5"></polyline>', "tablet": '<rect x="4" y="2" width="16" height="20" rx="2" ry="2"></rect><line x1="12" y1="18" x2="12.01" y2="18"></line>', "tag": '<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"></path><line x1="7" y1="7" x2="7.01" y2="7"></line>', "target": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="6"></circle><circle cx="12" cy="12" r="2"></circle>', "terminal": '<polyline points="4 17 10 11 4 5"></polyline><line x1="12" y1="19" x2="20" y2="19"></line>', "thermometer": '<path d="M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z"></path>', "thumbs-down": '<path d="M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"></path>', "thumbs-up": '<path d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"></path>', "toggle-left": '<rect x="1" y="5" width="22" height="14" rx="7" ry="7"></rect><circle cx="8" cy="12" r="3"></circle>', "toggle-right": '<rect x="1" y="5" width="22" height="14" rx="7" ry="7"></rect><circle cx="16" cy="12" r="3"></circle>', "tool": '<path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"></path>', "trash-2": '<polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path><line x1="10" y1="11" x2="10" y2="17"></line><line x1="14" y1="11" x2="14" y2="17"></line>', "trash": '<polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>', "trello": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><rect x="7" y="7" width="3" height="9"></rect><rect x="14" y="7" width="3" height="5"></rect>', "trending-down": '<polyline points="23 18 13.5 8.5 8.5 13.5 1 6"></polyline><polyline points="17 18 23 18 23 12"></polyline>', "trending-up": '<polyline points="23 6 13.5 15.5 8.5 10.5 1 18"></polyline><polyline points="17 6 23 6 23 12"></polyline>', "triangle": '<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path>', "truck": '<rect x="1" y="3" width="15" height="13"></rect><polygon points="16 8 20 8 23 11 23 16 16 16 16 8"></polygon><circle cx="5.5" cy="18.5" r="2.5"></circle><circle cx="18.5" cy="18.5" r="2.5"></circle>', "tv": '<rect x="2" y="7" width="20" height="15" rx="2" ry="2"></rect><polyline points="17 2 12 7 7 2"></polyline>', "twitch": '<path d="M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"></path>', "twitter": '<path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path>', "type": '<polyline points="4 7 4 4 20 4 20 7"></polyline><line x1="9" y1="20" x2="15" y2="20"></line><line x1="12" y1="4" x2="12" y2="20"></line>', "umbrella": '<path d="M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7"></path>', "underline": '<path d="M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"></path><line x1="4" y1="21" x2="20" y2="21"></line>', "unlock": '<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 9.9-1"></path>', "upload-cloud": '<polyline points="16 16 12 12 8 16"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"></path><polyline points="16 16 12 12 8 16"></polyline>', "upload": '<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="17 8 12 3 7 8"></polyline><line x1="12" y1="3" x2="12" y2="15"></line>', "user-check": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><polyline points="17 11 19 13 23 9"></polyline>', "user-minus": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="23" y1="11" x2="17" y2="11"></line>', "user-plus": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="20" y1="8" x2="20" y2="14"></line><line x1="23" y1="11" x2="17" y2="11"></line>', "user-x": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="18" y1="8" x2="23" y2="13"></line><line x1="23" y1="8" x2="18" y2="13"></line>', "user": '<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle>', "users": '<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path>', "video-off": '<path d="M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "video": '<polygon points="23 7 16 12 23 17 23 7"></polygon><rect x="1" y="5" width="15" height="14" rx="2" ry="2"></rect>', "voicemail": '<circle cx="5.5" cy="11.5" r="4.5"></circle><circle cx="18.5" cy="11.5" r="4.5"></circle><line x1="5.5" y1="16" x2="18.5" y2="16"></line>', "volume-1": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><path d="M15.54 8.46a5 5 0 0 1 0 7.07"></path>', "volume-2": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><path d="M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"></path>', "volume-x": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><line x1="23" y1="9" x2="17" y2="15"></line><line x1="17" y1="9" x2="23" y2="15"></line>', "volume": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon>', "watch": '<circle cx="12" cy="12" r="7"></circle><polyline points="12 9 12 12 13.5 13.5"></polyline><path d="M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"></path>', "wifi-off": '<line x1="1" y1="1" x2="23" y2="23"></line><path d="M16.72 11.06A10.94 10.94 0 0 1 19 12.55"></path><path d="M5 12.55a10.94 10.94 0 0 1 5.17-2.39"></path><path d="M10.71 5.05A16 16 0 0 1 22.58 9"></path><path d="M1.42 9a15.91 15.91 0 0 1 4.7-2.88"></path><path d="M8.53 16.11a6 6 0 0 1 6.95 0"></path><line x1="12" y1="20" x2="12.01" y2="20"></line>', "wifi": '<path d="M5 12.55a11 11 0 0 1 14.08 0"></path><path d="M1.42 9a16 16 0 0 1 21.16 0"></path><path d="M8.53 16.11a6 6 0 0 1 6.95 0"></path><line x1="12" y1="20" x2="12.01" y2="20"></line>', "wind": '<path d="M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2"></path>', "x-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="15" y1="9" x2="9" y2="15"></line><line x1="9" y1="9" x2="15" y2="15"></line>', "x-octagon": '<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"></polygon><line x1="15" y1="9" x2="9" y2="15"></line><line x1="9" y1="9" x2="15" y2="15"></line>', "x-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="9" y1="9" x2="15" y2="15"></line><line x1="15" y1="9" x2="9" y2="15"></line>', "x": '<line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line>', "youtube": '<path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"></path><polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"></polygon>', "zap-off": '<polyline points="12.41 6.75 13 2 10.57 4.92"></polyline><polyline points="18.57 12.91 21 10 15.66 10"></polyline><polyline points="8 8 3 14 12 14 11 22 16 16"></polyline><line x1="1" y1="1" x2="23" y2="23"></line>', "zap": '<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"></polygon>', "zoom-in": '<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line><line x1="11" y1="8" x2="11" y2="14"></line><line x1="8" y1="11" x2="14" y2="11"></line>', "zoom-out": '<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line><line x1="8" y1="11" x2="14" y2="11"></line>' };
4815
+ module2.exports = { "activity": '<polyline points="22 12 18 12 15 21 9 3 6 12 2 12"></polyline>', "airplay": '<path d="M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"></path><polygon points="12 15 17 21 7 21 12 15"></polygon>', "alert-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line>', "alert-octagon": '<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"></polygon><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line>', "alert-triangle": '<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path><line x1="12" y1="9" x2="12" y2="13"></line><line x1="12" y1="17" x2="12.01" y2="17"></line>', "align-center": '<line x1="18" y1="10" x2="6" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="18" y1="18" x2="6" y2="18"></line>', "align-justify": '<line x1="21" y1="10" x2="3" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="21" y1="18" x2="3" y2="18"></line>', "align-left": '<line x1="17" y1="10" x2="3" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="17" y1="18" x2="3" y2="18"></line>', "align-right": '<line x1="21" y1="10" x2="7" y2="10"></line><line x1="21" y1="6" x2="3" y2="6"></line><line x1="21" y1="14" x2="3" y2="14"></line><line x1="21" y1="18" x2="7" y2="18"></line>', "anchor": '<circle cx="12" cy="5" r="3"></circle><line x1="12" y1="22" x2="12" y2="8"></line><path d="M5 12H2a10 10 0 0 0 20 0h-3"></path>', "aperture": '<circle cx="12" cy="12" r="10"></circle><line x1="14.31" y1="8" x2="20.05" y2="17.94"></line><line x1="9.69" y1="8" x2="21.17" y2="8"></line><line x1="7.38" y1="12" x2="13.12" y2="2.06"></line><line x1="9.69" y1="16" x2="3.95" y2="6.06"></line><line x1="14.31" y1="16" x2="2.83" y2="16"></line><line x1="16.62" y1="12" x2="10.88" y2="21.94"></line>', "archive": '<polyline points="21 8 21 21 3 21 3 8"></polyline><rect x="1" y="3" width="22" height="5"></rect><line x1="10" y1="12" x2="14" y2="12"></line>', "arrow-down-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="8 12 12 16 16 12"></polyline><line x1="12" y1="8" x2="12" y2="16"></line>', "arrow-down-left": '<line x1="17" y1="7" x2="7" y2="17"></line><polyline points="17 17 7 17 7 7"></polyline>', "arrow-down-right": '<line x1="7" y1="7" x2="17" y2="17"></line><polyline points="17 7 17 17 7 17"></polyline>', "arrow-down": '<line x1="12" y1="5" x2="12" y2="19"></line><polyline points="19 12 12 19 5 12"></polyline>', "arrow-left-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="12 8 8 12 12 16"></polyline><line x1="16" y1="12" x2="8" y2="12"></line>', "arrow-left": '<line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline>', "arrow-right-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="12 16 16 12 12 8"></polyline><line x1="8" y1="12" x2="16" y2="12"></line>', "arrow-right": '<line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline>', "arrow-up-circle": '<circle cx="12" cy="12" r="10"></circle><polyline points="16 12 12 8 8 12"></polyline><line x1="12" y1="16" x2="12" y2="8"></line>', "arrow-up-left": '<line x1="17" y1="17" x2="7" y2="7"></line><polyline points="7 17 7 7 17 7"></polyline>', "arrow-up-right": '<line x1="7" y1="17" x2="17" y2="7"></line><polyline points="7 7 17 7 17 17"></polyline>', "arrow-up": '<line x1="12" y1="19" x2="12" y2="5"></line><polyline points="5 12 12 5 19 12"></polyline>', "at-sign": '<circle cx="12" cy="12" r="4"></circle><path d="M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"></path>', "award": '<circle cx="12" cy="8" r="7"></circle><polyline points="8.21 13.89 7 23 12 20 17 23 15.79 13.88"></polyline>', "bar-chart-2": '<line x1="18" y1="20" x2="18" y2="10"></line><line x1="12" y1="20" x2="12" y2="4"></line><line x1="6" y1="20" x2="6" y2="14"></line>', "bar-chart": '<line x1="12" y1="20" x2="12" y2="10"></line><line x1="18" y1="20" x2="18" y2="4"></line><line x1="6" y1="20" x2="6" y2="16"></line>', "battery-charging": '<path d="M5 18H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.19M15 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.19"></path><line x1="23" y1="13" x2="23" y2="11"></line><polyline points="11 6 7 12 13 12 9 18"></polyline>', "battery": '<rect x="1" y="6" width="18" height="12" rx="2" ry="2"></rect><line x1="23" y1="13" x2="23" y2="11"></line>', "bell-off": '<path d="M13.73 21a2 2 0 0 1-3.46 0"></path><path d="M18.63 13A17.89 17.89 0 0 1 18 8"></path><path d="M6.26 6.26A5.86 5.86 0 0 0 6 8c0 7-3 9-3 9h14"></path><path d="M18 8a6 6 0 0 0-9.33-5"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "bell": '<path d="M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"></path><path d="M13.73 21a2 2 0 0 1-3.46 0"></path>', "bluetooth": '<polyline points="6.5 6.5 17.5 17.5 12 23 12 1 17.5 6.5 6.5 17.5"></polyline>', "bold": '<path d="M6 4h8a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"></path><path d="M6 12h9a4 4 0 0 1 4 4 4 4 0 0 1-4 4H6z"></path>', "book-open": '<path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"></path><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"></path>', "book": '<path d="M4 19.5A2.5 2.5 0 0 1 6.5 17H20"></path><path d="M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z"></path>', "bookmark": '<path d="M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"></path>', "box": '<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line>', "briefcase": '<rect x="2" y="7" width="20" height="14" rx="2" ry="2"></rect><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path>', "calendar": '<rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line>', "camera-off": '<line x1="1" y1="1" x2="23" y2="23"></line><path d="M21 21H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3m3-3h6l2 3h4a2 2 0 0 1 2 2v9.34m-7.72-2.06a4 4 0 1 1-5.56-5.56"></path>', "camera": '<path d="M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z"></path><circle cx="12" cy="13" r="4"></circle>', "cast": '<path d="M2 16.1A5 5 0 0 1 5.9 20M2 12.05A9 9 0 0 1 9.95 20M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"></path><line x1="2" y1="20" x2="2.01" y2="20"></line>', "check-circle": '<path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline>', "check-square": '<polyline points="9 11 12 14 22 4"></polyline><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"></path>', "check": '<polyline points="20 6 9 17 4 12"></polyline>', "chevron-down": '<polyline points="6 9 12 15 18 9"></polyline>', "chevron-left": '<polyline points="15 18 9 12 15 6"></polyline>', "chevron-right": '<polyline points="9 18 15 12 9 6"></polyline>', "chevron-up": '<polyline points="18 15 12 9 6 15"></polyline>', "chevrons-down": '<polyline points="7 13 12 18 17 13"></polyline><polyline points="7 6 12 11 17 6"></polyline>', "chevrons-left": '<polyline points="11 17 6 12 11 7"></polyline><polyline points="18 17 13 12 18 7"></polyline>', "chevrons-right": '<polyline points="13 17 18 12 13 7"></polyline><polyline points="6 17 11 12 6 7"></polyline>', "chevrons-up": '<polyline points="17 11 12 6 7 11"></polyline><polyline points="17 18 12 13 7 18"></polyline>', "chrome": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="4"></circle><line x1="21.17" y1="8" x2="12" y2="8"></line><line x1="3.95" y1="6.06" x2="8.54" y2="14"></line><line x1="10.88" y1="21.94" x2="15.46" y2="14"></line>', "circle": '<circle cx="12" cy="12" r="10"></circle>', "clipboard": '<path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect x="8" y="2" width="8" height="4" rx="1" ry="1"></rect>', "clock": '<circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline>', "cloud-drizzle": '<line x1="8" y1="19" x2="8" y2="21"></line><line x1="8" y1="13" x2="8" y2="15"></line><line x1="16" y1="19" x2="16" y2="21"></line><line x1="16" y1="13" x2="16" y2="15"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="12" y1="15" x2="12" y2="17"></line><path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"></path>', "cloud-lightning": '<path d="M19 16.9A5 5 0 0 0 18 7h-1.26a8 8 0 1 0-11.62 9"></path><polyline points="13 11 9 17 15 17 11 23"></polyline>', "cloud-off": '<path d="M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "cloud-rain": '<line x1="16" y1="13" x2="16" y2="21"></line><line x1="8" y1="13" x2="8" y2="21"></line><line x1="12" y1="15" x2="12" y2="23"></line><path d="M20 16.58A5 5 0 0 0 18 7h-1.26A8 8 0 1 0 4 15.25"></path>', "cloud-snow": '<path d="M20 17.58A5 5 0 0 0 18 8h-1.26A8 8 0 1 0 4 16.25"></path><line x1="8" y1="16" x2="8.01" y2="16"></line><line x1="8" y1="20" x2="8.01" y2="20"></line><line x1="12" y1="18" x2="12.01" y2="18"></line><line x1="12" y1="22" x2="12.01" y2="22"></line><line x1="16" y1="16" x2="16.01" y2="16"></line><line x1="16" y1="20" x2="16.01" y2="20"></line>', "cloud": '<path d="M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"></path>', "code": '<polyline points="16 18 22 12 16 6"></polyline><polyline points="8 6 2 12 8 18"></polyline>', "codepen": '<polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"></polygon><line x1="12" y1="22" x2="12" y2="15.5"></line><polyline points="22 8.5 12 15.5 2 8.5"></polyline><polyline points="2 15.5 12 8.5 22 15.5"></polyline><line x1="12" y1="2" x2="12" y2="8.5"></line>', "codesandbox": '<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="7.5 4.21 12 6.81 16.5 4.21"></polyline><polyline points="7.5 19.79 7.5 14.6 3 12"></polyline><polyline points="21 12 16.5 14.6 16.5 19.79"></polyline><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line>', "coffee": '<path d="M18 8h1a4 4 0 0 1 0 8h-1"></path><path d="M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z"></path><line x1="6" y1="1" x2="6" y2="4"></line><line x1="10" y1="1" x2="10" y2="4"></line><line x1="14" y1="1" x2="14" y2="4"></line>', "columns": '<path d="M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18"></path>', "command": '<path d="M18 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3H6a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3V6a3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 3 3 0 0 0-3-3z"></path>', "compass": '<circle cx="12" cy="12" r="10"></circle><polygon points="16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"></polygon>', "copy": '<rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path>', "corner-down-left": '<polyline points="9 10 4 15 9 20"></polyline><path d="M20 4v7a4 4 0 0 1-4 4H4"></path>', "corner-down-right": '<polyline points="15 10 20 15 15 20"></polyline><path d="M4 4v7a4 4 0 0 0 4 4h12"></path>', "corner-left-down": '<polyline points="14 15 9 20 4 15"></polyline><path d="M20 4h-7a4 4 0 0 0-4 4v12"></path>', "corner-left-up": '<polyline points="14 9 9 4 4 9"></polyline><path d="M20 20h-7a4 4 0 0 1-4-4V4"></path>', "corner-right-down": '<polyline points="10 15 15 20 20 15"></polyline><path d="M4 4h7a4 4 0 0 1 4 4v12"></path>', "corner-right-up": '<polyline points="10 9 15 4 20 9"></polyline><path d="M4 20h7a4 4 0 0 0 4-4V4"></path>', "corner-up-left": '<polyline points="9 14 4 9 9 4"></polyline><path d="M20 20v-7a4 4 0 0 0-4-4H4"></path>', "corner-up-right": '<polyline points="15 14 20 9 15 4"></polyline><path d="M4 20v-7a4 4 0 0 1 4-4h12"></path>', "cpu": '<rect x="4" y="4" width="16" height="16" rx="2" ry="2"></rect><rect x="9" y="9" width="6" height="6"></rect><line x1="9" y1="1" x2="9" y2="4"></line><line x1="15" y1="1" x2="15" y2="4"></line><line x1="9" y1="20" x2="9" y2="23"></line><line x1="15" y1="20" x2="15" y2="23"></line><line x1="20" y1="9" x2="23" y2="9"></line><line x1="20" y1="14" x2="23" y2="14"></line><line x1="1" y1="9" x2="4" y2="9"></line><line x1="1" y1="14" x2="4" y2="14"></line>', "credit-card": '<rect x="1" y="4" width="22" height="16" rx="2" ry="2"></rect><line x1="1" y1="10" x2="23" y2="10"></line>', "crop": '<path d="M6.13 1L6 16a2 2 0 0 0 2 2h15"></path><path d="M1 6.13L16 6a2 2 0 0 1 2 2v15"></path>', "crosshair": '<circle cx="12" cy="12" r="10"></circle><line x1="22" y1="12" x2="18" y2="12"></line><line x1="6" y1="12" x2="2" y2="12"></line><line x1="12" y1="6" x2="12" y2="2"></line><line x1="12" y1="22" x2="12" y2="18"></line>', "database": '<ellipse cx="12" cy="5" rx="9" ry="3"></ellipse><path d="M21 12c0 1.66-4 3-9 3s-9-1.34-9-3"></path><path d="M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5"></path>', "delete": '<path d="M21 4H8l-7 8 7 8h13a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2z"></path><line x1="18" y1="9" x2="12" y2="15"></line><line x1="12" y1="9" x2="18" y2="15"></line>', "disc": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="3"></circle>', "divide-circle": '<line x1="8" y1="12" x2="16" y2="12"></line><line x1="12" y1="16" x2="12" y2="16"></line><line x1="12" y1="8" x2="12" y2="8"></line><circle cx="12" cy="12" r="10"></circle>', "divide-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="8" y1="12" x2="16" y2="12"></line><line x1="12" y1="16" x2="12" y2="16"></line><line x1="12" y1="8" x2="12" y2="8"></line>', "divide": '<circle cx="12" cy="6" r="2"></circle><line x1="5" y1="12" x2="19" y2="12"></line><circle cx="12" cy="18" r="2"></circle>', "dollar-sign": '<line x1="12" y1="1" x2="12" y2="23"></line><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"></path>', "download-cloud": '<polyline points="8 17 12 21 16 17"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"></path>', "download": '<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="7 10 12 15 17 10"></polyline><line x1="12" y1="15" x2="12" y2="3"></line>', "dribbble": '<circle cx="12" cy="12" r="10"></circle><path d="M8.56 2.75c4.37 6.03 6.02 9.42 8.03 17.72m2.54-15.38c-3.72 4.35-8.94 5.66-16.88 5.85m19.5 1.9c-3.5-.93-6.63-.82-8.94 0-2.58.92-5.01 2.86-7.44 6.32"></path>', "droplet": '<path d="M12 2.69l5.66 5.66a8 8 0 1 1-11.31 0z"></path>', "edit-2": '<path d="M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"></path>', "edit-3": '<path d="M12 20h9"></path><path d="M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"></path>', "edit": '<path d="M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"></path><path d="M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"></path>', "external-link": '<path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line>', "eye-off": '<path d="M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "eye": '<path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path><circle cx="12" cy="12" r="3"></circle>', "facebook": '<path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path>', "fast-forward": '<polygon points="13 19 22 12 13 5 13 19"></polygon><polygon points="2 19 11 12 2 5 2 19"></polygon>', "feather": '<path d="M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"></path><line x1="16" y1="8" x2="2" y2="22"></line><line x1="17.5" y1="15" x2="9" y2="15"></line>', "figma": '<path d="M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"></path><path d="M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"></path><path d="M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"></path><path d="M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"></path><path d="M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"></path>', "file-minus": '<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="9" y1="15" x2="15" y2="15"></line>', "file-plus": '<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="12" y1="18" x2="12" y2="12"></line><line x1="9" y1="15" x2="15" y2="15"></line>', "file-text": '<path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"></path><polyline points="14 2 14 8 20 8"></polyline><line x1="16" y1="13" x2="8" y2="13"></line><line x1="16" y1="17" x2="8" y2="17"></line><polyline points="10 9 9 9 8 9"></polyline>', "file": '<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path><polyline points="13 2 13 9 20 9"></polyline>', "film": '<rect x="2" y="2" width="20" height="20" rx="2.18" ry="2.18"></rect><line x1="7" y1="2" x2="7" y2="22"></line><line x1="17" y1="2" x2="17" y2="22"></line><line x1="2" y1="12" x2="22" y2="12"></line><line x1="2" y1="7" x2="7" y2="7"></line><line x1="2" y1="17" x2="7" y2="17"></line><line x1="17" y1="17" x2="22" y2="17"></line><line x1="17" y1="7" x2="22" y2="7"></line>', "filter": '<polygon points="22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"></polygon>', "flag": '<path d="M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"></path><line x1="4" y1="22" x2="4" y2="15"></line>', "folder-minus": '<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="9" y1="14" x2="15" y2="14"></line>', "folder-plus": '<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="12" y1="11" x2="12" y2="17"></line><line x1="9" y1="14" x2="15" y2="14"></line>', "folder": '<path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path>', "framer": '<path d="M5 16V9h14V2H5l14 14h-7m-7 0l7 7v-7m-7 0h7"></path>', "frown": '<circle cx="12" cy="12" r="10"></circle><path d="M16 16s-1.5-2-4-2-4 2-4 2"></path><line x1="9" y1="9" x2="9.01" y2="9"></line><line x1="15" y1="9" x2="15.01" y2="9"></line>', "gift": '<polyline points="20 12 20 22 4 22 4 12"></polyline><rect x="2" y="7" width="20" height="5"></rect><line x1="12" y1="22" x2="12" y2="7"></line><path d="M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"></path><path d="M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"></path>', "git-branch": '<line x1="6" y1="3" x2="6" y2="15"></line><circle cx="18" cy="6" r="3"></circle><circle cx="6" cy="18" r="3"></circle><path d="M18 9a9 9 0 0 1-9 9"></path>', "git-commit": '<circle cx="12" cy="12" r="4"></circle><line x1="1.05" y1="12" x2="7" y2="12"></line><line x1="17.01" y1="12" x2="22.96" y2="12"></line>', "git-merge": '<circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M6 21V9a9 9 0 0 0 9 9"></path>', "git-pull-request": '<circle cx="18" cy="18" r="3"></circle><circle cx="6" cy="6" r="3"></circle><path d="M13 6h3a2 2 0 0 1 2 2v7"></path><line x1="6" y1="9" x2="6" y2="21"></line>', "github": '<path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path>', "gitlab": '<path d="M22.65 14.39L12 22.13 1.35 14.39a.84.84 0 0 1-.3-.94l1.22-3.78 2.44-7.51A.42.42 0 0 1 4.82 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.49h8.1l2.44-7.51A.42.42 0 0 1 18.6 2a.43.43 0 0 1 .58 0 .42.42 0 0 1 .11.18l2.44 7.51L23 13.45a.84.84 0 0 1-.35.94z"></path>', "globe": '<circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path>', "grid": '<rect x="3" y="3" width="7" height="7"></rect><rect x="14" y="3" width="7" height="7"></rect><rect x="14" y="14" width="7" height="7"></rect><rect x="3" y="14" width="7" height="7"></rect>', "hard-drive": '<line x1="22" y1="12" x2="2" y2="12"></line><path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path><line x1="6" y1="16" x2="6.01" y2="16"></line><line x1="10" y1="16" x2="10.01" y2="16"></line>', "hash": '<line x1="4" y1="9" x2="20" y2="9"></line><line x1="4" y1="15" x2="20" y2="15"></line><line x1="10" y1="3" x2="8" y2="21"></line><line x1="16" y1="3" x2="14" y2="21"></line>', "headphones": '<path d="M3 18v-6a9 9 0 0 1 18 0v6"></path><path d="M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"></path>', "heart": '<path d="M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"></path>', "help-circle": '<circle cx="12" cy="12" r="10"></circle><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12.01" y2="17"></line>', "hexagon": '<path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path>', "home": '<path d="M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path><polyline points="9 22 9 12 15 12 15 22"></polyline>', "image": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline>', "inbox": '<polyline points="22 12 16 12 14 15 10 15 8 12 2 12"></polyline><path d="M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z"></path>', "info": '<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12.01" y2="8"></line>', "instagram": '<rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line>', "italic": '<line x1="19" y1="4" x2="10" y2="4"></line><line x1="14" y1="20" x2="5" y2="20"></line><line x1="15" y1="4" x2="9" y2="20"></line>', "key": '<path d="M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4"></path>', "layers": '<polygon points="12 2 2 7 12 12 22 7 12 2"></polygon><polyline points="2 17 12 22 22 17"></polyline><polyline points="2 12 12 17 22 12"></polyline>', "layout": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="3" y1="9" x2="21" y2="9"></line><line x1="9" y1="21" x2="9" y2="9"></line>', "life-buoy": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="4"></circle><line x1="4.93" y1="4.93" x2="9.17" y2="9.17"></line><line x1="14.83" y1="14.83" x2="19.07" y2="19.07"></line><line x1="14.83" y1="9.17" x2="19.07" y2="4.93"></line><line x1="14.83" y1="9.17" x2="18.36" y2="5.64"></line><line x1="4.93" y1="19.07" x2="9.17" y2="14.83"></line>', "link-2": '<path d="M15 7h3a5 5 0 0 1 5 5 5 5 0 0 1-5 5h-3m-6 0H6a5 5 0 0 1-5-5 5 5 0 0 1 5-5h3"></path><line x1="8" y1="12" x2="16" y2="12"></line>', "link": '<path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path>', "linkedin": '<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect x="2" y="9" width="4" height="12"></rect><circle cx="4" cy="4" r="2"></circle>', "list": '<line x1="8" y1="6" x2="21" y2="6"></line><line x1="8" y1="12" x2="21" y2="12"></line><line x1="8" y1="18" x2="21" y2="18"></line><line x1="3" y1="6" x2="3.01" y2="6"></line><line x1="3" y1="12" x2="3.01" y2="12"></line><line x1="3" y1="18" x2="3.01" y2="18"></line>', "loader": '<line x1="12" y1="2" x2="12" y2="6"></line><line x1="12" y1="18" x2="12" y2="22"></line><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"></line><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"></line><line x1="2" y1="12" x2="6" y2="12"></line><line x1="18" y1="12" x2="22" y2="12"></line><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"></line><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"></line>', "lock": '<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path>', "log-in": '<path d="M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"></path><polyline points="10 17 15 12 10 7"></polyline><line x1="15" y1="12" x2="3" y2="12"></line>', "log-out": '<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path><polyline points="16 17 21 12 16 7"></polyline><line x1="21" y1="12" x2="9" y2="12"></line>', "mail": '<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline>', "map-pin": '<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle>', "map": '<polygon points="1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6"></polygon><line x1="8" y1="2" x2="8" y2="18"></line><line x1="16" y1="6" x2="16" y2="22"></line>', "maximize-2": '<polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" y1="3" x2="14" y2="10"></line><line x1="3" y1="21" x2="10" y2="14"></line>', "maximize": '<path d="M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"></path>', "meh": '<circle cx="12" cy="12" r="10"></circle><line x1="8" y1="15" x2="16" y2="15"></line><line x1="9" y1="9" x2="9.01" y2="9"></line><line x1="15" y1="9" x2="15.01" y2="9"></line>', "menu": '<line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line>', "message-circle": '<path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"></path>', "message-square": '<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path>', "mic-off": '<line x1="1" y1="1" x2="23" y2="23"></line><path d="M9 9v3a3 3 0 0 0 5.12 2.12M15 9.34V4a3 3 0 0 0-5.94-.6"></path><path d="M17 16.95A7 7 0 0 1 5 12v-2m14 0v2a7 7 0 0 1-.11 1.23"></path><line x1="12" y1="19" x2="12" y2="23"></line><line x1="8" y1="23" x2="16" y2="23"></line>', "mic": '<path d="M12 1a3 3 0 0 0-3 3v8a3 3 0 0 0 6 0V4a3 3 0 0 0-3-3z"></path><path d="M19 10v2a7 7 0 0 1-14 0v-2"></path><line x1="12" y1="19" x2="12" y2="23"></line><line x1="8" y1="23" x2="16" y2="23"></line>', "minimize-2": '<polyline points="4 14 10 14 10 20"></polyline><polyline points="20 10 14 10 14 4"></polyline><line x1="14" y1="10" x2="21" y2="3"></line><line x1="3" y1="21" x2="10" y2="14"></line>', "minimize": '<path d="M8 3v3a2 2 0 0 1-2 2H3m18 0h-3a2 2 0 0 1-2-2V3m0 18v-3a2 2 0 0 1 2-2h3M3 16h3a2 2 0 0 1 2 2v3"></path>', "minus-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="8" y1="12" x2="16" y2="12"></line>', "minus-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="8" y1="12" x2="16" y2="12"></line>', "minus": '<line x1="5" y1="12" x2="19" y2="12"></line>', "monitor": '<rect x="2" y="3" width="20" height="14" rx="2" ry="2"></rect><line x1="8" y1="21" x2="16" y2="21"></line><line x1="12" y1="17" x2="12" y2="21"></line>', "moon": '<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>', "more-horizontal": '<circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle>', "more-vertical": '<circle cx="12" cy="12" r="1"></circle><circle cx="12" cy="5" r="1"></circle><circle cx="12" cy="19" r="1"></circle>', "mouse-pointer": '<path d="M3 3l7.07 16.97 2.51-7.39 7.39-2.51L3 3z"></path><path d="M13 13l6 6"></path>', "move": '<polyline points="5 9 2 12 5 15"></polyline><polyline points="9 5 12 2 15 5"></polyline><polyline points="15 19 12 22 9 19"></polyline><polyline points="19 9 22 12 19 15"></polyline><line x1="2" y1="12" x2="22" y2="12"></line><line x1="12" y1="2" x2="12" y2="22"></line>', "music": '<path d="M9 18V5l12-2v13"></path><circle cx="6" cy="18" r="3"></circle><circle cx="18" cy="16" r="3"></circle>', "navigation-2": '<polygon points="12 2 19 21 12 17 5 21 12 2"></polygon>', "navigation": '<polygon points="3 11 22 2 13 21 11 13 3 11"></polygon>', "octagon": '<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"></polygon>', "package": '<line x1="16.5" y1="9.4" x2="7.5" y2="4.21"></line><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path><polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline><line x1="12" y1="22.08" x2="12" y2="12"></line>', "paperclip": '<path d="M21.44 11.05l-9.19 9.19a6 6 0 0 1-8.49-8.49l9.19-9.19a4 4 0 0 1 5.66 5.66l-9.2 9.19a2 2 0 0 1-2.83-2.83l8.49-8.48"></path>', "pause-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="10" y1="15" x2="10" y2="9"></line><line x1="14" y1="15" x2="14" y2="9"></line>', "pause": '<rect x="6" y="4" width="4" height="16"></rect><rect x="14" y="4" width="4" height="16"></rect>', "pen-tool": '<path d="M12 19l7-7 3 3-7 7-3-3z"></path><path d="M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z"></path><path d="M2 2l7.586 7.586"></path><circle cx="11" cy="11" r="2"></circle>', "percent": '<line x1="19" y1="5" x2="5" y2="19"></line><circle cx="6.5" cy="6.5" r="2.5"></circle><circle cx="17.5" cy="17.5" r="2.5"></circle>', "phone-call": '<path d="M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94m-1 7.98v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-forwarded": '<polyline points="19 1 23 5 19 9"></polyline><line x1="15" y1="5" x2="23" y2="5"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-incoming": '<polyline points="16 2 16 8 22 8"></polyline><line x1="23" y1="1" x2="16" y2="8"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-missed": '<line x1="23" y1="1" x2="17" y2="7"></line><line x1="17" y1="1" x2="23" y2="7"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone-off": '<path d="M10.68 13.31a16 16 0 0 0 3.41 2.6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7 2 2 0 0 1 1.72 2v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.42 19.42 0 0 1-3.33-2.67m-2.67-3.34a19.79 19.79 0 0 1-3.07-8.63A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91"></path><line x1="23" y1="1" x2="1" y2="23"></line>', "phone-outgoing": '<polyline points="23 7 23 1 17 1"></polyline><line x1="16" y1="8" x2="23" y2="1"></line><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "phone": '<path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"></path>', "pie-chart": '<path d="M21.21 15.89A10 10 0 1 1 8 2.83"></path><path d="M22 12A10 10 0 0 0 12 2v10z"></path>', "play-circle": '<circle cx="12" cy="12" r="10"></circle><polygon points="10 8 16 12 10 16 10 8"></polygon>', "play": '<polygon points="5 3 19 12 5 21 5 3"></polygon>', "plus-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line>', "plus-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="12" y1="8" x2="12" y2="16"></line><line x1="8" y1="12" x2="16" y2="12"></line>', "plus": '<line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line>', "pocket": '<path d="M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z"></path><polyline points="8 10 12 14 16 10"></polyline>', "power": '<path d="M18.36 6.64a9 9 0 1 1-12.73 0"></path><line x1="12" y1="2" x2="12" y2="12"></line>', "printer": '<polyline points="6 9 6 2 18 2 18 9"></polyline><path d="M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"></path><rect x="6" y="14" width="12" height="8"></rect>', "radio": '<circle cx="12" cy="12" r="2"></circle><path d="M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14"></path>', "refresh-ccw": '<polyline points="1 4 1 10 7 10"></polyline><polyline points="23 20 23 14 17 14"></polyline><path d="M20.49 9A9 9 0 0 0 5.64 5.64L1 10m22 4l-4.64 4.36A9 9 0 0 1 3.51 15"></path>', "refresh-cw": '<polyline points="23 4 23 10 17 10"></polyline><polyline points="1 20 1 14 7 14"></polyline><path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"></path>', "repeat": '<polyline points="17 1 21 5 17 9"></polyline><path d="M3 11V9a4 4 0 0 1 4-4h14"></path><polyline points="7 23 3 19 7 15"></polyline><path d="M21 13v2a4 4 0 0 1-4 4H3"></path>', "rewind": '<polygon points="11 19 2 12 11 5 11 19"></polygon><polygon points="22 19 13 12 22 5 22 19"></polygon>', "rotate-ccw": '<polyline points="1 4 1 10 7 10"></polyline><path d="M3.51 15a9 9 0 1 0 2.13-9.36L1 10"></path>', "rotate-cw": '<polyline points="23 4 23 10 17 10"></polyline><path d="M20.49 15a9 9 0 1 1-2.12-9.36L23 10"></path>', "rss": '<path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle>', "save": '<path d="M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"></path><polyline points="17 21 17 13 7 13 7 21"></polyline><polyline points="7 3 7 8 15 8"></polyline>', "scissors": '<circle cx="6" cy="6" r="3"></circle><circle cx="6" cy="18" r="3"></circle><line x1="20" y1="4" x2="8.12" y2="15.88"></line><line x1="14.47" y1="14.48" x2="20" y2="20"></line><line x1="8.12" y1="8.12" x2="12" y2="12"></line>', "search": '<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line>', "send": '<line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon>', "server": '<rect x="2" y="2" width="20" height="8" rx="2" ry="2"></rect><rect x="2" y="14" width="20" height="8" rx="2" ry="2"></rect><line x1="6" y1="6" x2="6.01" y2="6"></line><line x1="6" y1="18" x2="6.01" y2="18"></line>', "settings": '<circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"></path>', "share-2": '<circle cx="18" cy="5" r="3"></circle><circle cx="6" cy="12" r="3"></circle><circle cx="18" cy="19" r="3"></circle><line x1="8.59" y1="13.51" x2="15.42" y2="17.49"></line><line x1="15.41" y1="6.51" x2="8.59" y2="10.49"></line>', "share": '<path d="M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"></path><polyline points="16 6 12 2 8 6"></polyline><line x1="12" y1="2" x2="12" y2="15"></line>', "shield-off": '<path d="M19.69 14a6.9 6.9 0 0 0 .31-2V5l-8-3-3.16 1.18"></path><path d="M4.73 4.73L4 5v7c0 6 8 10 8 10a20.29 20.29 0 0 0 5.62-4.38"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "shield": '<path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path>', "shopping-bag": '<path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path>', "shopping-cart": '<circle cx="9" cy="21" r="1"></circle><circle cx="20" cy="21" r="1"></circle><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"></path>', "shuffle": '<polyline points="16 3 21 3 21 8"></polyline><line x1="4" y1="20" x2="21" y2="3"></line><polyline points="21 16 21 21 16 21"></polyline><line x1="15" y1="15" x2="21" y2="21"></line><line x1="4" y1="4" x2="9" y2="9"></line>', "sidebar": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="9" y1="3" x2="9" y2="21"></line>', "skip-back": '<polygon points="19 20 9 12 19 4 19 20"></polygon><line x1="5" y1="19" x2="5" y2="5"></line>', "skip-forward": '<polygon points="5 4 15 12 5 20 5 4"></polygon><line x1="19" y1="5" x2="19" y2="19"></line>', "slack": '<path d="M14.5 10c-.83 0-1.5-.67-1.5-1.5v-5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5z"></path><path d="M20.5 10H19V8.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z"></path><path d="M9.5 14c.83 0 1.5.67 1.5 1.5v5c0 .83-.67 1.5-1.5 1.5S8 21.33 8 20.5v-5c0-.83.67-1.5 1.5-1.5z"></path><path d="M3.5 14H5v1.5c0 .83-.67 1.5-1.5 1.5S2 16.33 2 15.5 2.67 14 3.5 14z"></path><path d="M14 14.5c0-.83.67-1.5 1.5-1.5h5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-5c-.83 0-1.5-.67-1.5-1.5z"></path><path d="M15.5 19H14v1.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z"></path><path d="M10 9.5C10 8.67 9.33 8 8.5 8h-5C2.67 8 2 8.67 2 9.5S2.67 11 3.5 11h5c.83 0 1.5-.67 1.5-1.5z"></path><path d="M8.5 5H10V3.5C10 2.67 9.33 2 8.5 2S7 2.67 7 3.5 7.67 5 8.5 5z"></path>', "slash": '<circle cx="12" cy="12" r="10"></circle><line x1="4.93" y1="4.93" x2="19.07" y2="19.07"></line>', "sliders": '<line x1="4" y1="21" x2="4" y2="14"></line><line x1="4" y1="10" x2="4" y2="3"></line><line x1="12" y1="21" x2="12" y2="12"></line><line x1="12" y1="8" x2="12" y2="3"></line><line x1="20" y1="21" x2="20" y2="16"></line><line x1="20" y1="12" x2="20" y2="3"></line><line x1="1" y1="14" x2="7" y2="14"></line><line x1="9" y1="8" x2="15" y2="8"></line><line x1="17" y1="16" x2="23" y2="16"></line>', "smartphone": '<rect x="5" y="2" width="14" height="20" rx="2" ry="2"></rect><line x1="12" y1="18" x2="12.01" y2="18"></line>', "smile": '<circle cx="12" cy="12" r="10"></circle><path d="M8 14s1.5 2 4 2 4-2 4-2"></path><line x1="9" y1="9" x2="9.01" y2="9"></line><line x1="15" y1="9" x2="15.01" y2="9"></line>', "speaker": '<rect x="4" y="2" width="16" height="20" rx="2" ry="2"></rect><circle cx="12" cy="14" r="4"></circle><line x1="12" y1="6" x2="12.01" y2="6"></line>', "square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>', "star": '<polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon>', "stop-circle": '<circle cx="12" cy="12" r="10"></circle><rect x="9" y="9" width="6" height="6"></rect>', "sun": '<circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>', "sunrise": '<path d="M17 18a5 5 0 0 0-10 0"></path><line x1="12" y1="2" x2="12" y2="9"></line><line x1="4.22" y1="10.22" x2="5.64" y2="11.64"></line><line x1="1" y1="18" x2="3" y2="18"></line><line x1="21" y1="18" x2="23" y2="18"></line><line x1="18.36" y1="11.64" x2="19.78" y2="10.22"></line><line x1="23" y1="22" x2="1" y2="22"></line><polyline points="8 6 12 2 16 6"></polyline>', "sunset": '<path d="M17 18a5 5 0 0 0-10 0"></path><line x1="12" y1="9" x2="12" y2="2"></line><line x1="4.22" y1="10.22" x2="5.64" y2="11.64"></line><line x1="1" y1="18" x2="3" y2="18"></line><line x1="21" y1="18" x2="23" y2="18"></line><line x1="18.36" y1="11.64" x2="19.78" y2="10.22"></line><line x1="23" y1="22" x2="1" y2="22"></line><polyline points="16 5 12 9 8 5"></polyline>', "table": '<path d="M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18"></path>', "tablet": '<rect x="4" y="2" width="16" height="20" rx="2" ry="2"></rect><line x1="12" y1="18" x2="12.01" y2="18"></line>', "tag": '<path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"></path><line x1="7" y1="7" x2="7.01" y2="7"></line>', "target": '<circle cx="12" cy="12" r="10"></circle><circle cx="12" cy="12" r="6"></circle><circle cx="12" cy="12" r="2"></circle>', "terminal": '<polyline points="4 17 10 11 4 5"></polyline><line x1="12" y1="19" x2="20" y2="19"></line>', "thermometer": '<path d="M14 14.76V3.5a2.5 2.5 0 0 0-5 0v11.26a4.5 4.5 0 1 0 5 0z"></path>', "thumbs-down": '<path d="M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"></path>', "thumbs-up": '<path d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"></path>', "toggle-left": '<rect x="1" y="5" width="22" height="14" rx="7" ry="7"></rect><circle cx="8" cy="12" r="3"></circle>', "toggle-right": '<rect x="1" y="5" width="22" height="14" rx="7" ry="7"></rect><circle cx="16" cy="12" r="3"></circle>', "tool": '<path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"></path>', "trash-2": '<polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path><line x1="10" y1="11" x2="10" y2="17"></line><line x1="14" y1="11" x2="14" y2="17"></line>', "trash": '<polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path>', "trello": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><rect x="7" y="7" width="3" height="9"></rect><rect x="14" y="7" width="3" height="5"></rect>', "trending-down": '<polyline points="23 18 13.5 8.5 8.5 13.5 1 6"></polyline><polyline points="17 18 23 18 23 12"></polyline>', "trending-up": '<polyline points="23 6 13.5 15.5 8.5 10.5 1 18"></polyline><polyline points="17 6 23 6 23 12"></polyline>', "triangle": '<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path>', "truck": '<rect x="1" y="3" width="15" height="13"></rect><polygon points="16 8 20 8 23 11 23 16 16 16 16 8"></polygon><circle cx="5.5" cy="18.5" r="2.5"></circle><circle cx="18.5" cy="18.5" r="2.5"></circle>', "tv": '<rect x="2" y="7" width="20" height="15" rx="2" ry="2"></rect><polyline points="17 2 12 7 7 2"></polyline>', "twitch": '<path d="M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"></path>', "twitter": '<path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path>', "type": '<polyline points="4 7 4 4 20 4 20 7"></polyline><line x1="9" y1="20" x2="15" y2="20"></line><line x1="12" y1="4" x2="12" y2="20"></line>', "umbrella": '<path d="M23 12a11.05 11.05 0 0 0-22 0zm-5 7a3 3 0 0 1-6 0v-7"></path>', "underline": '<path d="M6 3v7a6 6 0 0 0 6 6 6 6 0 0 0 6-6V3"></path><line x1="4" y1="21" x2="20" y2="21"></line>', "unlock": '<rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 9.9-1"></path>', "upload-cloud": '<polyline points="16 16 12 12 8 16"></polyline><line x1="12" y1="12" x2="12" y2="21"></line><path d="M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"></path><polyline points="16 16 12 12 8 16"></polyline>', "upload": '<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"></path><polyline points="17 8 12 3 7 8"></polyline><line x1="12" y1="3" x2="12" y2="15"></line>', "user-check": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><polyline points="17 11 19 13 23 9"></polyline>', "user-minus": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="23" y1="11" x2="17" y2="11"></line>', "user-plus": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="20" y1="8" x2="20" y2="14"></line><line x1="23" y1="11" x2="17" y2="11"></line>', "user-x": '<path d="M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="8.5" cy="7" r="4"></circle><line x1="18" y1="8" x2="23" y2="13"></line><line x1="23" y1="8" x2="18" y2="13"></line>', "user": '<path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle>', "users": '<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"></path><circle cx="9" cy="7" r="4"></circle><path d="M23 21v-2a4 4 0 0 0-3-3.87"></path><path d="M16 3.13a4 4 0 0 1 0 7.75"></path>', "video-off": '<path d="M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2m5.66 0H14a2 2 0 0 1 2 2v3.34l1 1L23 7v10"></path><line x1="1" y1="1" x2="23" y2="23"></line>', "video": '<polygon points="23 7 16 12 23 17 23 7"></polygon><rect x="1" y="5" width="15" height="14" rx="2" ry="2"></rect>', "voicemail": '<circle cx="5.5" cy="11.5" r="4.5"></circle><circle cx="18.5" cy="11.5" r="4.5"></circle><line x1="5.5" y1="16" x2="18.5" y2="16"></line>', "volume-1": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><path d="M15.54 8.46a5 5 0 0 1 0 7.07"></path>', "volume-2": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><path d="M19.07 4.93a10 10 0 0 1 0 14.14M15.54 8.46a5 5 0 0 1 0 7.07"></path>', "volume-x": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon><line x1="23" y1="9" x2="17" y2="15"></line><line x1="17" y1="9" x2="23" y2="15"></line>', "volume": '<polygon points="11 5 6 9 2 9 2 15 6 15 11 19 11 5"></polygon>', "watch": '<circle cx="12" cy="12" r="7"></circle><polyline points="12 9 12 12 13.5 13.5"></polyline><path d="M16.51 17.35l-.35 3.83a2 2 0 0 1-2 1.82H9.83a2 2 0 0 1-2-1.82l-.35-3.83m.01-10.7l.35-3.83A2 2 0 0 1 9.83 1h4.35a2 2 0 0 1 2 1.82l.35 3.83"></path>', "wifi-off": '<line x1="1" y1="1" x2="23" y2="23"></line><path d="M16.72 11.06A10.94 10.94 0 0 1 19 12.55"></path><path d="M5 12.55a10.94 10.94 0 0 1 5.17-2.39"></path><path d="M10.71 5.05A16 16 0 0 1 22.58 9"></path><path d="M1.42 9a15.91 15.91 0 0 1 4.7-2.88"></path><path d="M8.53 16.11a6 6 0 0 1 6.95 0"></path><line x1="12" y1="20" x2="12.01" y2="20"></line>', "wifi": '<path d="M5 12.55a11 11 0 0 1 14.08 0"></path><path d="M1.42 9a16 16 0 0 1 21.16 0"></path><path d="M8.53 16.11a6 6 0 0 1 6.95 0"></path><line x1="12" y1="20" x2="12.01" y2="20"></line>', "wind": '<path d="M9.59 4.59A2 2 0 1 1 11 8H2m10.59 11.41A2 2 0 1 0 14 16H2m15.73-8.27A2.5 2.5 0 1 1 19.5 12H2"></path>', "x-circle": '<circle cx="12" cy="12" r="10"></circle><line x1="15" y1="9" x2="9" y2="15"></line><line x1="9" y1="9" x2="15" y2="15"></line>', "x-octagon": '<polygon points="7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"></polygon><line x1="15" y1="9" x2="9" y2="15"></line><line x1="9" y1="9" x2="15" y2="15"></line>', "x-square": '<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><line x1="9" y1="9" x2="15" y2="15"></line><line x1="15" y1="9" x2="9" y2="15"></line>', "x": '<line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line>', "youtube": '<path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"></path><polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"></polygon>', "zap-off": '<polyline points="12.41 6.75 13 2 10.57 4.92"></polyline><polyline points="18.57 12.91 21 10 15.66 10"></polyline><polyline points="8 8 3 14 12 14 11 22 16 16"></polyline><line x1="1" y1="1" x2="23" y2="23"></line>', "zap": '<polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"></polygon>', "zoom-in": '<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line><line x1="11" y1="8" x2="11" y2="14"></line><line x1="8" y1="11" x2="14" y2="11"></line>', "zoom-out": '<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line><line x1="8" y1="11" x2="14" y2="11"></line>' };
4754
4816
  },
4755
4817
  "./node_modules/classnames/dedupe.js": function(module2, exports2, __webpack_require__) {
4756
4818
  var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;
@@ -5662,8 +5724,8 @@ var feather$2 = { exports: {} };
5662
5724
  var getOwnPropertyNamesModule = __webpack_require__("./node_modules/core-js/internals/object-get-own-property-names.js");
5663
5725
  var getOwnPropertySymbolsModule = __webpack_require__("./node_modules/core-js/internals/object-get-own-property-symbols.js");
5664
5726
  var anObject = __webpack_require__("./node_modules/core-js/internals/an-object.js");
5665
- var Reflect2 = global2.Reflect;
5666
- module2.exports = Reflect2 && Reflect2.ownKeys || function ownKeys(it) {
5727
+ var Reflect = global2.Reflect;
5728
+ module2.exports = Reflect && Reflect.ownKeys || function ownKeys(it) {
5667
5729
  var keys = getOwnPropertyNamesModule.f(anObject(it));
5668
5730
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
5669
5731
  return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;
@@ -6071,7 +6133,7 @@ var feather$2 = { exports: {} };
6071
6133
  exports2.default = replace;
6072
6134
  },
6073
6135
  "./src/tags.json": function(module2) {
6074
- module2.exports = { "activity": ["pulse", "health", "action", "motion"], "airplay": ["stream", "cast", "mirroring"], "alert-circle": ["warning", "alert", "danger"], "alert-octagon": ["warning", "alert", "danger"], "alert-triangle": ["warning", "alert", "danger"], "align-center": ["text alignment", "center"], "align-justify": ["text alignment", "justified"], "align-left": ["text alignment", "left"], "align-right": ["text alignment", "right"], "anchor": [], "archive": ["index", "box"], "at-sign": ["mention", "at", "email", "message"], "award": ["achievement", "badge"], "aperture": ["camera", "photo"], "bar-chart": ["statistics", "diagram", "graph"], "bar-chart-2": ["statistics", "diagram", "graph"], "battery": ["power", "electricity"], "battery-charging": ["power", "electricity"], "bell": ["alarm", "notification", "sound"], "bell-off": ["alarm", "notification", "silent"], "bluetooth": ["wireless"], "book-open": ["read", "library"], "book": ["read", "dictionary", "booklet", "magazine", "library"], "bookmark": ["read", "clip", "marker", "tag"], "box": ["cube"], "briefcase": ["work", "bag", "baggage", "folder"], "calendar": ["date"], "camera": ["photo"], "cast": ["chromecast", "airplay"], "circle": ["off", "zero", "record"], "clipboard": ["copy"], "clock": ["time", "watch", "alarm"], "cloud-drizzle": ["weather", "shower"], "cloud-lightning": ["weather", "bolt"], "cloud-rain": ["weather"], "cloud-snow": ["weather", "blizzard"], "cloud": ["weather"], "codepen": ["logo"], "codesandbox": ["logo"], "code": ["source", "programming"], "coffee": ["drink", "cup", "mug", "tea", "cafe", "hot", "beverage"], "columns": ["layout"], "command": ["keyboard", "cmd", "terminal", "prompt"], "compass": ["navigation", "safari", "travel", "direction"], "copy": ["clone", "duplicate"], "corner-down-left": ["arrow", "return"], "corner-down-right": ["arrow"], "corner-left-down": ["arrow"], "corner-left-up": ["arrow"], "corner-right-down": ["arrow"], "corner-right-up": ["arrow"], "corner-up-left": ["arrow"], "corner-up-right": ["arrow"], "cpu": ["processor", "technology"], "credit-card": ["purchase", "payment", "cc"], "crop": ["photo", "image"], "crosshair": ["aim", "target"], "database": ["storage", "memory"], "delete": ["remove"], "disc": ["album", "cd", "dvd", "music"], "dollar-sign": ["currency", "money", "payment"], "droplet": ["water"], "edit": ["pencil", "change"], "edit-2": ["pencil", "change"], "edit-3": ["pencil", "change"], "eye": ["view", "watch"], "eye-off": ["view", "watch", "hide", "hidden"], "external-link": ["outbound"], "facebook": ["logo", "social"], "fast-forward": ["music"], "figma": ["logo", "design", "tool"], "file-minus": ["delete", "remove", "erase"], "file-plus": ["add", "create", "new"], "file-text": ["data", "txt", "pdf"], "film": ["movie", "video"], "filter": ["funnel", "hopper"], "flag": ["report"], "folder-minus": ["directory"], "folder-plus": ["directory"], "folder": ["directory"], "framer": ["logo", "design", "tool"], "frown": ["emoji", "face", "bad", "sad", "emotion"], "gift": ["present", "box", "birthday", "party"], "git-branch": ["code", "version control"], "git-commit": ["code", "version control"], "git-merge": ["code", "version control"], "git-pull-request": ["code", "version control"], "github": ["logo", "version control"], "gitlab": ["logo", "version control"], "globe": ["world", "browser", "language", "translate"], "hard-drive": ["computer", "server", "memory", "data"], "hash": ["hashtag", "number", "pound"], "headphones": ["music", "audio", "sound"], "heart": ["like", "love", "emotion"], "help-circle": ["question mark"], "hexagon": ["shape", "node.js", "logo"], "home": ["house", "living"], "image": ["picture"], "inbox": ["email"], "instagram": ["logo", "camera"], "key": ["password", "login", "authentication", "secure"], "layers": ["stack"], "layout": ["window", "webpage"], "life-bouy": ["help", "life ring", "support"], "link": ["chain", "url"], "link-2": ["chain", "url"], "linkedin": ["logo", "social media"], "list": ["options"], "lock": ["security", "password", "secure"], "log-in": ["sign in", "arrow", "enter"], "log-out": ["sign out", "arrow", "exit"], "mail": ["email", "message"], "map-pin": ["location", "navigation", "travel", "marker"], "map": ["location", "navigation", "travel"], "maximize": ["fullscreen"], "maximize-2": ["fullscreen", "arrows", "expand"], "meh": ["emoji", "face", "neutral", "emotion"], "menu": ["bars", "navigation", "hamburger"], "message-circle": ["comment", "chat"], "message-square": ["comment", "chat"], "mic-off": ["record", "sound", "mute"], "mic": ["record", "sound", "listen"], "minimize": ["exit fullscreen", "close"], "minimize-2": ["exit fullscreen", "arrows", "close"], "minus": ["subtract"], "monitor": ["tv", "screen", "display"], "moon": ["dark", "night"], "more-horizontal": ["ellipsis"], "more-vertical": ["ellipsis"], "mouse-pointer": ["arrow", "cursor"], "move": ["arrows"], "music": ["note"], "navigation": ["location", "travel"], "navigation-2": ["location", "travel"], "octagon": ["stop"], "package": ["box", "container"], "paperclip": ["attachment"], "pause": ["music", "stop"], "pause-circle": ["music", "audio", "stop"], "pen-tool": ["vector", "drawing"], "percent": ["discount"], "phone-call": ["ring"], "phone-forwarded": ["call"], "phone-incoming": ["call"], "phone-missed": ["call"], "phone-off": ["call", "mute"], "phone-outgoing": ["call"], "phone": ["call"], "play": ["music", "start"], "pie-chart": ["statistics", "diagram"], "play-circle": ["music", "start"], "plus": ["add", "new"], "plus-circle": ["add", "new"], "plus-square": ["add", "new"], "pocket": ["logo", "save"], "power": ["on", "off"], "printer": ["fax", "office", "device"], "radio": ["signal"], "refresh-cw": ["synchronise", "arrows"], "refresh-ccw": ["arrows"], "repeat": ["loop", "arrows"], "rewind": ["music"], "rotate-ccw": ["arrow"], "rotate-cw": ["arrow"], "rss": ["feed", "subscribe"], "save": ["floppy disk"], "scissors": ["cut"], "search": ["find", "magnifier", "magnifying glass"], "send": ["message", "mail", "email", "paper airplane", "paper aeroplane"], "settings": ["cog", "edit", "gear", "preferences"], "share-2": ["network", "connections"], "shield": ["security", "secure"], "shield-off": ["security", "insecure"], "shopping-bag": ["ecommerce", "cart", "purchase", "store"], "shopping-cart": ["ecommerce", "cart", "purchase", "store"], "shuffle": ["music"], "skip-back": ["music"], "skip-forward": ["music"], "slack": ["logo"], "slash": ["ban", "no"], "sliders": ["settings", "controls"], "smartphone": ["cellphone", "device"], "smile": ["emoji", "face", "happy", "good", "emotion"], "speaker": ["audio", "music"], "star": ["bookmark", "favorite", "like"], "stop-circle": ["media", "music"], "sun": ["brightness", "weather", "light"], "sunrise": ["weather", "time", "morning", "day"], "sunset": ["weather", "time", "evening", "night"], "tablet": ["device"], "tag": ["label"], "target": ["logo", "bullseye"], "terminal": ["code", "command line", "prompt"], "thermometer": ["temperature", "celsius", "fahrenheit", "weather"], "thumbs-down": ["dislike", "bad", "emotion"], "thumbs-up": ["like", "good", "emotion"], "toggle-left": ["on", "off", "switch"], "toggle-right": ["on", "off", "switch"], "tool": ["settings", "spanner"], "trash": ["garbage", "delete", "remove", "bin"], "trash-2": ["garbage", "delete", "remove", "bin"], "triangle": ["delta"], "truck": ["delivery", "van", "shipping", "transport", "lorry"], "tv": ["television", "stream"], "twitch": ["logo"], "twitter": ["logo", "social"], "type": ["text"], "umbrella": ["rain", "weather"], "unlock": ["security"], "user-check": ["followed", "subscribed"], "user-minus": ["delete", "remove", "unfollow", "unsubscribe"], "user-plus": ["new", "add", "create", "follow", "subscribe"], "user-x": ["delete", "remove", "unfollow", "unsubscribe", "unavailable"], "user": ["person", "account"], "users": ["group"], "video-off": ["camera", "movie", "film"], "video": ["camera", "movie", "film"], "voicemail": ["phone"], "volume": ["music", "sound", "mute"], "volume-1": ["music", "sound"], "volume-2": ["music", "sound"], "volume-x": ["music", "sound", "mute"], "watch": ["clock", "time"], "wifi-off": ["disabled"], "wifi": ["connection", "signal", "wireless"], "wind": ["weather", "air"], "x-circle": ["cancel", "close", "delete", "remove", "times", "clear"], "x-octagon": ["delete", "stop", "alert", "warning", "times", "clear"], "x-square": ["cancel", "close", "delete", "remove", "times", "clear"], "x": ["cancel", "close", "delete", "remove", "times", "clear"], "youtube": ["logo", "video", "play"], "zap-off": ["flash", "camera", "lightning"], "zap": ["flash", "camera", "lightning"], "zoom-in": ["magnifying glass"], "zoom-out": ["magnifying glass"] };
6136
+ module2.exports = { "activity": ["pulse", "health", "action", "motion"], "airplay": ["stream", "cast", "mirroring"], "alert-circle": ["warning", "alert", "danger"], "alert-octagon": ["warning", "alert", "danger"], "alert-triangle": ["warning", "alert", "danger"], "align-center": ["text alignment", "center"], "align-justify": ["text alignment", "justified"], "align-left": ["text alignment", "left"], "align-right": ["text alignment", "right"], "anchor": [], "archive": ["index", "box"], "at-sign": ["mention", "at", "email", "message"], "award": ["achievement", "badge"], "aperture": ["camera", "photo"], "bar-chart": ["statistics", "diagram", "graph"], "bar-chart-2": ["statistics", "diagram", "graph"], "battery": ["power", "electricity"], "battery-charging": ["power", "electricity"], "bell": ["alarm", "notification", "sound"], "bell-off": ["alarm", "notification", "silent"], "bluetooth": ["wireless"], "book-open": ["read", "library"], "book": ["read", "dictionary", "booklet", "magazine", "library"], "bookmark": ["read", "clip", "marker", "tag"], "box": ["cube"], "briefcase": ["work", "bag", "baggage", "folder"], "calendar": ["date"], "camera": ["photo"], "cast": ["chromecast", "airplay"], "chevron-down": ["expand"], "chevron-up": ["collapse"], "circle": ["off", "zero", "record"], "clipboard": ["copy"], "clock": ["time", "watch", "alarm"], "cloud-drizzle": ["weather", "shower"], "cloud-lightning": ["weather", "bolt"], "cloud-rain": ["weather"], "cloud-snow": ["weather", "blizzard"], "cloud": ["weather"], "codepen": ["logo"], "codesandbox": ["logo"], "code": ["source", "programming"], "coffee": ["drink", "cup", "mug", "tea", "cafe", "hot", "beverage"], "columns": ["layout"], "command": ["keyboard", "cmd", "terminal", "prompt"], "compass": ["navigation", "safari", "travel", "direction"], "copy": ["clone", "duplicate"], "corner-down-left": ["arrow", "return"], "corner-down-right": ["arrow"], "corner-left-down": ["arrow"], "corner-left-up": ["arrow"], "corner-right-down": ["arrow"], "corner-right-up": ["arrow"], "corner-up-left": ["arrow"], "corner-up-right": ["arrow"], "cpu": ["processor", "technology"], "credit-card": ["purchase", "payment", "cc"], "crop": ["photo", "image"], "crosshair": ["aim", "target"], "database": ["storage", "memory"], "delete": ["remove"], "disc": ["album", "cd", "dvd", "music"], "dollar-sign": ["currency", "money", "payment"], "droplet": ["water"], "edit": ["pencil", "change"], "edit-2": ["pencil", "change"], "edit-3": ["pencil", "change"], "eye": ["view", "watch"], "eye-off": ["view", "watch", "hide", "hidden"], "external-link": ["outbound"], "facebook": ["logo", "social"], "fast-forward": ["music"], "figma": ["logo", "design", "tool"], "file-minus": ["delete", "remove", "erase"], "file-plus": ["add", "create", "new"], "file-text": ["data", "txt", "pdf"], "film": ["movie", "video"], "filter": ["funnel", "hopper"], "flag": ["report"], "folder-minus": ["directory"], "folder-plus": ["directory"], "folder": ["directory"], "framer": ["logo", "design", "tool"], "frown": ["emoji", "face", "bad", "sad", "emotion"], "gift": ["present", "box", "birthday", "party"], "git-branch": ["code", "version control"], "git-commit": ["code", "version control"], "git-merge": ["code", "version control"], "git-pull-request": ["code", "version control"], "github": ["logo", "version control"], "gitlab": ["logo", "version control"], "globe": ["world", "browser", "language", "translate"], "hard-drive": ["computer", "server", "memory", "data"], "hash": ["hashtag", "number", "pound"], "headphones": ["music", "audio", "sound"], "heart": ["like", "love", "emotion"], "help-circle": ["question mark"], "hexagon": ["shape", "node.js", "logo"], "home": ["house", "living"], "image": ["picture"], "inbox": ["email"], "instagram": ["logo", "camera"], "key": ["password", "login", "authentication", "secure"], "layers": ["stack"], "layout": ["window", "webpage"], "life-bouy": ["help", "life ring", "support"], "link": ["chain", "url"], "link-2": ["chain", "url"], "linkedin": ["logo", "social media"], "list": ["options"], "lock": ["security", "password", "secure"], "log-in": ["sign in", "arrow", "enter"], "log-out": ["sign out", "arrow", "exit"], "mail": ["email", "message"], "map-pin": ["location", "navigation", "travel", "marker"], "map": ["location", "navigation", "travel"], "maximize": ["fullscreen"], "maximize-2": ["fullscreen", "arrows", "expand"], "meh": ["emoji", "face", "neutral", "emotion"], "menu": ["bars", "navigation", "hamburger"], "message-circle": ["comment", "chat"], "message-square": ["comment", "chat"], "mic-off": ["record", "sound", "mute"], "mic": ["record", "sound", "listen"], "minimize": ["exit fullscreen", "close"], "minimize-2": ["exit fullscreen", "arrows", "close"], "minus": ["subtract"], "monitor": ["tv", "screen", "display"], "moon": ["dark", "night"], "more-horizontal": ["ellipsis"], "more-vertical": ["ellipsis"], "mouse-pointer": ["arrow", "cursor"], "move": ["arrows"], "music": ["note"], "navigation": ["location", "travel"], "navigation-2": ["location", "travel"], "octagon": ["stop"], "package": ["box", "container"], "paperclip": ["attachment"], "pause": ["music", "stop"], "pause-circle": ["music", "audio", "stop"], "pen-tool": ["vector", "drawing"], "percent": ["discount"], "phone-call": ["ring"], "phone-forwarded": ["call"], "phone-incoming": ["call"], "phone-missed": ["call"], "phone-off": ["call", "mute"], "phone-outgoing": ["call"], "phone": ["call"], "play": ["music", "start"], "pie-chart": ["statistics", "diagram"], "play-circle": ["music", "start"], "plus": ["add", "new"], "plus-circle": ["add", "new"], "plus-square": ["add", "new"], "pocket": ["logo", "save"], "power": ["on", "off"], "printer": ["fax", "office", "device"], "radio": ["signal"], "refresh-cw": ["synchronise", "arrows"], "refresh-ccw": ["arrows"], "repeat": ["loop", "arrows"], "rewind": ["music"], "rotate-ccw": ["arrow"], "rotate-cw": ["arrow"], "rss": ["feed", "subscribe"], "save": ["floppy disk"], "scissors": ["cut"], "search": ["find", "magnifier", "magnifying glass"], "send": ["message", "mail", "email", "paper airplane", "paper aeroplane"], "settings": ["cog", "edit", "gear", "preferences"], "share-2": ["network", "connections"], "shield": ["security", "secure"], "shield-off": ["security", "insecure"], "shopping-bag": ["ecommerce", "cart", "purchase", "store"], "shopping-cart": ["ecommerce", "cart", "purchase", "store"], "shuffle": ["music"], "skip-back": ["music"], "skip-forward": ["music"], "slack": ["logo"], "slash": ["ban", "no"], "sliders": ["settings", "controls"], "smartphone": ["cellphone", "device"], "smile": ["emoji", "face", "happy", "good", "emotion"], "speaker": ["audio", "music"], "star": ["bookmark", "favorite", "like"], "stop-circle": ["media", "music"], "sun": ["brightness", "weather", "light"], "sunrise": ["weather", "time", "morning", "day"], "sunset": ["weather", "time", "evening", "night"], "tablet": ["device"], "tag": ["label"], "target": ["logo", "bullseye"], "terminal": ["code", "command line", "prompt"], "thermometer": ["temperature", "celsius", "fahrenheit", "weather"], "thumbs-down": ["dislike", "bad", "emotion"], "thumbs-up": ["like", "good", "emotion"], "toggle-left": ["on", "off", "switch"], "toggle-right": ["on", "off", "switch"], "tool": ["settings", "spanner"], "trash": ["garbage", "delete", "remove", "bin"], "trash-2": ["garbage", "delete", "remove", "bin"], "triangle": ["delta"], "truck": ["delivery", "van", "shipping", "transport", "lorry"], "tv": ["television", "stream"], "twitch": ["logo"], "twitter": ["logo", "social"], "type": ["text"], "umbrella": ["rain", "weather"], "unlock": ["security"], "user-check": ["followed", "subscribed"], "user-minus": ["delete", "remove", "unfollow", "unsubscribe"], "user-plus": ["new", "add", "create", "follow", "subscribe"], "user-x": ["delete", "remove", "unfollow", "unsubscribe", "unavailable"], "user": ["person", "account"], "users": ["group"], "video-off": ["camera", "movie", "film"], "video": ["camera", "movie", "film"], "voicemail": ["phone"], "volume": ["music", "sound", "mute"], "volume-1": ["music", "sound"], "volume-2": ["music", "sound"], "volume-x": ["music", "sound", "mute"], "watch": ["clock", "time"], "wifi-off": ["disabled"], "wifi": ["connection", "signal", "wireless"], "wind": ["weather", "air"], "x-circle": ["cancel", "close", "delete", "remove", "times", "clear"], "x-octagon": ["delete", "stop", "alert", "warning", "times", "clear"], "x-square": ["cancel", "close", "delete", "remove", "times", "clear"], "x": ["cancel", "close", "delete", "remove", "times", "clear"], "youtube": ["logo", "video", "play"], "zap-off": ["flash", "camera", "lightning"], "zap": ["flash", "camera", "lightning"], "zoom-in": ["magnifying glass"], "zoom-out": ["magnifying glass"] };
6075
6137
  },
6076
6138
  "./src/to-svg.js": function(module2, exports2, __webpack_require__) {
6077
6139
  Object.defineProperty(exports2, "__esModule", {
@@ -6103,12 +6165,11 @@ var feather$2 = { exports: {} };
6103
6165
  });
6104
6166
  })(feather$2);
6105
6167
  var feather = /* @__PURE__ */ getDefaultExportFromCjs(feather$2.exports);
6106
- var feather$1 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ _mergeNamespaces({
6168
+ var feather$1 = /* @__PURE__ */ _mergeNamespaces({
6107
6169
  __proto__: null,
6108
- [Symbol.toStringTag]: "Module",
6109
6170
  "default": feather
6110
- }, [feather$2.exports]));
6111
- var CpIcon_vue_vue_type_style_index_0_lang = "";
6171
+ }, [feather$2.exports]);
6172
+ var CpIcon_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}@keyframes cpIcon--spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.cpIcon{display:inline-block;overflow:hidden}.cpIcon--spin{animation:cpIcon--spin 2s linear infinite}.cpIcon--pulse{animation:cpIcon--spin 2s infinite steps(8)}.cpIcon--slow{animation-duration:3s}.cpIcon--fast{animation-duration:1s}.cpIcon__content{display:block;height:inherit;width:inherit}\n')();
6112
6173
  const _sfc_main$f = defineComponent({
6113
6174
  name: "CpIcon",
6114
6175
  props: {
@@ -6167,7 +6228,8 @@ const _sfc_main$f = defineComponent({
6167
6228
  watch(() => props.type, () => {
6168
6229
  icon = feather$2.exports.icons[props.type];
6169
6230
  });
6170
- return () => h$1(props.tag, __spreadProps(__spreadValues({}, attrs), {
6231
+ return () => h$1(props.tag, {
6232
+ ...attrs,
6171
6233
  "data-name": props.type,
6172
6234
  "data-tags": icon.tags,
6173
6235
  "data-type": props.type,
@@ -6177,8 +6239,9 @@ const _sfc_main$f = defineComponent({
6177
6239
  [`cpIcon--${props.animation}`]: props.animation,
6178
6240
  [`cpIcon--${props.animationSpeed}`]: props.animationSpeed
6179
6241
  }
6180
- }), [
6181
- h$1("svg", __spreadProps(__spreadValues({}, icon.attrs), {
6242
+ }, [
6243
+ h$1("svg", {
6244
+ ...icon.attrs,
6182
6245
  fill: props.fill,
6183
6246
  height: props.size,
6184
6247
  stroke: props.stroke,
@@ -6188,12 +6251,12 @@ const _sfc_main$f = defineComponent({
6188
6251
  width: props.size,
6189
6252
  class: [icon.attrs.class, "cpIcon__content"],
6190
6253
  innerHTML: icon.contents
6191
- }))
6254
+ })
6192
6255
  ]);
6193
6256
  }
6194
6257
  });
6195
- var CoreDatepicker_vue_vue_type_style_index_0_lang = "";
6196
- var CoreDatepicker_vue_vue_type_style_index_1_lang = "";
6258
+ var CoreDatepicker_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.asd__fade-enter-active,.asd__fade-leave-active{transition:.2s cubic-bezier(.175,.885,.32,1.175);transition-property:opacity,transform}.asd__fade-enter-from{transform:scale(.8)}.asd__fade-enter-to{transform:scale(1)}.asd__fade-leave-to{opacity:0}.asd__fade-leave-from{opacity:1}\n')();
6259
+ var CoreDatepicker_vue_vue_type_style_index_1_lang = /* @__PURE__ */ (() => '.asd__list-complete-enter-from,.asd__list-complete-leave-to{opacity:0;transform:translateY(30px)}.asd__list-complete-leave-active{position:absolute;visibility:hidden}.asd__wrapper{border-radius:10px;white-space:nowrap;text-align:center;background-color:#fff;overflow:hidden}.asd__wrapper:not(.asd__wrapper--isInline){box-shadow:0 9px 24px #3e3e5b33,0 4px 4px #3e3e5b1a}.asd__wrapper--isInline{position:relative!important}@media (min-width: 768px){.asd__wrapper:before{position:absolute;content:"";left:0;right:0;top:20px;bottom:0;margin:auto;width:1px;background:#d8d8de;z-index:-1}}.asd__wrapper--showOneMonth:before{content:none}.asd__wrapper--full-screen{position:fixed;top:0;right:0;bottom:0;left:0;border:none;z-index:100}.asd__inner-wrapper{transition:all .3s ease;position:relative}.asd__datepicker-header{position:relative}.asd__change-month-button{position:absolute;z-index:10;top:16px;border-radius:100%}.asd__change-month-button:focus-visible{outline:2px solid #144dc2;outline-offset:2px}.asd__change-month-button i{color:#3e3e5b}.asd__change-month-button svg{cursor:pointer;stroke-width:1.2px}@media (min-width: 768px){.asd__change-month-button{top:22px}}.asd__change-month-button--previous{left:16px}@media (min-width: 768px){.asd__change-month-button--previous{left:24px}}.asd__change-month-button--next{right:16px}@media (min-width: 768px){.asd__change-month-button--next{right:24px}}.asd__days-legend{position:absolute;font-size:12px;line-height:15px;user-select:none}@media (min-width: 768px){.asd__days-legend{padding:0 24px;top:60px}}@media (max-width: 767px){.asd__days-legend{top:56px;padding:0 16px}}.asd__day-title{display:inline-block;width:14.285714285714285%;text-align:center;color:#8b8b9d;font-size:14px;line-height:18px;margin-left:-1px}.asd__month-table{border-spacing:0 6px;width:100%;max-width:100%}.asd__wrapper:not(.asd__wrapper--isInline) .asd__month{padding-left:16px;padding-right:16px}@media (min-width: 768px){.asd__wrapper:not(.asd__wrapper--isInline) .asd__month{padding-left:24px;padding-right:24px}}.asd__month{transition:all .3s ease;display:inline-block;padding:16px 16px 8px}@media (min-width: 768px){.asd__month{padding:24px 24px 12px}}.asd__month--hidden{height:275px;visibility:hidden}.asd__month-name{font-size:16px;text-align:center;margin:0 0 36px;line-height:20px;color:#3e3e5b}@media (max-width: 768px){.asd__month-name{margin-top:2px}}.asd__month-name>span{padding-right:3px}.asd__selected-date-one{background:#f7f7f7;border-top-left-radius:50%;border-bottom-left-radius:50%}.asd__selected-date-one.asd__day--end-month:before{content:"";width:65px;height:35px;background:linear-gradient(90deg,#f7f7f7 50%,rgba(241,241,241,0) 95%);position:absolute;z-index:-1;border-top-left-radius:50%;border-bottom-left-radius:50%}.asd__selected-date-one.asd__day--end-week.asd__selected:not(.asd__day--selected){border-top-right-radius:10px;border-bottom-right-radius:10px}.asd__selected-date-two{background:#f7f7f7;border-top-right-radius:50%;border-bottom-right-radius:50%}.asd__selected-date-two.asd__day--start-month:before{content:"";width:65px;height:35px;background:linear-gradient(90deg,#f7f7f7 50%,rgba(241,241,241,0) 95%);position:absolute;z-index:-1;transform:rotate(180deg);right:20px;width:20px}.asd__selected-date-two.asd__day--start-week{border-top-left-radius:5px;border-bottom-left-radius:5px}.asd__day{outline:none;padding:0;position:relative}.asd__day--in-range,.asd__day--hovered{background:#f7f7f7}.asd__day--hovered .asd__day--end-week{border-top-right-radius:5px;border-bottom-right-radius:5px}.asd__day--hovered .asd__day--start-week{border-top-left-radius:5px;border-bottom-left-radius:5px}.asd__day--in-range.asd__day--end-week{border-top-right-radius:5px;border-bottom-right-radius:5px}.asd__day--in-range.asd__day--start-week{border-top-left-radius:5px;border-bottom-left-radius:5px}.asd__day--hovered.asd__day--start-month:before,.asd__day--in-range.asd__day--start-month:not(.asd__selected-date-one):not(.asd__selected-date-two):before{content:"";width:65px;height:35px;background:linear-gradient(90deg,#f7f7f7 50%,rgba(241,241,241,0) 95%);position:absolute;z-index:-1;width:30px;transform:rotate(180deg);right:20px}.asd__day--hovered.asd__day--end-month:before,.asd__day--in-range.asd__day--end-month:not(.asd__selected-date-one):not(.asd__selected-date-two):before{content:"";width:65px;height:35px;background:linear-gradient(90deg,#f7f7f7 50%,rgba(241,241,241,0) 95%);position:absolute;z-index:-1}.asd__day--enabled:not(.asd__day--disabled):not(.asd__day--selected):not(.asd__selected-date-one):not(.asd__selected-date-two):not(.asd__day--in-range):hover button{z-index:2;background:#fff;border:2px solid #f7f7f7;border-radius:50%}.asd__day--enabled.asd__day--date-two-not-selected:hover{background:#f7f7f7;border-top-right-radius:50%;border-bottom-right-radius:50%}.asd__day--enabled.asd__day--date-two-not-selected:hover.asd__day--start-month:before{content:"";width:65px;height:35px;background:linear-gradient(90deg,#f7f7f7 50%,rgba(241,241,241,0) 95%);position:absolute;z-index:-1;width:30px;transform:rotate(180deg);right:20px}.asd__day--enabled.asd__day--in-range:hover{background:#f1f1f3}.asd__day--selected button{border-radius:50%;background:#5341f9}.asd__day--selected.asd__selected-date-one:before{content:"";width:65px;height:35px;background:linear-gradient(90deg,#f7f7f7 50%,rgba(241,241,241,0) 95%);position:absolute;z-index:-1;border-top-left-radius:50%;border-bottom-left-radius:50%}.asd__day--selected.asd__selected-date-two:before{content:"";width:65px;height:35px;background:linear-gradient(90deg,#f7f7f7 50%,rgba(241,241,241,0) 95%);position:absolute;z-index:-1;border-top-right-radius:50%;border-bottom-right-radius:50%;width:30px;transform:rotate(180deg);right:20px}.asd__day--selected button span{color:#fff!important}.asd__day--disabled .asd__day-number,.asd__day--empty .asd__day-number{color:#c6c6ce!important}.asd__day--disabled *{cursor:not-allowed!important}.asd__day--today .asd__day-button .asd__day-number{color:#5341f9;font-weight:600}.asd__day--recurency:not(.asd__selected-date-one):not(.asd__selected-date-two){background:#f7f7f7}.asd__day--recurency button{background:#56c1fe!important;border-radius:50%;border:2px solid #f7f7f7}.asd__day--recurency button .asd__day-number{color:#fff}.asd__day--selected-recurrent button{z-index:2;background:#fff;border:2px solid #f7f7f7;border-radius:50%}.asd__day--selected-recurrent button:before{top:7px;left:5px}.asd__day--selected-recurrent span{color:#3e3e5b}.asd__day-button{outline:none;position:relative;background:transparent;width:35px;height:35px;border:none;user-select:none;font-size:14px}.asd__day-button .asd__day-number{z-index:3;position:relative;color:#3e3e5b}.asd__mobile-header{border-bottom:$border-normal;position:relative;padding:15px!important;text-align:center;height:50px}.asd__mobile-header h3{font-size:20px;margin:0}.asd__mobile-only{display:none}@media (max-width: 768px){.asd__mobile-only{display:block}}.asd__mobile-close{border:none;position:absolute;top:7px;right:5px;padding:5px;z-index:100;cursor:pointer}.asd__mobile-close__icon{position:relative;font-size:1.6em;font-weight:700;padding:0}\n')();
6197
6260
  const _sfc_main$e = {
6198
6261
  name: "CoreDatepicker",
6199
6262
  components: {
@@ -7006,9 +7069,9 @@ const _hoisted_13$2 = {
7006
7069
  class: "asd__month-table",
7007
7070
  role: "presentation"
7008
7071
  };
7009
- const _hoisted_14$2 = ["data-date", "onMouseover"];
7010
- const _hoisted_15$2 = ["date", "disabled", "onClick"];
7011
- const _hoisted_16$2 = { class: "asd__day-number" };
7072
+ const _hoisted_14$1 = ["data-date", "onMouseover"];
7073
+ const _hoisted_15$1 = ["date", "disabled", "onClick"];
7074
+ const _hoisted_16$1 = { class: "asd__day-number" };
7012
7075
  function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
7013
7076
  const _component_cp_icon = resolveComponent("cp-icon");
7014
7077
  const _directive_resize_select = resolveDirective("resize-select");
@@ -7142,9 +7205,9 @@ function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
7142
7205
  disabled: $options.isDisabled(dayDate),
7143
7206
  onClick: ($event) => $options.selectDate(dayDate)
7144
7207
  }, [
7145
- createElementVNode("span", _hoisted_16$2, toDisplayString(dayNumber), 1)
7146
- ], 8, _hoisted_15$2)) : createCommentVNode("", true)
7147
- ], 42, _hoisted_14$2);
7208
+ createElementVNode("span", _hoisted_16$1, toDisplayString(dayNumber), 1)
7209
+ ], 8, _hoisted_15$1)) : createCommentVNode("", true)
7210
+ ], 42, _hoisted_14$1);
7148
7211
  }), 128))
7149
7212
  ]);
7150
7213
  }), 128))
@@ -7166,7 +7229,7 @@ function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
7166
7229
  }, 8, ["name"]);
7167
7230
  }
7168
7231
  var CpCoreDatepicker = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["render", _sfc_render$e]]);
7169
- var index_vue_vue_type_style_index_0_lang$6 = "";
7232
+ var index_vue_vue_type_style_index_0_lang$6 = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.baseInputLabel{display:block;font-size:.875em;color:#3e3e5b}.baseInputLabel:first-letter{text-transform:capitalize}.baseInputLabel--isInvalid{font-weight:500;color:#eb0505}\n')();
7170
7233
  const _sfc_main$d = {
7171
7234
  inheritAttrs: false,
7172
7235
  props: {
@@ -7185,8 +7248,8 @@ function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) {
7185
7248
  ], 16);
7186
7249
  }
7187
7250
  var BaseInputLabel = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["render", _sfc_render$d]]);
7188
- var TransitionExpand_vue_vue_type_style_index_0_scoped_true_lang = "";
7189
- var TransitionExpand_vue_vue_type_style_index_1_lang = "";
7251
+ var TransitionExpand_vue_vue_type_style_index_0_scoped_true_lang = /* @__PURE__ */ (() => "*[data-v-d29b8092]{will-change:height;transform:translateZ(0);backface-visibility:hidden;perspective:1000px}\n")();
7252
+ var TransitionExpand_vue_vue_type_style_index_1_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.expand-enter-active,.expand-leave-active{transition-property:opacity,height;transition-duration:.2s;transition-timing-function:ease-out;overflow:hidden}.expand-enter-from,.expand-leave-to{height:0;opacity:0}\n')();
7190
7253
  const _sfc_main$c = {
7191
7254
  methods: {
7192
7255
  afterEnter(element) {
@@ -7232,7 +7295,7 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
7232
7295
  }, 8, ["onEnter", "onAfterEnter", "onLeave"]);
7233
7296
  }
7234
7297
  var TransitionExpand = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$c], ["__scopeId", "data-v-d29b8092"]]);
7235
- var CpInput_vue_vue_type_style_index_0_lang = "";
7298
+ var CpInput_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpInput{position:relative;display:flex;flex-direction:column}.cpInput__container{z-index:1;position:relative;display:flex}.cpInput__container *{cursor:text}.cpInput__inner{box-shadow:inset 0 .0625em .125em #0000001f;appearance:none;border:.0625rem solid #d8d8de;border-radius:.625em;outline:none;width:100%;height:2.75em;color:inherit;padding:.75em;font-size:1em}.cpInput__inner:hover{border-color:#144dc2}.cpInput__inner:focus{box-shadow:0 0 0 .1875em #c9d9f9;border-color:#144dc2;background-color:#fff}.cpInput__inner::placeholder{color:#8b8b9d}.cpInput--isInvalid .cpInput__inner,.cpInput--isInvalid .cpInput__inner:hover,.cpInput--isInvalid .cpInput__inner:focus,.cpInput--isInvalid .cpInput__icon:hover~.cpInput__inner{border:.0625rem solid #eb0505}.cpInput--isInvalid .cpInput__inner:focus{box-shadow:0 0 0 .1875em #fd9595}.cpInput--isDisabled{color:#b2b2bd!important}.cpInput--isDisabled .cpInput__container *{cursor:not-allowed}.cpInput--isDisabled .cpInput__inner{background:#f8faff}.cpInput--isDisabled .cpInput__inner,.cpInput--isDisabled .cpInput__inner:hover{border-color:#d8d8de!important}.cpInput--isDisabled .cpInput__icon svg{stroke:#b2b2bd!important}.cpInput--hasNoBorder .cpInput__inner,.cpInput--hasNoBorder .cpInput__inner:hover,.cpInput--hasNoBorder .cpInput__inner:focus,.cpInput--hasNoBorder .cpInput__icon:hover~.cpInput__inner{border-color:transparent;box-shadow:none}.cpInput__label{display:block}.cpInput__label:not(.cpInput__label--isAfter){margin-bottom:.375em}.cpInput__label--isAfter{margin-top:.375em}.cpInput__icon{left:.75em;z-index:1;position:absolute;top:50%;transform:translateY(-50%);width:1.25em;height:1.25em;display:flex;align-items:center}.cpInput__icon:hover~.cpInput__inner{border-color:#144dc2}.cpInput__icon svg{width:100%;height:100%;stroke-width:1.6}.cpInput__icon--isValid svg{stroke:#00c582}.cpInput__icon--isInvalid svg{stroke:#eb0505}.cpInput__icon--isAfter,.cpInput__icon--isValidity{left:auto;right:.75em;justify-content:flex-end}.cpInput__icon--isAfter{transition:50ms right .25s cubic-bezier(.17,.84,.44,1)}.cpInput__icon--isAfter~input{padding-right:3.75em}.cpInput__icon--isBefore~input{padding-left:2.5em}.cpInput__icon--isValidity~input{padding-right:2.5em}.cpInput__icon--hasAfterAndValidityIcon~input{padding-right:4.25em}.cpInput__icon--isValidity.cpInput__icon--isValid+.cpInput__icon--isAfter,.cpInput__icon--isValidity.cpInput__icon--isInvalid+.cpInput__icon--isAfter{right:2.5em;transition:right .25s cubic-bezier(.17,.84,.44,1)}.cpInput--isLarge .cpInput__inner{height:3.375em;padding:1em}.cpInput--isLarge .cpInput__icon{left:1em;width:1.5em;height:1.5em}.cpInput--isLarge .cpInput__icon--isValidity,.cpInput--isLarge .cpInput__icon--isAfter{left:auto;right:1em}.cpInput--isLarge .cpInput__icon--isAfter~input{padding-right:4.75em}.cpInput--isLarge .cpInput__icon--isBefore~input{padding-left:3.25em}.cpInput--isLarge .cpInput__icon--isValidity~input{padding-right:3.25em}.cpInput--isLarge .cpInput__icon--hasAfterAndValidityIcon~input{padding-right:5.5em}.cpInput--isLarge .cpInput__icon--isValidity.cpInput__icon--isValid+.cpInput__icon--isAfter,.cpInput--isLarge .cpInput__icon--isValidity.cpInput__icon--isInvalid+.cpInput__icon--isAfter{right:3em}\n')();
7236
7299
  const _sfc_main$b = {
7237
7300
  name: "CpInput",
7238
7301
  components: {
@@ -7281,7 +7344,7 @@ const _sfc_main$b = {
7281
7344
  },
7282
7345
  emits: ["update:modelValue"],
7283
7346
  setup(props, { attrs }) {
7284
- const _a = attrs, { ["class"]: value, id } = _a, restAttributes = __objRest(_a, ["class", "id"]);
7347
+ const { ["class"]: value, id, ...restAttributes } = attrs;
7285
7348
  const inputIdentifier = id === void 0 ? ref(randomString()) : id;
7286
7349
  return {
7287
7350
  inputIdentifier,
@@ -7452,7 +7515,7 @@ function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
7452
7515
  ], 10, _hoisted_1$b);
7453
7516
  }
7454
7517
  var CpInput = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["render", _sfc_render$b]]);
7455
- var CpDatepicker_vue_vue_type_style_index_0_lang = "";
7518
+ var CpDatepicker_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpDatepicker .asd__fade-enter-from{transform:translate(-50%) scale(.8)}.cpDatepicker .asd__fade-enter-to{transform:translate(-50%) scale(1)}.cpDatepicker__input input:disabled{background-color:#fff}.cpDatepicker__datepicker{position:absolute;left:50%;transform:translate(-50%)}.cpDatepicker__datepicker:not(.cpDatepicker__datepicker--isInline){margin-top:10px}@media (min-width: 350px){.cpDatepicker{position:relative}}@media (max-width: 767px) and (min-width: 350px){.cpDatepicker__datepicker{left:0;right:0;transform:initial}.cpDatepicker__datepicker:not(.cpDatepicker__datepicker--isInline){margin-top:16px}.cpDatepicker .asd__fade-enter-from{transform:scale(.8)}.cpDatepicker .asd__fade-enter-to{transform:scale(1)}}\n')();
7456
7519
  const _sfc_main$a = {
7457
7520
  name: "CpDatepicker",
7458
7521
  components: {
@@ -7626,7 +7689,7 @@ function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
7626
7689
  ]);
7627
7690
  }
7628
7691
  var CpDatepicker = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$a]]);
7629
- var CpCalendar_vue_vue_type_style_index_0_lang = "";
7692
+ var CpCalendar_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.fade-enter-active,.fade-leave-active{transition:opacity .1s}.fade-enter-from,.fade-leave-to{opacity:0}.cpCalendar .asd__fade-enter-from{transform:translate(-50%) scale(.8)}.cpCalendar .asd__fade-enter-to{transform:translate(-50%) scale(1)}.cpCalendar__datepicker{position:absolute;left:50%;transform:translate(-50%)}.cpCalendar__datepicker:not(.cpCalendar__datepicker--isInline){margin-top:10px}@media (min-width: 350px){.cpCalendar{position:relative}}@media (max-width: 767px) and (min-width: 350px){.cpCalendar__datepicker{left:0;right:0;transform:initial}.cpCalendar__datepicker:not(.cpCalendar__datepicker--isInline){margin-top:16px}.cpCalendar .asd__fade-enter-from{transform:scale(.8)}.cpCalendar .asd__fade-enter-to{transform:scale(1)}}.cpCalendar__input input:disabled{background-color:#fff}.cpCalendar .footer-container{background:#ffffff;border-top:1px solid #ececef}.cpCalendar .footer-container .asd__recurency--action{padding:16px;display:flex;align-items:center;justify-content:space-between}.cpCalendar .footer-container .asd__recurency--action button{font-size:16px;color:#3e3e5b}.cpCalendar .footer-container .asd__button-done{border:#b5b5b5}.cpCalendar .footer-container .asd__button-done:not([disabled]){background-color:#5341f9;color:#fff!important;border:#5341f9}.cpCalendar .footer-container .asd__recurency--ul{margin:-1px 0 0;display:flex;-webkit-padding-start:0;height:inherit;cursor:pointer}@media (min-width: 768px){.cpCalendar .footer-container .asd__recurency--ul{height:64px}}@media (max-width: 768px){.cpCalendar .footer-container .asd__recurency--ul{display:flex;flex-wrap:wrap}}.cpCalendar .footer-container .asd__recurency--li{display:flex;flex-direction:column;flex:1;justify-content:center;align-items:center;border-top:1px solid #ececef;font-size:16px;color:#3e3e5b;height:64px;transition:background .2s linear}@media (max-width: 768px){.cpCalendar .footer-container .asd__recurency--li{flex:1 0 50%}}.cpCalendar .footer-container .asd__recurency--li .checkbox{width:16px;height:16px}.cpCalendar .footer-container .asd__recurency--li .checkbox--border{height:100%;width:100%;border:1px solid #ececef}.cpCalendar .footer-container .asd__recurency--li .feather-check{height:100%;width:100%;color:#56c1fe}.cpCalendar .footer-container .asd__recurency--li span{font-size:14px;line-height:20px;padding-top:3px;user-select:none}.cpCalendar .footer-container .asd__recurency--li--selected{color:#56c1fe}.cpCalendar .footer-container .asd__recurency--summary{padding-left:16px;padding-right:16px}.cpCalendar .footer-container .asd__recurency--text{background:#3e3e5b;border-radius:10px;display:flex;justify-content:center;align-items:center;color:#d8d8ff}.cpCalendar .footer-container .asd__recurency--text svg{transform:scale(.7)}.cpCalendar .footer-container .asd__recurency--text span{white-space:normal;padding:10px 10px 10px 2px;font-size:14px}.cpCalendar .footer-container .asd__recurency--text span strong{color:#fff}\n')();
7630
7693
  const _sfc_main$9 = {
7631
7694
  name: "CpCalendar",
7632
7695
  components: {
@@ -7795,14 +7858,11 @@ const _hoisted_8$2 = {
7795
7858
  const _hoisted_9$2 = { class: "asd__recurency--summary" };
7796
7859
  const _hoisted_10$2 = { class: "asd__recurency--text" };
7797
7860
  const _hoisted_11$2 = { key: 1 };
7798
- const _hoisted_12$1 = /* @__PURE__ */ createTextVNode(" Between the ");
7799
- const _hoisted_13$1 = /* @__PURE__ */ createTextVNode(" and the ");
7800
- const _hoisted_14$1 = { key: 2 };
7801
- const _hoisted_15$1 = {
7861
+ const _hoisted_12$1 = { key: 2 };
7862
+ const _hoisted_13$1 = {
7802
7863
  key: "action",
7803
7864
  class: "asd__recurency--action"
7804
7865
  };
7805
- const _hoisted_16$1 = /* @__PURE__ */ createTextVNode(" Done ");
7806
7866
  function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
7807
7867
  const _component_cp_input = resolveComponent("cp-input");
7808
7868
  const _component_cp_icon = resolveComponent("cp-icon");
@@ -7879,15 +7939,15 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
7879
7939
  type: "refresh-cw"
7880
7940
  })) : createCommentVNode("", true),
7881
7941
  $data.recurenceDates.length > 0 ? (openBlock(), createElementBlock("span", _hoisted_11$2, [
7882
- _hoisted_12$1,
7942
+ createTextVNode(" Between the "),
7883
7943
  createElementVNode("strong", null, toDisplayString($options.summary.start), 1),
7884
- _hoisted_13$1,
7944
+ createTextVNode(" and the "),
7885
7945
  createElementVNode("strong", null, toDisplayString($options.summary.end), 1)
7886
- ])) : (openBlock(), createElementBlock("span", _hoisted_14$1, "Please select at least one day."))
7946
+ ])) : (openBlock(), createElementBlock("span", _hoisted_12$1, "Please select at least one day."))
7887
7947
  ])
7888
7948
  ])
7889
7949
  ])) : createCommentVNode("", true),
7890
- createElementVNode("div", _hoisted_15$1, [
7950
+ createElementVNode("div", _hoisted_13$1, [
7891
7951
  createVNode(_component_cp_button, {
7892
7952
  class: "asd__button-switch",
7893
7953
  size: "mini",
@@ -7905,7 +7965,7 @@ function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
7905
7965
  onClick: withModifiers($options.done, ["stop"])
7906
7966
  }, {
7907
7967
  default: withCtx(() => [
7908
- _hoisted_16$1
7968
+ createTextVNode(" Done ")
7909
7969
  ]),
7910
7970
  _: 1
7911
7971
  }, 8, ["disabled", "onClick"])
@@ -7938,7 +7998,7 @@ var Intent = {
7938
7998
  icon: "info"
7939
7999
  }
7940
8000
  };
7941
- var CpAlert_vue_vue_type_style_index_0_lang = "";
8001
+ var CpAlert_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpAlert{position:relative;display:flex;align-items:flex-start;padding:.625rem;font-size:.875em;border-radius:.25rem;overflow:hidden}.cpAlert:before{content:"";position:absolute;left:0;top:0;height:100%;width:.1875rem}.cpAlert__body{flex:1;margin-left:.5rem;padding-right:2.125rem}.cpAlert__icon{flex-shrink:0;color:inherit}.cpAlert__icon i{display:inline-block;vertical-align:sub;width:1rem;height:1rem}.cpAlert__icon,.cpAlert__content,.cpAlert__title{line-height:1.1875rem}.cpAlert__title{color:inherit;font-weight:600}.cpAlert__title:not(:only-child){margin-bottom:.25rem}.cpAlert__button{position:absolute;right:.3125rem;top:.3125rem;border-radius:.25rem;padding:.25rem;color:inherit}.cpAlert__button svg{margin:0;width:1.125rem;height:1.125rem}.cpAlert__button:hover{background-color:inherit}.cpAlert--info{background-color:#144dc21a;color:#144dc2}.cpAlert--info:before{background-color:#144dc2}.cpAlert--info button:focus-visible{outline:.125rem solid #144dc2}.cpAlert--success{background-color:#00c5821a;color:#00c582}.cpAlert--success:before{background-color:#00c582}.cpAlert--success button:focus-visible{outline:.125rem solid #00c582}.cpAlert--warning{background-color:#ffa8001a;color:#ffa800}.cpAlert--warning:before{background-color:#ffa800}.cpAlert--warning button:focus-visible{outline:.125rem solid #ffa800}.cpAlert--critical{background-color:#eb05051a;color:#eb0505}.cpAlert--critical:before{background-color:#eb0505}.cpAlert--critical button:focus-visible{outline:.125rem solid #eb0505}\n')();
7942
8002
  const _sfc_main$8 = {
7943
8003
  props: {
7944
8004
  intent: {
@@ -8023,7 +8083,7 @@ function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
8023
8083
  ], 2)) : createCommentVNode("", true);
8024
8084
  }
8025
8085
  var CpAlert = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$8]]);
8026
- var CpTextarea_vue_vue_type_style_index_0_lang = "";
8086
+ var CpTextarea_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpTextarea__input{box-shadow:inset 0 .0625em .125em #0000001f;appearance:none;border:.0625rem solid #d8d8de;border-radius:.625em;outline:none;padding:1em;width:100%;max-width:100%;height:100%;font-size:1em;color:#3e3e5b}.cpTextarea__input:hover{border-color:#144dc2}.cpTextarea__input:focus{box-shadow:0 0 0 .1875em #c9d9f9;border-color:#144dc2;background-color:#fff}.cpTextarea__input:disabled{background:#f8faff;cursor:not-allowed;color:#8b8b9d}.cpTextarea__input::placeholder{color:#3e3e5b99}.cpTextarea__input--isInvalid{box-shadow:0 0 0 .03125rem #eb0505;border:.0625rem solid #eb0505}.cpTextarea__input--isInvalid:hover,.cpTextarea__input--isInvalid:focus{border:.0625rem solid #eb0505}.cpTextarea__input--isInvalid:focus{box-shadow:0 0 0 .1875em #fd9595}.cpTextarea__label{display:block}.cpTextarea__label:not(.cpTextarea__label--isAfter){margin-bottom:.375em}.cpTextarea__label--isAfter{margin-top:.375em}\n')();
8027
8087
  const _sfc_main$7 = {
8028
8088
  components: {
8029
8089
  BaseInputLabel,
@@ -8143,7 +8203,7 @@ function _sfc_render$7(_ctx, _cache, $props, $setup, $data, $options) {
8143
8203
  ]);
8144
8204
  }
8145
8205
  var CpTextarea = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["render", _sfc_render$7]]);
8146
- var CpSelect_vue_vue_type_style_index_0_lang = "";
8206
+ var CpSelect_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis,.cpSelect__inner{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpSelect__container{position:relative}.cpSelect__container:after{content:"";position:absolute;right:.75em;top:50%;transform:translateY(-50%);width:1.25em;height:1.25em;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNCAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8cGF0aCBkPSJNNiA5LjY4Mjk4TDEyIDE1LjY4M0wxOCA5LjY4Mjk4IiBzdHJva2U9IiMzRTNFNUIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);background-size:cover;pointer-events:none}.cpSelect__inner{box-shadow:inset 0 .0625em .125em #0000001f;outline:none;appearance:none;-webkit-appearance:none;-moz-appearance:none;border:.0625rem solid #d8d8de;border-radius:.625em;background-color:#fff;width:100%;height:2.75em;color:#3e3e5b;cursor:pointer;padding:.75em 2.5em .75em .75em;font-size:1em}.cpSelect__inner:hover,.cpSelect__inner:focus{border-color:#144dc2;background-color:#fff}.cpSelect__inner:focus{box-shadow:#144dc21a 0 0 0 .25rem,#144dc2 0 0 0 .03125rem}.cpSelect__label{display:block}.cpSelect__label:not(.cpSelect__label--isAfter){margin-bottom:.375em}.cpSelect__label--isAfter{margin-top:.375em}.cpSelect--isDisabled .cpSelect__inner{border-color:#d8d8de!important;background:#f8faff}.cpSelect--isDisabled .cpSelect__inner,.cpSelect--isDisabled .cpSelect__container:after{cursor:not-allowed;color:#b2b2bd}.cpSelect--isDisabled .cpSelect__container:after{opacity:.4}.cpSelect--isInvalid .cpSelect__inner,.cpSelect--isInvalid .cpSelect__inner:hover,.cpSelect--isInvalid .cpSelect__inner:focus{border-color:#eb0505}.cpSelect--isInvalid .cpSelect__inner:focus{box-shadow:0 0 0 .1875em #fd9595}.cpSelect--isLarge .cpSelect__container:after{right:1em;width:1.5em;height:1.5em}.cpSelect--isLarge .cpSelect__inner{padding:1em 3em 1em 1em;height:3.375em}\n')();
8147
8207
  const _sfc_main$6 = {
8148
8208
  name: "CpSelect",
8149
8209
  components: {
@@ -9672,7 +9732,7 @@ anime.penner = penner;
9672
9732
  anime.random = function(min, max) {
9673
9733
  return Math.floor(Math.random() * (max - min + 1)) + min;
9674
9734
  };
9675
- var index_vue_vue_type_style_index_0_lang$5 = "";
9735
+ var index_vue_vue_type_style_index_0_lang$5 = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis,.cpSelectMenu__label{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpSelectMenu{position:relative;font-size:1em}.cpSelectMenu__button{box-shadow:inset 0 .0625em .125em #0000001f;border:.0625rem solid #d8d8de;border-radius:.625em;background:#ffffff;padding:.75em;width:100%;height:2.75em;display:flex;align-items:center;justify-content:space-between;font-size:inherit;font-weight:400;text-transform:capitalize}.cpSelectMenu__button:hover,.cpSelectMenu__button:active,.cpSelectMenu__button:focus{border-color:#144dc2}.cpSelectMenu__button:focus{outline:none!important;box-shadow:0 0 0 .1875em #c9d9f9}.cpSelectMenu__icon{margin-left:.75em;width:1.25em;height:1.25em;flex-shrink:0;transition:transform .2s ease-out}.cpSelectMenu__icon--isOpened{transform:rotateX(180deg)}.cpSelectMenu__dropdown{z-index:2;position:absolute;top:calc(100% + 4px);left:0;border:.0625rem solid #d8d8de;border-radius:.625em;background:#ffffff;width:max(100%,15.625rem);font-size:inherit}.cpSelectMenu .dropdown svg{width:1.125em;height:1.125em}.cpSelectMenu .dropdown__title{padding:.75em .5em;display:flex;align-items:center;justify-content:space-between;white-space:normal;font-weight:600;color:#3e3e5b}.cpSelectMenu .dropdown__filterBar{border-top:.0625rem solid #d8d8de;border-bottom:.0625rem solid #d8d8de;background-color:#ececef99;padding:.5em;display:flex;align-items:center}.cpSelectMenu .dropdown__filterBar>input{background-color:transparent;flex:1;color:#3e3e5b}.cpSelectMenu .dropdown__filterBar>input::placeholder{color:#8b8b9d}.cpSelectMenu .dropdown__filterBar i{margin-right:.5em;color:#3e3e5b;flex-shrink:0}.cpSelectMenu .dropdown__list{display:flex;flex-direction:column;min-height:15.625rem}.cpSelectMenu .dropdown__items{margin:.25em 0;padding:0;max-height:15.625rem;overflow-y:auto}.cpSelectMenu .dropdown__items li{list-style:none}.cpSelectMenu .dropdown__item{position:relative;padding:.5em 1em .5em 2.25em;width:100%;display:flex;text-align:initial;cursor:pointer;text-transform:capitalize}.cpSelectMenu .dropdown__item:hover{background-color:#ececef80}.cpSelectMenu .dropdown__item input{display:none}.cpSelectMenu .dropdown__icon{position:absolute;left:.5em;top:50%;transform:translateY(-50%);color:#144dc2}.cpSelectMenu .dropdown__emptyState{padding:1em .5em;flex:1;display:flex;align-items:center;justify-content:center;color:#8b8b9d}\n')();
9676
9736
  const _sfc_main$5 = {
9677
9737
  props: {
9678
9738
  values: {
@@ -9865,7 +9925,7 @@ function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
9865
9925
  ]);
9866
9926
  }
9867
9927
  var CpSelectMenu = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_render$5]]);
9868
- var index_vue_vue_type_style_index_0_lang$4 = "";
9928
+ var index_vue_vue_type_style_index_0_lang$4 = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpCheckbox{position:relative;display:grid;grid-template-columns:min-content 1fr;grid-gap:.75rem;align-items:center;cursor:pointer}.cpCheckbox--isBlue input:checked{background-color:#144dc2;border-color:#144dc2}.cpCheckbox--isBlue:hover input{background-color:#f2f6fe}.cpCheckbox--isBlue:hover input:checked{background-color:#0f3b94}.cpCheckbox--isBlue input:focus-within{position:relative;z-index:1;box-shadow:0 0 0 .1875em #aec6f7;border-color:#aec6f7}.cpCheckbox--isPurple input:checked{background-color:#5341f9;border-color:#5341f9}.cpCheckbox--isPurple:hover input{background-color:#f6f6ff}.cpCheckbox--isPurple:hover input:checked{background-color:#2610f7}.cpCheckbox--isPurple input:focus-within{position:relative;z-index:1;box-shadow:0 0 0 .1875em #cbc6fd;border-color:#cbc6fd}.cpCheckbox input{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:.0625rem solid #d8d8de;border-radius:.25em;width:1.25em;height:1.25em;flex-shrink:0;cursor:pointer;transition:background-color .1s ease-out,transform .1s linear}.cpCheckbox input+i{position:absolute;z-index:2;top:50%;left:.1875em;transform:translateY(-50%);width:.875em;height:.875em;color:#fff;opacity:0;transition:opacity .2s linear .1s}.cpCheckbox input+i svg{stroke-width:3}.cpCheckbox input:checked+i{visibility:visible;opacity:1}.cpCheckbox input:disabled{background-color:#f8faff;cursor:not-allowed}.cpCheckbox input:disabled~span{color:#8b8b9d}.cpCheckbox input:checked:disabled{border-color:#8b8b9d;background-color:#8b8b9d}.cpCheckbox input:checked:disabled~span{color:#8b8b9d}.cpCheckbox input:active:not(:disabled){transform:scale(.8)}.cpCheckbox--isDisabled{cursor:not-allowed}.cpCheckbox--isReversed{grid-template-columns:1fr min-content}.cpCheckbox--isReversed .cpCheckbox__label{grid-row:1}.cpCheckbox--isReversed input+i{left:auto;right:.1875em}.cpCheckbox__label{display:block;font-weight:500;line-height:1.25em}.cpCheckbox__label--isCapitalized:first-letter{text-transform:capitalize}\n')();
9869
9929
  const _sfc_main$4 = {
9870
9930
  props: {
9871
9931
  value: {
@@ -9978,7 +10038,7 @@ function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
9978
10038
  ], 10, _hoisted_1$4);
9979
10039
  }
9980
10040
  var CpCheckbox = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$4]]);
9981
- var index_vue_vue_type_style_index_0_lang$3 = "";
10041
+ var index_vue_vue_type_style_index_0_lang$3 = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpRadio{position:relative;border:.0625rem solid #d8d8de;border-radius:.625rem;padding:1rem .75rem;display:grid;grid-template-columns:min-content 1fr;grid-gap:.75rem;align-items:center}.cpRadio:not(.cpRadio--isDisabled),.cpRadio:not(.cpRadio--isDisabled) *{cursor:pointer}.cpRadio--isBlue.cpRadio--isActive{border-color:#144dc2}.cpRadio--isBlue input:checked{background-color:#144dc2;border-color:#144dc2}.cpRadio--isBlue input:checked~span .cpRadio__label,.cpRadio--isBlue input:checked~span .cpRadio__additionalData{color:#144dc2}.cpRadio--isBlue:hover,.cpRadio--isBlue:focus-within{border-color:#144dc2}.cpRadio--isBlue:focus-within{box-shadow:0 0 0 .25rem #144dc21a}.cpRadio--isPurple.cpRadio--isActive{border-color:#5341f9}.cpRadio--isPurple input:checked{background-color:#5341f9;border-color:#5341f9}.cpRadio--isPurple input:checked~span .cpRadio__label,.cpRadio--isPurple input:checked~span .cpRadio__additionalData{color:#5341f9}.cpRadio--isPurple:hover,.cpRadio--isPurple:focus-within{border-color:#5341f9}.cpRadio--isPurple:focus-within{box-shadow:0 0 0 .25rem #5341f91a}.cpRadio--isDisabled{background-color:#f8faff;color:#8b8b9d}.cpRadio--isDisabled,.cpRadio--isDisabled *{cursor:not-allowed}.cpRadio--isDisabled:hover,.cpRadio--isDisabled:focus{box-shadow:none;border-color:#d8d8de}.cpRadio--isActive.cpRadio--isDisabled,.cpRadio--isActive.cpRadio--isDisabled:hover{border-color:#d8d8de}.cpRadio:not(:last-of-type){margin-bottom:.75rem}.cpRadio input{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:.0625rem solid #d8d8de;border-radius:100%;padding:25%;width:1.25em;height:1.25em;transition:transform .1s linear}.cpRadio input:before{content:"";display:flex;width:100%;height:100%;border-radius:100%;background-color:#fff;transition:transform .15s linear;transform:scale(0)}.cpRadio input:active:not(:disabled){transform:scale(.8)}.cpRadio input:checked:before{transform:scale(1)}.cpRadio input:checked:disabled{border-color:#8b8b9d;background-color:#8b8b9d}.cpRadio input:checked:disabled~span .cpRadio__label,.cpRadio input:checked:disabled~span .cpRadio__additionalData{color:#8b8b9d}.cpRadio__content{display:flex;align-items:center;line-height:1.3}.cpRadio__information{flex-grow:2;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;text-transform:capitalize;margin:-.5rem}.cpRadio__label,.cpRadio__description{margin:0 .5rem;flex-grow:1}.cpRadio__label,.cpRadio__additionalData{font-weight:500}.cpRadio__description,.cpRadio__additionalData{color:#8b8b9d}.cpRadio__label{white-space:nowrap}.cpRadio__additionalData{text-align:right;margin-left:1rem}\n')();
9982
10042
  const _sfc_main$3 = {
9983
10043
  props: {
9984
10044
  modelValue: {
@@ -10078,7 +10138,7 @@ function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
10078
10138
  }), 128);
10079
10139
  }
10080
10140
  var CpRadio = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["render", _sfc_render$3]]);
10081
- var index_vue_vue_type_style_index_0_lang$2 = "";
10141
+ var index_vue_vue_type_style_index_0_lang$2 = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpSwitch{align-items:center}.cpSwitch,.cpSwitch *{cursor:pointer}.cpSwitch--hasLabel{display:grid;grid-template-columns:min-content 1fr;grid-gap:.75rem;align-items:center}.cpSwitch--isDisabled,.cpSwitch--isDisabled *,.cpSwitch--isDisabled:hover,.cpSwitch--isDisabled:hover *{cursor:not-allowed}.cpSwitch--isDisabled .cpSwitch__switch,.cpSwitch--isDisabled:hover .cpSwitch__switch{background-color:#d8d8de}.cpSwitch--isReversed{grid-template-columns:1fr min-content}.cpSwitch--isReversed .cpSwitch__label{grid-row:1}.cpSwitch--isDisabled .cpSwitch__label{color:#8b8b9d}.cpSwitch--isDisabled .cpSwitch__switch,.cpSwitch--isDisabled:hover .cpSwitch__switch{background-color:#ececef}.cpSwitch--isActive .cpSwitch__icon{transform:translateY(-50%);opacity:1}.cpSwitch--isActive .cpSwitch__knobContainer{transform:translate(50%)}.cpSwitch--isPurple.cpSwitch--isActive .cpSwitch__switch{background-color:#5341f9}.cpSwitch--isPurple .cpSwitch__switch:focus-within{box-shadow:0 0 0 .1875em #cbc6fd}.cpSwitch--isPurple:hover:not(.cpSwitch--isDisabled) .cpSwitch__switch{background-color:#a9a0fc}.cpSwitch--isPurple.cpSwitch--isActive:hover .cpSwitch__switch{background-color:#2610f7}.cpSwitch--isPurple.cpSwitch--isActive.cpSwitch--isDisabled .cpSwitch__switch,.cpSwitch--isPurple.cpSwitch--isActive.cpSwitch--isDisabled:hover .cpSwitch__swtich{background-color:#c3bdfd}.cpSwitch--isBlue.cpSwitch--isActive .cpSwitch__switch{background-color:#144dc2}.cpSwitch--isBlue .cpSwitch__switch:focus-within{box-shadow:0 0 0 .1875em #aec6f7}.cpSwitch--isBlue:hover:not(.cpSwitch--isDisabled) .cpSwitch__switch{background-color:#79a0f1}.cpSwitch--isBlue.cpSwitch--isActive:hover .cpSwitch__switch{background-color:#0f3b94}.cpSwitch--isBlue.cpSwitch--isActive.cpSwitch--isDisabled .cpSwitch__switch,.cpSwitch--isBlue.cpSwitch--isActive.cpSwitch--isDisabled:hover .cpSwitch__swtich{background-color:#a1bdf5}.cpSwitch__switch{position:relative;border-radius:1000px;background-color:#8b8b9d;overflow:hidden;transition:background-color .1s ease-out;display:flex;height:1.5em;width:3em}.cpSwitch__switch:hover{background-color:#c6c6ce}.cpSwitch input{position:absolute;z-index:1;top:0;left:0;opacity:0;width:100%;height:100%}.cpSwitch__icon{position:absolute;left:0;top:50%;transform:translateY(-50%);opacity:0;padding-left:.25rem;display:flex;align-items:center;justify-content:center;transition:opacity .12s ease-in;width:1.5em;height:1.5em}.cpSwitch__icon i{width:80%}.cpSwitch__icon svg{width:100%;stroke-width:3;color:#fff}.cpSwitch__knobContainer{width:100%;padding:.125rem;display:flex;align-items:center;transition:transform .3s cubic-bezier(.08,.82,.17,1) 0s}.cpSwitch__knob{background-color:#fff;border-radius:100%;width:calc(1.5em - .25rem);height:calc(1.5em - .25rem)}\n')();
10082
10142
  const _sfc_main$2 = {
10083
10143
  props: {
10084
10144
  modelValue: {
@@ -10193,7 +10253,7 @@ function camelize(string) {
10193
10253
  function decamelize(camelCasedString, separator = " ") {
10194
10254
  return camelCasedString.replace(/([a-z\d])([A-Z])/g, `$1${separator}$2`).replace(/([A-Z]+)([A-Z][a-z\d]+)/g, `$1${separator}$2`).toLowerCase();
10195
10255
  }
10196
- var index_vue_vue_type_style_index_0_lang$1 = "";
10256
+ var index_vue_vue_type_style_index_0_lang$1 = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpTableEmptyState{padding:10vh 1rem;display:flex;align-items:center;justify-content:center}.cpTableEmptyState__icon{margin-bottom:1.5rem;border-radius:.25rem;display:inline-block;background-color:#f8faff;padding:1rem;color:#8b8b9d}.cpTableEmptyState__icon svg{stroke:currentColor}.cpTableEmptyState__headline{margin-bottom:.5rem;font-size:1.25em}.cpTableEmptyState__description{color:#8b8b9d}\n')();
10197
10257
  const _sfc_main$1 = {
10198
10258
  props: {
10199
10259
  placeholder: {
@@ -10222,7 +10282,7 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
10222
10282
  ]);
10223
10283
  }
10224
10284
  var CpTableEmptyState = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render$1]]);
10225
- var index_vue_vue_type_style_index_0_lang = "";
10285
+ var index_vue_vue_type_style_index_0_lang = /* @__PURE__ */ (() => 'html{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol;font-size:100%;color:#3e3e5b;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}*,*:before,*:after{box-sizing:inherit;margin:0;outline:none;font-family:inherit}body{background-color:transparent}button{border-style:none;padding:0;background-color:transparent}button:hover{cursor:pointer}ul,li{margin:0;padding:0;list-style:none}svg{color:currentColor}input{font-size:inherit;border:none}.fade-in-enter-active,.fade-in-leave-active{transition:all .15s ease-in-out}.fade-in-enter-from,.fade-in-leave-to{opacity:0;transform:scale(.9)}@keyframes cp-select-menu-dropdown-enter{0%{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@keyframes cp-select-menu-dropdown-leave{0%{opacity:1}to{opacity:0}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}.u-text-ellipsis{white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.cpTable{position:relative;display:flex;flex-direction:column}.cpTable__container{position:relative;display:flex;flex-direction:column;flex:1}.cpTable__container--hasPagination{border-bottom:.0625rem solid #d8d8de}.cpTable__container[role=region][aria-labelledby][tabindex]{overflow:auto}.cpTable__container[role=region][aria-labelledby][tabindex]:focus{border-radius:.625rem;box-shadow:0 0 0 .1875em #aec6f7}.cpTable__container[role=region][aria-labelledby][tabindex] .cpTable__table{margin:0;border:none}.cpTable__container[role=region][aria-labelledby][tabindex]{background:linear-gradient(to right,#ffffff 30%,rgba(255,255,255,0)),linear-gradient(to right,rgba(255,255,255,0),#ffffff 70%) 0 100%,radial-gradient(farthest-side at 0% 50%,rgba(62,62,91,.2),rgba(62,62,91,0)),radial-gradient(farthest-side at 100% 50%,rgba(62,62,91,.2),rgba(62,62,91,0)) 0 100%;background-repeat:no-repeat;background-color:#fff;background-size:40px 100%,40px 100%,14px 100%,14px 100%;background-position:0 0,100%,0 0,100%;background-attachment:local,local,scroll,scroll}.cpTable__caption{position:sticky;left:0;margin-bottom:1rem;text-align:left;font-size:1.125em}.cpTable__caption:first-letter{text-transform:capitalize}.cpTable__table{border-collapse:collapse;width:100%}.cpTable__row--body:not(:last-of-type){border-bottom:.0625rem solid #d8d8de}.cpTable__row--body:not(.cpTable__row--isFullWidth):not(.cpTable__row--isSelected):hover,.cpTable__row--body:not(.cpTable__row--isFullWidth):not(.cpTable__row--isSelected):focus,.cpTable__row--body:not(.cpTable__row--isFullWidth):not(.cpTable__row--isSelected):focus-within{background-color:#3e3e5b0d;transition:background-color .1s ease-in-out}.cpTable__row--body:not(.cpTable__row--isFullWidth):not(.cpTable__row--isSelected):focus,.cpTable__row--body:not(.cpTable__row--isFullWidth):not(.cpTable__row--isSelected):focus-within{color:#5341f9}.cpTable__row--isFullWidth td{padding:.5rem;background-color:#3e3e5b08}.cpTable__row--isClickable{cursor:pointer}.cpTable__row--isSelected{background-color:#5341f91a;color:#5341f9}.cpTable__row--body td{font-size:.875em}.cpTable__column{position:sticky;top:0;z-index:3;background-color:#fff;padding:.5rem .75rem;text-align:left;white-space:nowrap;font-size:.75em;font-weight:400;color:#8b8b9d}.cpTable__column:first-letter{text-transform:capitalize}.cpTable__column:after{content:"";position:absolute;bottom:0;left:0;width:100%;height:.0625rem;background-color:#d8d8de}.cpTable__body{vertical-align:middle}.cpTable__row--body,.cpTable__cell{vertical-align:inherit}.cpTable__cell:not(.cpTable__cell--isFullWidth):not(.cpTable__cell--isOptions){padding:1rem .75rem;white-space:nowrap}.cpTable__cell--isFullWidth span,.cpTable__cell--isOptions{position:sticky}.cpTable__cell--isFullWidth span{left:50%;transform:translate(-50%);display:inline-block}.cpTable__cell--isOptions{right:0;padding:0 .75rem}.cpTable__cell--isOptions button{border:.0625rem solid #d8d8de;border-radius:.5rem;background-color:#fff;display:inline-flex;padding:.25rem;color:#8b8b9d}.cpTable__cell--isOptions button:hover{background-color:#fbfbfc;color:#3e3e5b}.cpTable__cell--isOptions button:focus{outline:none!important;box-shadow:0 0 0 .1875em #c9d9f9}.cpTable__cell--isOptions svg{width:1rem;height:1rem}@media (hover: hover) and (pointer: fine){.cpTable__cell--isOptions{opacity:0;transition:opacity .2s cubic-bezier(.175,.885,.32,1.175)}.cpTable__row:focus .cpTable__cell--isOptions,.cpTable__row:focus-within .cpTable__cell--isOptions,.cpTable__row:hover .cpTable__cell--isOptions{opacity:1}}.cpTable__emptyState{flex:1}.cpTable--isLoading .cpTable__overlay{opacity:.5;pointer-events:all}.cpTable__overlay{position:absolute;overflow:hidden;left:0;right:0;top:0;bottom:0;border-radius:.625rem;background-color:#fff;z-index:4;opacity:0;transition:.15s opacity ease-in-out;cursor:wait;pointer-events:none}.cpTable__overlay:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;transform:translate(-100%);background-image:linear-gradient(90deg,rgba(198,198,206,0) 0,rgba(198,198,206,.2) 20%,rgba(198,198,206,.5) 60%,rgba(198,198,206,0));animation:shimmer 2s infinite}@keyframes shimmer{to{transform:translate(100%)}}.cpTable__loader{width:2rem;height:2rem}.cpTable__loader--isSmall{display:inline-block;vertical-align:middle;width:1.5rem;height:1.5rem}.cpTable__footer{padding:1rem .75rem 0;display:flex;align-items:center;font-size:.875em}.cpTable .footer__details,.cpTable .footer__pagination{flex:1}.cpTable .footer__results{font-variant-numeric:tabular-nums;color:#8b8b9d}.cpTable .footer__results strong{color:#3e3e5b}.cpTable .footer__pagination{text-align:right}.cpTable .footer__pagination button{box-shadow:0 .0625rem .125rem #3e3e5b14;border-radius:.625rem;border:.0625rem solid #d8d8de;padding:.375rem .625rem;transition:background-color .15s}.cpTable .footer__pagination button:hover{background-color:#3e3e5b0d}.cpTable .footer__pagination button:focus{outline:none!important;box-shadow:0 0 0 .1875em #aec6f7}.cpTable .footer__pagination button:disabled{box-shadow:none;border-color:#f8faff;background-color:#f8faff;color:#b2b2bd;cursor:not-allowed;user-select:none}.cpTable .footer__pagination button:last-of-type{margin-left:.5rem}\n')();
10226
10286
  const VISIBLE_ROWS_MAX = 100;
10227
10287
  const RESERVED_KEYS = {
10228
10288
  GROUP_BY: "groupBy",
@@ -10322,9 +10382,10 @@ const _sfc_main = {
10322
10382
  name: decamelize(column)
10323
10383
  };
10324
10384
  }
10325
- return __spreadValues({
10326
- id: column.id || camelize(column.name)
10327
- }, column);
10385
+ return {
10386
+ id: column.id || camelize(column.name),
10387
+ ...column
10388
+ };
10328
10389
  });
10329
10390
  },
10330
10391
  numberOfColumns() {
@@ -10467,14 +10528,14 @@ const _sfc_main = {
10467
10528
  },
10468
10529
  normalizeRowData({ columns = this.normalizedColumns, rowPayload }) {
10469
10530
  if (!Array.isArray(rowPayload)) {
10470
- return __spreadValues({}, rowPayload);
10531
+ return { ...rowPayload };
10471
10532
  }
10472
10533
  return rowPayload.reduce((row, cell, cellIndex) => {
10473
10534
  var _a;
10474
10535
  const normalizedCell = {
10475
10536
  [(_a = columns[cellIndex]) == null ? void 0 : _a.id]: cell
10476
10537
  };
10477
- return __spreadValues(__spreadValues({}, row), normalizedCell);
10538
+ return { ...row, ...normalizedCell };
10478
10539
  }, {});
10479
10540
  },
10480
10541
  mapCellToColumn({ columns = this.normalizedColumns, rowPayload }) {
@@ -10484,7 +10545,7 @@ const _sfc_main = {
10484
10545
  const correspondingColumn = (currentColumn == null ? void 0 : currentColumn.id) || currentColumn;
10485
10546
  const correspondingValue = rowPayload[correspondingColumn] || this.emptyCellPlaceholder;
10486
10547
  const cellValue = { [correspondingColumn]: correspondingValue };
10487
- return __spreadValues(__spreadValues({}, finalRow), cellValue);
10548
+ return { ...finalRow, ...cellValue };
10488
10549
  }, {});
10489
10550
  },
10490
10551
  augmentOffset() {
@@ -10564,12 +10625,10 @@ const _hoisted_15 = {
10564
10625
  const _hoisted_16 = { class: "footer__details" };
10565
10626
  const _hoisted_17 = { class: "footer__results" };
10566
10627
  const _hoisted_18 = { class: "footer__resultsCount" };
10567
- const _hoisted_19 = /* @__PURE__ */ createTextVNode(" No results ");
10568
- const _hoisted_20 = /* @__PURE__ */ createTextVNode(" Loading ");
10569
- const _hoisted_21 = { class: "footer__pagination" };
10570
- const _hoisted_22 = ["disabled"];
10571
- const _hoisted_23 = ["disabled"];
10572
- const _hoisted_24 = /* @__PURE__ */ createElementVNode("div", { class: "cpTable__overlay" }, null, -1);
10628
+ const _hoisted_19 = { class: "footer__pagination" };
10629
+ const _hoisted_20 = ["disabled"];
10630
+ const _hoisted_21 = ["disabled"];
10631
+ const _hoisted_22 = /* @__PURE__ */ createElementVNode("div", { class: "cpTable__overlay" }, null, -1);
10573
10632
  function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
10574
10633
  const _component_cp_icon = resolveComponent("cp-icon");
10575
10634
  const _component_cp_table_empty_state = resolveComponent("cp-table-empty-state");
@@ -10634,11 +10693,13 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
10634
10693
  ], 14, _hoisted_11);
10635
10694
  }), 128)),
10636
10695
  withDirectives(createElementVNode("td", _hoisted_13, [
10637
- createElementVNode("button", {
10638
- onClick: withModifiers(($event) => $options.handleRowRightClick({ rowData, rowIndex }, $event), ["stop"])
10639
- }, [
10640
- createVNode(_component_cp_icon, { type: "more-vertical" })
10641
- ], 8, _hoisted_14)
10696
+ renderSlot(_ctx.$slots, "row-quick-actions", { row: rowData }, () => [
10697
+ createElementVNode("button", {
10698
+ onClick: withModifiers(($event) => $options.handleRowRightClick({ rowData, rowIndex }, $event), ["stop"])
10699
+ }, [
10700
+ createVNode(_component_cp_icon, { type: "more-vertical" })
10701
+ ], 8, _hoisted_14)
10702
+ ])
10642
10703
  ], 512), [
10643
10704
  [vShow, $options.areRowOptionsEnabled(rowData)]
10644
10705
  ])
@@ -10661,10 +10722,10 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
10661
10722
  createElementVNode("strong", null, toDisplayString($options.paginationLabel), 1),
10662
10723
  createElementVNode("span", _hoisted_18, "on " + toDisplayString($options.paginationResultsDetails), 1)
10663
10724
  ], 64)) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
10664
- _hoisted_19
10725
+ createTextVNode(" No results ")
10665
10726
  ], 64))
10666
10727
  ]) : (openBlock(), createElementBlock(Fragment, { key: 1 }, [
10667
- _hoisted_20,
10728
+ createTextVNode(" Loading "),
10668
10729
  createVNode(_component_cp_loader, {
10669
10730
  color: $data.LoaderColor,
10670
10731
  class: "cpTable__loader--isSmall"
@@ -10672,18 +10733,18 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
10672
10733
  ], 64))
10673
10734
  ])
10674
10735
  ]),
10675
- createElementVNode("div", _hoisted_21, [
10736
+ createElementVNode("div", _hoisted_19, [
10676
10737
  createElementVNode("button", {
10677
10738
  disabled: !$options.isPreviousEnabled,
10678
10739
  onClick: _cache[0] || (_cache[0] = ($event) => $options.handleNavigationClick(false))
10679
- }, "Prev.", 8, _hoisted_22),
10740
+ }, "Prev.", 8, _hoisted_20),
10680
10741
  createElementVNode("button", {
10681
10742
  disabled: !$options.isNextEnabled,
10682
10743
  onClick: _cache[1] || (_cache[1] = ($event) => $options.handleNavigationClick())
10683
- }, "Next", 8, _hoisted_23)
10744
+ }, "Next", 8, _hoisted_21)
10684
10745
  ])
10685
10746
  ])) : createCommentVNode("", true),
10686
- _hoisted_24
10747
+ _hoisted_22
10687
10748
  ], 2);
10688
10749
  }
10689
10750
  var CpTable = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);