@auxilium/datalynk-client 1.2.0 → 1.2.2

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/index.js CHANGED
@@ -336,106 +336,6 @@ class PromiseProgress extends Promise {
336
336
  return this.from(super.finally(res));
337
337
  }
338
338
  }
339
- function formatDate(format = "YYYY-MM-DD H:mm", date = /* @__PURE__ */ new Date(), tz) {
340
- const timezones = [
341
- ["IDLW", -12],
342
- ["SST", -11],
343
- ["HST", -10],
344
- ["AKST", -9],
345
- ["PST", -8],
346
- ["MST", -7],
347
- ["CST", -6],
348
- ["EST", -5],
349
- ["AST", -4],
350
- ["BRT", -3],
351
- ["MAT", -2],
352
- ["AZOT", -1],
353
- ["UTC", 0],
354
- ["CET", 1],
355
- ["EET", 2],
356
- ["MSK", 3],
357
- ["AST", 4],
358
- ["PKT", 5],
359
- ["IST", 5.5],
360
- ["BST", 6],
361
- ["ICT", 7],
362
- ["CST", 8],
363
- ["JST", 9],
364
- ["AEST", 10],
365
- ["SBT", 11],
366
- ["FJT", 12],
367
- ["TOT", 13],
368
- ["LINT", 14]
369
- ];
370
- function adjustTz(date2, gmt) {
371
- const currentOffset = date2.getTimezoneOffset();
372
- const adjustedOffset = gmt * 60;
373
- return new Date(date2.getTime() + (adjustedOffset + currentOffset) * 6e4);
374
- }
375
- function day(num) {
376
- return ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"][num] || "Unknown";
377
- }
378
- function doy(date2) {
379
- const start = /* @__PURE__ */ new Date(`${date2.getFullYear()}-01-01 0:00:00`);
380
- return Math.ceil((date2.getTime() - start.getTime()) / (1e3 * 60 * 60 * 24));
381
- }
382
- function month(num) {
383
- return ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"][num] || "Unknown";
384
- }
385
- function suffix(num) {
386
- if (num % 100 >= 11 && num % 100 <= 13) return `${num}th`;
387
- switch (num % 10) {
388
- case 1:
389
- return `${num}st`;
390
- case 2:
391
- return `${num}nd`;
392
- case 3:
393
- return `${num}rd`;
394
- default:
395
- return `${num}th`;
396
- }
397
- }
398
- function tzOffset(offset) {
399
- const hours = ~~(offset / 60);
400
- const minutes = offset % 60;
401
- return (offset > 0 ? "-" : "") + `${hours}:${minutes.toString().padStart(2, "0")}`;
402
- }
403
- if (typeof date == "number" || typeof date == "string" || date == null) date = new Date(date);
404
- let t;
405
- if (tz == null) tz = -(date.getTimezoneOffset() / 60);
406
- t = timezones.find((t2) => isNaN(tz) ? t2[0] == tz : t2[1] == tz);
407
- if (!t) throw new Error(`Unknown timezone: ${tz}`);
408
- date = adjustTz(date, t[1]);
409
- const tokens = {
410
- "YYYY": date.getFullYear().toString(),
411
- "YY": date.getFullYear().toString().slice(2),
412
- "MMMM": month(date.getMonth()),
413
- "MMM": month(date.getMonth()).slice(0, 3),
414
- "MM": (date.getMonth() + 1).toString().padStart(2, "0"),
415
- "M": (date.getMonth() + 1).toString(),
416
- "DDD": doy(date).toString(),
417
- "DD": date.getDate().toString().padStart(2, "0"),
418
- "Do": suffix(date.getDate()),
419
- "D": date.getDate().toString(),
420
- "dddd": day(date.getDay()),
421
- "ddd": day(date.getDay()).slice(0, 3),
422
- "HH": date.getHours().toString().padStart(2, "0"),
423
- "H": date.getHours().toString(),
424
- "hh": (date.getHours() % 12 || 12).toString().padStart(2, "0"),
425
- "h": (date.getHours() % 12 || 12).toString(),
426
- "mm": date.getMinutes().toString().padStart(2, "0"),
427
- "m": date.getMinutes().toString(),
428
- "ss": date.getSeconds().toString().padStart(2, "0"),
429
- "s": date.getSeconds().toString(),
430
- "SSS": date.getMilliseconds().toString().padStart(3, "0"),
431
- "A": date.getHours() >= 12 ? "PM" : "AM",
432
- "a": date.getHours() >= 12 ? "pm" : "am",
433
- "ZZ": tzOffset(t[1] * 60).replace(":", ""),
434
- "Z": tzOffset(t[1] * 60),
435
- "z": typeof tz == "string" ? tz : t[0]
436
- };
437
- return format.replace(/YYYY|YY|MMMM|MMM|MM|M|DDD|DD|Do|D|dddd|ddd|HH|H|hh|h|mm|m|ss|s|SSS|A|a|ZZ|Z|z/g, (token) => tokens[token]);
438
- }
439
339
  class TypedEmitter {
440
340
  constructor() {
441
341
  __publicField2(this, "listeners", {});
@@ -1819,6 +1719,8 @@ async function getTheme(spoke, scope) {
1819
1719
  logo: `https://${spoke}.auxiliumgroup.com/static/js/auxilium/dijits/templates/login/${spoke}/logo.png`,
1820
1720
  title: spoke.toUpperCase(),
1821
1721
  textColor: "white",
1722
+ titleFontFamily: "'AR BLANCA', serif",
1723
+ titleFontUrl: "https://fonts.cdnfonts.com/css/ar-blanca",
1822
1724
  ...theme || {}
1823
1725
  };
1824
1726
  }
@@ -1905,7 +1807,7 @@ const _LoginPrompt = class _LoginPrompt {
1905
1807
  /** Dynamically create CSS style */
1906
1808
  __publicField(_LoginPrompt, "css", (options) => `
1907
1809
  <style id="datalynk-login-styles">
1908
- @import url('https://fonts.cdnfonts.com/css/ar-blanca');
1810
+ ${options.titleFontUrl ? `@import url('${options.titleFontUrl}');` : `@import url('https://fonts.cdnfonts.com/css/ar-blanca');`}
1909
1811
 
1910
1812
  #datalynk-login {
1911
1813
  --theme-background: ${options.backgroundColor ? options.backgroundColor : `url(${options.background})`};
@@ -1980,7 +1882,11 @@ __publicField(_LoginPrompt, "css", (options) => `
1980
1882
  font-size: 32px;
1981
1883
  margin-bottom: 2rem;
1982
1884
  }
1983
-
1885
+
1886
+ #datalynk-login .login-title {
1887
+ font-family: ${options.titleFontFamily ? options.titleFontFamily : "'AR BLANCA', serif"};
1888
+ ${options.titleTextShadow ? `text-shadow: ${options.titleTextShadow};` : ""}
1889
+ }
1984
1890
  #datalynk-login .login-content {
1985
1891
  display: flex;
1986
1892
  flex-direction: column;
@@ -2243,7 +2149,7 @@ class Auth {
2243
2149
  login: login.trim(),
2244
2150
  password: password.trim(),
2245
2151
  secret: opts == null ? void 0 : opts.twoFactor,
2246
- expireAt: (opts == null ? void 0 : opts.expire) == null ? formatDate("YYYY-MM-DD", date) : opts == null ? void 0 : opts.expire,
2152
+ expireAt: (opts == null ? void 0 : opts.expire) == null ? `${date.getFullYear()}-${(date.getMonth() + 1).toString().padStart(2, "0")}-${date.getDate().toString().padStart(2, "0")}` : opts == null ? void 0 : opts.expire,
2247
2153
  dateFormat: "ISO8601"
2248
2154
  }))
