@limetech/lime-elements 39.2.0 → 39.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/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## [39.2.2](https://github.com/Lundalogik/lime-elements/compare/v39.2.1...v39.2.2) (2026-02-22)
2
+
3
+ ### Bug Fixes
4
+
5
+
6
+ * **email-viewer:** add explicit font and meta attributes to sanitization schema ([c3ea360](https://github.com/Lundalogik/lime-elements/commit/c3ea360fcc50fe7131caf366b695614d41c14e9d))
7
+
8
+ ## [39.2.1](https://github.com/Lundalogik/lime-elements/compare/v39.2.0...v39.2.1) (2026-02-22)
9
+
10
+ ### Bug Fixes
11
+
12
+
13
+ * **email-viewer:** preserve font face attribute in sanitized email HTML ([8652fbf](https://github.com/Lundalogik/lime-elements/commit/8652fbf08bf62d4430d8960ec0cd01d8e42649db))
14
+ * **email-viewer:** prevent id attribute clobbering in sanitized email HTML ([6ad9539](https://github.com/Lundalogik/lime-elements/commit/6ad9539f5a63db7a5f047338cb809d4741b051f9))
15
+
1
16
  ## [39.2.0](https://github.com/Lundalogik/lime-elements/compare/v39.1.4...v39.2.0) (2026-02-21)
2
17
 
3
18
  ### Features
@@ -4569,6 +4569,7 @@ class PostalMime {
4569
4569
  }
4570
4570
  }
4571
4571
 
4572
+ var _a, _b, _c, _d, _e, _f, _g;
4572
4573
  const allowedMimeTypes = new Set([
4573
4574
  'image/png',
4574
4575
  'image/jpeg',
@@ -4594,7 +4595,7 @@ const allowedMimeTypes = new Set([
4594
4595
  async function sanitizeEmailHTML(html) {
4595
4596
  const file = await index.unified()
4596
4597
  .use(index.rehypeParse)
4597
- .use(index.rehypeSanitize, getEmailSanitizationSchema())
4598
+ .use(index.rehypeSanitize, emailSanitizationSchema)
4598
4599
  .use(() => {
4599
4600
  return (tree) => {
4600
4601
  index.visit(tree, 'element', (node) => {
@@ -4607,60 +4608,62 @@ async function sanitizeEmailHTML(html) {
4607
4608
  .process(html);
4608
4609
  return file.toString();
4609
4610
  }
4611
+ // Base src protocols from defaultSchema, extended with 'data' below.
4612
+ const defaultSrcProtocols = (_b = (_a = index.defaultSchema.protocols) === null || _a === void 0 ? void 0 : _a.src) !== null && _b !== void 0 ? _b : [];
4610
4613
  /**
4611
- * Returns a rehype-sanitize schema that allows all standard HTML elements
4612
- * and attributes needed for rich email rendering, including `style`.
4614
+ * Rehype-sanitize schema that allows all standard HTML elements and attributes
4615
+ * needed for rich email rendering, including `style`.
4616
+ *
4617
+ * Hoisted to module scope since the schema has no runtime dependencies and
4618
+ * doesn't need to be reconstructed on every sanitization call.
4613
4619
  */
4614
- function getEmailSanitizationSchema() {
4615
- var _a, _b, _c, _d, _e, _f, _g;
4616
- const defaultSrcProtocols = (_b = (_a = index.defaultSchema.protocols) === null || _a === void 0 ? void 0 : _a.src) !== null && _b !== void 0 ? _b : [];
4617
- const schema = Object.assign(Object.assign({}, index.defaultSchema), { protocols: Object.assign(Object.assign({}, index.defaultSchema.protocols), {
4618
- // Email bodies often embed images as data URLs. We allow `data:` here,
4619
- // but still validate the MIME type in `sanitizeDangerousUrls`.
4620
- src: [...defaultSrcProtocols, 'http', 'https', 'data']
4621
- }), attributes: Object.assign(Object.assign({}, index.defaultSchema.attributes), { table: [
4622
- ...((_c = index.defaultSchema.attributes.table) !== null && _c !== void 0 ? _c : []),
4623
- // Email HTML often relies on these legacy attributes.
4624
- 'cellpadding',
4625
- 'cellPadding',
4626
- 'cellspacing',
4627
- 'cellSpacing',
4628
- 'border',
4629
- 'dir',
4630
- 'width',
4631
- 'height',
4632
- ], colgroup: [...((_d = index.defaultSchema.attributes.colgroup) !== null && _d !== void 0 ? _d : []), 'span'], col: [...((_e = index.defaultSchema.attributes.col) !== null && _e !== void 0 ? _e : []), 'width', 'span'], '*': [
4633
- ...((_f = index.defaultSchema.attributes['*']) !== null && _f !== void 0 ? _f : []),
4634
- 'style', // Allow inline styles on all elements
4635
- // NOTE: rehype/parse maps `class` to the HAST property name
4636
- // `className`, which is what rehype-sanitize checks.
4637
- 'className',
4638
- 'class', // Keep for completeness
4639
- 'id', // Allow id for anchors/internal navigation
4640
- // Used to store remote image URLs without loading them immediately.
4641
- 'data-remote-src',
4642
- 'dataRemoteSrc',
4643
- ] }),
4644
- // Allow common email-specific tags
4645
- tagNames: [
4646
- ...((_g = index.defaultSchema.tagNames) !== null && _g !== void 0 ? _g : []),
4647
- // Allow full-document HTML emails. These tags won't render as text,
4648
- // but keeping them avoids their contents being surfaced as plain text.
4649
- 'html',
4650
- 'head',
4651
- 'body',
4652
- 'title',
4653
- 'meta',
4654
- // Preserve embedded email CSS.
4655
- 'style',
4656
- // Preserve table column sizing when using <colgroup>/<col>.
4657
- 'colgroup',
4658
- 'col',
4659
- 'center', // Deprecated but widely used in email
4660
- 'font', // Deprecated but widely used in email
4661
- ] });
4662
- return schema;
4663
- }
4620
+ const emailSanitizationSchema = Object.assign(Object.assign({}, index.defaultSchema), {
4621
+ // Disable the 'user-content-' prefix that rehype-sanitize adds to
4622
+ // id and name attributes. Email HTML uses ids for internal anchor
4623
+ // links (href="#section") that must resolve without a prefix.
4624
+ clobberPrefix: '', protocols: Object.assign(Object.assign({}, index.defaultSchema.protocols), {
4625
+ // Email bodies often embed images as data URLs. We allow `data:` here,
4626
+ // but still validate the MIME type in `sanitizeDangerousUrls`.
4627
+ src: [...defaultSrcProtocols, 'data']
4628
+ }), attributes: Object.assign(Object.assign({}, index.defaultSchema.attributes), { table: [
4629
+ ...((_c = index.defaultSchema.attributes.table) !== null && _c !== void 0 ? _c : []),
4630
+ // Email HTML often relies on these legacy attributes.
4631
+ // rehype-parse converts to camelCase HAST properties.
4632
+ 'cellPadding',
4633
+ 'cellSpacing',
4634
+ 'border',
4635
+ 'dir',
4636
+ 'width',
4637
+ 'height',
4638
+ ], font: ['color', 'size', 'face'], meta: ['charset', 'content', 'name'], colgroup: [...((_d = index.defaultSchema.attributes.colgroup) !== null && _d !== void 0 ? _d : []), 'span'], col: [...((_e = index.defaultSchema.attributes.col) !== null && _e !== void 0 ? _e : []), 'width', 'span'], '*': [
4639
+ ...((_f = index.defaultSchema.attributes['*']) !== null && _f !== void 0 ? _f : []),
4640
+ 'style', // Allow inline styles on all elements
4641
+ // NOTE: rehype/parse maps `class` to the HAST property name
4642
+ // `className`, which is what rehype-sanitize checks.
4643
+ 'className',
4644
+ 'id', // Allow id for anchors/internal navigation
4645
+ // Used to store remote image URLs without loading them immediately.
4646
+ 'dataRemoteSrc',
4647
+ ] }),
4648
+ // Allow common email-specific tags
4649
+ tagNames: [
4650
+ ...((_g = index.defaultSchema.tagNames) !== null && _g !== void 0 ? _g : []),
4651
+ // Allow full-document HTML emails. These tags won't render as text,
4652
+ // but keeping them avoids their contents being surfaced as plain text.
4653
+ 'html',
4654
+ 'head',
4655
+ 'body',
4656
+ 'title',
4657
+ 'meta',
4658
+ // Preserve embedded email CSS.
4659
+ 'style',
4660
+ // Preserve table column sizing when using <colgroup>/<col>.
4661
+ 'colgroup',
4662
+ 'col',
4663
+ 'center', // Deprecated but widely used in email
4664
+ 'font', // Deprecated but widely used in email
4665
+ ]
4666
+ });
4664
4667
  /**
4665
4668
  * Validates and normalizes potentially dangerous URL attributes.
4666
4669
  *
@@ -1,3 +1,4 @@
1
+ var _a, _b, _c, _d, _e, _f, _g;
1
2
  import { unified } from "unified";
2
3
  import rehypeParse from "rehype-parse";
3
4
  import rehypeSanitize, { defaultSchema } from "rehype-sanitize";
@@ -28,7 +29,7 @@ const allowedMimeTypes = new Set([
28
29
  export async function sanitizeEmailHTML(html) {
29
30
  const file = await unified()
30
31
  .use(rehypeParse)
31
- .use(rehypeSanitize, getEmailSanitizationSchema())
32
+ .use(rehypeSanitize, emailSanitizationSchema)
32
33
  .use(() => {
33
34
  return (tree) => {
34
35
  visit(tree, 'element', (node) => {
@@ -41,60 +42,62 @@ export async function sanitizeEmailHTML(html) {
41
42
  .process(html);
42
43
  return file.toString();
43
44
  }
45
+ // Base src protocols from defaultSchema, extended with 'data' below.
46
+ const defaultSrcProtocols = (_b = (_a = defaultSchema.protocols) === null || _a === void 0 ? void 0 : _a.src) !== null && _b !== void 0 ? _b : [];
44
47
  /**
45
- * Returns a rehype-sanitize schema that allows all standard HTML elements
46
- * and attributes needed for rich email rendering, including `style`.
48
+ * Rehype-sanitize schema that allows all standard HTML elements and attributes
49
+ * needed for rich email rendering, including `style`.
50
+ *
51
+ * Hoisted to module scope since the schema has no runtime dependencies and
52
+ * doesn't need to be reconstructed on every sanitization call.
47
53
  */
48
- function getEmailSanitizationSchema() {
49
- var _a, _b, _c, _d, _e, _f, _g;
50
- const defaultSrcProtocols = (_b = (_a = defaultSchema.protocols) === null || _a === void 0 ? void 0 : _a.src) !== null && _b !== void 0 ? _b : [];
51
- const schema = Object.assign(Object.assign({}, defaultSchema), { protocols: Object.assign(Object.assign({}, defaultSchema.protocols), {
52
- // Email bodies often embed images as data URLs. We allow `data:` here,
53
- // but still validate the MIME type in `sanitizeDangerousUrls`.
54
- src: [...defaultSrcProtocols, 'http', 'https', 'data']
55
- }), attributes: Object.assign(Object.assign({}, defaultSchema.attributes), { table: [
56
- ...((_c = defaultSchema.attributes.table) !== null && _c !== void 0 ? _c : []),
57
- // Email HTML often relies on these legacy attributes.
58
- 'cellpadding',
59
- 'cellPadding',
60
- 'cellspacing',
61
- 'cellSpacing',
62
- 'border',
63
- 'dir',
64
- 'width',
65
- 'height',
66
- ], colgroup: [...((_d = defaultSchema.attributes.colgroup) !== null && _d !== void 0 ? _d : []), 'span'], col: [...((_e = defaultSchema.attributes.col) !== null && _e !== void 0 ? _e : []), 'width', 'span'], '*': [
67
- ...((_f = defaultSchema.attributes['*']) !== null && _f !== void 0 ? _f : []),
68
- 'style', // Allow inline styles on all elements
69
- // NOTE: rehype/parse maps `class` to the HAST property name
70
- // `className`, which is what rehype-sanitize checks.
71
- 'className',
72
- 'class', // Keep for completeness
73
- 'id', // Allow id for anchors/internal navigation
74
- // Used to store remote image URLs without loading them immediately.
75
- 'data-remote-src',
76
- 'dataRemoteSrc',
77
- ] }),
78
- // Allow common email-specific tags
79
- tagNames: [
80
- ...((_g = defaultSchema.tagNames) !== null && _g !== void 0 ? _g : []),
81
- // Allow full-document HTML emails. These tags won't render as text,
82
- // but keeping them avoids their contents being surfaced as plain text.
83
- 'html',
84
- 'head',
85
- 'body',
86
- 'title',
87
- 'meta',
88
- // Preserve embedded email CSS.
89
- 'style',
90
- // Preserve table column sizing when using <colgroup>/<col>.
91
- 'colgroup',
92
- 'col',
93
- 'center', // Deprecated but widely used in email
94
- 'font', // Deprecated but widely used in email
95
- ] });
96
- return schema;
97
- }
54
+ const emailSanitizationSchema = Object.assign(Object.assign({}, defaultSchema), {
55
+ // Disable the 'user-content-' prefix that rehype-sanitize adds to
56
+ // id and name attributes. Email HTML uses ids for internal anchor
57
+ // links (href="#section") that must resolve without a prefix.
58
+ clobberPrefix: '', protocols: Object.assign(Object.assign({}, defaultSchema.protocols), {
59
+ // Email bodies often embed images as data URLs. We allow `data:` here,
60
+ // but still validate the MIME type in `sanitizeDangerousUrls`.
61
+ src: [...defaultSrcProtocols, 'data']
62
+ }), attributes: Object.assign(Object.assign({}, defaultSchema.attributes), { table: [
63
+ ...((_c = defaultSchema.attributes.table) !== null && _c !== void 0 ? _c : []),
64
+ // Email HTML often relies on these legacy attributes.
65
+ // rehype-parse converts to camelCase HAST properties.
66
+ 'cellPadding',
67
+ 'cellSpacing',
68
+ 'border',
69
+ 'dir',
70
+ 'width',
71
+ 'height',
72
+ ], font: ['color', 'size', 'face'], meta: ['charset', 'content', 'name'], colgroup: [...((_d = defaultSchema.attributes.colgroup) !== null && _d !== void 0 ? _d : []), 'span'], col: [...((_e = defaultSchema.attributes.col) !== null && _e !== void 0 ? _e : []), 'width', 'span'], '*': [
73
+ ...((_f = defaultSchema.attributes['*']) !== null && _f !== void 0 ? _f : []),
74
+ 'style', // Allow inline styles on all elements
75
+ // NOTE: rehype/parse maps `class` to the HAST property name
76
+ // `className`, which is what rehype-sanitize checks.
77
+ 'className',
78
+ 'id', // Allow id for anchors/internal navigation
79
+ // Used to store remote image URLs without loading them immediately.
80
+ 'dataRemoteSrc',
81
+ ] }),
82
+ // Allow common email-specific tags
83
+ tagNames: [
84
+ ...((_g = defaultSchema.tagNames) !== null && _g !== void 0 ? _g : []),
85
+ // Allow full-document HTML emails. These tags won't render as text,
86
+ // but keeping them avoids their contents being surfaced as plain text.
87
+ 'html',
88
+ 'head',
89
+ 'body',
90
+ 'title',
91
+ 'meta',
92
+ // Preserve embedded email CSS.
93
+ 'style',
94
+ // Preserve table column sizing when using <colgroup>/<col>.
95
+ 'colgroup',
96
+ 'col',
97
+ 'center', // Deprecated but widely used in email
98
+ 'font', // Deprecated but widely used in email
99
+ ]
100
+ });
98
101
  /**
99
102
  * Validates and normalizes potentially dangerous URL attributes.
100
103
  *
@@ -1,6 +1,6 @@
1
1
  import { r as registerInstance, c as createEvent, h, a as getElement } from './index-DBTJNfo7.js';
2
2
  import { t as translate } from './translations-Cdx3I2X8.js';
3
- import { u as unified, r as rehypeParse, a as rehypeSanitize, v as visit, b as rehypeStringify, d as defaultSchema } from './index-CJ0GYrWG.js';
3
+ import { d as defaultSchema, u as unified, r as rehypeParse, a as rehypeSanitize, v as visit, b as rehypeStringify } from './index-CJ0GYrWG.js';
4
4
  import './_commonjsHelpers-BFTU3MAI.js';
5
5
 
6
6
  /**
@@ -4567,6 +4567,7 @@ class PostalMime {
4567
4567
  }
4568
4568
  }
4569
4569
 
4570
+ var _a, _b, _c, _d, _e, _f, _g;
4570
4571
  const allowedMimeTypes = new Set([
4571
4572
  'image/png',
4572
4573
  'image/jpeg',
@@ -4592,7 +4593,7 @@ const allowedMimeTypes = new Set([
4592
4593
  async function sanitizeEmailHTML(html) {
4593
4594
  const file = await unified()
4594
4595
  .use(rehypeParse)
4595
- .use(rehypeSanitize, getEmailSanitizationSchema())
4596
+ .use(rehypeSanitize, emailSanitizationSchema)
4596
4597
  .use(() => {
4597
4598
  return (tree) => {
4598
4599
  visit(tree, 'element', (node) => {
@@ -4605,60 +4606,62 @@ async function sanitizeEmailHTML(html) {
4605
4606
  .process(html);
4606
4607
  return file.toString();
4607
4608
  }
4609
+ // Base src protocols from defaultSchema, extended with 'data' below.
4610
+ const defaultSrcProtocols = (_b = (_a = defaultSchema.protocols) === null || _a === void 0 ? void 0 : _a.src) !== null && _b !== void 0 ? _b : [];
4608
4611
  /**
4609
- * Returns a rehype-sanitize schema that allows all standard HTML elements
4610
- * and attributes needed for rich email rendering, including `style`.
4612
+ * Rehype-sanitize schema that allows all standard HTML elements and attributes
4613
+ * needed for rich email rendering, including `style`.
4614
+ *
4615
+ * Hoisted to module scope since the schema has no runtime dependencies and
4616
+ * doesn't need to be reconstructed on every sanitization call.
4611
4617
  */
4612
- function getEmailSanitizationSchema() {
4613
- var _a, _b, _c, _d, _e, _f, _g;
4614
- const defaultSrcProtocols = (_b = (_a = defaultSchema.protocols) === null || _a === void 0 ? void 0 : _a.src) !== null && _b !== void 0 ? _b : [];
4615
- const schema = Object.assign(Object.assign({}, defaultSchema), { protocols: Object.assign(Object.assign({}, defaultSchema.protocols), {
4616
- // Email bodies often embed images as data URLs. We allow `data:` here,
4617
- // but still validate the MIME type in `sanitizeDangerousUrls`.
4618
- src: [...defaultSrcProtocols, 'http', 'https', 'data']
4619
- }), attributes: Object.assign(Object.assign({}, defaultSchema.attributes), { table: [
4620
- ...((_c = defaultSchema.attributes.table) !== null && _c !== void 0 ? _c : []),
4621
- // Email HTML often relies on these legacy attributes.
4622
- 'cellpadding',
4623
- 'cellPadding',
4624
- 'cellspacing',
4625
- 'cellSpacing',
4626
- 'border',
4627
- 'dir',
4628
- 'width',
4629
- 'height',
4630
- ], colgroup: [...((_d = defaultSchema.attributes.colgroup) !== null && _d !== void 0 ? _d : []), 'span'], col: [...((_e = defaultSchema.attributes.col) !== null && _e !== void 0 ? _e : []), 'width', 'span'], '*': [
4631
- ...((_f = defaultSchema.attributes['*']) !== null && _f !== void 0 ? _f : []),
4632
- 'style', // Allow inline styles on all elements
4633
- // NOTE: rehype/parse maps `class` to the HAST property name
4634
- // `className`, which is what rehype-sanitize checks.
4635
- 'className',
4636
- 'class', // Keep for completeness
4637
- 'id', // Allow id for anchors/internal navigation
4638
- // Used to store remote image URLs without loading them immediately.
4639
- 'data-remote-src',
4640
- 'dataRemoteSrc',
4641
- ] }),
4642
- // Allow common email-specific tags
4643
- tagNames: [
4644
- ...((_g = defaultSchema.tagNames) !== null && _g !== void 0 ? _g : []),
4645
- // Allow full-document HTML emails. These tags won't render as text,
4646
- // but keeping them avoids their contents being surfaced as plain text.
4647
- 'html',
4648
- 'head',
4649
- 'body',
4650
- 'title',
4651
- 'meta',
4652
- // Preserve embedded email CSS.
4653
- 'style',
4654
- // Preserve table column sizing when using <colgroup>/<col>.
4655
- 'colgroup',
4656
- 'col',
4657
- 'center', // Deprecated but widely used in email
4658
- 'font', // Deprecated but widely used in email
4659
- ] });
4660
- return schema;
4661
- }
4618
+ const emailSanitizationSchema = Object.assign(Object.assign({}, defaultSchema), {
4619
+ // Disable the 'user-content-' prefix that rehype-sanitize adds to
4620
+ // id and name attributes. Email HTML uses ids for internal anchor
4621
+ // links (href="#section") that must resolve without a prefix.
4622
+ clobberPrefix: '', protocols: Object.assign(Object.assign({}, defaultSchema.protocols), {
4623
+ // Email bodies often embed images as data URLs. We allow `data:` here,
4624
+ // but still validate the MIME type in `sanitizeDangerousUrls`.
4625
+ src: [...defaultSrcProtocols, 'data']
4626
+ }), attributes: Object.assign(Object.assign({}, defaultSchema.attributes), { table: [
4627
+ ...((_c = defaultSchema.attributes.table) !== null && _c !== void 0 ? _c : []),
4628
+ // Email HTML often relies on these legacy attributes.
4629
+ // rehype-parse converts to camelCase HAST properties.
4630
+ 'cellPadding',
4631
+ 'cellSpacing',
4632
+ 'border',
4633
+ 'dir',
4634
+ 'width',
4635
+ 'height',
4636
+ ], font: ['color', 'size', 'face'], meta: ['charset', 'content', 'name'], colgroup: [...((_d = defaultSchema.attributes.colgroup) !== null && _d !== void 0 ? _d : []), 'span'], col: [...((_e = defaultSchema.attributes.col) !== null && _e !== void 0 ? _e : []), 'width', 'span'], '*': [
4637
+ ...((_f = defaultSchema.attributes['*']) !== null && _f !== void 0 ? _f : []),
4638
+ 'style', // Allow inline styles on all elements
4639
+ // NOTE: rehype/parse maps `class` to the HAST property name
4640
+ // `className`, which is what rehype-sanitize checks.
4641
+ 'className',
4642
+ 'id', // Allow id for anchors/internal navigation
4643
+ // Used to store remote image URLs without loading them immediately.
4644
+ 'dataRemoteSrc',
4645
+ ] }),
4646
+ // Allow common email-specific tags
4647
+ tagNames: [
4648
+ ...((_g = defaultSchema.tagNames) !== null && _g !== void 0 ? _g : []),
4649
+ // Allow full-document HTML emails. These tags won't render as text,
4650
+ // but keeping them avoids their contents being surfaced as plain text.
4651
+ 'html',
4652
+ 'head',
4653
+ 'body',
4654
+ 'title',
4655
+ 'meta',
4656
+ // Preserve embedded email CSS.
4657
+ 'style',
4658
+ // Preserve table column sizing when using <colgroup>/<col>.
4659
+ 'colgroup',
4660
+ 'col',
4661
+ 'center', // Deprecated but widely used in email
4662
+ 'font', // Deprecated but widely used in email
4663
+ ]
4664
+ });
4662
4665
  /**
4663
4666
  * Validates and normalizes potentially dangerous URL attributes.
4664
4667
  *
@@ -1 +1 @@
1
- import{p as e,g as l,b as a}from"./p-DBTJNfo7.js";export{s as setNonce}from"./p-DBTJNfo7.js";(()=>{const l=import.meta.url,a={};return""!==l&&(a.resourcesUrl=new URL(".",l).href),e(a)})().then((async e=>(await l(),a(JSON.parse('[["p-5c804a58",[[257,"limel-card",{"heading":[513],"subheading":[513],"image":[16],"icon":[513],"value":[1],"actions":[16],"clickable":[516],"orientation":[513],"canScrollUp":[32],"canScrollDown":[32]}]]],["p-caaab537",[[1,"limel-file",{"value":[16],"label":[513],"required":[516],"disabled":[516],"readonly":[516],"invalid":[516],"accept":[513],"language":[1]}]]],["p-5587ddd2",[[1,"limel-file-viewer",{"url":[513],"filename":[513],"alt":[513],"allowFullscreen":[516,"allow-fullscreen"],"allowOpenInNewTab":[516,"allow-open-in-new-tab"],"allowDownload":[516,"allow-download"],"language":[1],"officeViewer":[513,"office-viewer"],"actions":[16],"isFullscreen":[32],"fileType":[32],"loading":[32],"fileUrl":[32],"email":[32]},null,{"url":[{"watchUrl":0}]}]]],["p-4610d398",[[0,"limel-list-item",{"language":[513],"value":[8],"text":[513],"secondaryText":[513,"secondary-text"],"disabled":[516],"icon":[1],"iconSize":[513,"icon-size"],"badgeIcon":[516,"badge-icon"],"selected":[516],"actions":[16],"primaryComponent":[16],"image":[16],"type":[513]}]]],["p-8e6a36a7",[[17,"limel-picker",{"disabled":[4],"readonly":[516],"label":[1],"searchLabel":[1,"search-label"],"helperText":[513,"helper-text"],"leadingIcon":[1,"leading-icon"],"emptyResultMessage":[1,"empty-result-message"],"required":[4],"invalid":[516],"value":[16],"searcher":[16],"allItems":[16],"multiple":[4],"delimiter":[513],"actions":[16],"actionPosition":[1,"action-position"],"actionScrollBehavior":[1,"action-scroll-behavior"],"badgeIcons":[516,"badge-icons"],"items":[32],"textValue":[32],"loading":[32],"chips":[32]},null,{"disabled":[{"onDisabledChange":0}],"value":[{"onChangeValue":0}]}]]],["p-e00a96bd",[[17,"limel-split-button",{"label":[513],"primary":[516],"icon":[513],"disabled":[516],"loading":[516],"loadingFailed":[516,"loading-failed"],"items":[16]}]]],["p-3ad102a1",[[1,"limel-color-picker",{"value":[513],"label":[513],"helperText":[513,"helper-text"],"tooltipLabel":[513,"tooltip-label"],"required":[516],"disabled":[516],"readonly":[516],"invalid":[516],"placeholder":[513],"manualInput":[516,"manual-input"],"palette":[16],"paletteColumnCount":[514,"palette-column-count"],"isOpen":[32]}]]],["p-d5bbfe2c",[[1,"limel-profile-picture",{"language":[513],"label":[513],"icon":[1],"helperText":[1,"helper-text"],"disabled":[516],"readonly":[516],"required":[516],"invalid":[516],"loading":[516],"value":[1],"imageFit":[513,"image-fit"],"accept":[513],"resize":[16],"objectUrl":[32],"imageError":[32],"isErrorMessagePopoverOpen":[32]},null,{"value":[{"handleValueChange":0}]}]]],["p-8ec92025",[[1,"limel-date-picker",{"disabled":[516],"readonly":[516],"invalid":[516],"label":[513],"placeholder":[513],"helperText":[513,"helper-text"],"required":[516],"value":[16],"type":[513],"format":[513],"language":[513],"formatter":[16],"internalFormat":[32],"showPortal":[32]}]]],["p-d53b8de5",[[1,"limel-dock",{"dockItems":[16],"dockFooterItems":[16],"accessibleLabel":[513,"accessible-label"],"expanded":[516],"allowResize":[516,"allow-resize"],"mobileBreakPoint":[514,"mobile-break-point"],"useMobileLayout":[32]}]]],["p-73655c23",[[1,"limel-snackbar",{"open":[516],"message":[1],"timeout":[514],"actionText":[1,"action-text"],"dismissible":[4],"multiline":[4],"language":[1],"offset":[32],"isOpen":[32],"closing":[32],"show":[64]},[[0,"changeOffset","onChangeIndex"]],{"open":[{"watchOpen":0}]}]]],["p-50300a44",[[1,"limel-select",{"disabled":[516],"readonly":[516],"invalid":[516],"required":[516],"label":[513],"helperText":[513,"helper-text"],"value":[16],"options":[16],"multiple":[4],"menuOpen":[32]},null,{"menuOpen":[{"watchOpen":0}]}]]],["p-accc6cc0",[[1,"limel-button-group",{"value":[16],"disabled":[516],"selectedButtonId":[32]},null,{"value":[{"valueChanged":0}]}]]],["p-eec6e88c",[[1,"limel-chart",{"language":[513],"accessibleLabel":[513,"accessible-label"],"accessibleItemsLabel":[513,"accessible-items-label"],"accessibleValuesLabel":[513,"accessible-values-label"],"displayAxisLabels":[516,"display-axis-labels"],"displayItemText":[516,"display-item-text"],"displayItemValue":[516,"display-item-value"],"items":[16],"type":[513],"orientation":[513],"maxValue":[514,"max-value"],"axisIncrement":[514,"axis-increment"],"loading":[516]},null,{"items":[{"handleChange":0}],"axisIncrement":[{"handleChange":0}],"maxValue":[{"handleChange":0}]}]]],["p-46b95d7c",[[1,"limel-help",{"value":[1],"trigger":[1],"readMoreLink":[16],"openDirection":[513,"open-direction"],"isOpen":[32]}]]],["p-40883e25",[[257,"limel-info-tile",{"value":[520],"icon":[1],"label":[513],"prefix":[513],"suffix":[513],"disabled":[516],"badge":[520],"loading":[516],"link":[16],"progress":[16],"hasPrimarySlot":[32]}]]],["p-fce93153",[[0,"limel-drag-handle",{"dragDirection":[513,"drag-direction"],"tooltipOpenDirection":[513,"tooltip-open-direction"],"language":[513]}]]],["p-912f53a3",[[1,"limel-shortcut",{"icon":[513],"label":[513],"disabled":[516],"badge":[520],"link":[16]}]]],["p-644911cc",[[1,"limel-switch",{"label":[513],"disabled":[516],"readonly":[516],"invalid":[516],"value":[516],"helperText":[513,"helper-text"],"readonlyLabels":[16],"fieldId":[32]},null,{"value":[{"valueWatcher":0}]}]]],["p-5f593160",[[257,"limel-tab-panel",{"tabs":[1040]},null,{"tabs":[{"tabsChanged":0}]}]]],["p-13ba3044",[[1,"limel-code-editor",{"value":[1],"language":[1],"readonly":[516],"disabled":[516],"invalid":[516],"required":[516],"label":[513],"helperText":[513,"helper-text"],"lineNumbers":[516,"line-numbers"],"lineWrapping":[516,"line-wrapping"],"fold":[516],"lint":[516],"colorScheme":[513,"color-scheme"],"translationLanguage":[513,"translation-language"],"showCopyButton":[516,"show-copy-button"],"random":[32],"wasCopied":[32]},null,{"value":[{"watchValue":0}],"disabled":[{"watchDisabled":0}],"readonly":[{"watchReadonly":0}],"invalid":[{"watchInvalid":0}],"required":[{"watchRequired":0}],"helperText":[{"watchHelperText":0}]}]]],["p-f49e5d8a",[[257,"limel-dialog",{"heading":[1],"fullscreen":[516],"open":[1540],"closingActions":[16]},null,{"open":[{"watchHandler":0}],"closingActions":[{"closingActionsChanged":0}]}]]],["p-33bd5212",[[1,"limel-progress-flow",{"flowItems":[16],"disabled":[4],"readonly":[4]}]]],["p-5280d11e",[[1,"limel-slider",{"disabled":[516],"readonly":[516],"factor":[514],"label":[513],"helperText":[513,"helper-text"],"required":[516],"invalid":[516],"displaysPercentageColors":[516,"displays-percentage-colors"],"unit":[513],"value":[514],"valuemax":[514],"valuemin":[514],"step":[514],"percentageClass":[32]},null,{"disabled":[{"watchDisabled":0}],"readonly":[{"watchReadonly":0}],"value":[{"watchValue":0}]}]]],["p-57c53ed4",[[257,"limel-banner",{"message":[513],"icon":[513],"isOpen":[32],"open":[64],"close":[64]}]]],["p-bc4b4e46",[[1,"limel-form",{"schema":[16],"value":[16],"disabled":[4],"propsFactory":[16],"transformErrors":[16],"errors":[16]},null,{"schema":[{"setSchema":0}]}]]],["p-78fffaa9",[[1,"limel-menu-item-meta",{"commandText":[1,"command-text"],"badge":[8],"showChevron":[4,"show-chevron"]}]]],["p-8eff8a18",[[0,"limel-radio-button-group",{"items":[16],"selectedItem":[16],"disabled":[516],"badgeIcons":[516,"badge-icons"],"maxLinesSecondaryText":[514,"max-lines-secondary-text"]}]]],["p-e78739e2",[[1,"limel-ai-avatar",{"isThinking":[516,"is-thinking"],"language":[513]}]]],["p-00e54ccf",[[1,"limel-config",{"config":[16]}]]],["p-16a5f421",[[257,"limel-flex-container",{"direction":[513],"justify":[513],"align":[513],"reverse":[516]}]]],["p-b255e8e6",[[257,"limel-grid"]]],["p-97f719ae",[[1,"limel-icon",{"size":[513],"name":[513],"badge":[516]},null,{"name":[{"loadIcon":0}]}]]],["p-1b0eec07",[[17,"limel-text-editor",{"contentType":[1,"content-type"],"language":[513],"disabled":[516],"readonly":[516],"helperText":[513,"helper-text"],"placeholder":[513],"label":[513],"invalid":[516],"value":[513],"customElements":[16],"triggers":[16],"required":[516],"allowResize":[516,"allow-resize"],"ui":[513]}]]],["p-4bac6803",[[257,"limel-email-viewer",{"email":[16],"fallbackUrl":[513,"fallback-url"],"language":[513],"allowRemoteImages":[4,"allow-remote-images"],"allowRemoteImagesState":[32]},null,{"email":[{"resetAllowRemoteImages":0}]}]]],["p-444c7966",[[1,"limel-checkbox",{"disabled":[516],"readonly":[516],"invalid":[516],"label":[513],"helperText":[513,"helper-text"],"checked":[516],"indeterminate":[516],"required":[516],"readonlyLabels":[16],"modified":[32]},null,{"checked":[{"handleCheckedChange":0}],"indeterminate":[{"handleIndeterminateChange":0}],"readonly":[{"handleReadonlyChange":0}]}]]],["p-4db1033c",[[1,"limel-table",{"data":[16],"columns":[16],"mode":[1],"layout":[1],"pageSize":[2,"page-size"],"totalRows":[2,"total-rows"],"sorting":[16],"activeRow":[1040],"movableColumns":[4,"movable-columns"],"sortableColumns":[4,"sortable-columns"],"loading":[4],"page":[2],"emptyMessage":[1,"empty-message"],"aggregates":[16],"selectable":[4],"selection":[16],"language":[513],"paginationLocation":[513,"pagination-location"]},null,{"totalRows":[{"totalRowsChanged":0}],"pageSize":[{"pageSizeChanged":0}],"page":[{"pageChanged":0}],"activeRow":[{"activeRowChanged":0}],"data":[{"updateData":0}],"columns":[{"updateColumns":0}],"aggregates":[{"updateAggregates":0}],"selection":[{"updateSelection":0}],"selectable":[{"updateSelectable":0}],"sortableColumns":[{"updateSortableColumns":0}],"sorting":[{"updateSorting":0}]}]]],["p-1c6dd14c",[[17,"limel-prosemirror-adapter",{"contentType":[1,"content-type"],"value":[1],"language":[513],"disabled":[516],"customElements":[16],"triggerCharacters":[16],"ui":[1],"view":[32],"actionBarItems":[32],"link":[32],"isLinkMenuOpen":[32]},null,{"value":[{"watchValue":0}]}]]],["p-911db0aa",[[17,"limel-color-picker-palette",{"value":[513],"label":[513],"helperText":[513,"helper-text"],"placeholder":[513],"required":[516],"invalid":[516],"manualInput":[516,"manual-input"],"columnCount":[514,"column-count"],"palette":[16]}]]],["p-c5f15334",[[0,"limel-dock-button",{"item":[16],"expanded":[516],"useMobileLayout":[516,"use-mobile-layout"],"isOpen":[32]},null,{"isOpen":[{"openWatcher":0}]}]]],["p-10ba834c",[[1,"limel-tab-bar",{"tabs":[1040],"canScrollLeft":[32],"canScrollRight":[32]},[[9,"resize","handleWindowResize"]],{"tabs":[{"tabsChanged":0}]}]]],["p-ee7d2cf9",[[257,"limel-callout",{"heading":[513],"icon":[513],"type":[513],"language":[1]}]]],["p-8118cd4f",[[257,"limel-header",{"icon":[1],"heading":[1],"subheading":[1],"supportingText":[1,"supporting-text"],"subheadingDivider":[1,"subheading-divider"]}]]],["p-fdfecf3d",[[1,"limel-help-content",{"value":[1],"readMoreLink":[16]}]]],["p-198f3179",[[0,"limel-progress-flow-item",{"item":[16],"disabled":[4],"readonly":[4],"currentStep":[4,"current-step"]}]]],["p-d6d177bc",[[1,"limel-circular-progress",{"value":[2],"maxValue":[2,"max-value"],"prefix":[513],"suffix":[1],"displayPercentageColors":[4,"display-percentage-colors"],"size":[513]}]]],["p-d8936f4d",[[1,"limel-flatpickr-adapter",{"value":[16],"type":[1],"format":[1],"isOpen":[4,"is-open"],"inputElement":[16],"language":[1],"formatter":[16]}]]],["p-8c6dfb19",[[0,"limel-radio-button",{"checked":[516],"disabled":[516],"id":[1],"label":[1],"onChange":[16]}]]],["p-60f12574",[[1,"limel-tooltip",{"elementId":[513,"element-id"],"label":[513],"helperLabel":[513,"helper-label"],"maxlength":[514],"openDirection":[513,"open-direction"],"open":[32]}],[1,"limel-tooltip-content",{"label":[513],"helperLabel":[513,"helper-label"],"maxlength":[514]}],[257,"limel-portal",{"openDirection":[513,"open-direction"],"position":[513],"containerId":[513,"container-id"],"containerStyle":[16],"inheritParentWidth":[516,"inherit-parent-width"],"visible":[516],"anchor":[16]},null,{"visible":[{"onVisible":0}]}]]],["p-b04514b0",[[257,"limel-collapsible-section",{"isOpen":[1540,"is-open"],"header":[513],"icon":[1],"invalid":[516],"actions":[16],"language":[513]}]]],["p-b8a31121",[[1,"limel-3d-hover-effect-glow"]]],["p-7dd4e4bb",[[257,"limel-file-dropzone",{"accept":[513],"disabled":[4],"text":[1],"helperText":[1,"helper-text"],"hasFileToDrop":[32]}],[257,"limel-file-input",{"accept":[513],"disabled":[516],"multiple":[516]}]]],["p-5da0315f",[[1,"limel-dynamic-label",{"value":[8],"defaultLabel":[16],"labels":[16]}]]],["p-268a695b",[[1,"limel-badge",{"label":[520]}]]],["p-b92431c8",[[257,"limel-menu",{"items":[16],"disabled":[516],"openDirection":[513,"open-direction"],"surfaceWidth":[513,"surface-width"],"open":[1540],"badgeIcons":[516,"badge-icons"],"gridLayout":[516,"grid-layout"],"loading":[516],"currentSubMenu":[1040],"rootItem":[16],"searcher":[16],"searchPlaceholder":[1,"search-placeholder"],"emptyResultMessage":[1,"empty-result-message"],"loadingSubItems":[32],"searchValue":[32],"searchResults":[32]},null,{"items":[{"itemsWatcher":0}],"open":[{"openWatcher":0}]}],[1,"limel-breadcrumbs",{"items":[16],"divider":[1]}],[17,"limel-menu-list",{"items":[16],"badgeIcons":[4,"badge-icons"],"iconSize":[1,"icon-size"]},null,{"items":[{"itemsChanged":0}]}],[17,"limel-input-field",{"disabled":[516],"readonly":[516],"invalid":[516],"label":[513],"placeholder":[513],"helperText":[513,"helper-text"],"prefix":[513],"suffix":[513],"required":[516],"value":[513],"trailingIcon":[513,"trailing-icon"],"leadingIcon":[513,"leading-icon"],"pattern":[513],"type":[513],"formatNumber":[516,"format-number"],"step":[520],"max":[514],"min":[514],"maxlength":[514],"minlength":[514],"completions":[16],"showLink":[516,"show-link"],"locale":[513],"isFocused":[32],"wasInvalid":[32],"showCompletions":[32],"getSelectionStart":[64],"getSelectionEnd":[64],"getSelectionDirection":[64]},null,{"value":[{"valueWatcher":0}],"completions":[{"completionsWatcher":0}]}],[257,"limel-menu-surface",{"open":[4],"allowClicksElement":[16]}],[1,"limel-spinner",{"size":[513],"limeBranded":[4,"lime-branded"]}],[17,"limel-list",{"items":[16],"badgeIcons":[4,"badge-icons"],"iconSize":[1,"icon-size"],"type":[1],"maxLinesSecondaryText":[2,"max-lines-secondary-text"]},null,{"type":[{"handleType":0}],"items":[{"itemsChanged":0}]}]]],["p-b13d7896",[[17,"limel-chip-set",{"value":[16],"type":[513],"label":[513],"helperText":[513,"helper-text"],"disabled":[516],"readonly":[516],"invalid":[516],"inputType":[513,"input-type"],"maxItems":[514,"max-items"],"required":[516],"searchLabel":[513,"search-label"],"emptyInputOnBlur":[516,"empty-input-on-blur"],"clearAllButton":[4,"clear-all-button"],"leadingIcon":[513,"leading-icon"],"delimiter":[513],"autocomplete":[513],"language":[1],"editMode":[32],"textValue":[32],"blurred":[32],"inputChipIndexSelected":[32],"selectedChipIds":[32],"getEditMode":[64],"setFocus":[64],"emptyInput":[64]},null,{"value":[{"handleChangeChips":0}]}],[17,"limel-chip",{"language":[513],"text":[513],"icon":[1],"image":[16],"link":[16],"badge":[520],"disabled":[516],"readonly":[516],"selected":[516],"invalid":[516],"removable":[516],"type":[513],"loading":[516],"progress":[514],"identifier":[520],"size":[513],"menuItems":[16]}]]],["p-a855de67",[[17,"limel-button",{"label":[513],"primary":[516],"outlined":[516],"icon":[513],"disabled":[516],"loading":[516],"loadingFailed":[516,"loading-failed"],"justLoaded":[32]},null,{"loading":[{"loadingWatcher":0}]}]]],["p-854a3ffe",[[0,"limel-action-bar-overflow-menu",{"items":[16],"openDirection":[513,"open-direction"],"overFlowIcon":[16]}],[0,"limel-action-bar-item",{"item":[16],"isVisible":[516,"is-visible"],"selected":[516]}]]],["p-dd8f49ca",[[1,"limel-text-editor-link-menu",{"link":[16],"language":[513],"isOpen":[516,"is-open"]}],[1,"limel-action-bar",{"actions":[16],"language":[513],"accessibleLabel":[513,"accessible-label"],"layout":[513],"collapsible":[516],"openDirection":[513,"open-direction"],"overflowCutoff":[32],"actionBarIsShrunk":[32]}]]],["p-5def4700",[[1,"limel-linear-progress",{"language":[513],"value":[514],"indeterminate":[516],"accessibleLabel":[513,"accessible-label"]},null,{"value":[{"watchValue":0}]}]]],["p-889d0000",[[17,"limel-icon-button",{"icon":[1],"elevated":[516],"label":[513],"disabled":[516]}]]],["p-d9a7a188",[[1,"limel-markdown",{"value":[1],"whitelist":[16],"lazyLoadImages":[516,"lazy-load-images"],"removeEmptyParagraphs":[516,"remove-empty-paragraphs"]},null,{"value":[{"textChanged":0}],"removeEmptyParagraphs":[{"handleRemoveEmptyParagraphsChange":0}]}]]],["p-58176f7b",[[257,"limel-popover",{"open":[4],"openDirection":[513,"open-direction"]},null,{"open":[{"watchOpen":0}]}],[1,"limel-popover-surface",{"contentCollection":[16]}]]],["p-13d0ec04",[[260,"limel-notched-outline",{"required":[516],"readonly":[516],"invalid":[516],"disabled":[516],"label":[513],"labelId":[513,"label-id"],"hasValue":[516,"has-value"],"hasLeadingIcon":[516,"has-leading-icon"],"hasFloatingLabel":[516,"has-floating-label"]}],[1,"limel-helper-line",{"helperText":[513,"helper-text"],"length":[514],"maxLength":[514,"max-length"],"invalid":[516],"helperTextId":[513,"helper-text-id"]}]]]]'),e))));
1
+ import{p as e,g as l,b as a}from"./p-DBTJNfo7.js";export{s as setNonce}from"./p-DBTJNfo7.js";(()=>{const l=import.meta.url,a={};return""!==l&&(a.resourcesUrl=new URL(".",l).href),e(a)})().then((async e=>(await l(),a(JSON.parse('[["p-5c804a58",[[257,"limel-card",{"heading":[513],"subheading":[513],"image":[16],"icon":[513],"value":[1],"actions":[16],"clickable":[516],"orientation":[513],"canScrollUp":[32],"canScrollDown":[32]}]]],["p-caaab537",[[1,"limel-file",{"value":[16],"label":[513],"required":[516],"disabled":[516],"readonly":[516],"invalid":[516],"accept":[513],"language":[1]}]]],["p-656b8f6e",[[1,"limel-file-viewer",{"url":[513],"filename":[513],"alt":[513],"allowFullscreen":[516,"allow-fullscreen"],"allowOpenInNewTab":[516,"allow-open-in-new-tab"],"allowDownload":[516,"allow-download"],"language":[1],"officeViewer":[513,"office-viewer"],"actions":[16],"isFullscreen":[32],"fileType":[32],"loading":[32],"fileUrl":[32],"email":[32]},null,{"url":[{"watchUrl":0}]}]]],["p-4610d398",[[0,"limel-list-item",{"language":[513],"value":[8],"text":[513],"secondaryText":[513,"secondary-text"],"disabled":[516],"icon":[1],"iconSize":[513,"icon-size"],"badgeIcon":[516,"badge-icon"],"selected":[516],"actions":[16],"primaryComponent":[16],"image":[16],"type":[513]}]]],["p-8e6a36a7",[[17,"limel-picker",{"disabled":[4],"readonly":[516],"label":[1],"searchLabel":[1,"search-label"],"helperText":[513,"helper-text"],"leadingIcon":[1,"leading-icon"],"emptyResultMessage":[1,"empty-result-message"],"required":[4],"invalid":[516],"value":[16],"searcher":[16],"allItems":[16],"multiple":[4],"delimiter":[513],"actions":[16],"actionPosition":[1,"action-position"],"actionScrollBehavior":[1,"action-scroll-behavior"],"badgeIcons":[516,"badge-icons"],"items":[32],"textValue":[32],"loading":[32],"chips":[32]},null,{"disabled":[{"onDisabledChange":0}],"value":[{"onChangeValue":0}]}]]],["p-e00a96bd",[[17,"limel-split-button",{"label":[513],"primary":[516],"icon":[513],"disabled":[516],"loading":[516],"loadingFailed":[516,"loading-failed"],"items":[16]}]]],["p-3ad102a1",[[1,"limel-color-picker",{"value":[513],"label":[513],"helperText":[513,"helper-text"],"tooltipLabel":[513,"tooltip-label"],"required":[516],"disabled":[516],"readonly":[516],"invalid":[516],"placeholder":[513],"manualInput":[516,"manual-input"],"palette":[16],"paletteColumnCount":[514,"palette-column-count"],"isOpen":[32]}]]],["p-d5bbfe2c",[[1,"limel-profile-picture",{"language":[513],"label":[513],"icon":[1],"helperText":[1,"helper-text"],"disabled":[516],"readonly":[516],"required":[516],"invalid":[516],"loading":[516],"value":[1],"imageFit":[513,"image-fit"],"accept":[513],"resize":[16],"objectUrl":[32],"imageError":[32],"isErrorMessagePopoverOpen":[32]},null,{"value":[{"handleValueChange":0}]}]]],["p-8ec92025",[[1,"limel-date-picker",{"disabled":[516],"readonly":[516],"invalid":[516],"label":[513],"placeholder":[513],"helperText":[513,"helper-text"],"required":[516],"value":[16],"type":[513],"format":[513],"language":[513],"formatter":[16],"internalFormat":[32],"showPortal":[32]}]]],["p-d53b8de5",[[1,"limel-dock",{"dockItems":[16],"dockFooterItems":[16],"accessibleLabel":[513,"accessible-label"],"expanded":[516],"allowResize":[516,"allow-resize"],"mobileBreakPoint":[514,"mobile-break-point"],"useMobileLayout":[32]}]]],["p-73655c23",[[1,"limel-snackbar",{"open":[516],"message":[1],"timeout":[514],"actionText":[1,"action-text"],"dismissible":[4],"multiline":[4],"language":[1],"offset":[32],"isOpen":[32],"closing":[32],"show":[64]},[[0,"changeOffset","onChangeIndex"]],{"open":[{"watchOpen":0}]}]]],["p-50300a44",[[1,"limel-select",{"disabled":[516],"readonly":[516],"invalid":[516],"required":[516],"label":[513],"helperText":[513,"helper-text"],"value":[16],"options":[16],"multiple":[4],"menuOpen":[32]},null,{"menuOpen":[{"watchOpen":0}]}]]],["p-accc6cc0",[[1,"limel-button-group",{"value":[16],"disabled":[516],"selectedButtonId":[32]},null,{"value":[{"valueChanged":0}]}]]],["p-eec6e88c",[[1,"limel-chart",{"language":[513],"accessibleLabel":[513,"accessible-label"],"accessibleItemsLabel":[513,"accessible-items-label"],"accessibleValuesLabel":[513,"accessible-values-label"],"displayAxisLabels":[516,"display-axis-labels"],"displayItemText":[516,"display-item-text"],"displayItemValue":[516,"display-item-value"],"items":[16],"type":[513],"orientation":[513],"maxValue":[514,"max-value"],"axisIncrement":[514,"axis-increment"],"loading":[516]},null,{"items":[{"handleChange":0}],"axisIncrement":[{"handleChange":0}],"maxValue":[{"handleChange":0}]}]]],["p-46b95d7c",[[1,"limel-help",{"value":[1],"trigger":[1],"readMoreLink":[16],"openDirection":[513,"open-direction"],"isOpen":[32]}]]],["p-40883e25",[[257,"limel-info-tile",{"value":[520],"icon":[1],"label":[513],"prefix":[513],"suffix":[513],"disabled":[516],"badge":[520],"loading":[516],"link":[16],"progress":[16],"hasPrimarySlot":[32]}]]],["p-fce93153",[[0,"limel-drag-handle",{"dragDirection":[513,"drag-direction"],"tooltipOpenDirection":[513,"tooltip-open-direction"],"language":[513]}]]],["p-912f53a3",[[1,"limel-shortcut",{"icon":[513],"label":[513],"disabled":[516],"badge":[520],"link":[16]}]]],["p-644911cc",[[1,"limel-switch",{"label":[513],"disabled":[516],"readonly":[516],"invalid":[516],"value":[516],"helperText":[513,"helper-text"],"readonlyLabels":[16],"fieldId":[32]},null,{"value":[{"valueWatcher":0}]}]]],["p-5f593160",[[257,"limel-tab-panel",{"tabs":[1040]},null,{"tabs":[{"tabsChanged":0}]}]]],["p-13ba3044",[[1,"limel-code-editor",{"value":[1],"language":[1],"readonly":[516],"disabled":[516],"invalid":[516],"required":[516],"label":[513],"helperText":[513,"helper-text"],"lineNumbers":[516,"line-numbers"],"lineWrapping":[516,"line-wrapping"],"fold":[516],"lint":[516],"colorScheme":[513,"color-scheme"],"translationLanguage":[513,"translation-language"],"showCopyButton":[516,"show-copy-button"],"random":[32],"wasCopied":[32]},null,{"value":[{"watchValue":0}],"disabled":[{"watchDisabled":0}],"readonly":[{"watchReadonly":0}],"invalid":[{"watchInvalid":0}],"required":[{"watchRequired":0}],"helperText":[{"watchHelperText":0}]}]]],["p-f49e5d8a",[[257,"limel-dialog",{"heading":[1],"fullscreen":[516],"open":[1540],"closingActions":[16]},null,{"open":[{"watchHandler":0}],"closingActions":[{"closingActionsChanged":0}]}]]],["p-33bd5212",[[1,"limel-progress-flow",{"flowItems":[16],"disabled":[4],"readonly":[4]}]]],["p-5280d11e",[[1,"limel-slider",{"disabled":[516],"readonly":[516],"factor":[514],"label":[513],"helperText":[513,"helper-text"],"required":[516],"invalid":[516],"displaysPercentageColors":[516,"displays-percentage-colors"],"unit":[513],"value":[514],"valuemax":[514],"valuemin":[514],"step":[514],"percentageClass":[32]},null,{"disabled":[{"watchDisabled":0}],"readonly":[{"watchReadonly":0}],"value":[{"watchValue":0}]}]]],["p-57c53ed4",[[257,"limel-banner",{"message":[513],"icon":[513],"isOpen":[32],"open":[64],"close":[64]}]]],["p-bc4b4e46",[[1,"limel-form",{"schema":[16],"value":[16],"disabled":[4],"propsFactory":[16],"transformErrors":[16],"errors":[16]},null,{"schema":[{"setSchema":0}]}]]],["p-78fffaa9",[[1,"limel-menu-item-meta",{"commandText":[1,"command-text"],"badge":[8],"showChevron":[4,"show-chevron"]}]]],["p-8eff8a18",[[0,"limel-radio-button-group",{"items":[16],"selectedItem":[16],"disabled":[516],"badgeIcons":[516,"badge-icons"],"maxLinesSecondaryText":[514,"max-lines-secondary-text"]}]]],["p-e78739e2",[[1,"limel-ai-avatar",{"isThinking":[516,"is-thinking"],"language":[513]}]]],["p-00e54ccf",[[1,"limel-config",{"config":[16]}]]],["p-16a5f421",[[257,"limel-flex-container",{"direction":[513],"justify":[513],"align":[513],"reverse":[516]}]]],["p-b255e8e6",[[257,"limel-grid"]]],["p-97f719ae",[[1,"limel-icon",{"size":[513],"name":[513],"badge":[516]},null,{"name":[{"loadIcon":0}]}]]],["p-1b0eec07",[[17,"limel-text-editor",{"contentType":[1,"content-type"],"language":[513],"disabled":[516],"readonly":[516],"helperText":[513,"helper-text"],"placeholder":[513],"label":[513],"invalid":[516],"value":[513],"customElements":[16],"triggers":[16],"required":[516],"allowResize":[516,"allow-resize"],"ui":[513]}]]],["p-4bac6803",[[257,"limel-email-viewer",{"email":[16],"fallbackUrl":[513,"fallback-url"],"language":[513],"allowRemoteImages":[4,"allow-remote-images"],"allowRemoteImagesState":[32]},null,{"email":[{"resetAllowRemoteImages":0}]}]]],["p-444c7966",[[1,"limel-checkbox",{"disabled":[516],"readonly":[516],"invalid":[516],"label":[513],"helperText":[513,"helper-text"],"checked":[516],"indeterminate":[516],"required":[516],"readonlyLabels":[16],"modified":[32]},null,{"checked":[{"handleCheckedChange":0}],"indeterminate":[{"handleIndeterminateChange":0}],"readonly":[{"handleReadonlyChange":0}]}]]],["p-4db1033c",[[1,"limel-table",{"data":[16],"columns":[16],"mode":[1],"layout":[1],"pageSize":[2,"page-size"],"totalRows":[2,"total-rows"],"sorting":[16],"activeRow":[1040],"movableColumns":[4,"movable-columns"],"sortableColumns":[4,"sortable-columns"],"loading":[4],"page":[2],"emptyMessage":[1,"empty-message"],"aggregates":[16],"selectable":[4],"selection":[16],"language":[513],"paginationLocation":[513,"pagination-location"]},null,{"totalRows":[{"totalRowsChanged":0}],"pageSize":[{"pageSizeChanged":0}],"page":[{"pageChanged":0}],"activeRow":[{"activeRowChanged":0}],"data":[{"updateData":0}],"columns":[{"updateColumns":0}],"aggregates":[{"updateAggregates":0}],"selection":[{"updateSelection":0}],"selectable":[{"updateSelectable":0}],"sortableColumns":[{"updateSortableColumns":0}],"sorting":[{"updateSorting":0}]}]]],["p-1c6dd14c",[[17,"limel-prosemirror-adapter",{"contentType":[1,"content-type"],"value":[1],"language":[513],"disabled":[516],"customElements":[16],"triggerCharacters":[16],"ui":[1],"view":[32],"actionBarItems":[32],"link":[32],"isLinkMenuOpen":[32]},null,{"value":[{"watchValue":0}]}]]],["p-911db0aa",[[17,"limel-color-picker-palette",{"value":[513],"label":[513],"helperText":[513,"helper-text"],"placeholder":[513],"required":[516],"invalid":[516],"manualInput":[516,"manual-input"],"columnCount":[514,"column-count"],"palette":[16]}]]],["p-c5f15334",[[0,"limel-dock-button",{"item":[16],"expanded":[516],"useMobileLayout":[516,"use-mobile-layout"],"isOpen":[32]},null,{"isOpen":[{"openWatcher":0}]}]]],["p-10ba834c",[[1,"limel-tab-bar",{"tabs":[1040],"canScrollLeft":[32],"canScrollRight":[32]},[[9,"resize","handleWindowResize"]],{"tabs":[{"tabsChanged":0}]}]]],["p-ee7d2cf9",[[257,"limel-callout",{"heading":[513],"icon":[513],"type":[513],"language":[1]}]]],["p-8118cd4f",[[257,"limel-header",{"icon":[1],"heading":[1],"subheading":[1],"supportingText":[1,"supporting-text"],"subheadingDivider":[1,"subheading-divider"]}]]],["p-fdfecf3d",[[1,"limel-help-content",{"value":[1],"readMoreLink":[16]}]]],["p-198f3179",[[0,"limel-progress-flow-item",{"item":[16],"disabled":[4],"readonly":[4],"currentStep":[4,"current-step"]}]]],["p-d6d177bc",[[1,"limel-circular-progress",{"value":[2],"maxValue":[2,"max-value"],"prefix":[513],"suffix":[1],"displayPercentageColors":[4,"display-percentage-colors"],"size":[513]}]]],["p-d8936f4d",[[1,"limel-flatpickr-adapter",{"value":[16],"type":[1],"format":[1],"isOpen":[4,"is-open"],"inputElement":[16],"language":[1],"formatter":[16]}]]],["p-8c6dfb19",[[0,"limel-radio-button",{"checked":[516],"disabled":[516],"id":[1],"label":[1],"onChange":[16]}]]],["p-60f12574",[[1,"limel-tooltip",{"elementId":[513,"element-id"],"label":[513],"helperLabel":[513,"helper-label"],"maxlength":[514],"openDirection":[513,"open-direction"],"open":[32]}],[1,"limel-tooltip-content",{"label":[513],"helperLabel":[513,"helper-label"],"maxlength":[514]}],[257,"limel-portal",{"openDirection":[513,"open-direction"],"position":[513],"containerId":[513,"container-id"],"containerStyle":[16],"inheritParentWidth":[516,"inherit-parent-width"],"visible":[516],"anchor":[16]},null,{"visible":[{"onVisible":0}]}]]],["p-b04514b0",[[257,"limel-collapsible-section",{"isOpen":[1540,"is-open"],"header":[513],"icon":[1],"invalid":[516],"actions":[16],"language":[513]}]]],["p-b8a31121",[[1,"limel-3d-hover-effect-glow"]]],["p-7dd4e4bb",[[257,"limel-file-dropzone",{"accept":[513],"disabled":[4],"text":[1],"helperText":[1,"helper-text"],"hasFileToDrop":[32]}],[257,"limel-file-input",{"accept":[513],"disabled":[516],"multiple":[516]}]]],["p-5da0315f",[[1,"limel-dynamic-label",{"value":[8],"defaultLabel":[16],"labels":[16]}]]],["p-268a695b",[[1,"limel-badge",{"label":[520]}]]],["p-b92431c8",[[257,"limel-menu",{"items":[16],"disabled":[516],"openDirection":[513,"open-direction"],"surfaceWidth":[513,"surface-width"],"open":[1540],"badgeIcons":[516,"badge-icons"],"gridLayout":[516,"grid-layout"],"loading":[516],"currentSubMenu":[1040],"rootItem":[16],"searcher":[16],"searchPlaceholder":[1,"search-placeholder"],"emptyResultMessage":[1,"empty-result-message"],"loadingSubItems":[32],"searchValue":[32],"searchResults":[32]},null,{"items":[{"itemsWatcher":0}],"open":[{"openWatcher":0}]}],[1,"limel-breadcrumbs",{"items":[16],"divider":[1]}],[17,"limel-menu-list",{"items":[16],"badgeIcons":[4,"badge-icons"],"iconSize":[1,"icon-size"]},null,{"items":[{"itemsChanged":0}]}],[17,"limel-input-field",{"disabled":[516],"readonly":[516],"invalid":[516],"label":[513],"placeholder":[513],"helperText":[513,"helper-text"],"prefix":[513],"suffix":[513],"required":[516],"value":[513],"trailingIcon":[513,"trailing-icon"],"leadingIcon":[513,"leading-icon"],"pattern":[513],"type":[513],"formatNumber":[516,"format-number"],"step":[520],"max":[514],"min":[514],"maxlength":[514],"minlength":[514],"completions":[16],"showLink":[516,"show-link"],"locale":[513],"isFocused":[32],"wasInvalid":[32],"showCompletions":[32],"getSelectionStart":[64],"getSelectionEnd":[64],"getSelectionDirection":[64]},null,{"value":[{"valueWatcher":0}],"completions":[{"completionsWatcher":0}]}],[257,"limel-menu-surface",{"open":[4],"allowClicksElement":[16]}],[1,"limel-spinner",{"size":[513],"limeBranded":[4,"lime-branded"]}],[17,"limel-list",{"items":[16],"badgeIcons":[4,"badge-icons"],"iconSize":[1,"icon-size"],"type":[1],"maxLinesSecondaryText":[2,"max-lines-secondary-text"]},null,{"type":[{"handleType":0}],"items":[{"itemsChanged":0}]}]]],["p-b13d7896",[[17,"limel-chip-set",{"value":[16],"type":[513],"label":[513],"helperText":[513,"helper-text"],"disabled":[516],"readonly":[516],"invalid":[516],"inputType":[513,"input-type"],"maxItems":[514,"max-items"],"required":[516],"searchLabel":[513,"search-label"],"emptyInputOnBlur":[516,"empty-input-on-blur"],"clearAllButton":[4,"clear-all-button"],"leadingIcon":[513,"leading-icon"],"delimiter":[513],"autocomplete":[513],"language":[1],"editMode":[32],"textValue":[32],"blurred":[32],"inputChipIndexSelected":[32],"selectedChipIds":[32],"getEditMode":[64],"setFocus":[64],"emptyInput":[64]},null,{"value":[{"handleChangeChips":0}]}],[17,"limel-chip",{"language":[513],"text":[513],"icon":[1],"image":[16],"link":[16],"badge":[520],"disabled":[516],"readonly":[516],"selected":[516],"invalid":[516],"removable":[516],"type":[513],"loading":[516],"progress":[514],"identifier":[520],"size":[513],"menuItems":[16]}]]],["p-a855de67",[[17,"limel-button",{"label":[513],"primary":[516],"outlined":[516],"icon":[513],"disabled":[516],"loading":[516],"loadingFailed":[516,"loading-failed"],"justLoaded":[32]},null,{"loading":[{"loadingWatcher":0}]}]]],["p-854a3ffe",[[0,"limel-action-bar-overflow-menu",{"items":[16],"openDirection":[513,"open-direction"],"overFlowIcon":[16]}],[0,"limel-action-bar-item",{"item":[16],"isVisible":[516,"is-visible"],"selected":[516]}]]],["p-dd8f49ca",[[1,"limel-text-editor-link-menu",{"link":[16],"language":[513],"isOpen":[516,"is-open"]}],[1,"limel-action-bar",{"actions":[16],"language":[513],"accessibleLabel":[513,"accessible-label"],"layout":[513],"collapsible":[516],"openDirection":[513,"open-direction"],"overflowCutoff":[32],"actionBarIsShrunk":[32]}]]],["p-5def4700",[[1,"limel-linear-progress",{"language":[513],"value":[514],"indeterminate":[516],"accessibleLabel":[513,"accessible-label"]},null,{"value":[{"watchValue":0}]}]]],["p-889d0000",[[17,"limel-icon-button",{"icon":[1],"elevated":[516],"label":[513],"disabled":[516]}]]],["p-d9a7a188",[[1,"limel-markdown",{"value":[1],"whitelist":[16],"lazyLoadImages":[516,"lazy-load-images"],"removeEmptyParagraphs":[516,"remove-empty-paragraphs"]},null,{"value":[{"textChanged":0}],"removeEmptyParagraphs":[{"handleRemoveEmptyParagraphsChange":0}]}]]],["p-58176f7b",[[257,"limel-popover",{"open":[4],"openDirection":[513,"open-direction"]},null,{"open":[{"watchOpen":0}]}],[1,"limel-popover-surface",{"contentCollection":[16]}]]],["p-13d0ec04",[[260,"limel-notched-outline",{"required":[516],"readonly":[516],"invalid":[516],"disabled":[516],"label":[513],"labelId":[513,"label-id"],"hasValue":[516,"has-value"],"hasLeadingIcon":[516,"has-leading-icon"],"hasFloatingLabel":[516,"has-floating-label"]}],[1,"limel-helper-line",{"helperText":[513,"helper-text"],"length":[514],"maxLength":[514,"max-length"],"invalid":[516],"helperTextId":[513,"helper-text-id"]}]]]]'),e))));