2249
2155
  }).then(async (resp) => {
@@ -3422,7 +3328,7 @@ class Superuser {
3422
3328
  } });
3423
3329
  }
3424
3330
  }
3425
- const version = "1.2.0";
3331
+ const version = "1.2.2";
3426
3332
  class WebRtc {
3427
3333
  constructor(api) {
3428
3334
  __publicField(this, "ice");
package/dist/index.mjs CHANGED
@@ -334,106 +334,6 @@ class PromiseProgress extends Promise {
334
334
  return this.from(super.finally(res));
335
335
  }
336
336
  }
337
- function formatDate(format = "YYYY-MM-DD H:mm", date = /* @__PURE__ */ new Date(), tz) {
338
- const timezones = [
339
- ["IDLW", -12],
340
- ["SST", -11],
341
- ["HST", -10],
342
- ["AKST", -9],
343
- ["PST", -8],
344
- ["MST", -7],
345
- ["CST", -6],
346
- ["EST", -5],
347
- ["AST", -4],
348
- ["BRT", -3],
349
- ["MAT", -2],
350
- ["AZOT", -1],
351
- ["UTC", 0],
352
- ["CET", 1],
353
- ["EET", 2],
354
- ["MSK", 3],
355
- ["AST", 4],
356
- ["PKT", 5],
357
- ["IST", 5.5],
358
- ["BST", 6],
359
- ["ICT", 7],
360
- ["CST", 8],
361
- ["JST", 9],
362
- ["AEST", 10],
363
- ["SBT", 11],
364
- ["FJT", 12],
365
- ["TOT", 13],
366
- ["LINT", 14]
367
- ];
368
- function adjustTz(date2, gmt) {
369
- const currentOffset = date2.getTimezoneOffset();
370
- const adjustedOffset = gmt * 60;
371
- return new Date(date2.getTime() + (adjustedOffset + currentOffset) * 6e4);
372
- }
373
- function day(num) {
374
- return ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"][num] || "Unknown";
375
- }
376
- function doy(date2) {
377
- const start = /* @__PURE__ */ new Date(`${date2.getFullYear()}-01-01 0:00:00`);
378
- return Math.ceil((date2.getTime() - start.getTime()) / (1e3 * 60 * 60 * 24));
379
- }
380
- function month(num) {
381
- return ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"][num] || "Unknown";
382
- }
383
- function suffix(num) {
384
- if (num % 100 >= 11 && num % 100 <= 13) return `${num}th`;
385
- switch (num % 10) {
386
- case 1:
387
- return `${num}st`;
388
- case 2:
389
- return `${num}nd`;
390
- case 3:
391
- return `${num}rd`;
392
- default:
393
- return `${num}th`;
394
- }
395
- }
396
- function tzOffset(offset) {
397
- const hours = ~~(offset / 60);
398
- const minutes = offset % 60;
399
- return (offset > 0 ? "-" : "") + `${hours}:${minutes.toString().padStart(2, "0")}`;
400
- }
401
- if (typeof date == "number" || typeof date == "string" || date == null) date = new Date(date);
402
- let t;
403
- if (tz == null) tz = -(date.getTimezoneOffset() / 60);
404
- t = timezones.find((t2) => isNaN(tz) ? t2[0] == tz : t2[1] == tz);
405
- if (!t) throw new Error(`Unknown timezone: ${tz}`);
406
- date = adjustTz(date, t[1]);
407
- const tokens = {
408
- "YYYY": date.getFullYear().toString(),
409
- "YY": date.getFullYear().toString().slice(2),
410
- "MMMM": month(date.getMonth()),
411
- "MMM": month(date.getMonth()).slice(0, 3),
412
- "MM": (date.getMonth() + 1).toString().padStart(2, "0"),
413
- "M": (date.getMonth() + 1).toString(),
414
- "DDD": doy(date).toString(),
415
- "DD": date.getDate().toString().padStart(2, "0"),
416
- "Do": suffix(date.getDate()),
417
- "D": date.getDate().toString(),
418
- "dddd": day(date.getDay()),
419
- "ddd": day(date.getDay()).slice(0, 3),
420
- "HH": date.getHours().toString().padStart(2, "0"),
421
- "H": date.getHours().toString(),
422
- "hh": (date.getHours() % 12 || 12).toString().padStart(2, "0"),
423
- "h": (date.getHours() % 12 || 12).toString(),
424
- "mm": date.getMinutes().toString().padStart(2, "0"),
425
- "m": date.getMinutes().toString(),
426
- "ss": date.getSeconds().toString().padStart(2, "0"),
427
- "s": date.getSeconds().toString(),
428
- "SSS": date.getMilliseconds().toString().padStart(3, "0"),
429
- "A": date.getHours() >= 12 ? "PM" : "AM",
430
- "a": date.getHours() >= 12 ? "pm" : "am",
431
- "ZZ": tzOffset(t[1] * 60).replace(":", ""),
432
- "Z": tzOffset(t[1] * 60),
433
- "z": typeof tz == "string" ? tz : t[0]
434
- };
435
- return format.replace(/YYYY|YY|MMMM|MMM|MM|M|DDD|DD|Do|D|dddd|ddd|HH|H|hh|h|mm|m|ss|s|SSS|A|a|ZZ|Z|z/g, (token) => tokens[token]);
436
- }
437
337
  class TypedEmitter {
438
338
  constructor() {
439
339
  __publicField2(this, "listeners", {});
@@ -1817,6 +1717,8 @@ async function getTheme(spoke, scope) {
1817
1717
  logo: `https://${spoke}.auxiliumgroup.com/static/js/auxilium/dijits/templates/login/${spoke}/logo.png`,
1818
1718
  title: spoke.toUpperCase(),
1819
1719
  textColor: "white",
1720
+ titleFontFamily: "'AR BLANCA', serif",
1721
+ titleFontUrl: "https://fonts.cdnfonts.com/css/ar-blanca",
1820
1722
  ...theme || {}
1821
1723
  };
1822
1724
  }
@@ -1903,7 +1805,7 @@ const _LoginPrompt = class _LoginPrompt {
1903
1805
  /** Dynamically create CSS style */
1904
1806
  __publicField(_LoginPrompt, "css", (options) => `
1905
1807
  <style id="datalynk-login-styles">
1906
- @import url('https://fonts.cdnfonts.com/css/ar-blanca');
1808
+ ${options.titleFontUrl ? `@import url('${options.titleFontUrl}');` : `@import url('https://fonts.cdnfonts.com/css/ar-blanca');`}
1907
1809
 
1908
1810
  #datalynk-login {
1909
1811
  --theme-background: ${options.backgroundColor ? options.backgroundColor : `url(${options.background})`};
@@ -1978,7 +1880,11 @@ __publicField(_LoginPrompt, "css", (options) => `
1978
1880
  font-size: 32px;
1979
1881
  margin-bottom: 2rem;
1980
1882
  }
1981
-
1883
+
1884
+ #datalynk-login .login-title {
1885
+ font-family: ${options.titleFontFamily ? options.titleFontFamily : "'AR BLANCA', serif"};
1886
+ ${options.titleTextShadow ? `text-shadow: ${options.titleTextShadow};` : ""}
1887
+ }
1982
1888
  #datalynk-login .login-content {
1983
1889
  display: flex;
1984
1890
  flex-direction: column;
@@ -2241,7 +2147,7 @@ class Auth {
2241
2147
  login: login.trim(),
2242
2148
  password: password.trim(),
2243
2149
  secret: opts == null ? void 0 : opts.twoFactor,
2244
- expireAt: (opts == null ? void 0 : opts.expire) == null ? formatDate("YYYY-MM-DD", date) : opts == null ? void 0 : opts.expire,
2150
+ expireAt: (opts == null ? void 0 : opts.expire) == null ? `${date.getFullYear()}-${(date.getMonth() + 1).toString().padStart(2, "0")}-${date.getDate().toString().padStart(2, "0")}` : opts == null ? void 0 : opts.expire,
2245
2151
  dateFormat: "ISO8601"
2246
2152
  }))
2247
2153
  }).then(async (resp) => {
@@ -3420,7 +3326,7 @@ class Superuser {
3420
3326
  } });
3421
3327
  }
3422
3328
  }
3423
- const version = "1.2.0";
3329
+ const version = "1.2.2";
3424
3330
  class WebRtc {
3425
3331
  constructor(api) {
3426
3332
  __publicField(this, "ice");
@@ -24,6 +24,12 @@ export type LoginPromptOptions = {
24
24
  title?: string;
25
25
  /** Color of headers & links */
26
26
  textColor?: string;
27
+ /** Custom font for title */
28
+ titleFontFamily?: string;
29
+ /** Import URL for custom font */
30
+ titleFontUrl?: string;
31
+ /** Text shadow for the title */
32
+ titleTextShadow?: string;
27
33
  };
28
34
  /** Create a login prompt */
29
35
  export declare class LoginPrompt {
@@ -1 +1 @@
1
- {"version":3,"file":"login-prompt.d.ts","sourceRoot":"","sources":["../src/login-prompt.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,GAAG,EAAC,MAAM,OAAO,CAAC;AAG1B,uCAAuC;AACvC,MAAM,MAAM,kBAAkB,GAAG;IAChC,+BAA+B;IAC/B,QAAQ,CAAC,EAAE;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAC,EAAE,CAAC;IACzC,2BAA2B;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,4CAA4C;IAC5C,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,sCAAsC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,sEAAsE;IACtE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,eAAe;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,oCAAoC;IACpC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,uDAAuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB,CAAA;AAED,4BAA4B;AAC5B,qBAAa,WAAW;IAmOX,OAAO,CAAC,QAAQ,CAAC,GAAG;aAAuB,KAAK,EAAE,MAAM;IAAS,OAAO,EAAE,kBAAkB;IAlOxG,mCAAmC;IACnC,OAAO,CAAC,MAAM,CAAC,GAAG,CA0JR;IAEV,8BAA8B;IAC9B,OAAO,CAAC,MAAM,CAAC,QAAQ,CAuDrB;IAEF,OAAO,CAAC,KAAK,CAAO;IACpB,OAAO,CAAC,MAAM,CAAO;IACrB,OAAO,CAAC,IAAI,CAAO;IACnB,OAAO,CAAC,QAAQ,CAAO;IACvB,OAAO,CAAC,OAAO,CAAO;IACtB,OAAO,CAAC,QAAQ,CAAO;IAEvB,OAAO,CAAC,KAAK,CAAY;IACzB,oDAAoD;IACpD,IAAI,gBAAmD;gBAE1B,GAAG,EAAE,GAAG,EAAkB,KAAK,EAAE,MAAM,EAAS,OAAO,GAAE,kBAAuB;YAI/F,MAAM;YAkBN,aAAa;IAS3B,6BAA6B;IAC7B,KAAK;IAKL,0CAA0C;IAC1C,MAAM;IAIN,8BAA8B;IAC9B,KAAK,CAAC,KAAK,EAAE,GAAG;CA4BhB"}
1
+ {"version":3,"file":"login-prompt.d.ts","sourceRoot":"","sources":["../src/login-prompt.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,GAAG,EAAC,MAAM,OAAO,CAAC;AAG1B,uCAAuC;AACvC,MAAM,MAAM,kBAAkB,GAAG;IAChC,+BAA+B;IAC/B,QAAQ,CAAC,EAAE;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAC,EAAE,CAAC;IACzC,2BAA2B;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,4CAA4C;IAC5C,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,sCAAsC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,sEAAsE;IACtE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,eAAe;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,oCAAoC;IACpC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,uDAAuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,4BAA4B;IAC5B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,iCAAiC;IACjC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gCAAgC;IAChC,eAAe,CAAC,EAAE,MAAM,CAAC;CACzB,CAAA;AAED,4BAA4B;AAC5B,qBAAa,WAAW;IA2OX,OAAO,CAAC,QAAQ,CAAC,GAAG;aAAuB,KAAK,EAAE,MAAM;IAAS,OAAO,EAAE,kBAAkB;IA1OxG,mCAAmC;IACnC,OAAO,CAAC,MAAM,CAAC,GAAG,CAkKR;IAEV,8BAA8B;IAC9B,OAAO,CAAC,MAAM,CAAC,QAAQ,CAuDrB;IAEF,OAAO,CAAC,KAAK,CAAO;IACpB,OAAO,CAAC,MAAM,CAAO;IACrB,OAAO,CAAC,IAAI,CAAO;IACnB,OAAO,CAAC,QAAQ,CAAO;IACvB,OAAO,CAAC,OAAO,CAAO;IACtB,OAAO,CAAC,QAAQ,CAAO;IAEvB,OAAO,CAAC,KAAK,CAAY;IACzB,oDAAoD;IACpD,IAAI,gBAAmD;gBAE1B,GAAG,EAAE,GAAG,EAAkB,KAAK,EAAE,MAAM,EAAS,OAAO,GAAE,kBAAuB;YAI/F,MAAM;YAkBN,aAAa;IAS3B,6BAA6B;IAC7B,KAAK;IAKL,0CAA0C;IAC1C,MAAM;IAIN,8BAA8B;IAC9B,KAAK,CAAC,KAAK,EAAE,GAAG;CA4BhB"}
package/dist/themes.d.ts CHANGED
@@ -1,22 +1,39 @@
1
1
  export interface Theme {
2
+ /** Add links to top of page */
3
+ addLinks?: {
4
+ text: string;
5
+ url: string;
6
+ }[];
2
7
  /** Background image URL */
3
8
  background?: string;
4
9
  /** Background color as hex (overrides background image) */
5
10
  backgroundColor?: string;
6
11
  /** Primary color as hex: `#000000` */
7
12
  color?: string;
13
+ /** Change glow color, defaults to color or set to falsy to disable */
14
+ glow?: string;
15
+ /** Hide app links */
16
+ hideApps?: boolean;
8
17
  /** Logo URL */
9
18
  logo?: string;
19
+ /** Allow users to stay logged in */
20
+ persist?: boolean;
10
21
  /** Header string or HTML: <img alt="logo" src="...">*/
11
22
  title?: string;
12
23
  /** Color of headers & links */
13
24
  textColor?: string;
25
+ /** Custom font for title */
26
+ titleFontFamily?: string;
27
+ /** Import URL for custom font */
28
+ titleFontUrl?: string;
29
+ /** Text shadow for the title */
30
+ titleTextShadow?: string;
14
31
  }
15
32
  /**
16
33
  * Get the theme for a spoke
17
34
  * @param {string} spoke Name of spoke
18
35
  * @param {string} scope Apply sub-theme
19
- * @returns {Promise<Theme>}
36
+ * @returns {Promise<Theme & {found: boolean}>}
20
37
  */
21
38
  export declare function getTheme(spoke: string, scope?: string): Promise<Theme & {
22
39
  found: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"themes.d.ts","sourceRoot":"","sources":["../src/themes.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,KAAK;IACrB,2BAA2B;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,2DAA2D;IAC3D,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,sCAAsC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,eAAe;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,uDAAuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;;;;GAKG;AACH,wBAAsB,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,GAAG;IAAC,KAAK,EAAE,OAAO,CAAA;CAAC,CAAC,CAa/F"}
1
+ {"version":3,"file":"themes.d.ts","sourceRoot":"","sources":["../src/themes.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,KAAK;IACrB,+BAA+B;IAC/B,QAAQ,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,EAAE,CAAC;IAC3C,2BAA2B;IAC3B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,2DAA2D;IAC3D,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,sCAAsC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,sEAAsE;IACtE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,eAAe;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,oCAAoC;IACpC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,uDAAuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,4BAA4B;IAC5B,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,iCAAiC;IACjC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gCAAgC;IAChC,eAAe,CAAC,EAAE,MAAM,CAAC;CACzB;AAED;;;;;GAKG;AACH,wBAAsB,QAAQ,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,KAAK,GAAG;IAAC,KAAK,EAAE,OAAO,CAAA;CAAC,CAAC,CAe/F"}
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@auxilium/datalynk-client",
3
3
  "description": "Datalynk client library",
4
4
  "repository": "https://gitlab.auxiliumgroup.com/auxilium/datalynk/datalynk-client",
5
- "version": "1.2.0",
5
+ "version": "1.2.2",
6
6
  "author": "Zak Timson <zaktimson@gmail.com>",
7
7
  "private": false,
8
8
  "main": "./dist/index.cjs",