urnovl-web-components 0.0.227 → 0.0.229

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.
@@ -47,16 +47,20 @@ const UrShelfItem = class {
47
47
  return count.toString();
48
48
  }
49
49
  render() {
50
- var _a, _b;
50
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
51
51
  if (this.skeleton) {
52
52
  return (index.h(index.Host, { class: "shelf-item skeleton" }, index.h("ur-list-item", { class: "shelf-list-item", containerPadding: "0", iconMargin: "0", borderRadius: "8px" }, index.h("div", { slot: "custom", class: "custom-content" }, index.h("div", { class: "shelf-covers-preview" }, index.h("div", { class: "covers-stack skeleton" }, index.h("div", { class: "skeleton-cover loading" }))), index.h("div", { class: "custom-content__info" }, index.h("div", { class: "skeleton-title loading" }), index.h("div", { class: "skeleton-subtitle loading" })), index.h("div", { class: "skeleton-chevron" }, index.h("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none" }, index.h("path", { d: "M9 6L15 12L9 18", stroke: "currentColor", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" })))))));
53
53
  }
54
+ // Return empty state if shelf is undefined
55
+ if (!this.shelf) {
56
+ return null;
57
+ }
54
58
  const displayNovels = this.novels.slice(0, 3);
55
59
  const novelCount = this.totalStoryCount !== undefined ? this.totalStoryCount : this.novels.length;
56
60
  return (index.h(index.Host, null, index.h("ur-list-item", { class: "shelf-list-item", "end-icon": "chevron_right", onClick: this.handleShelfClick, containerPadding: "0", iconMargin: "0", borderRadius: "8px" }, index.h("div", { slot: "custom", class: "custom-content" }, index.h("div", { class: "shelf-covers-preview" }, index.h("div", { class: `covers-stack covers-count-${Math.min(displayNovels.length, 3)}` }, displayNovels.length > 0 ? (displayNovels.map((novel, index$1) => {
57
- var _a, _b;
58
- return (index.h("div", { class: `cover-item cover-${index$1}` }, novel.coverImage ? (index.h("img", { src: novel.coverImage, alt: novel.title, class: "cover-image" })) : (index.h("div", { class: "cover-placeholder" }, index.h("span", null, ((_a = novel.title) === null || _a === void 0 ? void 0 : _a.charAt(0)) || ((_b = this.shelf.name) === null || _b === void 0 ? void 0 : _b.charAt(0)) || '?')))));
59
- })) : (index.h("div", { class: "cover-item cover-0" }, index.h("div", { class: "cover-placeholder" }, index.h("span", null, ((_b = (_a = this.shelf.name) === null || _a === void 0 ? void 0 : _a.charAt(0)) === null || _b === void 0 ? void 0 : _b.toUpperCase()) || '?')))))), index.h("div", { class: "custom-content__info" }, index.h("div", { class: "custom-content__username" }, this.shelf.name), index.h("div", { class: "custom-content__subtitle" }, this.shelf.followerCount !== undefined && (index.h("span", { class: "subtitle-item" }, index.h("span", { class: "stat-number" }, this.formatFollowerCount(this.shelf.followerCount)), "\u00A0", this.shelf.followerCount === 1 ? this.followerText : this.followersText)), novelCount > 0 ? (index.h("span", { class: "subtitle-item" }, index.h("span", { class: "stat-number" }, novelCount), "\u00A0", novelCount === 1 ? this.storyText : this.storiesText)) : (index.h("span", { class: "subtitle-item" }, this.noStoriesText)), this.shelf.owner && !this.isOwnShelf && (index.h("span", { class: "subtitle-item shelf-owner" }, this.shelf.owner.displayName))))))));
61
+ var _a, _b, _c;
62
+ return (index.h("div", { class: `cover-item cover-${index$1}` }, novel.coverImage ? (index.h("img", { src: novel.coverImage, alt: novel.title, class: "cover-image" })) : (index.h("div", { class: "cover-placeholder" }, index.h("span", null, ((_a = novel.title) === null || _a === void 0 ? void 0 : _a.charAt(0)) || ((_c = (_b = this.shelf) === null || _b === void 0 ? void 0 : _b.name) === null || _c === void 0 ? void 0 : _c.charAt(0)) || '?')))));
63
+ })) : (index.h("div", { class: "cover-item cover-0" }, index.h("div", { class: "cover-placeholder" }, index.h("span", null, ((_c = (_b = (_a = this.shelf) === null || _a === void 0 ? void 0 : _a.name) === null || _b === void 0 ? void 0 : _b.charAt(0)) === null || _c === void 0 ? void 0 : _c.toUpperCase()) || '?')))))), index.h("div", { class: "custom-content__info" }, index.h("div", { class: "custom-content__username" }, ((_d = this.shelf) === null || _d === void 0 ? void 0 : _d.name) || 'Unknown Shelf'), index.h("div", { class: "custom-content__subtitle" }, ((_e = this.shelf) === null || _e === void 0 ? void 0 : _e.followerCount) !== undefined && (index.h("span", { class: "subtitle-item" }, index.h("span", { class: "stat-number" }, this.formatFollowerCount(((_f = this.shelf) === null || _f === void 0 ? void 0 : _f.followerCount) || 0)), "\u00A0", ((_g = this.shelf) === null || _g === void 0 ? void 0 : _g.followerCount) === 1 ? this.followerText : this.followersText)), novelCount > 0 ? (index.h("span", { class: "subtitle-item" }, index.h("span", { class: "stat-number" }, novelCount), "\u00A0", novelCount === 1 ? this.storyText : this.storiesText)) : (index.h("span", { class: "subtitle-item" }, this.noStoriesText)), ((_h = this.shelf) === null || _h === void 0 ? void 0 : _h.owner) && !this.isOwnShelf && (index.h("span", { class: "subtitle-item shelf-owner" }, ((_k = (_j = this.shelf) === null || _j === void 0 ? void 0 : _j.owner) === null || _k === void 0 ? void 0 : _k.displayName) || 'Unknown'))))))));
60
64
  }
61
65
  };
62
66
  UrShelfItem.style = urShelfItemCss;
@@ -24,16 +24,20 @@ export class UrShelfItem {
24
24
  return count.toString();
25
25
  }
26
26
  render() {
27
- var _a, _b;
27
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
28
28
  if (this.skeleton) {
29
29
  return (h(Host, { class: "shelf-item skeleton" }, h("ur-list-item", { class: "shelf-list-item", containerPadding: "0", iconMargin: "0", borderRadius: "8px" }, h("div", { slot: "custom", class: "custom-content" }, h("div", { class: "shelf-covers-preview" }, h("div", { class: "covers-stack skeleton" }, h("div", { class: "skeleton-cover loading" }))), h("div", { class: "custom-content__info" }, h("div", { class: "skeleton-title loading" }), h("div", { class: "skeleton-subtitle loading" })), h("div", { class: "skeleton-chevron" }, h("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none" }, h("path", { d: "M9 6L15 12L9 18", stroke: "currentColor", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" })))))));
30
30
  }
31
+ // Return empty state if shelf is undefined
32
+ if (!this.shelf) {
33
+ return null;
34
+ }
31
35
  const displayNovels = this.novels.slice(0, 3);
32
36
  const novelCount = this.totalStoryCount !== undefined ? this.totalStoryCount : this.novels.length;
33
37
  return (h(Host, null, h("ur-list-item", { class: "shelf-list-item", "end-icon": "chevron_right", onClick: this.handleShelfClick, containerPadding: "0", iconMargin: "0", borderRadius: "8px" }, h("div", { slot: "custom", class: "custom-content" }, h("div", { class: "shelf-covers-preview" }, h("div", { class: `covers-stack covers-count-${Math.min(displayNovels.length, 3)}` }, displayNovels.length > 0 ? (displayNovels.map((novel, index) => {
34
- var _a, _b;
35
- return (h("div", { class: `cover-item cover-${index}` }, novel.coverImage ? (h("img", { src: novel.coverImage, alt: novel.title, class: "cover-image" })) : (h("div", { class: "cover-placeholder" }, h("span", null, ((_a = novel.title) === null || _a === void 0 ? void 0 : _a.charAt(0)) || ((_b = this.shelf.name) === null || _b === void 0 ? void 0 : _b.charAt(0)) || '?')))));
36
- })) : (h("div", { class: "cover-item cover-0" }, h("div", { class: "cover-placeholder" }, h("span", null, ((_b = (_a = this.shelf.name) === null || _a === void 0 ? void 0 : _a.charAt(0)) === null || _b === void 0 ? void 0 : _b.toUpperCase()) || '?')))))), h("div", { class: "custom-content__info" }, h("div", { class: "custom-content__username" }, this.shelf.name), h("div", { class: "custom-content__subtitle" }, this.shelf.followerCount !== undefined && (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, this.formatFollowerCount(this.shelf.followerCount)), "\u00A0", this.shelf.followerCount === 1 ? this.followerText : this.followersText)), novelCount > 0 ? (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, novelCount), "\u00A0", novelCount === 1 ? this.storyText : this.storiesText)) : (h("span", { class: "subtitle-item" }, this.noStoriesText)), this.shelf.owner && !this.isOwnShelf && (h("span", { class: "subtitle-item shelf-owner" }, this.shelf.owner.displayName))))))));
38
+ var _a, _b, _c;
39
+ return (h("div", { class: `cover-item cover-${index}` }, novel.coverImage ? (h("img", { src: novel.coverImage, alt: novel.title, class: "cover-image" })) : (h("div", { class: "cover-placeholder" }, h("span", null, ((_a = novel.title) === null || _a === void 0 ? void 0 : _a.charAt(0)) || ((_c = (_b = this.shelf) === null || _b === void 0 ? void 0 : _b.name) === null || _c === void 0 ? void 0 : _c.charAt(0)) || '?')))));
40
+ })) : (h("div", { class: "cover-item cover-0" }, h("div", { class: "cover-placeholder" }, h("span", null, ((_c = (_b = (_a = this.shelf) === null || _a === void 0 ? void 0 : _a.name) === null || _b === void 0 ? void 0 : _b.charAt(0)) === null || _c === void 0 ? void 0 : _c.toUpperCase()) || '?')))))), h("div", { class: "custom-content__info" }, h("div", { class: "custom-content__username" }, ((_d = this.shelf) === null || _d === void 0 ? void 0 : _d.name) || 'Unknown Shelf'), h("div", { class: "custom-content__subtitle" }, ((_e = this.shelf) === null || _e === void 0 ? void 0 : _e.followerCount) !== undefined && (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, this.formatFollowerCount(((_f = this.shelf) === null || _f === void 0 ? void 0 : _f.followerCount) || 0)), "\u00A0", ((_g = this.shelf) === null || _g === void 0 ? void 0 : _g.followerCount) === 1 ? this.followerText : this.followersText)), novelCount > 0 ? (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, novelCount), "\u00A0", novelCount === 1 ? this.storyText : this.storiesText)) : (h("span", { class: "subtitle-item" }, this.noStoriesText)), ((_h = this.shelf) === null || _h === void 0 ? void 0 : _h.owner) && !this.isOwnShelf && (h("span", { class: "subtitle-item shelf-owner" }, ((_k = (_j = this.shelf) === null || _j === void 0 ? void 0 : _j.owner) === null || _k === void 0 ? void 0 : _k.displayName) || 'Unknown'))))))));
37
41
  }
38
42
  static get is() { return "ur-shelf-item"; }
39
43
  static get encapsulation() { return "shadow"; }
@@ -31,16 +31,20 @@ const UrShelfItem$1 = /*@__PURE__*/ proxyCustomElement(class UrShelfItem extends
31
31
  return count.toString();
32
32
  }
33
33
  render() {
34
- var _a, _b;
34
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
35
35
  if (this.skeleton) {
36
36
  return (h(Host, { class: "shelf-item skeleton" }, h("ur-list-item", { class: "shelf-list-item", containerPadding: "0", iconMargin: "0", borderRadius: "8px" }, h("div", { slot: "custom", class: "custom-content" }, h("div", { class: "shelf-covers-preview" }, h("div", { class: "covers-stack skeleton" }, h("div", { class: "skeleton-cover loading" }))), h("div", { class: "custom-content__info" }, h("div", { class: "skeleton-title loading" }), h("div", { class: "skeleton-subtitle loading" })), h("div", { class: "skeleton-chevron" }, h("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none" }, h("path", { d: "M9 6L15 12L9 18", stroke: "currentColor", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" })))))));
37
37
  }
38
+ // Return empty state if shelf is undefined
39
+ if (!this.shelf) {
40
+ return null;
41
+ }
38
42
  const displayNovels = this.novels.slice(0, 3);
39
43
  const novelCount = this.totalStoryCount !== undefined ? this.totalStoryCount : this.novels.length;
40
44
  return (h(Host, null, h("ur-list-item", { class: "shelf-list-item", "end-icon": "chevron_right", onClick: this.handleShelfClick, containerPadding: "0", iconMargin: "0", borderRadius: "8px" }, h("div", { slot: "custom", class: "custom-content" }, h("div", { class: "shelf-covers-preview" }, h("div", { class: `covers-stack covers-count-${Math.min(displayNovels.length, 3)}` }, displayNovels.length > 0 ? (displayNovels.map((novel, index) => {
41
- var _a, _b;
42
- return (h("div", { class: `cover-item cover-${index}` }, novel.coverImage ? (h("img", { src: novel.coverImage, alt: novel.title, class: "cover-image" })) : (h("div", { class: "cover-placeholder" }, h("span", null, ((_a = novel.title) === null || _a === void 0 ? void 0 : _a.charAt(0)) || ((_b = this.shelf.name) === null || _b === void 0 ? void 0 : _b.charAt(0)) || '?')))));
43
- })) : (h("div", { class: "cover-item cover-0" }, h("div", { class: "cover-placeholder" }, h("span", null, ((_b = (_a = this.shelf.name) === null || _a === void 0 ? void 0 : _a.charAt(0)) === null || _b === void 0 ? void 0 : _b.toUpperCase()) || '?')))))), h("div", { class: "custom-content__info" }, h("div", { class: "custom-content__username" }, this.shelf.name), h("div", { class: "custom-content__subtitle" }, this.shelf.followerCount !== undefined && (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, this.formatFollowerCount(this.shelf.followerCount)), "\u00A0", this.shelf.followerCount === 1 ? this.followerText : this.followersText)), novelCount > 0 ? (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, novelCount), "\u00A0", novelCount === 1 ? this.storyText : this.storiesText)) : (h("span", { class: "subtitle-item" }, this.noStoriesText)), this.shelf.owner && !this.isOwnShelf && (h("span", { class: "subtitle-item shelf-owner" }, this.shelf.owner.displayName))))))));
45
+ var _a, _b, _c;
46
+ return (h("div", { class: `cover-item cover-${index}` }, novel.coverImage ? (h("img", { src: novel.coverImage, alt: novel.title, class: "cover-image" })) : (h("div", { class: "cover-placeholder" }, h("span", null, ((_a = novel.title) === null || _a === void 0 ? void 0 : _a.charAt(0)) || ((_c = (_b = this.shelf) === null || _b === void 0 ? void 0 : _b.name) === null || _c === void 0 ? void 0 : _c.charAt(0)) || '?')))));
47
+ })) : (h("div", { class: "cover-item cover-0" }, h("div", { class: "cover-placeholder" }, h("span", null, ((_c = (_b = (_a = this.shelf) === null || _a === void 0 ? void 0 : _a.name) === null || _b === void 0 ? void 0 : _b.charAt(0)) === null || _c === void 0 ? void 0 : _c.toUpperCase()) || '?')))))), h("div", { class: "custom-content__info" }, h("div", { class: "custom-content__username" }, ((_d = this.shelf) === null || _d === void 0 ? void 0 : _d.name) || 'Unknown Shelf'), h("div", { class: "custom-content__subtitle" }, ((_e = this.shelf) === null || _e === void 0 ? void 0 : _e.followerCount) !== undefined && (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, this.formatFollowerCount(((_f = this.shelf) === null || _f === void 0 ? void 0 : _f.followerCount) || 0)), "\u00A0", ((_g = this.shelf) === null || _g === void 0 ? void 0 : _g.followerCount) === 1 ? this.followerText : this.followersText)), novelCount > 0 ? (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, novelCount), "\u00A0", novelCount === 1 ? this.storyText : this.storiesText)) : (h("span", { class: "subtitle-item" }, this.noStoriesText)), ((_h = this.shelf) === null || _h === void 0 ? void 0 : _h.owner) && !this.isOwnShelf && (h("span", { class: "subtitle-item shelf-owner" }, ((_k = (_j = this.shelf) === null || _j === void 0 ? void 0 : _j.owner) === null || _k === void 0 ? void 0 : _k.displayName) || 'Unknown'))))))));
44
48
  }
45
49
  static get style() { return urShelfItemCss; }
46
50
  }, [257, "ur-shelf-item", {
@@ -45,16 +45,20 @@ const UrShelfItem = class {
45
45
  return count.toString();
46
46
  }
47
47
  render() {
48
- var _a, _b;
48
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
49
49
  if (this.skeleton) {
50
50
  return (h(Host, { class: "shelf-item skeleton" }, h("ur-list-item", { class: "shelf-list-item", containerPadding: "0", iconMargin: "0", borderRadius: "8px" }, h("div", { slot: "custom", class: "custom-content" }, h("div", { class: "shelf-covers-preview" }, h("div", { class: "covers-stack skeleton" }, h("div", { class: "skeleton-cover loading" }))), h("div", { class: "custom-content__info" }, h("div", { class: "skeleton-title loading" }), h("div", { class: "skeleton-subtitle loading" })), h("div", { class: "skeleton-chevron" }, h("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none" }, h("path", { d: "M9 6L15 12L9 18", stroke: "currentColor", "stroke-width": "2", "stroke-linecap": "round", "stroke-linejoin": "round" })))))));
51
51
  }
52
+ // Return empty state if shelf is undefined
53
+ if (!this.shelf) {
54
+ return null;
55
+ }
52
56
  const displayNovels = this.novels.slice(0, 3);
53
57
  const novelCount = this.totalStoryCount !== undefined ? this.totalStoryCount : this.novels.length;
54
58
  return (h(Host, null, h("ur-list-item", { class: "shelf-list-item", "end-icon": "chevron_right", onClick: this.handleShelfClick, containerPadding: "0", iconMargin: "0", borderRadius: "8px" }, h("div", { slot: "custom", class: "custom-content" }, h("div", { class: "shelf-covers-preview" }, h("div", { class: `covers-stack covers-count-${Math.min(displayNovels.length, 3)}` }, displayNovels.length > 0 ? (displayNovels.map((novel, index) => {
55
- var _a, _b;
56
- return (h("div", { class: `cover-item cover-${index}` }, novel.coverImage ? (h("img", { src: novel.coverImage, alt: novel.title, class: "cover-image" })) : (h("div", { class: "cover-placeholder" }, h("span", null, ((_a = novel.title) === null || _a === void 0 ? void 0 : _a.charAt(0)) || ((_b = this.shelf.name) === null || _b === void 0 ? void 0 : _b.charAt(0)) || '?')))));
57
- })) : (h("div", { class: "cover-item cover-0" }, h("div", { class: "cover-placeholder" }, h("span", null, ((_b = (_a = this.shelf.name) === null || _a === void 0 ? void 0 : _a.charAt(0)) === null || _b === void 0 ? void 0 : _b.toUpperCase()) || '?')))))), h("div", { class: "custom-content__info" }, h("div", { class: "custom-content__username" }, this.shelf.name), h("div", { class: "custom-content__subtitle" }, this.shelf.followerCount !== undefined && (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, this.formatFollowerCount(this.shelf.followerCount)), "\u00A0", this.shelf.followerCount === 1 ? this.followerText : this.followersText)), novelCount > 0 ? (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, novelCount), "\u00A0", novelCount === 1 ? this.storyText : this.storiesText)) : (h("span", { class: "subtitle-item" }, this.noStoriesText)), this.shelf.owner && !this.isOwnShelf && (h("span", { class: "subtitle-item shelf-owner" }, this.shelf.owner.displayName))))))));
59
+ var _a, _b, _c;
60
+ return (h("div", { class: `cover-item cover-${index}` }, novel.coverImage ? (h("img", { src: novel.coverImage, alt: novel.title, class: "cover-image" })) : (h("div", { class: "cover-placeholder" }, h("span", null, ((_a = novel.title) === null || _a === void 0 ? void 0 : _a.charAt(0)) || ((_c = (_b = this.shelf) === null || _b === void 0 ? void 0 : _b.name) === null || _c === void 0 ? void 0 : _c.charAt(0)) || '?')))));
61
+ })) : (h("div", { class: "cover-item cover-0" }, h("div", { class: "cover-placeholder" }, h("span", null, ((_c = (_b = (_a = this.shelf) === null || _a === void 0 ? void 0 : _a.name) === null || _b === void 0 ? void 0 : _b.charAt(0)) === null || _c === void 0 ? void 0 : _c.toUpperCase()) || '?')))))), h("div", { class: "custom-content__info" }, h("div", { class: "custom-content__username" }, ((_d = this.shelf) === null || _d === void 0 ? void 0 : _d.name) || 'Unknown Shelf'), h("div", { class: "custom-content__subtitle" }, ((_e = this.shelf) === null || _e === void 0 ? void 0 : _e.followerCount) !== undefined && (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, this.formatFollowerCount(((_f = this.shelf) === null || _f === void 0 ? void 0 : _f.followerCount) || 0)), "\u00A0", ((_g = this.shelf) === null || _g === void 0 ? void 0 : _g.followerCount) === 1 ? this.followerText : this.followersText)), novelCount > 0 ? (h("span", { class: "subtitle-item" }, h("span", { class: "stat-number" }, novelCount), "\u00A0", novelCount === 1 ? this.storyText : this.storiesText)) : (h("span", { class: "subtitle-item" }, this.noStoriesText)), ((_h = this.shelf) === null || _h === void 0 ? void 0 : _h.owner) && !this.isOwnShelf && (h("span", { class: "subtitle-item shelf-owner" }, ((_k = (_j = this.shelf) === null || _j === void 0 ? void 0 : _j.owner) === null || _k === void 0 ? void 0 : _k.displayName) || 'Unknown'))))))));
58
62
  }
59
63
  };
60
64
  UrShelfItem.style = urShelfItemCss;
@@ -0,0 +1 @@
1
+ import{r as t,c as e,h as o,H as i}from"./p-DxicD_v0.js";import"./ur-list-item.entry.esm.js";import"./p-zh2SzAzp.js";import"./p-DGxHnPQH.js";import"./p-DmwpJ3Xb.js";import"./p-CaBWcz-D.js";import"./p-CLzk4uXM.js";import"./p-BHOPlFNt.js";import"./p-BnvqNZ1a.js";import"./p-BeOzk1pg.js";import"./p-D17Erkn3.js";import"./p-yaA8vKgL.js";import"./p-Bc8ZFWuw.js";import"./p-DD45e1Fb.js";import"./p-bGirE084.js";import"./p-DPvu0yIY.js";import"./p-DtvpcoBz.js";import"./p-CHcLApx5.js";const r=class{constructor(o){t(this,o),this.shelfClick=e(this,"shelfClick"),this.novels=[],this.isOwnShelf=!1,this.skeleton=!1,this.followerText="follower",this.followersText="followers",this.storyText="story",this.storiesText="stories",this.noStoriesText="No stories yet",this.handleShelfClick=()=>{this.shelfClick.emit(this.shelf)}}formatFollowerCount(t){return t>=1e6?`${(t/1e6).toFixed(1)}M`:t>=1e3?`${(t/1e3).toFixed(1)}K`:t.toString()}render(){var t,e,r,s,n,a,l,c,d,p;if(this.skeleton)return o(i,{class:"shelf-item skeleton"},o("ur-list-item",{class:"shelf-list-item",containerPadding:"0",iconMargin:"0",borderRadius:"8px"},o("div",{slot:"custom",class:"custom-content"},o("div",{class:"shelf-covers-preview"},o("div",{class:"covers-stack skeleton"},o("div",{class:"skeleton-cover loading"}))),o("div",{class:"custom-content__info"},o("div",{class:"skeleton-title loading"}),o("div",{class:"skeleton-subtitle loading"})),o("div",{class:"skeleton-chevron"},o("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none"},o("path",{d:"M9 6L15 12L9 18",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}))))));if(!this.shelf)return null;const u=this.novels.slice(0,3),v=void 0!==this.totalStoryCount?this.totalStoryCount:this.novels.length;return o(i,null,o("ur-list-item",{class:"shelf-list-item","end-icon":"chevron_right",onClick:this.handleShelfClick,containerPadding:"0",iconMargin:"0",borderRadius:"8px"},o("div",{slot:"custom",class:"custom-content"},o("div",{class:"shelf-covers-preview"},o("div",{class:`covers-stack covers-count-${Math.min(u.length,3)}`},u.length>0?u.map(((t,e)=>{var i,r,s;return o("div",{class:`cover-item cover-${e}`},t.coverImage?o("img",{src:t.coverImage,alt:t.title,class:"cover-image"}):o("div",{class:"cover-placeholder"},o("span",null,(null===(i=t.title)||void 0===i?void 0:i.charAt(0))||(null===(s=null===(r=this.shelf)||void 0===r?void 0:r.name)||void 0===s?void 0:s.charAt(0))||"?")))})):o("div",{class:"cover-item cover-0"},o("div",{class:"cover-placeholder"},o("span",null,(null===(r=null===(e=null===(t=this.shelf)||void 0===t?void 0:t.name)||void 0===e?void 0:e.charAt(0))||void 0===r?void 0:r.toUpperCase())||"?"))))),o("div",{class:"custom-content__info"},o("div",{class:"custom-content__username"},(null===(s=this.shelf)||void 0===s?void 0:s.name)||"Unknown Shelf"),o("div",{class:"custom-content__subtitle"},void 0!==(null===(n=this.shelf)||void 0===n?void 0:n.followerCount)&&o("span",{class:"subtitle-item"},o("span",{class:"stat-number"},this.formatFollowerCount((null===(a=this.shelf)||void 0===a?void 0:a.followerCount)||0))," ",1===(null===(l=this.shelf)||void 0===l?void 0:l.followerCount)?this.followerText:this.followersText),v>0?o("span",{class:"subtitle-item"},o("span",{class:"stat-number"},v)," ",1===v?this.storyText:this.storiesText):o("span",{class:"subtitle-item"},this.noStoriesText),(null===(c=this.shelf)||void 0===c?void 0:c.owner)&&!this.isOwnShelf&&o("span",{class:"subtitle-item shelf-owner"},(null===(p=null===(d=this.shelf)||void 0===d?void 0:d.owner)||void 0===p?void 0:p.displayName)||"Unknown"))))))}};r.style=":host{display:block;width:100%;--ur-color-on-background:rgb(var(--mdui-color-on-background))}.shelf-list-item{flex:1;display:block}.custom-content{display:flex;align-items:center;gap:16px;width:100%}.custom-content__info{flex-grow:1;display:flex;flex-direction:column;gap:4px}.custom-content__username{font-size:14px;line-height:1.2rem;font-style:normal;font-weight:700;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;margin-bottom:4px;text-transform:capitalize}.custom-content__subtitle{font-size:12px;font-weight:400;line-height:16px;color:var(--ur-color-on-background);display:flex;flex-wrap:wrap;align-items:center;gap:4px 0}.subtitle-item{display:inline-flex;align-items:center;white-space:nowrap}.subtitle-item:not(:last-child)::after{content:' · ';margin:0 6px;color:var(--ur-color-on-background);opacity:0.5}.stat-number{font-weight:700}.shelf-owner{font-size:12px;font-style:normal;font-weight:600;line-height:inherit}.shelf-covers-preview{flex-shrink:0;position:relative;width:20%;min-width:55px;max-width:130px;max-height:80px;aspect-ratio:1.25;border-radius:8px 0 0 8px;background-color:rgb(var(--mdui-color-surface-container-low));transition:transform 0.3s ease}.covers-stack{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center;transition:transform 0.3s ease}.cover-item{position:absolute;transition:transform 0.3s ease;height:100%;width:100%}.cover-image{width:100%;height:100%;aspect-ratio:2.25;background-repeat:no-repeat;background-size:cover;background-position:center;border-radius:8px;display:block;object-fit:cover}.cover-placeholder{width:100%;height:100%;aspect-ratio:2.25;border-radius:8px;background-color:rgb(var(--mdui-color-surface-container-high));background-repeat:no-repeat;background-size:cover;background-position:center;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:600;color:var(--ur-color-on-background);text-transform:uppercase}.covers-count-1 .cover-item{transform:none}.covers-count-1 .cover-image,.covers-count-1 .cover-placeholder{border-radius:8px 0 0 8px}.covers-count-2 .cover-0{transform:translateX(-3px) rotate(-1deg);z-index:1}.covers-count-2 .cover-1{transform:translateX(3px) rotate(1deg);z-index:2}.covers-count-3 .cover-0{transform:translateX(-5px) rotate(-2deg);z-index:1}.covers-count-3 .cover-1{transform:translateY(-2px);z-index:3}.covers-count-3 .cover-2{transform:translateX(5px) rotate(2deg);z-index:2}ur-list-item:hover .covers-count-2 .cover-0{transform:translateX(-6px) rotate(-2deg)}ur-list-item:hover .covers-count-2 .cover-1{transform:translateX(6px) rotate(2deg)}ur-list-item:hover .covers-count-3 .cover-0{transform:translateX(-8px) rotate(-3deg)}ur-list-item:hover .covers-count-3 .cover-1{transform:translateY(-3px) scale(1.02)}ur-list-item:hover .covers-count-3 .cover-2{transform:translateX(8px) rotate(3deg)}@keyframes placeholderAnimate{0%{background-position:-650px 0}100%{background-position:650px 0}}.loading{animation-duration:1.7s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-timing-function:linear;animation-name:placeholderAnimate;background:linear-gradient(\n to right,\n rgba(var(--ur-color-on-background), 0.04) 2%,\n rgba(var(--ur-color-on-background), 0.12) 18%,\n rgba(var(--ur-color-on-background), 0.04) 33%\n );background-size:1000px}.covers-stack.skeleton{display:flex;align-items:center;justify-content:center}.skeleton-cover{width:100%;height:100%;border-radius:8px 0 0 8px;aspect-ratio:2.25}.skeleton-title{height:20px;width:120px;border-radius:4px;margin-bottom:4px}.skeleton-subtitle{height:14px;width:180px;border-radius:4px}.skeleton-chevron{display:flex;align-items:center;justify-content:center;margin-left:auto;color:rgba(var(--ur-color-on-background), 0.12)}.skeleton-chevron svg{width:32px;height:32px;scale:0.75}";export{r as ur_shelf_item}
@@ -1 +1 @@
1
- import{p as e,g as t,b as a}from"./p-DxicD_v0.js";export{s as setNonce}from"./p-DxicD_v0.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await t(),a(JSON.parse('[["p-d3773116",[[257,"ur-competition-overview",{"competition":[16],"submissions":[16],"submissionsLoading":[4,"submissions-loading"],"loading":[4],"error":[1],"deviceSize":[1,"device-size"],"isOwner":[4,"is-owner"],"isParticipant":[4,"is-participant"],"canSubmit":[4,"can-submit"],"showEditButton":[4,"show-edit-button"],"showDeleteButton":[4,"show-delete-button"],"skeleton":[4],"currentUserId":[1,"current-user-id"],"userHasSubmission":[4,"user-has-submission"],"userSubmission":[16,"user-submission"],"initialTab":[1,"initial-tab"],"currentPage":[2,"current-page"],"itemsPerPage":[2,"items-per-page"],"totalEntries":[2,"total-entries"],"winnerBadgePosition":[1,"winner-badge-position"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"tabDetailsText":[1,"tab-details-text"],"tabSubmissionsText":[1,"tab-submissions-text"],"sectionDescriptionText":[1,"section-description-text"],"sectionJudgingText":[1,"section-judging-text"],"sectionPrizesText":[1,"section-prizes-text"],"sectionCreatedByText":[1,"section-created-by-text"],"statEntryFeeText":[1,"stat-entry-fee-text"],"statWordCountText":[1,"stat-word-count-text"],"statStartDateText":[1,"stat-start-date-text"],"statDeadlineText":[1,"stat-deadline-text"],"statWinnersText":[1,"stat-winners-text"],"submitButtonText":[1,"submit-button-text"],"withdrawButtonText":[1,"withdraw-button-text"],"finalizeButtonText":[1,"finalize-button-text"],"deleteButtonText":[1,"delete-button-text"],"editButtonText":[1,"edit-button-text"],"backButtonText":[1,"back-button-text"],"previousButtonText":[1,"previous-button-text"],"nextButtonText":[1,"next-button-text"],"removeEntryText":[1,"remove-entry-text"],"noSubmissionsText":[1,"no-submissions-text"],"loadingSubmissionsText":[1,"loading-submissions-text"],"showingEntriesText":[1,"showing-entries-text"],"freeText":[1,"free-text"],"noLimitText":[1,"no-limit-text"],"upToText":[1,"up-to-text"],"atLeastText":[1,"at-least-text"],"rangeText":[1,"range-text"],"tbdText":[1,"tbd-text"],"editDisabledTooltipText":[1,"edit-disabled-tooltip-text"],"activeTab":[32],"setActiveTab":[64]}]]],["p-70ef7dcb",[[257,"ur-main-menu",{"opened":[4],"loggedIn":[4,"logged-in"],"userName":[1,"user-name"],"userRole":[1,"user-role"],"userAvatar":[1,"user-avatar"],"badgeCount":[2,"badge-count"],"termsText":[1,"terms-text"],"rulesText":[1,"rules-text"],"privacyText":[1,"privacy-text"],"paymentText":[1,"payment-text"],"acceptableUseText":[1,"acceptable-use-text"],"partnershipText":[1,"partnership-text"],"homeText":[1,"home-text"],"storiesText":[1,"stories-text"],"pagesText":[1,"pages-text"],"myLibraryText":[1,"my-library-text"],"competitionsText":[1,"competitions-text"],"notificationText":[1,"notification-text"],"facebookText":[1,"facebook-text"],"xText":[1,"x-text"],"discordText":[1,"discord-text"],"contactUsText":[1,"contact-us-text"],"signUpText":[1,"sign-up-text"],"premiumText":[1,"premium-text"],"whatsNewText":[1,"whats-new-text"],"faqsText":[1,"faqs-text"],"currentRoute":[1,"current-route"],"notificationCenterOpened":[4,"notification-center-opened"],"myLibraryOpened":[4,"my-library-opened"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"],"myLibraryOpened":["watchMyLibraryOpenedHandler"]}]]],["p-5cc527a4",[[257,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"attachRequestStatus":[1025,"attach-request-status"],"attachStoryText":[1,"attach-story-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"detachFromPageText":[1,"detach-from-page-text"],"attachedToPageText":[1,"attached-to-page-text"],"editTitleTooltipText":[1,"edit-title-tooltip-text"],"editDescriptionTooltipText":[1,"edit-description-tooltip-text"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"visibility":[1],"visibilityPublicText":[1,"visibility-public-text"],"visibilityPrivateText":[1,"visibility-private-text"],"completeStoryText":[1,"complete-story-text"],"revertStoryText":[1,"revert-story-text"],"expanded":[4],"showPublishedButton":[4,"show-published-button"],"skeleton":[4],"attachButtonHoverState":[32],"reset":[64]}]]],["p-fbf18c17",[[257,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32],"isShelfPublic":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-260ae23e",[[257,"ur-novl-carousel",{"novls":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-25b2dd40",[[257,"ur-page-carousel",{"pages":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4ebc2130",[[257,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-f94a1a59",[[257,"ur-user-profile-settings-form",{"settings":[8],"skeleton":[4],"locationLabelText":[1,"location-label-text"],"websiteLabelText":[1,"website-label-text"],"aboutLabelText":[1,"about-label-text"],"facebookLabelText":[1,"facebook-label-text"],"twitterLabelText":[1,"twitter-label-text"],"linkedinLabelText":[1,"linkedin-label-text"],"emailLabelText":[1,"email-label-text"],"personalInfoTitleText":[1,"personal-info-title-text"],"interactTitleText":[1,"interact-title-text"],"facebookTitleText":[1,"facebook-title-text"],"twitterTitleText":[1,"twitter-title-text"],"linkedinTitleText":[1,"linkedin-title-text"],"emailTitleText":[1,"email-title-text"],"facebookPrefixText":[1,"facebook-prefix-text"],"twitterPrefixText":[1,"twitter-prefix-text"],"linkedinPrefixText":[1,"linkedin-prefix-text"],"personalInfoSubtitleText":[1,"personal-info-subtitle-text"],"interactSubtitleText":[1,"interact-subtitle-text"],"socialEnabled":[32]},null,{"settings":["settingsChanged"]}]]],["p-1710f088",[[257,"ur-editor",{"content":[1],"disabled":[4],"placeholder":[1],"wordLabel":[1,"word-label"],"charLabel":[1,"char-label"],"readingDurationLabel":[1,"reading-duration-label"],"enableBold":[4,"enable-bold"],"enableItalic":[4,"enable-italic"],"enableUnderline":[4,"enable-underline"],"enableTextAlign":[4,"enable-text-align"],"enableBlockquote":[4,"enable-blockquote"],"maxLength":[2,"max-length"],"maxWords":[2,"max-words"],"showCounter":[4,"show-counter"],"showFixedToolbar":[516,"show-fixed-toolbar"],"showSelectionToolbar":[516,"show-selection-toolbar"],"minHeight":[1,"min-height"],"formattingState":[32],"charCount":[32],"wordCount":[32],"readingDuration":[32],"readingDurationSeconds":[32],"selectionTooltip":[32],"isMouseDown":[32],"getHTML":[64],"getText":[64],"setContent":[64],"clearContent":[64]},null,{"maxLength":["maxLengthUpdated"],"maxWords":["maxWordsUpdated"],"content":["contentUpdated"],"disabled":["disabledUpdated"],"enableBold":["formattingOptionsUpdated"],"enableItalic":["formattingOptionsUpdated"],"enableUnderline":["formattingOptionsUpdated"],"enableBlockquote":["formattingOptionsUpdated"],"enableTextAlign":["formattingOptionsUpdated"],"minHeight":["minHeightUpdated"]}]]],["p-75a75867",[[257,"ur-top-app-bar",{"headerTitle":[1,"header-title"],"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-572d5844",[[257,"ur-dialog",{"description":[1],"open":[4],"fullscreen":[4],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"showHeader":[4,"show-header"],"overlayHeader":[4,"overlay-header"],"variant":[1],"borderRadius":[1,"border-radius"],"openDialog":[64],"closeDialog":[64]}]]],["p-5622a86f",[[257,"ur-list-subheader",{"text":[1]}]]],["p-ff5119f4",[[257,"ur-navigation-bar",{"position":[1],"labelVisibility":[1,"label-visibility"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"value":[1537],"scrollTarget":[1,"scroll-target"],"setValue":[64]},[[0,"change","changeHandler"]],{"value":["valueChanged"]}]]],["p-173882b8",[[257,"ur-profile",{"name":[8],"description":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"show_follow":[4],"show_donate":[4],"show_become_member":[4],"show_send_message":[4],"show_stats":[4],"stories_count":[2],"views_count":[2],"followers_count":[2],"writers_count":[2],"show_languages":[4],"languages":[1],"show_genres":[4],"genres":[1],"show_member_since":[4],"member_since":[1]}]]],["p-2cc17248",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-190ed39b",[[257,"ur-select",{"value":[1],"name":[1],"label":[1],"placeholder":[1],"helper":[1],"variant":[1],"usage":[1],"multiple":[4],"clearable":[4],"disabled":[4],"required":[4],"readonly":[4],"size":[1],"placement":[1],"icon":[1],"endIcon":[1,"end-icon"],"flex":[4],"suffix":[1],"clearIcon":[1,"clear-icon"],"displayText":[32]},[[0,"menuItemChange","handleMenuItemChange"]],{"value":["handleValueChange"]}]]],["p-44a1e2be",[[257,"ur-snackbar",{"open":[1540],"placement":[1],"action":[1],"actionLoading":[4,"action-loading"],"closeable":[4],"closeIcon":[1,"close-icon"],"messageLine":[2,"message-line"],"autoCloseDelay":[2,"auto-close-delay"],"closeOnOutsideClick":[4,"close-on-outside-click"],"message":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"actionColor":[1,"action-color"],"radius":[1],"zIndex":[1,"z-index"]}]]],["p-18624f2b",[[257,"ur-user-profile"]]],["p-b5164a99",[[257,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-53764324",[[257,"ur-page",{"pageId":[1,"page-id"],"loading":[4],"followed":[4],"pageTitle":[1,"page-title"],"pageCover":[1,"page-cover"],"pageCoverFallback":[1,"page-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"pageDescription":[1,"page-description"],"pageType":[1,"page-type"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-99d6b36d",[[257,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followed":[4],"userTitle":[1,"user-title"],"userCover":[1,"user-cover"],"userCoverFallback":[1,"user-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"userDescription":[1,"user-description"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-c605df0e",[[257,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1],"containerPadding":[1,"container-padding"],"iconMargin":[1,"icon-margin"],"borderRadius":[1,"border-radius"]}]]],["p-50245874",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-18531d84",[[257,"ur-button-icon",{"disabled":[4],"loading":[4],"variant":[1],"icon":[1],"selectedIcon":[1,"selected-icon"],"selected":[4],"active":[4],"borderRadius":[1,"border-radius"],"buttonWidth":[1,"button-width"],"buttonHeight":[1,"button-height"],"fontColor":[1,"font-color"],"backgroundColor":[1,"background-color"]}]]],["p-6813b14e",[[257,"ur-novl",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"likes":[2],"views":[2],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"]}],[257,"ur-tooltip",{"content":[1],"variant":[1],"placement":[1],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"trigger":[1],"colorScheme":[1,"color-scheme"],"disabled":[4],"isVisible":[32]}],[257,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1],"skeleton":[4]}]]],["p-e572d1ff",[[257,"ur-competition",{"competitionId":[1,"competition-id"],"competitionTitle":[1,"competition-title"],"description":[1],"literatureType":[1,"literature-type"],"genre":[1],"language":[1],"entryFee":[2,"entry-fee"],"hasEntryFee":[4,"has-entry-fee"],"prizeTypes":[16,"prize-types"],"startDate":[1,"start-date"],"submissionDeadline":[1,"submission-deadline"],"winnersAnnouncementDate":[1,"winners-announcement-date"],"status":[1],"imageUrl":[1,"image-url"],"pageAvatar":[1,"page-avatar"],"clickable":[4],"height":[1],"skeleton":[4],"freeText":[1,"free-text"],"tbdText":[1,"tbd-text"],"unknownText":[1,"unknown-text"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"startDateText":[1,"start-date-text"],"deadlineText":[1,"deadline-text"],"winnersText":[1,"winners-text"],"closedText":[1,"closed-text"],"completedText":[1,"completed-text"],"entryFeeText":[1,"entry-fee-text"],"prizeText":[1,"prize-text"]}]]],["p-ac24f392",[[257,"ur-competition-carousel",{"competitions":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"cardHeight":[1,"card-height"],"skeleton":[4],"disabledPrev":[32],"disabledNext":[32],"addCompetitions":[64],"updateCompetitionsByIndex":[64],"reset":[64]}]]],["p-f4e3468d",[[257,"ur-button",{"disabled":[4],"variant":[1],"icon":[8],"endIcon":[8,"end-icon"],"fullWidth":[4,"full-width"],"loading":[4],"fontColor":[1,"font-color"],"buttonHeight":[1,"button-height"],"borderRadius":[1,"border-radius"],"backgroundColor":[1,"background-color"],"skeleton":[4]}]]],["p-555ff814",[[257,"ur-page-profile",{"pageId":[1,"page-id"],"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"stories":[2],"views":[2],"pageCreatedText":[1,"page-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"websiteText":[1,"website-text"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isPageOwner":[4,"is-page-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"pageType":[1,"page-type"],"pageCreationDate":[8,"page-creation-date"],"locale":[1],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"membersText":[1,"members-text"],"followText":[1,"follow-text"],"followingText":[1,"following-text"],"becomeMemberText":[1,"become-member-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"cancelMembershipText":[1,"cancel-membership-text"],"youreMemberText":[1,"youre-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"skeleton":[4],"memberRequestStatus":[1025,"member-request-status"],"memberButtonHoverState":[32]}]]],["p-c4ef9ff3",[[257,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"submitButtonText":[1,"submit-button-text"],"formState":[32]}]]],["p-7f227e76",[[257,"ur-feedback",{"titleText":[1,"title-text"],"descriptionText":[1,"description-text"],"placeholderText":[1,"placeholder-text"],"feedbackText":[1,"feedback-text"],"supportText":[1,"support-text"],"pressText":[1,"press-text"],"successText":[1,"success-text"],"user":[4],"failureText":[1,"failure-text"],"messageLabel":[1,"message-label"],"emailLabel":[1,"email-label"],"emailPlaceholder":[1,"email-placeholder"],"sendText":[1,"send-text"],"text":[32],"disabled":[32],"success":[32],"failure":[32],"mode":[32],"userEmail":[32],"emailError":[32],"reset":[64],"handleSubmitSuccess":[64],"handleSubmitFailure":[64]}]]],["p-2768fcb6",[[257,"ur-user-page-profile",{"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"website":[8],"stories":[2],"views":[2],"userProfileCreatedText":[1,"user-profile-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"isProfileFollowed":[4,"is-profile-followed"],"unFollowText":[1,"un-follow-text"],"websiteText":[1,"website-text"],"writerText":[1,"writer-text"],"readerText":[1,"reader-text"],"isLoggedIn":[4,"is-logged-in"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isProfileOwner":[4,"is-profile-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"isWriter":[4,"is-writer"],"userProfileCreatedDate":[8,"user-profile-created-date"],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"followingText":[1,"following-text"],"pagesFollowingText":[1,"pages-following-text"],"pagesFollowing":[2,"pages-following"],"logoutText":[1,"logout-text"],"locale":[1],"skeleton":[4],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-41e13975",[[257,"ur-autosave-drawer",{"autosaves":[1040],"emptyMessage":[1,"empty-message"],"chapterText":[1,"chapter-text"],"yesText":[1,"yes-text"],"noText":[1,"no-text"],"autosavesTitle":[1,"autosaves-title"],"deleteConfirmMessage":[1,"delete-confirm-message"],"forceRender":[32]},null,{"autosaves":["autosavesChanged"]}]]],["p-0e5384a3",[[257,"ur-chapter-item",{"chapterId":[1,"chapter-id"],"chapterNumber":[2,"chapter-number"],"chapterTitle":[1,"chapter-title"],"createdAt":[1,"created-at"],"isBound":[4,"is-bound"],"isStoryCompleted":[4,"is-story-completed"],"likes":[2],"views":[2],"isOwner":[4,"is-owner"],"readingDuration":[2,"reading-duration"],"readChapterText":[1,"read-chapter-text"],"likesText":[1,"likes-text"],"viewsText":[1,"views-text"],"readingDurationText":[1,"reading-duration-text"],"locale":[1],"isLocked":[4,"is-locked"],"isLastChapter":[4,"is-last-chapter"],"loading":[32]}]]],["p-275df36e",[[257,"ur-main-desktop-top-app-bar",{"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"fontColor":[1,"font-color"],"quillText":[1,"quill-text"],"deviceVariant":[1,"device-variant"],"searchText":[1,"search-text"],"quillCount":[2,"quill-count"]}]]],["p-c6b088b3",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-0efa0800",[[257,"ur-page-list",{"pages":[16],"skeleton":[4],"titleFontSize":[1,"title-font-size"],"gap":[1],"hideTitle":[4,"hide-title"],"containerPadding":[1,"container-padding"],"avatarSize":[1,"avatar-size"]}]]],["p-36ef057f",[[257,"ur-player",{"src":[1],"storyTitle":[1,"story-title"],"author":[1],"coverImage":[1,"cover-image"],"chapterName":[1,"chapter-name"],"playText":[1,"play-text"],"pauseText":[1,"pause-text"],"forwardText":[1,"forward-text"],"backwardText":[1,"backward-text"],"speedText":[1,"speed-text"],"volumeText":[1,"volume-text"],"autoPlay":[4,"auto-play"],"showControls":[4,"show-controls"],"primaryColor":[1,"primary-color"],"accentColor":[1,"accent-color"],"darkMode":[4,"dark-mode"],"isPlaying":[32],"currentTime":[32],"duration":[32],"loadedPercentage":[32],"volume":[32],"playbackRate":[32],"play":[64],"pause":[64],"togglePlay":[64],"seekTo":[64],"setVolume":[64],"setPlaybackRate":[64],"skipForward":[64],"skipBackward":[64]},null,{"src":["onSourceChange"]}]]],["p-656844fe",[[257,"ur-read-rail",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[2],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"mode":[1],"isFollowed":[4,"is-followed"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isPaidChapter":[4,"is-paid-chapter"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"isHostSmall":[4,"is-host-small"],"pageSrc":[1,"page-src"],"pageName":[1,"page-name"],"pageId":[1,"page-id"],"isPageFollowed":[4,"is-page-followed"],"isVisible":[4,"is-visible"],"isLiked":[32],"isDisliked":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isPaidChapter":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isHostSmall":["handlePropChange","handleHostSmallChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"],"pageSrc":["handlePropChange"],"pageName":["handlePropChange"],"pageId":["handlePropChange"],"isPageFollowed":["handlePropChange"]}]]],["p-375f5509",[[257,"ur-reader",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"loading":[4],"chapterLocked":[4,"chapter-locked"],"storyTitle":[1,"story-title"],"chapterTitle":[1,"chapter-title"],"chapterContent":[1,"chapter-content"],"fontSize":[1,"font-size"],"chapterSequence":[2,"chapter-sequence"],"fontType":[1,"font-type"],"readingDurationText":[1,"reading-duration-text"],"minutesText":[1,"minutes-text"],"likes":[1],"comments":[2],"dislike":[1],"donate":[1],"share":[1],"isVisible":[4,"is-visible"],"readingTimePerWord":[2,"reading-time-per-word"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"hasPreviousChapter":[4,"has-previous-chapter"],"hasNextChapter":[4,"has-next-chapter"],"lockedMessage":[1,"locked-message"],"nextChapterText":[1,"next-chapter-text"],"previousChapterText":[1,"previous-chapter-text"],"unlockButtonLabel":[1,"unlock-button-label"],"isSmallContainer":[32],"baseFontSize":[32],"fontStyles":[32],"isHostSmall":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"storyTitle":["handlePropChange"],"chapterTitle":["handlePropChange"],"chapterContent":["handlePropChange"],"fontSize":["handlePropChange"],"fontType":["handlePropChange"],"loading":["handlePropChange"],"chapterLocked":["handlePropChange"],"chapterSequence":["handlePropChange"],"hasPreviousChapter":["handlePropChange"],"hasNextChapter":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-8fcfad4e",[[257,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"loading":[4],"skeleton":[4],"reset":[64]}]]],["p-97ced9bc",[[257,"ur-read-rail-mobile",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[1],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"isFollowed":[4,"is-followed"],"isVisible":[4,"is-visible"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-ba46a0f2",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16,"step-titles"],"stepDescriptions":[16,"step-descriptions"],"showStepNumbers":[4,"show-step-numbers"],"completedStepIcon":[1,"completed-step-icon"],"nextButtonText":[1,"next-button-text"],"previousButtonText":[1,"previous-button-text"],"completeButtonText":[1,"complete-button-text"],"completeStepText":[1,"complete-step-text"],"ongoingStepText":[1,"ongoing-step-text"],"nextButtonDisabled":[4,"next-button-disabled"],"completedSteps":[32],"stepValidation":[32],"goToStep":[64],"markStepComplete":[64],"markStepInvalid":[64],"reset":[64]}]]],["p-f30aa75c",[[257,"ur-checkbox-group",{"name":[1],"values":[1040],"required":[4],"selectAll":[4,"select-all"],"selectAllText":[1,"select-all-text"],"maxSelectable":[2,"max-selectable"],"options":[32],"validate":[64],"reset":[64]}]]],["p-aef81956",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-570322a6",[[257,"ur-hero",{"heroTitle":[1,"hero-title"],"heroSubtitle":[1,"hero-subtitle"],"ctaText":[1,"cta-text"],"backgroundImage":[1,"background-image"],"backgroundColor":[1,"background-color"],"layout":[1],"backgroundJustification":[1,"background-justification"],"backgroundAlignment":[1,"background-alignment"],"heroTitleColor":[1,"hero-title-color"],"heroSubtitleColor":[1,"hero-subtitle-color"],"widthClass":[32]}]]],["p-a645e793",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-072aa311",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-8d8fab25",[[257,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-78d04bb3",[[257,"ur-shelf-item",{"shelf":[16],"novels":[16],"isOwnShelf":[4,"is-own-shelf"],"skeleton":[4],"totalStoryCount":[2,"total-story-count"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"],"noStoriesText":[1,"no-stories-text"]}]]],["p-2d75d645",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6655a44d",[[257,"ur-bottom-sheet",{"open":[4],"selectedDetent":[1,"selected-detent"],"backdropDismiss":[4,"backdrop-dismiss"],"currentDetent":[32],"dragPosition":[32],"isVisible":[32],"showSheet":[64],"hideSheet":[64]},null,{"open":["watchOpen"]}]]],["p-b74098cc",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-b6af1ca4",[[257,"ur-dropdown",{"open":[1540],"disabled":[4],"trigger":[1],"placement":[1],"stayOpenOnClick":[4,"stay-open-on-click"],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"openOnPointer":[4,"open-on-pointer"],"openDropdown":[64],"closeDropdown":[64],"toggle":[64]},null,{"open":["handleOpenChange"]}]]],["p-5b467c2c",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-cc1a0f05",[[260,"ur-grid-col",{"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"],"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"windowWidth":[32]}]]],["p-c6c9068d",[[257,"ur-grid-row"]]],["p-f07ff4a4",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-d2d9ec5b",[[257,"ur-image-uploader",{"width":[1],"height":[1],"maxHeight":[1,"max-height"],"borderRadius":[1,"border-radius"],"borderStyle":[1,"border-style"],"backgroundColor":[1,"background-color"],"hoverBackgroundColor":[1,"hover-background-color"],"acceptTypes":[1,"accept-types"],"disabled":[4],"placeholderText":[1,"placeholder-text"],"uploadingText":[1,"uploading-text"],"showFileName":[4,"show-file-name"],"maxFileSize":[2,"max-file-size"],"enableNativeUpload":[4,"enable-native-upload"],"loading":[4],"isDragOver":[32],"selectedFile":[32],"previewUrl":[32],"isUploading":[32],"setImageUrl":[64],"getImageUrl":[64],"clearImage":[64],"getSelectedFile":[64],"setUploadingState":[64]}]]],["p-2a7f97ed",[[257,"ur-loader"]]],["p-20768738",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-b0df607b",[[257,"ur-menu-item",{"value":[1],"label":[1],"disabled":[4],"selected":[4],"size":[1],"selectedIcon":[1,"selected-icon"],"fullWidth":[4,"full-width"],"leftAligned":[4,"left-aligned"],"heightNumber":[514,"height-number"],"isHovered":[32]},[[4,"selectionChanged","handleSelectionChanged"]],{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-41b3a1b3",[[257,"ur-navigation-drawer",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contained":[4],"openDrawer":[64],"closeDrawer":[64]}]]],["p-28b7d6da",[[257,"ur-navigation-drawer-global",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contentHeight":[32],"openDrawer":[64],"closeDrawer":[64]}]]],["p-f7e454e5",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-755b4a8a",[[257,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-136af971",[[257,"ur-page-shared-list-tabs",{"activeTab":[1,"active-tab"],"followersTabText":[1,"followers-tab-text"],"membersTabText":[1,"members-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-8656aef0",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-af64573e",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-aadc0685",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-50590839",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-8843bf71",[[257,"ur-profile-card",{"avatarSrc":[1,"avatar-src"],"avatarAlt":[1,"avatar-alt"],"name":[1],"avatarSize":[1,"avatar-size"],"description":[1],"followButtonText":[1,"follow-button-text"],"isOwner":[4,"is-owner"],"profileType":[1,"profile-type"],"nameFontSize":[1,"name-font-size"],"unfollowButtonText":[1,"unfollow-button-text"],"buttonHeight":[1,"button-height"],"buttonWidth":[1,"button-width"],"pageActionsTooltipText":[1,"page-actions-tooltip-text"],"memberActionsTooltipText":[1,"member-actions-tooltip-text"],"showDescription":[4,"show-description"],"showMemberActions":[4,"show-member-actions"],"showPageActions":[4,"show-page-actions"],"hideFollowActions":[4,"hide-follow-actions"],"initialFollowState":[4,"initial-follow-state"],"skeleton":[4],"isFollowing":[32]},null,{"initialFollowState":["onInitialFollowStateChange"]}]]],["p-af90b0c6",[[257,"ur-competition-novl-card",{"novlId":[1,"novl-id"],"novlTitle":[1,"novl-title"],"shortSummary":[1,"short-summary"],"chaptersCount":[2,"chapters-count"],"wordCount":[2,"word-count"],"coverImage":[1,"cover-image"],"language":[1],"genre":[1],"literatureType":[1,"literature-type"],"authorName":[1,"author-name"],"showDescription":[4,"show-description"],"showAuthor":[4,"show-author"],"showStats":[4,"show-stats"],"showChips":[4,"show-chips"],"clickable":[4],"size":[1],"chipSize":[1,"chip-size"],"skeleton":[4],"showMenu":[4,"show-menu"],"entryId":[1,"entry-id"],"isOwnerViewing":[4,"is-owner-viewing"],"winnerPosition":[2,"winner-position"],"isWinner":[4,"is-winner"],"winnerBadgePosition":[1,"winner-badge-position"],"withdrawButtonText":[1,"withdraw-button-text"],"removeEntryText":[1,"remove-entry-text"],"chaptersText":[1,"chapters-text"],"wordsText":[1,"words-text"],"winnerText":[1,"winner-text"],"isMenuOpen":[32]}],[257,"ur-stats",{"stats":[16],"skeleton":[4],"layout":[1],"showSeparators":[4,"show-separators"],"background":[1]}]]],["p-eb736d69",[[257,"ur-list"]]],["p-323c221c",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-66b794bc",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-9596a813",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-5dad32b3",[[257,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[4,"full-width"]},null,{"checked":["watchChecked"]}],[257,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-d0171c81",[[257,"ur-text-field",{"label":[1],"placeholder":[1],"helper":[1],"disabled":[4],"required":[4],"variant":[1],"value":[1025],"name":[1],"endIcon":[1,"end-icon"],"rows":[2],"autosize":[4],"minRows":[2,"min-rows"],"maxRows":[2,"max-rows"],"minlength":[2],"maxlength":[2],"counter":[4],"type":[1],"pattern":[1],"min":[8],"max":[8],"step":[8],"error":[1540],"errorMessage":[1537,"error-message"],"skeleton":[4]}]]],["p-c719a7e0",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-29a42efe",[[257,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"skeleton":[4],"disabled":[4],"clickable":[4]}]]]]'),e))));
1
+ import{p as e,g as t,b as a}from"./p-DxicD_v0.js";export{s as setNonce}from"./p-DxicD_v0.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await t(),a(JSON.parse('[["p-d3773116",[[257,"ur-competition-overview",{"competition":[16],"submissions":[16],"submissionsLoading":[4,"submissions-loading"],"loading":[4],"error":[1],"deviceSize":[1,"device-size"],"isOwner":[4,"is-owner"],"isParticipant":[4,"is-participant"],"canSubmit":[4,"can-submit"],"showEditButton":[4,"show-edit-button"],"showDeleteButton":[4,"show-delete-button"],"skeleton":[4],"currentUserId":[1,"current-user-id"],"userHasSubmission":[4,"user-has-submission"],"userSubmission":[16,"user-submission"],"initialTab":[1,"initial-tab"],"currentPage":[2,"current-page"],"itemsPerPage":[2,"items-per-page"],"totalEntries":[2,"total-entries"],"winnerBadgePosition":[1,"winner-badge-position"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"tabDetailsText":[1,"tab-details-text"],"tabSubmissionsText":[1,"tab-submissions-text"],"sectionDescriptionText":[1,"section-description-text"],"sectionJudgingText":[1,"section-judging-text"],"sectionPrizesText":[1,"section-prizes-text"],"sectionCreatedByText":[1,"section-created-by-text"],"statEntryFeeText":[1,"stat-entry-fee-text"],"statWordCountText":[1,"stat-word-count-text"],"statStartDateText":[1,"stat-start-date-text"],"statDeadlineText":[1,"stat-deadline-text"],"statWinnersText":[1,"stat-winners-text"],"submitButtonText":[1,"submit-button-text"],"withdrawButtonText":[1,"withdraw-button-text"],"finalizeButtonText":[1,"finalize-button-text"],"deleteButtonText":[1,"delete-button-text"],"editButtonText":[1,"edit-button-text"],"backButtonText":[1,"back-button-text"],"previousButtonText":[1,"previous-button-text"],"nextButtonText":[1,"next-button-text"],"removeEntryText":[1,"remove-entry-text"],"noSubmissionsText":[1,"no-submissions-text"],"loadingSubmissionsText":[1,"loading-submissions-text"],"showingEntriesText":[1,"showing-entries-text"],"freeText":[1,"free-text"],"noLimitText":[1,"no-limit-text"],"upToText":[1,"up-to-text"],"atLeastText":[1,"at-least-text"],"rangeText":[1,"range-text"],"tbdText":[1,"tbd-text"],"editDisabledTooltipText":[1,"edit-disabled-tooltip-text"],"activeTab":[32],"setActiveTab":[64]}]]],["p-70ef7dcb",[[257,"ur-main-menu",{"opened":[4],"loggedIn":[4,"logged-in"],"userName":[1,"user-name"],"userRole":[1,"user-role"],"userAvatar":[1,"user-avatar"],"badgeCount":[2,"badge-count"],"termsText":[1,"terms-text"],"rulesText":[1,"rules-text"],"privacyText":[1,"privacy-text"],"paymentText":[1,"payment-text"],"acceptableUseText":[1,"acceptable-use-text"],"partnershipText":[1,"partnership-text"],"homeText":[1,"home-text"],"storiesText":[1,"stories-text"],"pagesText":[1,"pages-text"],"myLibraryText":[1,"my-library-text"],"competitionsText":[1,"competitions-text"],"notificationText":[1,"notification-text"],"facebookText":[1,"facebook-text"],"xText":[1,"x-text"],"discordText":[1,"discord-text"],"contactUsText":[1,"contact-us-text"],"signUpText":[1,"sign-up-text"],"premiumText":[1,"premium-text"],"whatsNewText":[1,"whats-new-text"],"faqsText":[1,"faqs-text"],"currentRoute":[1,"current-route"],"notificationCenterOpened":[4,"notification-center-opened"],"myLibraryOpened":[4,"my-library-opened"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"],"myLibraryOpened":["watchMyLibraryOpenedHandler"]}]]],["p-5cc527a4",[[257,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"attachRequestStatus":[1025,"attach-request-status"],"attachStoryText":[1,"attach-story-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"detachFromPageText":[1,"detach-from-page-text"],"attachedToPageText":[1,"attached-to-page-text"],"editTitleTooltipText":[1,"edit-title-tooltip-text"],"editDescriptionTooltipText":[1,"edit-description-tooltip-text"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"visibility":[1],"visibilityPublicText":[1,"visibility-public-text"],"visibilityPrivateText":[1,"visibility-private-text"],"completeStoryText":[1,"complete-story-text"],"revertStoryText":[1,"revert-story-text"],"expanded":[4],"showPublishedButton":[4,"show-published-button"],"skeleton":[4],"attachButtonHoverState":[32],"reset":[64]}]]],["p-fbf18c17",[[257,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32],"isShelfPublic":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-260ae23e",[[257,"ur-novl-carousel",{"novls":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-25b2dd40",[[257,"ur-page-carousel",{"pages":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4ebc2130",[[257,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-f94a1a59",[[257,"ur-user-profile-settings-form",{"settings":[8],"skeleton":[4],"locationLabelText":[1,"location-label-text"],"websiteLabelText":[1,"website-label-text"],"aboutLabelText":[1,"about-label-text"],"facebookLabelText":[1,"facebook-label-text"],"twitterLabelText":[1,"twitter-label-text"],"linkedinLabelText":[1,"linkedin-label-text"],"emailLabelText":[1,"email-label-text"],"personalInfoTitleText":[1,"personal-info-title-text"],"interactTitleText":[1,"interact-title-text"],"facebookTitleText":[1,"facebook-title-text"],"twitterTitleText":[1,"twitter-title-text"],"linkedinTitleText":[1,"linkedin-title-text"],"emailTitleText":[1,"email-title-text"],"facebookPrefixText":[1,"facebook-prefix-text"],"twitterPrefixText":[1,"twitter-prefix-text"],"linkedinPrefixText":[1,"linkedin-prefix-text"],"personalInfoSubtitleText":[1,"personal-info-subtitle-text"],"interactSubtitleText":[1,"interact-subtitle-text"],"socialEnabled":[32]},null,{"settings":["settingsChanged"]}]]],["p-1710f088",[[257,"ur-editor",{"content":[1],"disabled":[4],"placeholder":[1],"wordLabel":[1,"word-label"],"charLabel":[1,"char-label"],"readingDurationLabel":[1,"reading-duration-label"],"enableBold":[4,"enable-bold"],"enableItalic":[4,"enable-italic"],"enableUnderline":[4,"enable-underline"],"enableTextAlign":[4,"enable-text-align"],"enableBlockquote":[4,"enable-blockquote"],"maxLength":[2,"max-length"],"maxWords":[2,"max-words"],"showCounter":[4,"show-counter"],"showFixedToolbar":[516,"show-fixed-toolbar"],"showSelectionToolbar":[516,"show-selection-toolbar"],"minHeight":[1,"min-height"],"formattingState":[32],"charCount":[32],"wordCount":[32],"readingDuration":[32],"readingDurationSeconds":[32],"selectionTooltip":[32],"isMouseDown":[32],"getHTML":[64],"getText":[64],"setContent":[64],"clearContent":[64]},null,{"maxLength":["maxLengthUpdated"],"maxWords":["maxWordsUpdated"],"content":["contentUpdated"],"disabled":["disabledUpdated"],"enableBold":["formattingOptionsUpdated"],"enableItalic":["formattingOptionsUpdated"],"enableUnderline":["formattingOptionsUpdated"],"enableBlockquote":["formattingOptionsUpdated"],"enableTextAlign":["formattingOptionsUpdated"],"minHeight":["minHeightUpdated"]}]]],["p-75a75867",[[257,"ur-top-app-bar",{"headerTitle":[1,"header-title"],"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-572d5844",[[257,"ur-dialog",{"description":[1],"open":[4],"fullscreen":[4],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"showHeader":[4,"show-header"],"overlayHeader":[4,"overlay-header"],"variant":[1],"borderRadius":[1,"border-radius"],"openDialog":[64],"closeDialog":[64]}]]],["p-5622a86f",[[257,"ur-list-subheader",{"text":[1]}]]],["p-ff5119f4",[[257,"ur-navigation-bar",{"position":[1],"labelVisibility":[1,"label-visibility"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"value":[1537],"scrollTarget":[1,"scroll-target"],"setValue":[64]},[[0,"change","changeHandler"]],{"value":["valueChanged"]}]]],["p-173882b8",[[257,"ur-profile",{"name":[8],"description":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"show_follow":[4],"show_donate":[4],"show_become_member":[4],"show_send_message":[4],"show_stats":[4],"stories_count":[2],"views_count":[2],"followers_count":[2],"writers_count":[2],"show_languages":[4],"languages":[1],"show_genres":[4],"genres":[1],"show_member_since":[4],"member_since":[1]}]]],["p-2cc17248",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-190ed39b",[[257,"ur-select",{"value":[1],"name":[1],"label":[1],"placeholder":[1],"helper":[1],"variant":[1],"usage":[1],"multiple":[4],"clearable":[4],"disabled":[4],"required":[4],"readonly":[4],"size":[1],"placement":[1],"icon":[1],"endIcon":[1,"end-icon"],"flex":[4],"suffix":[1],"clearIcon":[1,"clear-icon"],"displayText":[32]},[[0,"menuItemChange","handleMenuItemChange"]],{"value":["handleValueChange"]}]]],["p-44a1e2be",[[257,"ur-snackbar",{"open":[1540],"placement":[1],"action":[1],"actionLoading":[4,"action-loading"],"closeable":[4],"closeIcon":[1,"close-icon"],"messageLine":[2,"message-line"],"autoCloseDelay":[2,"auto-close-delay"],"closeOnOutsideClick":[4,"close-on-outside-click"],"message":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"actionColor":[1,"action-color"],"radius":[1],"zIndex":[1,"z-index"]}]]],["p-18624f2b",[[257,"ur-user-profile"]]],["p-b5164a99",[[257,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-53764324",[[257,"ur-page",{"pageId":[1,"page-id"],"loading":[4],"followed":[4],"pageTitle":[1,"page-title"],"pageCover":[1,"page-cover"],"pageCoverFallback":[1,"page-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"pageDescription":[1,"page-description"],"pageType":[1,"page-type"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-99d6b36d",[[257,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followed":[4],"userTitle":[1,"user-title"],"userCover":[1,"user-cover"],"userCoverFallback":[1,"user-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"userDescription":[1,"user-description"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-c605df0e",[[257,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1],"containerPadding":[1,"container-padding"],"iconMargin":[1,"icon-margin"],"borderRadius":[1,"border-radius"]}]]],["p-50245874",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-18531d84",[[257,"ur-button-icon",{"disabled":[4],"loading":[4],"variant":[1],"icon":[1],"selectedIcon":[1,"selected-icon"],"selected":[4],"active":[4],"borderRadius":[1,"border-radius"],"buttonWidth":[1,"button-width"],"buttonHeight":[1,"button-height"],"fontColor":[1,"font-color"],"backgroundColor":[1,"background-color"]}]]],["p-6813b14e",[[257,"ur-novl",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"likes":[2],"views":[2],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"]}],[257,"ur-tooltip",{"content":[1],"variant":[1],"placement":[1],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"trigger":[1],"colorScheme":[1,"color-scheme"],"disabled":[4],"isVisible":[32]}],[257,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1],"skeleton":[4]}]]],["p-e572d1ff",[[257,"ur-competition",{"competitionId":[1,"competition-id"],"competitionTitle":[1,"competition-title"],"description":[1],"literatureType":[1,"literature-type"],"genre":[1],"language":[1],"entryFee":[2,"entry-fee"],"hasEntryFee":[4,"has-entry-fee"],"prizeTypes":[16,"prize-types"],"startDate":[1,"start-date"],"submissionDeadline":[1,"submission-deadline"],"winnersAnnouncementDate":[1,"winners-announcement-date"],"status":[1],"imageUrl":[1,"image-url"],"pageAvatar":[1,"page-avatar"],"clickable":[4],"height":[1],"skeleton":[4],"freeText":[1,"free-text"],"tbdText":[1,"tbd-text"],"unknownText":[1,"unknown-text"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"startDateText":[1,"start-date-text"],"deadlineText":[1,"deadline-text"],"winnersText":[1,"winners-text"],"closedText":[1,"closed-text"],"completedText":[1,"completed-text"],"entryFeeText":[1,"entry-fee-text"],"prizeText":[1,"prize-text"]}]]],["p-ac24f392",[[257,"ur-competition-carousel",{"competitions":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"cardHeight":[1,"card-height"],"skeleton":[4],"disabledPrev":[32],"disabledNext":[32],"addCompetitions":[64],"updateCompetitionsByIndex":[64],"reset":[64]}]]],["p-f4e3468d",[[257,"ur-button",{"disabled":[4],"variant":[1],"icon":[8],"endIcon":[8,"end-icon"],"fullWidth":[4,"full-width"],"loading":[4],"fontColor":[1,"font-color"],"buttonHeight":[1,"button-height"],"borderRadius":[1,"border-radius"],"backgroundColor":[1,"background-color"],"skeleton":[4]}]]],["p-555ff814",[[257,"ur-page-profile",{"pageId":[1,"page-id"],"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"stories":[2],"views":[2],"pageCreatedText":[1,"page-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"websiteText":[1,"website-text"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isPageOwner":[4,"is-page-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"pageType":[1,"page-type"],"pageCreationDate":[8,"page-creation-date"],"locale":[1],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"membersText":[1,"members-text"],"followText":[1,"follow-text"],"followingText":[1,"following-text"],"becomeMemberText":[1,"become-member-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"cancelMembershipText":[1,"cancel-membership-text"],"youreMemberText":[1,"youre-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"skeleton":[4],"memberRequestStatus":[1025,"member-request-status"],"memberButtonHoverState":[32]}]]],["p-c4ef9ff3",[[257,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"submitButtonText":[1,"submit-button-text"],"formState":[32]}]]],["p-7f227e76",[[257,"ur-feedback",{"titleText":[1,"title-text"],"descriptionText":[1,"description-text"],"placeholderText":[1,"placeholder-text"],"feedbackText":[1,"feedback-text"],"supportText":[1,"support-text"],"pressText":[1,"press-text"],"successText":[1,"success-text"],"user":[4],"failureText":[1,"failure-text"],"messageLabel":[1,"message-label"],"emailLabel":[1,"email-label"],"emailPlaceholder":[1,"email-placeholder"],"sendText":[1,"send-text"],"text":[32],"disabled":[32],"success":[32],"failure":[32],"mode":[32],"userEmail":[32],"emailError":[32],"reset":[64],"handleSubmitSuccess":[64],"handleSubmitFailure":[64]}]]],["p-2768fcb6",[[257,"ur-user-page-profile",{"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"website":[8],"stories":[2],"views":[2],"userProfileCreatedText":[1,"user-profile-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"isProfileFollowed":[4,"is-profile-followed"],"unFollowText":[1,"un-follow-text"],"websiteText":[1,"website-text"],"writerText":[1,"writer-text"],"readerText":[1,"reader-text"],"isLoggedIn":[4,"is-logged-in"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isProfileOwner":[4,"is-profile-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"isWriter":[4,"is-writer"],"userProfileCreatedDate":[8,"user-profile-created-date"],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"followingText":[1,"following-text"],"pagesFollowingText":[1,"pages-following-text"],"pagesFollowing":[2,"pages-following"],"logoutText":[1,"logout-text"],"locale":[1],"skeleton":[4],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-41e13975",[[257,"ur-autosave-drawer",{"autosaves":[1040],"emptyMessage":[1,"empty-message"],"chapterText":[1,"chapter-text"],"yesText":[1,"yes-text"],"noText":[1,"no-text"],"autosavesTitle":[1,"autosaves-title"],"deleteConfirmMessage":[1,"delete-confirm-message"],"forceRender":[32]},null,{"autosaves":["autosavesChanged"]}]]],["p-0e5384a3",[[257,"ur-chapter-item",{"chapterId":[1,"chapter-id"],"chapterNumber":[2,"chapter-number"],"chapterTitle":[1,"chapter-title"],"createdAt":[1,"created-at"],"isBound":[4,"is-bound"],"isStoryCompleted":[4,"is-story-completed"],"likes":[2],"views":[2],"isOwner":[4,"is-owner"],"readingDuration":[2,"reading-duration"],"readChapterText":[1,"read-chapter-text"],"likesText":[1,"likes-text"],"viewsText":[1,"views-text"],"readingDurationText":[1,"reading-duration-text"],"locale":[1],"isLocked":[4,"is-locked"],"isLastChapter":[4,"is-last-chapter"],"loading":[32]}]]],["p-275df36e",[[257,"ur-main-desktop-top-app-bar",{"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"fontColor":[1,"font-color"],"quillText":[1,"quill-text"],"deviceVariant":[1,"device-variant"],"searchText":[1,"search-text"],"quillCount":[2,"quill-count"]}]]],["p-c6b088b3",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-0efa0800",[[257,"ur-page-list",{"pages":[16],"skeleton":[4],"titleFontSize":[1,"title-font-size"],"gap":[1],"hideTitle":[4,"hide-title"],"containerPadding":[1,"container-padding"],"avatarSize":[1,"avatar-size"]}]]],["p-36ef057f",[[257,"ur-player",{"src":[1],"storyTitle":[1,"story-title"],"author":[1],"coverImage":[1,"cover-image"],"chapterName":[1,"chapter-name"],"playText":[1,"play-text"],"pauseText":[1,"pause-text"],"forwardText":[1,"forward-text"],"backwardText":[1,"backward-text"],"speedText":[1,"speed-text"],"volumeText":[1,"volume-text"],"autoPlay":[4,"auto-play"],"showControls":[4,"show-controls"],"primaryColor":[1,"primary-color"],"accentColor":[1,"accent-color"],"darkMode":[4,"dark-mode"],"isPlaying":[32],"currentTime":[32],"duration":[32],"loadedPercentage":[32],"volume":[32],"playbackRate":[32],"play":[64],"pause":[64],"togglePlay":[64],"seekTo":[64],"setVolume":[64],"setPlaybackRate":[64],"skipForward":[64],"skipBackward":[64]},null,{"src":["onSourceChange"]}]]],["p-656844fe",[[257,"ur-read-rail",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[2],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"mode":[1],"isFollowed":[4,"is-followed"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isPaidChapter":[4,"is-paid-chapter"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"isHostSmall":[4,"is-host-small"],"pageSrc":[1,"page-src"],"pageName":[1,"page-name"],"pageId":[1,"page-id"],"isPageFollowed":[4,"is-page-followed"],"isVisible":[4,"is-visible"],"isLiked":[32],"isDisliked":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isPaidChapter":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isHostSmall":["handlePropChange","handleHostSmallChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"],"pageSrc":["handlePropChange"],"pageName":["handlePropChange"],"pageId":["handlePropChange"],"isPageFollowed":["handlePropChange"]}]]],["p-375f5509",[[257,"ur-reader",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"loading":[4],"chapterLocked":[4,"chapter-locked"],"storyTitle":[1,"story-title"],"chapterTitle":[1,"chapter-title"],"chapterContent":[1,"chapter-content"],"fontSize":[1,"font-size"],"chapterSequence":[2,"chapter-sequence"],"fontType":[1,"font-type"],"readingDurationText":[1,"reading-duration-text"],"minutesText":[1,"minutes-text"],"likes":[1],"comments":[2],"dislike":[1],"donate":[1],"share":[1],"isVisible":[4,"is-visible"],"readingTimePerWord":[2,"reading-time-per-word"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"hasPreviousChapter":[4,"has-previous-chapter"],"hasNextChapter":[4,"has-next-chapter"],"lockedMessage":[1,"locked-message"],"nextChapterText":[1,"next-chapter-text"],"previousChapterText":[1,"previous-chapter-text"],"unlockButtonLabel":[1,"unlock-button-label"],"isSmallContainer":[32],"baseFontSize":[32],"fontStyles":[32],"isHostSmall":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"storyTitle":["handlePropChange"],"chapterTitle":["handlePropChange"],"chapterContent":["handlePropChange"],"fontSize":["handlePropChange"],"fontType":["handlePropChange"],"loading":["handlePropChange"],"chapterLocked":["handlePropChange"],"chapterSequence":["handlePropChange"],"hasPreviousChapter":["handlePropChange"],"hasNextChapter":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-8fcfad4e",[[257,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"loading":[4],"skeleton":[4],"reset":[64]}]]],["p-97ced9bc",[[257,"ur-read-rail-mobile",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[1],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"isFollowed":[4,"is-followed"],"isVisible":[4,"is-visible"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-ba46a0f2",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16,"step-titles"],"stepDescriptions":[16,"step-descriptions"],"showStepNumbers":[4,"show-step-numbers"],"completedStepIcon":[1,"completed-step-icon"],"nextButtonText":[1,"next-button-text"],"previousButtonText":[1,"previous-button-text"],"completeButtonText":[1,"complete-button-text"],"completeStepText":[1,"complete-step-text"],"ongoingStepText":[1,"ongoing-step-text"],"nextButtonDisabled":[4,"next-button-disabled"],"completedSteps":[32],"stepValidation":[32],"goToStep":[64],"markStepComplete":[64],"markStepInvalid":[64],"reset":[64]}]]],["p-f30aa75c",[[257,"ur-checkbox-group",{"name":[1],"values":[1040],"required":[4],"selectAll":[4,"select-all"],"selectAllText":[1,"select-all-text"],"maxSelectable":[2,"max-selectable"],"options":[32],"validate":[64],"reset":[64]}]]],["p-aef81956",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-570322a6",[[257,"ur-hero",{"heroTitle":[1,"hero-title"],"heroSubtitle":[1,"hero-subtitle"],"ctaText":[1,"cta-text"],"backgroundImage":[1,"background-image"],"backgroundColor":[1,"background-color"],"layout":[1],"backgroundJustification":[1,"background-justification"],"backgroundAlignment":[1,"background-alignment"],"heroTitleColor":[1,"hero-title-color"],"heroSubtitleColor":[1,"hero-subtitle-color"],"widthClass":[32]}]]],["p-a645e793",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-072aa311",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-8d8fab25",[[257,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-a03b30aa",[[257,"ur-shelf-item",{"shelf":[16],"novels":[16],"isOwnShelf":[4,"is-own-shelf"],"skeleton":[4],"totalStoryCount":[2,"total-story-count"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"],"noStoriesText":[1,"no-stories-text"]}]]],["p-2d75d645",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6655a44d",[[257,"ur-bottom-sheet",{"open":[4],"selectedDetent":[1,"selected-detent"],"backdropDismiss":[4,"backdrop-dismiss"],"currentDetent":[32],"dragPosition":[32],"isVisible":[32],"showSheet":[64],"hideSheet":[64]},null,{"open":["watchOpen"]}]]],["p-b74098cc",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-b6af1ca4",[[257,"ur-dropdown",{"open":[1540],"disabled":[4],"trigger":[1],"placement":[1],"stayOpenOnClick":[4,"stay-open-on-click"],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"openOnPointer":[4,"open-on-pointer"],"openDropdown":[64],"closeDropdown":[64],"toggle":[64]},null,{"open":["handleOpenChange"]}]]],["p-5b467c2c",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-cc1a0f05",[[260,"ur-grid-col",{"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"],"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"windowWidth":[32]}]]],["p-c6c9068d",[[257,"ur-grid-row"]]],["p-f07ff4a4",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-d2d9ec5b",[[257,"ur-image-uploader",{"width":[1],"height":[1],"maxHeight":[1,"max-height"],"borderRadius":[1,"border-radius"],"borderStyle":[1,"border-style"],"backgroundColor":[1,"background-color"],"hoverBackgroundColor":[1,"hover-background-color"],"acceptTypes":[1,"accept-types"],"disabled":[4],"placeholderText":[1,"placeholder-text"],"uploadingText":[1,"uploading-text"],"showFileName":[4,"show-file-name"],"maxFileSize":[2,"max-file-size"],"enableNativeUpload":[4,"enable-native-upload"],"loading":[4],"isDragOver":[32],"selectedFile":[32],"previewUrl":[32],"isUploading":[32],"setImageUrl":[64],"getImageUrl":[64],"clearImage":[64],"getSelectedFile":[64],"setUploadingState":[64]}]]],["p-2a7f97ed",[[257,"ur-loader"]]],["p-20768738",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-b0df607b",[[257,"ur-menu-item",{"value":[1],"label":[1],"disabled":[4],"selected":[4],"size":[1],"selectedIcon":[1,"selected-icon"],"fullWidth":[4,"full-width"],"leftAligned":[4,"left-aligned"],"heightNumber":[514,"height-number"],"isHovered":[32]},[[4,"selectionChanged","handleSelectionChanged"]],{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-41b3a1b3",[[257,"ur-navigation-drawer",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contained":[4],"openDrawer":[64],"closeDrawer":[64]}]]],["p-28b7d6da",[[257,"ur-navigation-drawer-global",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contentHeight":[32],"openDrawer":[64],"closeDrawer":[64]}]]],["p-f7e454e5",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-755b4a8a",[[257,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-136af971",[[257,"ur-page-shared-list-tabs",{"activeTab":[1,"active-tab"],"followersTabText":[1,"followers-tab-text"],"membersTabText":[1,"members-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-8656aef0",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-af64573e",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-aadc0685",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-50590839",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-8843bf71",[[257,"ur-profile-card",{"avatarSrc":[1,"avatar-src"],"avatarAlt":[1,"avatar-alt"],"name":[1],"avatarSize":[1,"avatar-size"],"description":[1],"followButtonText":[1,"follow-button-text"],"isOwner":[4,"is-owner"],"profileType":[1,"profile-type"],"nameFontSize":[1,"name-font-size"],"unfollowButtonText":[1,"unfollow-button-text"],"buttonHeight":[1,"button-height"],"buttonWidth":[1,"button-width"],"pageActionsTooltipText":[1,"page-actions-tooltip-text"],"memberActionsTooltipText":[1,"member-actions-tooltip-text"],"showDescription":[4,"show-description"],"showMemberActions":[4,"show-member-actions"],"showPageActions":[4,"show-page-actions"],"hideFollowActions":[4,"hide-follow-actions"],"initialFollowState":[4,"initial-follow-state"],"skeleton":[4],"isFollowing":[32]},null,{"initialFollowState":["onInitialFollowStateChange"]}]]],["p-af90b0c6",[[257,"ur-competition-novl-card",{"novlId":[1,"novl-id"],"novlTitle":[1,"novl-title"],"shortSummary":[1,"short-summary"],"chaptersCount":[2,"chapters-count"],"wordCount":[2,"word-count"],"coverImage":[1,"cover-image"],"language":[1],"genre":[1],"literatureType":[1,"literature-type"],"authorName":[1,"author-name"],"showDescription":[4,"show-description"],"showAuthor":[4,"show-author"],"showStats":[4,"show-stats"],"showChips":[4,"show-chips"],"clickable":[4],"size":[1],"chipSize":[1,"chip-size"],"skeleton":[4],"showMenu":[4,"show-menu"],"entryId":[1,"entry-id"],"isOwnerViewing":[4,"is-owner-viewing"],"winnerPosition":[2,"winner-position"],"isWinner":[4,"is-winner"],"winnerBadgePosition":[1,"winner-badge-position"],"withdrawButtonText":[1,"withdraw-button-text"],"removeEntryText":[1,"remove-entry-text"],"chaptersText":[1,"chapters-text"],"wordsText":[1,"words-text"],"winnerText":[1,"winner-text"],"isMenuOpen":[32]}],[257,"ur-stats",{"stats":[16],"skeleton":[4],"layout":[1],"showSeparators":[4,"show-separators"],"background":[1]}]]],["p-eb736d69",[[257,"ur-list"]]],["p-323c221c",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-66b794bc",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-9596a813",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-5dad32b3",[[257,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[4,"full-width"]},null,{"checked":["watchChecked"]}],[257,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-d0171c81",[[257,"ur-text-field",{"label":[1],"placeholder":[1],"helper":[1],"disabled":[4],"required":[4],"variant":[1],"value":[1025],"name":[1],"endIcon":[1,"end-icon"],"rows":[2],"autosize":[4],"minRows":[2,"min-rows"],"maxRows":[2,"max-rows"],"minlength":[2],"maxlength":[2],"counter":[4],"type":[1],"pattern":[1],"min":[8],"max":[8],"step":[8],"error":[1540],"errorMessage":[1537,"error-message"],"skeleton":[4]}]]],["p-c719a7e0",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-29a42efe",[[257,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"skeleton":[4],"disabled":[4],"clickable":[4]}]]]]'),e))));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "urnovl-web-components",
3
- "version": "0.0.227",
3
+ "version": "0.0.229",
4
4
  "description": "Web components for Urnovl",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -1 +1 @@
1
- import{p as e,g as t,b as a}from"./p-DxicD_v0.js";export{s as setNonce}from"./p-DxicD_v0.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await t(),a(JSON.parse('[["p-d3773116",[[257,"ur-competition-overview",{"competition":[16],"submissions":[16],"submissionsLoading":[4,"submissions-loading"],"loading":[4],"error":[1],"deviceSize":[1,"device-size"],"isOwner":[4,"is-owner"],"isParticipant":[4,"is-participant"],"canSubmit":[4,"can-submit"],"showEditButton":[4,"show-edit-button"],"showDeleteButton":[4,"show-delete-button"],"skeleton":[4],"currentUserId":[1,"current-user-id"],"userHasSubmission":[4,"user-has-submission"],"userSubmission":[16,"user-submission"],"initialTab":[1,"initial-tab"],"currentPage":[2,"current-page"],"itemsPerPage":[2,"items-per-page"],"totalEntries":[2,"total-entries"],"winnerBadgePosition":[1,"winner-badge-position"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"tabDetailsText":[1,"tab-details-text"],"tabSubmissionsText":[1,"tab-submissions-text"],"sectionDescriptionText":[1,"section-description-text"],"sectionJudgingText":[1,"section-judging-text"],"sectionPrizesText":[1,"section-prizes-text"],"sectionCreatedByText":[1,"section-created-by-text"],"statEntryFeeText":[1,"stat-entry-fee-text"],"statWordCountText":[1,"stat-word-count-text"],"statStartDateText":[1,"stat-start-date-text"],"statDeadlineText":[1,"stat-deadline-text"],"statWinnersText":[1,"stat-winners-text"],"submitButtonText":[1,"submit-button-text"],"withdrawButtonText":[1,"withdraw-button-text"],"finalizeButtonText":[1,"finalize-button-text"],"deleteButtonText":[1,"delete-button-text"],"editButtonText":[1,"edit-button-text"],"backButtonText":[1,"back-button-text"],"previousButtonText":[1,"previous-button-text"],"nextButtonText":[1,"next-button-text"],"removeEntryText":[1,"remove-entry-text"],"noSubmissionsText":[1,"no-submissions-text"],"loadingSubmissionsText":[1,"loading-submissions-text"],"showingEntriesText":[1,"showing-entries-text"],"freeText":[1,"free-text"],"noLimitText":[1,"no-limit-text"],"upToText":[1,"up-to-text"],"atLeastText":[1,"at-least-text"],"rangeText":[1,"range-text"],"tbdText":[1,"tbd-text"],"editDisabledTooltipText":[1,"edit-disabled-tooltip-text"],"activeTab":[32],"setActiveTab":[64]}]]],["p-70ef7dcb",[[257,"ur-main-menu",{"opened":[4],"loggedIn":[4,"logged-in"],"userName":[1,"user-name"],"userRole":[1,"user-role"],"userAvatar":[1,"user-avatar"],"badgeCount":[2,"badge-count"],"termsText":[1,"terms-text"],"rulesText":[1,"rules-text"],"privacyText":[1,"privacy-text"],"paymentText":[1,"payment-text"],"acceptableUseText":[1,"acceptable-use-text"],"partnershipText":[1,"partnership-text"],"homeText":[1,"home-text"],"storiesText":[1,"stories-text"],"pagesText":[1,"pages-text"],"myLibraryText":[1,"my-library-text"],"competitionsText":[1,"competitions-text"],"notificationText":[1,"notification-text"],"facebookText":[1,"facebook-text"],"xText":[1,"x-text"],"discordText":[1,"discord-text"],"contactUsText":[1,"contact-us-text"],"signUpText":[1,"sign-up-text"],"premiumText":[1,"premium-text"],"whatsNewText":[1,"whats-new-text"],"faqsText":[1,"faqs-text"],"currentRoute":[1,"current-route"],"notificationCenterOpened":[4,"notification-center-opened"],"myLibraryOpened":[4,"my-library-opened"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"],"myLibraryOpened":["watchMyLibraryOpenedHandler"]}]]],["p-5cc527a4",[[257,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"attachRequestStatus":[1025,"attach-request-status"],"attachStoryText":[1,"attach-story-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"detachFromPageText":[1,"detach-from-page-text"],"attachedToPageText":[1,"attached-to-page-text"],"editTitleTooltipText":[1,"edit-title-tooltip-text"],"editDescriptionTooltipText":[1,"edit-description-tooltip-text"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"visibility":[1],"visibilityPublicText":[1,"visibility-public-text"],"visibilityPrivateText":[1,"visibility-private-text"],"completeStoryText":[1,"complete-story-text"],"revertStoryText":[1,"revert-story-text"],"expanded":[4],"showPublishedButton":[4,"show-published-button"],"skeleton":[4],"attachButtonHoverState":[32],"reset":[64]}]]],["p-fbf18c17",[[257,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32],"isShelfPublic":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-260ae23e",[[257,"ur-novl-carousel",{"novls":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-25b2dd40",[[257,"ur-page-carousel",{"pages":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4ebc2130",[[257,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-f94a1a59",[[257,"ur-user-profile-settings-form",{"settings":[8],"skeleton":[4],"locationLabelText":[1,"location-label-text"],"websiteLabelText":[1,"website-label-text"],"aboutLabelText":[1,"about-label-text"],"facebookLabelText":[1,"facebook-label-text"],"twitterLabelText":[1,"twitter-label-text"],"linkedinLabelText":[1,"linkedin-label-text"],"emailLabelText":[1,"email-label-text"],"personalInfoTitleText":[1,"personal-info-title-text"],"interactTitleText":[1,"interact-title-text"],"facebookTitleText":[1,"facebook-title-text"],"twitterTitleText":[1,"twitter-title-text"],"linkedinTitleText":[1,"linkedin-title-text"],"emailTitleText":[1,"email-title-text"],"facebookPrefixText":[1,"facebook-prefix-text"],"twitterPrefixText":[1,"twitter-prefix-text"],"linkedinPrefixText":[1,"linkedin-prefix-text"],"personalInfoSubtitleText":[1,"personal-info-subtitle-text"],"interactSubtitleText":[1,"interact-subtitle-text"],"socialEnabled":[32]},null,{"settings":["settingsChanged"]}]]],["p-1710f088",[[257,"ur-editor",{"content":[1],"disabled":[4],"placeholder":[1],"wordLabel":[1,"word-label"],"charLabel":[1,"char-label"],"readingDurationLabel":[1,"reading-duration-label"],"enableBold":[4,"enable-bold"],"enableItalic":[4,"enable-italic"],"enableUnderline":[4,"enable-underline"],"enableTextAlign":[4,"enable-text-align"],"enableBlockquote":[4,"enable-blockquote"],"maxLength":[2,"max-length"],"maxWords":[2,"max-words"],"showCounter":[4,"show-counter"],"showFixedToolbar":[516,"show-fixed-toolbar"],"showSelectionToolbar":[516,"show-selection-toolbar"],"minHeight":[1,"min-height"],"formattingState":[32],"charCount":[32],"wordCount":[32],"readingDuration":[32],"readingDurationSeconds":[32],"selectionTooltip":[32],"isMouseDown":[32],"getHTML":[64],"getText":[64],"setContent":[64],"clearContent":[64]},null,{"maxLength":["maxLengthUpdated"],"maxWords":["maxWordsUpdated"],"content":["contentUpdated"],"disabled":["disabledUpdated"],"enableBold":["formattingOptionsUpdated"],"enableItalic":["formattingOptionsUpdated"],"enableUnderline":["formattingOptionsUpdated"],"enableBlockquote":["formattingOptionsUpdated"],"enableTextAlign":["formattingOptionsUpdated"],"minHeight":["minHeightUpdated"]}]]],["p-75a75867",[[257,"ur-top-app-bar",{"headerTitle":[1,"header-title"],"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-572d5844",[[257,"ur-dialog",{"description":[1],"open":[4],"fullscreen":[4],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"showHeader":[4,"show-header"],"overlayHeader":[4,"overlay-header"],"variant":[1],"borderRadius":[1,"border-radius"],"openDialog":[64],"closeDialog":[64]}]]],["p-5622a86f",[[257,"ur-list-subheader",{"text":[1]}]]],["p-ff5119f4",[[257,"ur-navigation-bar",{"position":[1],"labelVisibility":[1,"label-visibility"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"value":[1537],"scrollTarget":[1,"scroll-target"],"setValue":[64]},[[0,"change","changeHandler"]],{"value":["valueChanged"]}]]],["p-173882b8",[[257,"ur-profile",{"name":[8],"description":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"show_follow":[4],"show_donate":[4],"show_become_member":[4],"show_send_message":[4],"show_stats":[4],"stories_count":[2],"views_count":[2],"followers_count":[2],"writers_count":[2],"show_languages":[4],"languages":[1],"show_genres":[4],"genres":[1],"show_member_since":[4],"member_since":[1]}]]],["p-2cc17248",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-190ed39b",[[257,"ur-select",{"value":[1],"name":[1],"label":[1],"placeholder":[1],"helper":[1],"variant":[1],"usage":[1],"multiple":[4],"clearable":[4],"disabled":[4],"required":[4],"readonly":[4],"size":[1],"placement":[1],"icon":[1],"endIcon":[1,"end-icon"],"flex":[4],"suffix":[1],"clearIcon":[1,"clear-icon"],"displayText":[32]},[[0,"menuItemChange","handleMenuItemChange"]],{"value":["handleValueChange"]}]]],["p-44a1e2be",[[257,"ur-snackbar",{"open":[1540],"placement":[1],"action":[1],"actionLoading":[4,"action-loading"],"closeable":[4],"closeIcon":[1,"close-icon"],"messageLine":[2,"message-line"],"autoCloseDelay":[2,"auto-close-delay"],"closeOnOutsideClick":[4,"close-on-outside-click"],"message":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"actionColor":[1,"action-color"],"radius":[1],"zIndex":[1,"z-index"]}]]],["p-18624f2b",[[257,"ur-user-profile"]]],["p-b5164a99",[[257,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-53764324",[[257,"ur-page",{"pageId":[1,"page-id"],"loading":[4],"followed":[4],"pageTitle":[1,"page-title"],"pageCover":[1,"page-cover"],"pageCoverFallback":[1,"page-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"pageDescription":[1,"page-description"],"pageType":[1,"page-type"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-99d6b36d",[[257,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followed":[4],"userTitle":[1,"user-title"],"userCover":[1,"user-cover"],"userCoverFallback":[1,"user-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"userDescription":[1,"user-description"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-c605df0e",[[257,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1],"containerPadding":[1,"container-padding"],"iconMargin":[1,"icon-margin"],"borderRadius":[1,"border-radius"]}]]],["p-50245874",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-18531d84",[[257,"ur-button-icon",{"disabled":[4],"loading":[4],"variant":[1],"icon":[1],"selectedIcon":[1,"selected-icon"],"selected":[4],"active":[4],"borderRadius":[1,"border-radius"],"buttonWidth":[1,"button-width"],"buttonHeight":[1,"button-height"],"fontColor":[1,"font-color"],"backgroundColor":[1,"background-color"]}]]],["p-6813b14e",[[257,"ur-novl",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"likes":[2],"views":[2],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"]}],[257,"ur-tooltip",{"content":[1],"variant":[1],"placement":[1],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"trigger":[1],"colorScheme":[1,"color-scheme"],"disabled":[4],"isVisible":[32]}],[257,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1],"skeleton":[4]}]]],["p-e572d1ff",[[257,"ur-competition",{"competitionId":[1,"competition-id"],"competitionTitle":[1,"competition-title"],"description":[1],"literatureType":[1,"literature-type"],"genre":[1],"language":[1],"entryFee":[2,"entry-fee"],"hasEntryFee":[4,"has-entry-fee"],"prizeTypes":[16,"prize-types"],"startDate":[1,"start-date"],"submissionDeadline":[1,"submission-deadline"],"winnersAnnouncementDate":[1,"winners-announcement-date"],"status":[1],"imageUrl":[1,"image-url"],"pageAvatar":[1,"page-avatar"],"clickable":[4],"height":[1],"skeleton":[4],"freeText":[1,"free-text"],"tbdText":[1,"tbd-text"],"unknownText":[1,"unknown-text"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"startDateText":[1,"start-date-text"],"deadlineText":[1,"deadline-text"],"winnersText":[1,"winners-text"],"closedText":[1,"closed-text"],"completedText":[1,"completed-text"],"entryFeeText":[1,"entry-fee-text"],"prizeText":[1,"prize-text"]}]]],["p-ac24f392",[[257,"ur-competition-carousel",{"competitions":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"cardHeight":[1,"card-height"],"skeleton":[4],"disabledPrev":[32],"disabledNext":[32],"addCompetitions":[64],"updateCompetitionsByIndex":[64],"reset":[64]}]]],["p-f4e3468d",[[257,"ur-button",{"disabled":[4],"variant":[1],"icon":[8],"endIcon":[8,"end-icon"],"fullWidth":[4,"full-width"],"loading":[4],"fontColor":[1,"font-color"],"buttonHeight":[1,"button-height"],"borderRadius":[1,"border-radius"],"backgroundColor":[1,"background-color"],"skeleton":[4]}]]],["p-555ff814",[[257,"ur-page-profile",{"pageId":[1,"page-id"],"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"stories":[2],"views":[2],"pageCreatedText":[1,"page-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"websiteText":[1,"website-text"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isPageOwner":[4,"is-page-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"pageType":[1,"page-type"],"pageCreationDate":[8,"page-creation-date"],"locale":[1],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"membersText":[1,"members-text"],"followText":[1,"follow-text"],"followingText":[1,"following-text"],"becomeMemberText":[1,"become-member-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"cancelMembershipText":[1,"cancel-membership-text"],"youreMemberText":[1,"youre-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"skeleton":[4],"memberRequestStatus":[1025,"member-request-status"],"memberButtonHoverState":[32]}]]],["p-c4ef9ff3",[[257,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"submitButtonText":[1,"submit-button-text"],"formState":[32]}]]],["p-7f227e76",[[257,"ur-feedback",{"titleText":[1,"title-text"],"descriptionText":[1,"description-text"],"placeholderText":[1,"placeholder-text"],"feedbackText":[1,"feedback-text"],"supportText":[1,"support-text"],"pressText":[1,"press-text"],"successText":[1,"success-text"],"user":[4],"failureText":[1,"failure-text"],"messageLabel":[1,"message-label"],"emailLabel":[1,"email-label"],"emailPlaceholder":[1,"email-placeholder"],"sendText":[1,"send-text"],"text":[32],"disabled":[32],"success":[32],"failure":[32],"mode":[32],"userEmail":[32],"emailError":[32],"reset":[64],"handleSubmitSuccess":[64],"handleSubmitFailure":[64]}]]],["p-2768fcb6",[[257,"ur-user-page-profile",{"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"website":[8],"stories":[2],"views":[2],"userProfileCreatedText":[1,"user-profile-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"isProfileFollowed":[4,"is-profile-followed"],"unFollowText":[1,"un-follow-text"],"websiteText":[1,"website-text"],"writerText":[1,"writer-text"],"readerText":[1,"reader-text"],"isLoggedIn":[4,"is-logged-in"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isProfileOwner":[4,"is-profile-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"isWriter":[4,"is-writer"],"userProfileCreatedDate":[8,"user-profile-created-date"],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"followingText":[1,"following-text"],"pagesFollowingText":[1,"pages-following-text"],"pagesFollowing":[2,"pages-following"],"logoutText":[1,"logout-text"],"locale":[1],"skeleton":[4],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-41e13975",[[257,"ur-autosave-drawer",{"autosaves":[1040],"emptyMessage":[1,"empty-message"],"chapterText":[1,"chapter-text"],"yesText":[1,"yes-text"],"noText":[1,"no-text"],"autosavesTitle":[1,"autosaves-title"],"deleteConfirmMessage":[1,"delete-confirm-message"],"forceRender":[32]},null,{"autosaves":["autosavesChanged"]}]]],["p-0e5384a3",[[257,"ur-chapter-item",{"chapterId":[1,"chapter-id"],"chapterNumber":[2,"chapter-number"],"chapterTitle":[1,"chapter-title"],"createdAt":[1,"created-at"],"isBound":[4,"is-bound"],"isStoryCompleted":[4,"is-story-completed"],"likes":[2],"views":[2],"isOwner":[4,"is-owner"],"readingDuration":[2,"reading-duration"],"readChapterText":[1,"read-chapter-text"],"likesText":[1,"likes-text"],"viewsText":[1,"views-text"],"readingDurationText":[1,"reading-duration-text"],"locale":[1],"isLocked":[4,"is-locked"],"isLastChapter":[4,"is-last-chapter"],"loading":[32]}]]],["p-275df36e",[[257,"ur-main-desktop-top-app-bar",{"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"fontColor":[1,"font-color"],"quillText":[1,"quill-text"],"deviceVariant":[1,"device-variant"],"searchText":[1,"search-text"],"quillCount":[2,"quill-count"]}]]],["p-c6b088b3",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-0efa0800",[[257,"ur-page-list",{"pages":[16],"skeleton":[4],"titleFontSize":[1,"title-font-size"],"gap":[1],"hideTitle":[4,"hide-title"],"containerPadding":[1,"container-padding"],"avatarSize":[1,"avatar-size"]}]]],["p-36ef057f",[[257,"ur-player",{"src":[1],"storyTitle":[1,"story-title"],"author":[1],"coverImage":[1,"cover-image"],"chapterName":[1,"chapter-name"],"playText":[1,"play-text"],"pauseText":[1,"pause-text"],"forwardText":[1,"forward-text"],"backwardText":[1,"backward-text"],"speedText":[1,"speed-text"],"volumeText":[1,"volume-text"],"autoPlay":[4,"auto-play"],"showControls":[4,"show-controls"],"primaryColor":[1,"primary-color"],"accentColor":[1,"accent-color"],"darkMode":[4,"dark-mode"],"isPlaying":[32],"currentTime":[32],"duration":[32],"loadedPercentage":[32],"volume":[32],"playbackRate":[32],"play":[64],"pause":[64],"togglePlay":[64],"seekTo":[64],"setVolume":[64],"setPlaybackRate":[64],"skipForward":[64],"skipBackward":[64]},null,{"src":["onSourceChange"]}]]],["p-656844fe",[[257,"ur-read-rail",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[2],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"mode":[1],"isFollowed":[4,"is-followed"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isPaidChapter":[4,"is-paid-chapter"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"isHostSmall":[4,"is-host-small"],"pageSrc":[1,"page-src"],"pageName":[1,"page-name"],"pageId":[1,"page-id"],"isPageFollowed":[4,"is-page-followed"],"isVisible":[4,"is-visible"],"isLiked":[32],"isDisliked":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isPaidChapter":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isHostSmall":["handlePropChange","handleHostSmallChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"],"pageSrc":["handlePropChange"],"pageName":["handlePropChange"],"pageId":["handlePropChange"],"isPageFollowed":["handlePropChange"]}]]],["p-375f5509",[[257,"ur-reader",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"loading":[4],"chapterLocked":[4,"chapter-locked"],"storyTitle":[1,"story-title"],"chapterTitle":[1,"chapter-title"],"chapterContent":[1,"chapter-content"],"fontSize":[1,"font-size"],"chapterSequence":[2,"chapter-sequence"],"fontType":[1,"font-type"],"readingDurationText":[1,"reading-duration-text"],"minutesText":[1,"minutes-text"],"likes":[1],"comments":[2],"dislike":[1],"donate":[1],"share":[1],"isVisible":[4,"is-visible"],"readingTimePerWord":[2,"reading-time-per-word"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"hasPreviousChapter":[4,"has-previous-chapter"],"hasNextChapter":[4,"has-next-chapter"],"lockedMessage":[1,"locked-message"],"nextChapterText":[1,"next-chapter-text"],"previousChapterText":[1,"previous-chapter-text"],"unlockButtonLabel":[1,"unlock-button-label"],"isSmallContainer":[32],"baseFontSize":[32],"fontStyles":[32],"isHostSmall":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"storyTitle":["handlePropChange"],"chapterTitle":["handlePropChange"],"chapterContent":["handlePropChange"],"fontSize":["handlePropChange"],"fontType":["handlePropChange"],"loading":["handlePropChange"],"chapterLocked":["handlePropChange"],"chapterSequence":["handlePropChange"],"hasPreviousChapter":["handlePropChange"],"hasNextChapter":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-8fcfad4e",[[257,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"loading":[4],"skeleton":[4],"reset":[64]}]]],["p-97ced9bc",[[257,"ur-read-rail-mobile",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[1],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"isFollowed":[4,"is-followed"],"isVisible":[4,"is-visible"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-ba46a0f2",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16,"step-titles"],"stepDescriptions":[16,"step-descriptions"],"showStepNumbers":[4,"show-step-numbers"],"completedStepIcon":[1,"completed-step-icon"],"nextButtonText":[1,"next-button-text"],"previousButtonText":[1,"previous-button-text"],"completeButtonText":[1,"complete-button-text"],"completeStepText":[1,"complete-step-text"],"ongoingStepText":[1,"ongoing-step-text"],"nextButtonDisabled":[4,"next-button-disabled"],"completedSteps":[32],"stepValidation":[32],"goToStep":[64],"markStepComplete":[64],"markStepInvalid":[64],"reset":[64]}]]],["p-f30aa75c",[[257,"ur-checkbox-group",{"name":[1],"values":[1040],"required":[4],"selectAll":[4,"select-all"],"selectAllText":[1,"select-all-text"],"maxSelectable":[2,"max-selectable"],"options":[32],"validate":[64],"reset":[64]}]]],["p-aef81956",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-570322a6",[[257,"ur-hero",{"heroTitle":[1,"hero-title"],"heroSubtitle":[1,"hero-subtitle"],"ctaText":[1,"cta-text"],"backgroundImage":[1,"background-image"],"backgroundColor":[1,"background-color"],"layout":[1],"backgroundJustification":[1,"background-justification"],"backgroundAlignment":[1,"background-alignment"],"heroTitleColor":[1,"hero-title-color"],"heroSubtitleColor":[1,"hero-subtitle-color"],"widthClass":[32]}]]],["p-a645e793",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-072aa311",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-8d8fab25",[[257,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-78d04bb3",[[257,"ur-shelf-item",{"shelf":[16],"novels":[16],"isOwnShelf":[4,"is-own-shelf"],"skeleton":[4],"totalStoryCount":[2,"total-story-count"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"],"noStoriesText":[1,"no-stories-text"]}]]],["p-2d75d645",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6655a44d",[[257,"ur-bottom-sheet",{"open":[4],"selectedDetent":[1,"selected-detent"],"backdropDismiss":[4,"backdrop-dismiss"],"currentDetent":[32],"dragPosition":[32],"isVisible":[32],"showSheet":[64],"hideSheet":[64]},null,{"open":["watchOpen"]}]]],["p-b74098cc",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-b6af1ca4",[[257,"ur-dropdown",{"open":[1540],"disabled":[4],"trigger":[1],"placement":[1],"stayOpenOnClick":[4,"stay-open-on-click"],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"openOnPointer":[4,"open-on-pointer"],"openDropdown":[64],"closeDropdown":[64],"toggle":[64]},null,{"open":["handleOpenChange"]}]]],["p-5b467c2c",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-cc1a0f05",[[260,"ur-grid-col",{"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"],"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"windowWidth":[32]}]]],["p-c6c9068d",[[257,"ur-grid-row"]]],["p-f07ff4a4",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-d2d9ec5b",[[257,"ur-image-uploader",{"width":[1],"height":[1],"maxHeight":[1,"max-height"],"borderRadius":[1,"border-radius"],"borderStyle":[1,"border-style"],"backgroundColor":[1,"background-color"],"hoverBackgroundColor":[1,"hover-background-color"],"acceptTypes":[1,"accept-types"],"disabled":[4],"placeholderText":[1,"placeholder-text"],"uploadingText":[1,"uploading-text"],"showFileName":[4,"show-file-name"],"maxFileSize":[2,"max-file-size"],"enableNativeUpload":[4,"enable-native-upload"],"loading":[4],"isDragOver":[32],"selectedFile":[32],"previewUrl":[32],"isUploading":[32],"setImageUrl":[64],"getImageUrl":[64],"clearImage":[64],"getSelectedFile":[64],"setUploadingState":[64]}]]],["p-2a7f97ed",[[257,"ur-loader"]]],["p-20768738",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-b0df607b",[[257,"ur-menu-item",{"value":[1],"label":[1],"disabled":[4],"selected":[4],"size":[1],"selectedIcon":[1,"selected-icon"],"fullWidth":[4,"full-width"],"leftAligned":[4,"left-aligned"],"heightNumber":[514,"height-number"],"isHovered":[32]},[[4,"selectionChanged","handleSelectionChanged"]],{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-41b3a1b3",[[257,"ur-navigation-drawer",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contained":[4],"openDrawer":[64],"closeDrawer":[64]}]]],["p-28b7d6da",[[257,"ur-navigation-drawer-global",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contentHeight":[32],"openDrawer":[64],"closeDrawer":[64]}]]],["p-f7e454e5",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-755b4a8a",[[257,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-136af971",[[257,"ur-page-shared-list-tabs",{"activeTab":[1,"active-tab"],"followersTabText":[1,"followers-tab-text"],"membersTabText":[1,"members-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-8656aef0",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-af64573e",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-aadc0685",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-50590839",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-8843bf71",[[257,"ur-profile-card",{"avatarSrc":[1,"avatar-src"],"avatarAlt":[1,"avatar-alt"],"name":[1],"avatarSize":[1,"avatar-size"],"description":[1],"followButtonText":[1,"follow-button-text"],"isOwner":[4,"is-owner"],"profileType":[1,"profile-type"],"nameFontSize":[1,"name-font-size"],"unfollowButtonText":[1,"unfollow-button-text"],"buttonHeight":[1,"button-height"],"buttonWidth":[1,"button-width"],"pageActionsTooltipText":[1,"page-actions-tooltip-text"],"memberActionsTooltipText":[1,"member-actions-tooltip-text"],"showDescription":[4,"show-description"],"showMemberActions":[4,"show-member-actions"],"showPageActions":[4,"show-page-actions"],"hideFollowActions":[4,"hide-follow-actions"],"initialFollowState":[4,"initial-follow-state"],"skeleton":[4],"isFollowing":[32]},null,{"initialFollowState":["onInitialFollowStateChange"]}]]],["p-af90b0c6",[[257,"ur-competition-novl-card",{"novlId":[1,"novl-id"],"novlTitle":[1,"novl-title"],"shortSummary":[1,"short-summary"],"chaptersCount":[2,"chapters-count"],"wordCount":[2,"word-count"],"coverImage":[1,"cover-image"],"language":[1],"genre":[1],"literatureType":[1,"literature-type"],"authorName":[1,"author-name"],"showDescription":[4,"show-description"],"showAuthor":[4,"show-author"],"showStats":[4,"show-stats"],"showChips":[4,"show-chips"],"clickable":[4],"size":[1],"chipSize":[1,"chip-size"],"skeleton":[4],"showMenu":[4,"show-menu"],"entryId":[1,"entry-id"],"isOwnerViewing":[4,"is-owner-viewing"],"winnerPosition":[2,"winner-position"],"isWinner":[4,"is-winner"],"winnerBadgePosition":[1,"winner-badge-position"],"withdrawButtonText":[1,"withdraw-button-text"],"removeEntryText":[1,"remove-entry-text"],"chaptersText":[1,"chapters-text"],"wordsText":[1,"words-text"],"winnerText":[1,"winner-text"],"isMenuOpen":[32]}],[257,"ur-stats",{"stats":[16],"skeleton":[4],"layout":[1],"showSeparators":[4,"show-separators"],"background":[1]}]]],["p-eb736d69",[[257,"ur-list"]]],["p-323c221c",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-66b794bc",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-9596a813",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-5dad32b3",[[257,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[4,"full-width"]},null,{"checked":["watchChecked"]}],[257,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-d0171c81",[[257,"ur-text-field",{"label":[1],"placeholder":[1],"helper":[1],"disabled":[4],"required":[4],"variant":[1],"value":[1025],"name":[1],"endIcon":[1,"end-icon"],"rows":[2],"autosize":[4],"minRows":[2,"min-rows"],"maxRows":[2,"max-rows"],"minlength":[2],"maxlength":[2],"counter":[4],"type":[1],"pattern":[1],"min":[8],"max":[8],"step":[8],"error":[1540],"errorMessage":[1537,"error-message"],"skeleton":[4]}]]],["p-c719a7e0",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-29a42efe",[[257,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"skeleton":[4],"disabled":[4],"clickable":[4]}]]]]'),e))));
1
+ import{p as e,g as t,b as a}from"./p-DxicD_v0.js";export{s as setNonce}from"./p-DxicD_v0.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await t(),a(JSON.parse('[["p-d3773116",[[257,"ur-competition-overview",{"competition":[16],"submissions":[16],"submissionsLoading":[4,"submissions-loading"],"loading":[4],"error":[1],"deviceSize":[1,"device-size"],"isOwner":[4,"is-owner"],"isParticipant":[4,"is-participant"],"canSubmit":[4,"can-submit"],"showEditButton":[4,"show-edit-button"],"showDeleteButton":[4,"show-delete-button"],"skeleton":[4],"currentUserId":[1,"current-user-id"],"userHasSubmission":[4,"user-has-submission"],"userSubmission":[16,"user-submission"],"initialTab":[1,"initial-tab"],"currentPage":[2,"current-page"],"itemsPerPage":[2,"items-per-page"],"totalEntries":[2,"total-entries"],"winnerBadgePosition":[1,"winner-badge-position"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"tabDetailsText":[1,"tab-details-text"],"tabSubmissionsText":[1,"tab-submissions-text"],"sectionDescriptionText":[1,"section-description-text"],"sectionJudgingText":[1,"section-judging-text"],"sectionPrizesText":[1,"section-prizes-text"],"sectionCreatedByText":[1,"section-created-by-text"],"statEntryFeeText":[1,"stat-entry-fee-text"],"statWordCountText":[1,"stat-word-count-text"],"statStartDateText":[1,"stat-start-date-text"],"statDeadlineText":[1,"stat-deadline-text"],"statWinnersText":[1,"stat-winners-text"],"submitButtonText":[1,"submit-button-text"],"withdrawButtonText":[1,"withdraw-button-text"],"finalizeButtonText":[1,"finalize-button-text"],"deleteButtonText":[1,"delete-button-text"],"editButtonText":[1,"edit-button-text"],"backButtonText":[1,"back-button-text"],"previousButtonText":[1,"previous-button-text"],"nextButtonText":[1,"next-button-text"],"removeEntryText":[1,"remove-entry-text"],"noSubmissionsText":[1,"no-submissions-text"],"loadingSubmissionsText":[1,"loading-submissions-text"],"showingEntriesText":[1,"showing-entries-text"],"freeText":[1,"free-text"],"noLimitText":[1,"no-limit-text"],"upToText":[1,"up-to-text"],"atLeastText":[1,"at-least-text"],"rangeText":[1,"range-text"],"tbdText":[1,"tbd-text"],"editDisabledTooltipText":[1,"edit-disabled-tooltip-text"],"activeTab":[32],"setActiveTab":[64]}]]],["p-70ef7dcb",[[257,"ur-main-menu",{"opened":[4],"loggedIn":[4,"logged-in"],"userName":[1,"user-name"],"userRole":[1,"user-role"],"userAvatar":[1,"user-avatar"],"badgeCount":[2,"badge-count"],"termsText":[1,"terms-text"],"rulesText":[1,"rules-text"],"privacyText":[1,"privacy-text"],"paymentText":[1,"payment-text"],"acceptableUseText":[1,"acceptable-use-text"],"partnershipText":[1,"partnership-text"],"homeText":[1,"home-text"],"storiesText":[1,"stories-text"],"pagesText":[1,"pages-text"],"myLibraryText":[1,"my-library-text"],"competitionsText":[1,"competitions-text"],"notificationText":[1,"notification-text"],"facebookText":[1,"facebook-text"],"xText":[1,"x-text"],"discordText":[1,"discord-text"],"contactUsText":[1,"contact-us-text"],"signUpText":[1,"sign-up-text"],"premiumText":[1,"premium-text"],"whatsNewText":[1,"whats-new-text"],"faqsText":[1,"faqs-text"],"currentRoute":[1,"current-route"],"notificationCenterOpened":[4,"notification-center-opened"],"myLibraryOpened":[4,"my-library-opened"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"],"myLibraryOpened":["watchMyLibraryOpenedHandler"]}]]],["p-5cc527a4",[[257,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"attachRequestStatus":[1025,"attach-request-status"],"attachStoryText":[1,"attach-story-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"detachFromPageText":[1,"detach-from-page-text"],"attachedToPageText":[1,"attached-to-page-text"],"editTitleTooltipText":[1,"edit-title-tooltip-text"],"editDescriptionTooltipText":[1,"edit-description-tooltip-text"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"visibility":[1],"visibilityPublicText":[1,"visibility-public-text"],"visibilityPrivateText":[1,"visibility-private-text"],"completeStoryText":[1,"complete-story-text"],"revertStoryText":[1,"revert-story-text"],"expanded":[4],"showPublishedButton":[4,"show-published-button"],"skeleton":[4],"attachButtonHoverState":[32],"reset":[64]}]]],["p-fbf18c17",[[257,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32],"isShelfPublic":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-260ae23e",[[257,"ur-novl-carousel",{"novls":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-25b2dd40",[[257,"ur-page-carousel",{"pages":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4ebc2130",[[257,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-f94a1a59",[[257,"ur-user-profile-settings-form",{"settings":[8],"skeleton":[4],"locationLabelText":[1,"location-label-text"],"websiteLabelText":[1,"website-label-text"],"aboutLabelText":[1,"about-label-text"],"facebookLabelText":[1,"facebook-label-text"],"twitterLabelText":[1,"twitter-label-text"],"linkedinLabelText":[1,"linkedin-label-text"],"emailLabelText":[1,"email-label-text"],"personalInfoTitleText":[1,"personal-info-title-text"],"interactTitleText":[1,"interact-title-text"],"facebookTitleText":[1,"facebook-title-text"],"twitterTitleText":[1,"twitter-title-text"],"linkedinTitleText":[1,"linkedin-title-text"],"emailTitleText":[1,"email-title-text"],"facebookPrefixText":[1,"facebook-prefix-text"],"twitterPrefixText":[1,"twitter-prefix-text"],"linkedinPrefixText":[1,"linkedin-prefix-text"],"personalInfoSubtitleText":[1,"personal-info-subtitle-text"],"interactSubtitleText":[1,"interact-subtitle-text"],"socialEnabled":[32]},null,{"settings":["settingsChanged"]}]]],["p-1710f088",[[257,"ur-editor",{"content":[1],"disabled":[4],"placeholder":[1],"wordLabel":[1,"word-label"],"charLabel":[1,"char-label"],"readingDurationLabel":[1,"reading-duration-label"],"enableBold":[4,"enable-bold"],"enableItalic":[4,"enable-italic"],"enableUnderline":[4,"enable-underline"],"enableTextAlign":[4,"enable-text-align"],"enableBlockquote":[4,"enable-blockquote"],"maxLength":[2,"max-length"],"maxWords":[2,"max-words"],"showCounter":[4,"show-counter"],"showFixedToolbar":[516,"show-fixed-toolbar"],"showSelectionToolbar":[516,"show-selection-toolbar"],"minHeight":[1,"min-height"],"formattingState":[32],"charCount":[32],"wordCount":[32],"readingDuration":[32],"readingDurationSeconds":[32],"selectionTooltip":[32],"isMouseDown":[32],"getHTML":[64],"getText":[64],"setContent":[64],"clearContent":[64]},null,{"maxLength":["maxLengthUpdated"],"maxWords":["maxWordsUpdated"],"content":["contentUpdated"],"disabled":["disabledUpdated"],"enableBold":["formattingOptionsUpdated"],"enableItalic":["formattingOptionsUpdated"],"enableUnderline":["formattingOptionsUpdated"],"enableBlockquote":["formattingOptionsUpdated"],"enableTextAlign":["formattingOptionsUpdated"],"minHeight":["minHeightUpdated"]}]]],["p-75a75867",[[257,"ur-top-app-bar",{"headerTitle":[1,"header-title"],"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-572d5844",[[257,"ur-dialog",{"description":[1],"open":[4],"fullscreen":[4],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"showHeader":[4,"show-header"],"overlayHeader":[4,"overlay-header"],"variant":[1],"borderRadius":[1,"border-radius"],"openDialog":[64],"closeDialog":[64]}]]],["p-5622a86f",[[257,"ur-list-subheader",{"text":[1]}]]],["p-ff5119f4",[[257,"ur-navigation-bar",{"position":[1],"labelVisibility":[1,"label-visibility"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"value":[1537],"scrollTarget":[1,"scroll-target"],"setValue":[64]},[[0,"change","changeHandler"]],{"value":["valueChanged"]}]]],["p-173882b8",[[257,"ur-profile",{"name":[8],"description":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"show_follow":[4],"show_donate":[4],"show_become_member":[4],"show_send_message":[4],"show_stats":[4],"stories_count":[2],"views_count":[2],"followers_count":[2],"writers_count":[2],"show_languages":[4],"languages":[1],"show_genres":[4],"genres":[1],"show_member_since":[4],"member_since":[1]}]]],["p-2cc17248",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-190ed39b",[[257,"ur-select",{"value":[1],"name":[1],"label":[1],"placeholder":[1],"helper":[1],"variant":[1],"usage":[1],"multiple":[4],"clearable":[4],"disabled":[4],"required":[4],"readonly":[4],"size":[1],"placement":[1],"icon":[1],"endIcon":[1,"end-icon"],"flex":[4],"suffix":[1],"clearIcon":[1,"clear-icon"],"displayText":[32]},[[0,"menuItemChange","handleMenuItemChange"]],{"value":["handleValueChange"]}]]],["p-44a1e2be",[[257,"ur-snackbar",{"open":[1540],"placement":[1],"action":[1],"actionLoading":[4,"action-loading"],"closeable":[4],"closeIcon":[1,"close-icon"],"messageLine":[2,"message-line"],"autoCloseDelay":[2,"auto-close-delay"],"closeOnOutsideClick":[4,"close-on-outside-click"],"message":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"actionColor":[1,"action-color"],"radius":[1],"zIndex":[1,"z-index"]}]]],["p-18624f2b",[[257,"ur-user-profile"]]],["p-b5164a99",[[257,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-53764324",[[257,"ur-page",{"pageId":[1,"page-id"],"loading":[4],"followed":[4],"pageTitle":[1,"page-title"],"pageCover":[1,"page-cover"],"pageCoverFallback":[1,"page-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"pageDescription":[1,"page-description"],"pageType":[1,"page-type"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-99d6b36d",[[257,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followed":[4],"userTitle":[1,"user-title"],"userCover":[1,"user-cover"],"userCoverFallback":[1,"user-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"userDescription":[1,"user-description"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-c605df0e",[[257,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1],"containerPadding":[1,"container-padding"],"iconMargin":[1,"icon-margin"],"borderRadius":[1,"border-radius"]}]]],["p-50245874",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-18531d84",[[257,"ur-button-icon",{"disabled":[4],"loading":[4],"variant":[1],"icon":[1],"selectedIcon":[1,"selected-icon"],"selected":[4],"active":[4],"borderRadius":[1,"border-radius"],"buttonWidth":[1,"button-width"],"buttonHeight":[1,"button-height"],"fontColor":[1,"font-color"],"backgroundColor":[1,"background-color"]}]]],["p-6813b14e",[[257,"ur-novl",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"likes":[2],"views":[2],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"]}],[257,"ur-tooltip",{"content":[1],"variant":[1],"placement":[1],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"trigger":[1],"colorScheme":[1,"color-scheme"],"disabled":[4],"isVisible":[32]}],[257,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1],"skeleton":[4]}]]],["p-e572d1ff",[[257,"ur-competition",{"competitionId":[1,"competition-id"],"competitionTitle":[1,"competition-title"],"description":[1],"literatureType":[1,"literature-type"],"genre":[1],"language":[1],"entryFee":[2,"entry-fee"],"hasEntryFee":[4,"has-entry-fee"],"prizeTypes":[16,"prize-types"],"startDate":[1,"start-date"],"submissionDeadline":[1,"submission-deadline"],"winnersAnnouncementDate":[1,"winners-announcement-date"],"status":[1],"imageUrl":[1,"image-url"],"pageAvatar":[1,"page-avatar"],"clickable":[4],"height":[1],"skeleton":[4],"freeText":[1,"free-text"],"tbdText":[1,"tbd-text"],"unknownText":[1,"unknown-text"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"startDateText":[1,"start-date-text"],"deadlineText":[1,"deadline-text"],"winnersText":[1,"winners-text"],"closedText":[1,"closed-text"],"completedText":[1,"completed-text"],"entryFeeText":[1,"entry-fee-text"],"prizeText":[1,"prize-text"]}]]],["p-ac24f392",[[257,"ur-competition-carousel",{"competitions":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"cardHeight":[1,"card-height"],"skeleton":[4],"disabledPrev":[32],"disabledNext":[32],"addCompetitions":[64],"updateCompetitionsByIndex":[64],"reset":[64]}]]],["p-f4e3468d",[[257,"ur-button",{"disabled":[4],"variant":[1],"icon":[8],"endIcon":[8,"end-icon"],"fullWidth":[4,"full-width"],"loading":[4],"fontColor":[1,"font-color"],"buttonHeight":[1,"button-height"],"borderRadius":[1,"border-radius"],"backgroundColor":[1,"background-color"],"skeleton":[4]}]]],["p-555ff814",[[257,"ur-page-profile",{"pageId":[1,"page-id"],"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"stories":[2],"views":[2],"pageCreatedText":[1,"page-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"websiteText":[1,"website-text"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isPageOwner":[4,"is-page-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"pageType":[1,"page-type"],"pageCreationDate":[8,"page-creation-date"],"locale":[1],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"membersText":[1,"members-text"],"followText":[1,"follow-text"],"followingText":[1,"following-text"],"becomeMemberText":[1,"become-member-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"cancelMembershipText":[1,"cancel-membership-text"],"youreMemberText":[1,"youre-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"skeleton":[4],"memberRequestStatus":[1025,"member-request-status"],"memberButtonHoverState":[32]}]]],["p-c4ef9ff3",[[257,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"submitButtonText":[1,"submit-button-text"],"formState":[32]}]]],["p-7f227e76",[[257,"ur-feedback",{"titleText":[1,"title-text"],"descriptionText":[1,"description-text"],"placeholderText":[1,"placeholder-text"],"feedbackText":[1,"feedback-text"],"supportText":[1,"support-text"],"pressText":[1,"press-text"],"successText":[1,"success-text"],"user":[4],"failureText":[1,"failure-text"],"messageLabel":[1,"message-label"],"emailLabel":[1,"email-label"],"emailPlaceholder":[1,"email-placeholder"],"sendText":[1,"send-text"],"text":[32],"disabled":[32],"success":[32],"failure":[32],"mode":[32],"userEmail":[32],"emailError":[32],"reset":[64],"handleSubmitSuccess":[64],"handleSubmitFailure":[64]}]]],["p-2768fcb6",[[257,"ur-user-page-profile",{"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"website":[8],"stories":[2],"views":[2],"userProfileCreatedText":[1,"user-profile-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"isProfileFollowed":[4,"is-profile-followed"],"unFollowText":[1,"un-follow-text"],"websiteText":[1,"website-text"],"writerText":[1,"writer-text"],"readerText":[1,"reader-text"],"isLoggedIn":[4,"is-logged-in"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isProfileOwner":[4,"is-profile-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"isWriter":[4,"is-writer"],"userProfileCreatedDate":[8,"user-profile-created-date"],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"followingText":[1,"following-text"],"pagesFollowingText":[1,"pages-following-text"],"pagesFollowing":[2,"pages-following"],"logoutText":[1,"logout-text"],"locale":[1],"skeleton":[4],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-41e13975",[[257,"ur-autosave-drawer",{"autosaves":[1040],"emptyMessage":[1,"empty-message"],"chapterText":[1,"chapter-text"],"yesText":[1,"yes-text"],"noText":[1,"no-text"],"autosavesTitle":[1,"autosaves-title"],"deleteConfirmMessage":[1,"delete-confirm-message"],"forceRender":[32]},null,{"autosaves":["autosavesChanged"]}]]],["p-0e5384a3",[[257,"ur-chapter-item",{"chapterId":[1,"chapter-id"],"chapterNumber":[2,"chapter-number"],"chapterTitle":[1,"chapter-title"],"createdAt":[1,"created-at"],"isBound":[4,"is-bound"],"isStoryCompleted":[4,"is-story-completed"],"likes":[2],"views":[2],"isOwner":[4,"is-owner"],"readingDuration":[2,"reading-duration"],"readChapterText":[1,"read-chapter-text"],"likesText":[1,"likes-text"],"viewsText":[1,"views-text"],"readingDurationText":[1,"reading-duration-text"],"locale":[1],"isLocked":[4,"is-locked"],"isLastChapter":[4,"is-last-chapter"],"loading":[32]}]]],["p-275df36e",[[257,"ur-main-desktop-top-app-bar",{"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"fontColor":[1,"font-color"],"quillText":[1,"quill-text"],"deviceVariant":[1,"device-variant"],"searchText":[1,"search-text"],"quillCount":[2,"quill-count"]}]]],["p-c6b088b3",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-0efa0800",[[257,"ur-page-list",{"pages":[16],"skeleton":[4],"titleFontSize":[1,"title-font-size"],"gap":[1],"hideTitle":[4,"hide-title"],"containerPadding":[1,"container-padding"],"avatarSize":[1,"avatar-size"]}]]],["p-36ef057f",[[257,"ur-player",{"src":[1],"storyTitle":[1,"story-title"],"author":[1],"coverImage":[1,"cover-image"],"chapterName":[1,"chapter-name"],"playText":[1,"play-text"],"pauseText":[1,"pause-text"],"forwardText":[1,"forward-text"],"backwardText":[1,"backward-text"],"speedText":[1,"speed-text"],"volumeText":[1,"volume-text"],"autoPlay":[4,"auto-play"],"showControls":[4,"show-controls"],"primaryColor":[1,"primary-color"],"accentColor":[1,"accent-color"],"darkMode":[4,"dark-mode"],"isPlaying":[32],"currentTime":[32],"duration":[32],"loadedPercentage":[32],"volume":[32],"playbackRate":[32],"play":[64],"pause":[64],"togglePlay":[64],"seekTo":[64],"setVolume":[64],"setPlaybackRate":[64],"skipForward":[64],"skipBackward":[64]},null,{"src":["onSourceChange"]}]]],["p-656844fe",[[257,"ur-read-rail",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[2],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"mode":[1],"isFollowed":[4,"is-followed"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isPaidChapter":[4,"is-paid-chapter"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"isHostSmall":[4,"is-host-small"],"pageSrc":[1,"page-src"],"pageName":[1,"page-name"],"pageId":[1,"page-id"],"isPageFollowed":[4,"is-page-followed"],"isVisible":[4,"is-visible"],"isLiked":[32],"isDisliked":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isPaidChapter":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isHostSmall":["handlePropChange","handleHostSmallChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"],"pageSrc":["handlePropChange"],"pageName":["handlePropChange"],"pageId":["handlePropChange"],"isPageFollowed":["handlePropChange"]}]]],["p-375f5509",[[257,"ur-reader",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"loading":[4],"chapterLocked":[4,"chapter-locked"],"storyTitle":[1,"story-title"],"chapterTitle":[1,"chapter-title"],"chapterContent":[1,"chapter-content"],"fontSize":[1,"font-size"],"chapterSequence":[2,"chapter-sequence"],"fontType":[1,"font-type"],"readingDurationText":[1,"reading-duration-text"],"minutesText":[1,"minutes-text"],"likes":[1],"comments":[2],"dislike":[1],"donate":[1],"share":[1],"isVisible":[4,"is-visible"],"readingTimePerWord":[2,"reading-time-per-word"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"hasPreviousChapter":[4,"has-previous-chapter"],"hasNextChapter":[4,"has-next-chapter"],"lockedMessage":[1,"locked-message"],"nextChapterText":[1,"next-chapter-text"],"previousChapterText":[1,"previous-chapter-text"],"unlockButtonLabel":[1,"unlock-button-label"],"isSmallContainer":[32],"baseFontSize":[32],"fontStyles":[32],"isHostSmall":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"storyTitle":["handlePropChange"],"chapterTitle":["handlePropChange"],"chapterContent":["handlePropChange"],"fontSize":["handlePropChange"],"fontType":["handlePropChange"],"loading":["handlePropChange"],"chapterLocked":["handlePropChange"],"chapterSequence":["handlePropChange"],"hasPreviousChapter":["handlePropChange"],"hasNextChapter":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-8fcfad4e",[[257,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"loading":[4],"skeleton":[4],"reset":[64]}]]],["p-97ced9bc",[[257,"ur-read-rail-mobile",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[1],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"isFollowed":[4,"is-followed"],"isVisible":[4,"is-visible"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-ba46a0f2",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16,"step-titles"],"stepDescriptions":[16,"step-descriptions"],"showStepNumbers":[4,"show-step-numbers"],"completedStepIcon":[1,"completed-step-icon"],"nextButtonText":[1,"next-button-text"],"previousButtonText":[1,"previous-button-text"],"completeButtonText":[1,"complete-button-text"],"completeStepText":[1,"complete-step-text"],"ongoingStepText":[1,"ongoing-step-text"],"nextButtonDisabled":[4,"next-button-disabled"],"completedSteps":[32],"stepValidation":[32],"goToStep":[64],"markStepComplete":[64],"markStepInvalid":[64],"reset":[64]}]]],["p-f30aa75c",[[257,"ur-checkbox-group",{"name":[1],"values":[1040],"required":[4],"selectAll":[4,"select-all"],"selectAllText":[1,"select-all-text"],"maxSelectable":[2,"max-selectable"],"options":[32],"validate":[64],"reset":[64]}]]],["p-aef81956",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-570322a6",[[257,"ur-hero",{"heroTitle":[1,"hero-title"],"heroSubtitle":[1,"hero-subtitle"],"ctaText":[1,"cta-text"],"backgroundImage":[1,"background-image"],"backgroundColor":[1,"background-color"],"layout":[1],"backgroundJustification":[1,"background-justification"],"backgroundAlignment":[1,"background-alignment"],"heroTitleColor":[1,"hero-title-color"],"heroSubtitleColor":[1,"hero-subtitle-color"],"widthClass":[32]}]]],["p-a645e793",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-072aa311",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-8d8fab25",[[257,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-a03b30aa",[[257,"ur-shelf-item",{"shelf":[16],"novels":[16],"isOwnShelf":[4,"is-own-shelf"],"skeleton":[4],"totalStoryCount":[2,"total-story-count"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"],"noStoriesText":[1,"no-stories-text"]}]]],["p-2d75d645",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6655a44d",[[257,"ur-bottom-sheet",{"open":[4],"selectedDetent":[1,"selected-detent"],"backdropDismiss":[4,"backdrop-dismiss"],"currentDetent":[32],"dragPosition":[32],"isVisible":[32],"showSheet":[64],"hideSheet":[64]},null,{"open":["watchOpen"]}]]],["p-b74098cc",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-b6af1ca4",[[257,"ur-dropdown",{"open":[1540],"disabled":[4],"trigger":[1],"placement":[1],"stayOpenOnClick":[4,"stay-open-on-click"],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"openOnPointer":[4,"open-on-pointer"],"openDropdown":[64],"closeDropdown":[64],"toggle":[64]},null,{"open":["handleOpenChange"]}]]],["p-5b467c2c",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-cc1a0f05",[[260,"ur-grid-col",{"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"],"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"windowWidth":[32]}]]],["p-c6c9068d",[[257,"ur-grid-row"]]],["p-f07ff4a4",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-d2d9ec5b",[[257,"ur-image-uploader",{"width":[1],"height":[1],"maxHeight":[1,"max-height"],"borderRadius":[1,"border-radius"],"borderStyle":[1,"border-style"],"backgroundColor":[1,"background-color"],"hoverBackgroundColor":[1,"hover-background-color"],"acceptTypes":[1,"accept-types"],"disabled":[4],"placeholderText":[1,"placeholder-text"],"uploadingText":[1,"uploading-text"],"showFileName":[4,"show-file-name"],"maxFileSize":[2,"max-file-size"],"enableNativeUpload":[4,"enable-native-upload"],"loading":[4],"isDragOver":[32],"selectedFile":[32],"previewUrl":[32],"isUploading":[32],"setImageUrl":[64],"getImageUrl":[64],"clearImage":[64],"getSelectedFile":[64],"setUploadingState":[64]}]]],["p-2a7f97ed",[[257,"ur-loader"]]],["p-20768738",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-b0df607b",[[257,"ur-menu-item",{"value":[1],"label":[1],"disabled":[4],"selected":[4],"size":[1],"selectedIcon":[1,"selected-icon"],"fullWidth":[4,"full-width"],"leftAligned":[4,"left-aligned"],"heightNumber":[514,"height-number"],"isHovered":[32]},[[4,"selectionChanged","handleSelectionChanged"]],{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-41b3a1b3",[[257,"ur-navigation-drawer",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contained":[4],"openDrawer":[64],"closeDrawer":[64]}]]],["p-28b7d6da",[[257,"ur-navigation-drawer-global",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contentHeight":[32],"openDrawer":[64],"closeDrawer":[64]}]]],["p-f7e454e5",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-755b4a8a",[[257,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-136af971",[[257,"ur-page-shared-list-tabs",{"activeTab":[1,"active-tab"],"followersTabText":[1,"followers-tab-text"],"membersTabText":[1,"members-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-8656aef0",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-af64573e",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-aadc0685",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-50590839",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-8843bf71",[[257,"ur-profile-card",{"avatarSrc":[1,"avatar-src"],"avatarAlt":[1,"avatar-alt"],"name":[1],"avatarSize":[1,"avatar-size"],"description":[1],"followButtonText":[1,"follow-button-text"],"isOwner":[4,"is-owner"],"profileType":[1,"profile-type"],"nameFontSize":[1,"name-font-size"],"unfollowButtonText":[1,"unfollow-button-text"],"buttonHeight":[1,"button-height"],"buttonWidth":[1,"button-width"],"pageActionsTooltipText":[1,"page-actions-tooltip-text"],"memberActionsTooltipText":[1,"member-actions-tooltip-text"],"showDescription":[4,"show-description"],"showMemberActions":[4,"show-member-actions"],"showPageActions":[4,"show-page-actions"],"hideFollowActions":[4,"hide-follow-actions"],"initialFollowState":[4,"initial-follow-state"],"skeleton":[4],"isFollowing":[32]},null,{"initialFollowState":["onInitialFollowStateChange"]}]]],["p-af90b0c6",[[257,"ur-competition-novl-card",{"novlId":[1,"novl-id"],"novlTitle":[1,"novl-title"],"shortSummary":[1,"short-summary"],"chaptersCount":[2,"chapters-count"],"wordCount":[2,"word-count"],"coverImage":[1,"cover-image"],"language":[1],"genre":[1],"literatureType":[1,"literature-type"],"authorName":[1,"author-name"],"showDescription":[4,"show-description"],"showAuthor":[4,"show-author"],"showStats":[4,"show-stats"],"showChips":[4,"show-chips"],"clickable":[4],"size":[1],"chipSize":[1,"chip-size"],"skeleton":[4],"showMenu":[4,"show-menu"],"entryId":[1,"entry-id"],"isOwnerViewing":[4,"is-owner-viewing"],"winnerPosition":[2,"winner-position"],"isWinner":[4,"is-winner"],"winnerBadgePosition":[1,"winner-badge-position"],"withdrawButtonText":[1,"withdraw-button-text"],"removeEntryText":[1,"remove-entry-text"],"chaptersText":[1,"chapters-text"],"wordsText":[1,"words-text"],"winnerText":[1,"winner-text"],"isMenuOpen":[32]}],[257,"ur-stats",{"stats":[16],"skeleton":[4],"layout":[1],"showSeparators":[4,"show-separators"],"background":[1]}]]],["p-eb736d69",[[257,"ur-list"]]],["p-323c221c",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-66b794bc",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-9596a813",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-5dad32b3",[[257,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[4,"full-width"]},null,{"checked":["watchChecked"]}],[257,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-d0171c81",[[257,"ur-text-field",{"label":[1],"placeholder":[1],"helper":[1],"disabled":[4],"required":[4],"variant":[1],"value":[1025],"name":[1],"endIcon":[1,"end-icon"],"rows":[2],"autosize":[4],"minRows":[2,"min-rows"],"maxRows":[2,"max-rows"],"minlength":[2],"maxlength":[2],"counter":[4],"type":[1],"pattern":[1],"min":[8],"max":[8],"step":[8],"error":[1540],"errorMessage":[1537,"error-message"],"skeleton":[4]}]]],["p-c719a7e0",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-29a42efe",[[257,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"skeleton":[4],"disabled":[4],"clickable":[4]}]]]]'),e))));
@@ -0,0 +1 @@
1
+ import{r as t,c as e,h as o,H as i}from"./p-DxicD_v0.js";import"./ur-list-item.entry.esm.js";import"./p-zh2SzAzp.js";import"./p-DGxHnPQH.js";import"./p-DmwpJ3Xb.js";import"./p-CaBWcz-D.js";import"./p-CLzk4uXM.js";import"./p-BHOPlFNt.js";import"./p-BnvqNZ1a.js";import"./p-BeOzk1pg.js";import"./p-D17Erkn3.js";import"./p-yaA8vKgL.js";import"./p-Bc8ZFWuw.js";import"./p-DD45e1Fb.js";import"./p-bGirE084.js";import"./p-DPvu0yIY.js";import"./p-DtvpcoBz.js";import"./p-CHcLApx5.js";const r=class{constructor(o){t(this,o),this.shelfClick=e(this,"shelfClick"),this.novels=[],this.isOwnShelf=!1,this.skeleton=!1,this.followerText="follower",this.followersText="followers",this.storyText="story",this.storiesText="stories",this.noStoriesText="No stories yet",this.handleShelfClick=()=>{this.shelfClick.emit(this.shelf)}}formatFollowerCount(t){return t>=1e6?`${(t/1e6).toFixed(1)}M`:t>=1e3?`${(t/1e3).toFixed(1)}K`:t.toString()}render(){var t,e,r,s,n,a,l,c,d,p;if(this.skeleton)return o(i,{class:"shelf-item skeleton"},o("ur-list-item",{class:"shelf-list-item",containerPadding:"0",iconMargin:"0",borderRadius:"8px"},o("div",{slot:"custom",class:"custom-content"},o("div",{class:"shelf-covers-preview"},o("div",{class:"covers-stack skeleton"},o("div",{class:"skeleton-cover loading"}))),o("div",{class:"custom-content__info"},o("div",{class:"skeleton-title loading"}),o("div",{class:"skeleton-subtitle loading"})),o("div",{class:"skeleton-chevron"},o("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none"},o("path",{d:"M9 6L15 12L9 18",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}))))));if(!this.shelf)return null;const u=this.novels.slice(0,3),v=void 0!==this.totalStoryCount?this.totalStoryCount:this.novels.length;return o(i,null,o("ur-list-item",{class:"shelf-list-item","end-icon":"chevron_right",onClick:this.handleShelfClick,containerPadding:"0",iconMargin:"0",borderRadius:"8px"},o("div",{slot:"custom",class:"custom-content"},o("div",{class:"shelf-covers-preview"},o("div",{class:`covers-stack covers-count-${Math.min(u.length,3)}`},u.length>0?u.map(((t,e)=>{var i,r,s;return o("div",{class:`cover-item cover-${e}`},t.coverImage?o("img",{src:t.coverImage,alt:t.title,class:"cover-image"}):o("div",{class:"cover-placeholder"},o("span",null,(null===(i=t.title)||void 0===i?void 0:i.charAt(0))||(null===(s=null===(r=this.shelf)||void 0===r?void 0:r.name)||void 0===s?void 0:s.charAt(0))||"?")))})):o("div",{class:"cover-item cover-0"},o("div",{class:"cover-placeholder"},o("span",null,(null===(r=null===(e=null===(t=this.shelf)||void 0===t?void 0:t.name)||void 0===e?void 0:e.charAt(0))||void 0===r?void 0:r.toUpperCase())||"?"))))),o("div",{class:"custom-content__info"},o("div",{class:"custom-content__username"},(null===(s=this.shelf)||void 0===s?void 0:s.name)||"Unknown Shelf"),o("div",{class:"custom-content__subtitle"},void 0!==(null===(n=this.shelf)||void 0===n?void 0:n.followerCount)&&o("span",{class:"subtitle-item"},o("span",{class:"stat-number"},this.formatFollowerCount((null===(a=this.shelf)||void 0===a?void 0:a.followerCount)||0))," ",1===(null===(l=this.shelf)||void 0===l?void 0:l.followerCount)?this.followerText:this.followersText),v>0?o("span",{class:"subtitle-item"},o("span",{class:"stat-number"},v)," ",1===v?this.storyText:this.storiesText):o("span",{class:"subtitle-item"},this.noStoriesText),(null===(c=this.shelf)||void 0===c?void 0:c.owner)&&!this.isOwnShelf&&o("span",{class:"subtitle-item shelf-owner"},(null===(p=null===(d=this.shelf)||void 0===d?void 0:d.owner)||void 0===p?void 0:p.displayName)||"Unknown"))))))}};r.style=":host{display:block;width:100%;--ur-color-on-background:rgb(var(--mdui-color-on-background))}.shelf-list-item{flex:1;display:block}.custom-content{display:flex;align-items:center;gap:16px;width:100%}.custom-content__info{flex-grow:1;display:flex;flex-direction:column;gap:4px}.custom-content__username{font-size:14px;line-height:1.2rem;font-style:normal;font-weight:700;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;margin-bottom:4px;text-transform:capitalize}.custom-content__subtitle{font-size:12px;font-weight:400;line-height:16px;color:var(--ur-color-on-background);display:flex;flex-wrap:wrap;align-items:center;gap:4px 0}.subtitle-item{display:inline-flex;align-items:center;white-space:nowrap}.subtitle-item:not(:last-child)::after{content:' · ';margin:0 6px;color:var(--ur-color-on-background);opacity:0.5}.stat-number{font-weight:700}.shelf-owner{font-size:12px;font-style:normal;font-weight:600;line-height:inherit}.shelf-covers-preview{flex-shrink:0;position:relative;width:20%;min-width:55px;max-width:130px;max-height:80px;aspect-ratio:1.25;border-radius:8px 0 0 8px;background-color:rgb(var(--mdui-color-surface-container-low));transition:transform 0.3s ease}.covers-stack{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center;transition:transform 0.3s ease}.cover-item{position:absolute;transition:transform 0.3s ease;height:100%;width:100%}.cover-image{width:100%;height:100%;aspect-ratio:2.25;background-repeat:no-repeat;background-size:cover;background-position:center;border-radius:8px;display:block;object-fit:cover}.cover-placeholder{width:100%;height:100%;aspect-ratio:2.25;border-radius:8px;background-color:rgb(var(--mdui-color-surface-container-high));background-repeat:no-repeat;background-size:cover;background-position:center;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:600;color:var(--ur-color-on-background);text-transform:uppercase}.covers-count-1 .cover-item{transform:none}.covers-count-1 .cover-image,.covers-count-1 .cover-placeholder{border-radius:8px 0 0 8px}.covers-count-2 .cover-0{transform:translateX(-3px) rotate(-1deg);z-index:1}.covers-count-2 .cover-1{transform:translateX(3px) rotate(1deg);z-index:2}.covers-count-3 .cover-0{transform:translateX(-5px) rotate(-2deg);z-index:1}.covers-count-3 .cover-1{transform:translateY(-2px);z-index:3}.covers-count-3 .cover-2{transform:translateX(5px) rotate(2deg);z-index:2}ur-list-item:hover .covers-count-2 .cover-0{transform:translateX(-6px) rotate(-2deg)}ur-list-item:hover .covers-count-2 .cover-1{transform:translateX(6px) rotate(2deg)}ur-list-item:hover .covers-count-3 .cover-0{transform:translateX(-8px) rotate(-3deg)}ur-list-item:hover .covers-count-3 .cover-1{transform:translateY(-3px) scale(1.02)}ur-list-item:hover .covers-count-3 .cover-2{transform:translateX(8px) rotate(3deg)}@keyframes placeholderAnimate{0%{background-position:-650px 0}100%{background-position:650px 0}}.loading{animation-duration:1.7s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-timing-function:linear;animation-name:placeholderAnimate;background:linear-gradient(\n to right,\n rgba(var(--ur-color-on-background), 0.04) 2%,\n rgba(var(--ur-color-on-background), 0.12) 18%,\n rgba(var(--ur-color-on-background), 0.04) 33%\n );background-size:1000px}.covers-stack.skeleton{display:flex;align-items:center;justify-content:center}.skeleton-cover{width:100%;height:100%;border-radius:8px 0 0 8px;aspect-ratio:2.25}.skeleton-title{height:20px;width:120px;border-radius:4px;margin-bottom:4px}.skeleton-subtitle{height:14px;width:180px;border-radius:4px}.skeleton-chevron{display:flex;align-items:center;justify-content:center;margin-left:auto;color:rgba(var(--ur-color-on-background), 0.12)}.skeleton-chevron svg{width:32px;height:32px;scale:0.75}";export{r as ur_shelf_item}
@@ -1 +1 @@
1
- import{p as e,g as t,b as a}from"./p-DxicD_v0.js";export{s as setNonce}from"./p-DxicD_v0.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await t(),a(JSON.parse('[["p-d3773116",[[257,"ur-competition-overview",{"competition":[16],"submissions":[16],"submissionsLoading":[4,"submissions-loading"],"loading":[4],"error":[1],"deviceSize":[1,"device-size"],"isOwner":[4,"is-owner"],"isParticipant":[4,"is-participant"],"canSubmit":[4,"can-submit"],"showEditButton":[4,"show-edit-button"],"showDeleteButton":[4,"show-delete-button"],"skeleton":[4],"currentUserId":[1,"current-user-id"],"userHasSubmission":[4,"user-has-submission"],"userSubmission":[16,"user-submission"],"initialTab":[1,"initial-tab"],"currentPage":[2,"current-page"],"itemsPerPage":[2,"items-per-page"],"totalEntries":[2,"total-entries"],"winnerBadgePosition":[1,"winner-badge-position"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"tabDetailsText":[1,"tab-details-text"],"tabSubmissionsText":[1,"tab-submissions-text"],"sectionDescriptionText":[1,"section-description-text"],"sectionJudgingText":[1,"section-judging-text"],"sectionPrizesText":[1,"section-prizes-text"],"sectionCreatedByText":[1,"section-created-by-text"],"statEntryFeeText":[1,"stat-entry-fee-text"],"statWordCountText":[1,"stat-word-count-text"],"statStartDateText":[1,"stat-start-date-text"],"statDeadlineText":[1,"stat-deadline-text"],"statWinnersText":[1,"stat-winners-text"],"submitButtonText":[1,"submit-button-text"],"withdrawButtonText":[1,"withdraw-button-text"],"finalizeButtonText":[1,"finalize-button-text"],"deleteButtonText":[1,"delete-button-text"],"editButtonText":[1,"edit-button-text"],"backButtonText":[1,"back-button-text"],"previousButtonText":[1,"previous-button-text"],"nextButtonText":[1,"next-button-text"],"removeEntryText":[1,"remove-entry-text"],"noSubmissionsText":[1,"no-submissions-text"],"loadingSubmissionsText":[1,"loading-submissions-text"],"showingEntriesText":[1,"showing-entries-text"],"freeText":[1,"free-text"],"noLimitText":[1,"no-limit-text"],"upToText":[1,"up-to-text"],"atLeastText":[1,"at-least-text"],"rangeText":[1,"range-text"],"tbdText":[1,"tbd-text"],"editDisabledTooltipText":[1,"edit-disabled-tooltip-text"],"activeTab":[32],"setActiveTab":[64]}]]],["p-70ef7dcb",[[257,"ur-main-menu",{"opened":[4],"loggedIn":[4,"logged-in"],"userName":[1,"user-name"],"userRole":[1,"user-role"],"userAvatar":[1,"user-avatar"],"badgeCount":[2,"badge-count"],"termsText":[1,"terms-text"],"rulesText":[1,"rules-text"],"privacyText":[1,"privacy-text"],"paymentText":[1,"payment-text"],"acceptableUseText":[1,"acceptable-use-text"],"partnershipText":[1,"partnership-text"],"homeText":[1,"home-text"],"storiesText":[1,"stories-text"],"pagesText":[1,"pages-text"],"myLibraryText":[1,"my-library-text"],"competitionsText":[1,"competitions-text"],"notificationText":[1,"notification-text"],"facebookText":[1,"facebook-text"],"xText":[1,"x-text"],"discordText":[1,"discord-text"],"contactUsText":[1,"contact-us-text"],"signUpText":[1,"sign-up-text"],"premiumText":[1,"premium-text"],"whatsNewText":[1,"whats-new-text"],"faqsText":[1,"faqs-text"],"currentRoute":[1,"current-route"],"notificationCenterOpened":[4,"notification-center-opened"],"myLibraryOpened":[4,"my-library-opened"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"],"myLibraryOpened":["watchMyLibraryOpenedHandler"]}]]],["p-5cc527a4",[[257,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"attachRequestStatus":[1025,"attach-request-status"],"attachStoryText":[1,"attach-story-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"detachFromPageText":[1,"detach-from-page-text"],"attachedToPageText":[1,"attached-to-page-text"],"editTitleTooltipText":[1,"edit-title-tooltip-text"],"editDescriptionTooltipText":[1,"edit-description-tooltip-text"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"visibility":[1],"visibilityPublicText":[1,"visibility-public-text"],"visibilityPrivateText":[1,"visibility-private-text"],"completeStoryText":[1,"complete-story-text"],"revertStoryText":[1,"revert-story-text"],"expanded":[4],"showPublishedButton":[4,"show-published-button"],"skeleton":[4],"attachButtonHoverState":[32],"reset":[64]}]]],["p-fbf18c17",[[257,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32],"isShelfPublic":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-260ae23e",[[257,"ur-novl-carousel",{"novls":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-25b2dd40",[[257,"ur-page-carousel",{"pages":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4ebc2130",[[257,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-f94a1a59",[[257,"ur-user-profile-settings-form",{"settings":[8],"skeleton":[4],"locationLabelText":[1,"location-label-text"],"websiteLabelText":[1,"website-label-text"],"aboutLabelText":[1,"about-label-text"],"facebookLabelText":[1,"facebook-label-text"],"twitterLabelText":[1,"twitter-label-text"],"linkedinLabelText":[1,"linkedin-label-text"],"emailLabelText":[1,"email-label-text"],"personalInfoTitleText":[1,"personal-info-title-text"],"interactTitleText":[1,"interact-title-text"],"facebookTitleText":[1,"facebook-title-text"],"twitterTitleText":[1,"twitter-title-text"],"linkedinTitleText":[1,"linkedin-title-text"],"emailTitleText":[1,"email-title-text"],"facebookPrefixText":[1,"facebook-prefix-text"],"twitterPrefixText":[1,"twitter-prefix-text"],"linkedinPrefixText":[1,"linkedin-prefix-text"],"personalInfoSubtitleText":[1,"personal-info-subtitle-text"],"interactSubtitleText":[1,"interact-subtitle-text"],"socialEnabled":[32]},null,{"settings":["settingsChanged"]}]]],["p-1710f088",[[257,"ur-editor",{"content":[1],"disabled":[4],"placeholder":[1],"wordLabel":[1,"word-label"],"charLabel":[1,"char-label"],"readingDurationLabel":[1,"reading-duration-label"],"enableBold":[4,"enable-bold"],"enableItalic":[4,"enable-italic"],"enableUnderline":[4,"enable-underline"],"enableTextAlign":[4,"enable-text-align"],"enableBlockquote":[4,"enable-blockquote"],"maxLength":[2,"max-length"],"maxWords":[2,"max-words"],"showCounter":[4,"show-counter"],"showFixedToolbar":[516,"show-fixed-toolbar"],"showSelectionToolbar":[516,"show-selection-toolbar"],"minHeight":[1,"min-height"],"formattingState":[32],"charCount":[32],"wordCount":[32],"readingDuration":[32],"readingDurationSeconds":[32],"selectionTooltip":[32],"isMouseDown":[32],"getHTML":[64],"getText":[64],"setContent":[64],"clearContent":[64]},null,{"maxLength":["maxLengthUpdated"],"maxWords":["maxWordsUpdated"],"content":["contentUpdated"],"disabled":["disabledUpdated"],"enableBold":["formattingOptionsUpdated"],"enableItalic":["formattingOptionsUpdated"],"enableUnderline":["formattingOptionsUpdated"],"enableBlockquote":["formattingOptionsUpdated"],"enableTextAlign":["formattingOptionsUpdated"],"minHeight":["minHeightUpdated"]}]]],["p-75a75867",[[257,"ur-top-app-bar",{"headerTitle":[1,"header-title"],"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-572d5844",[[257,"ur-dialog",{"description":[1],"open":[4],"fullscreen":[4],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"showHeader":[4,"show-header"],"overlayHeader":[4,"overlay-header"],"variant":[1],"borderRadius":[1,"border-radius"],"openDialog":[64],"closeDialog":[64]}]]],["p-5622a86f",[[257,"ur-list-subheader",{"text":[1]}]]],["p-ff5119f4",[[257,"ur-navigation-bar",{"position":[1],"labelVisibility":[1,"label-visibility"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"value":[1537],"scrollTarget":[1,"scroll-target"],"setValue":[64]},[[0,"change","changeHandler"]],{"value":["valueChanged"]}]]],["p-173882b8",[[257,"ur-profile",{"name":[8],"description":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"show_follow":[4],"show_donate":[4],"show_become_member":[4],"show_send_message":[4],"show_stats":[4],"stories_count":[2],"views_count":[2],"followers_count":[2],"writers_count":[2],"show_languages":[4],"languages":[1],"show_genres":[4],"genres":[1],"show_member_since":[4],"member_since":[1]}]]],["p-2cc17248",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-190ed39b",[[257,"ur-select",{"value":[1],"name":[1],"label":[1],"placeholder":[1],"helper":[1],"variant":[1],"usage":[1],"multiple":[4],"clearable":[4],"disabled":[4],"required":[4],"readonly":[4],"size":[1],"placement":[1],"icon":[1],"endIcon":[1,"end-icon"],"flex":[4],"suffix":[1],"clearIcon":[1,"clear-icon"],"displayText":[32]},[[0,"menuItemChange","handleMenuItemChange"]],{"value":["handleValueChange"]}]]],["p-44a1e2be",[[257,"ur-snackbar",{"open":[1540],"placement":[1],"action":[1],"actionLoading":[4,"action-loading"],"closeable":[4],"closeIcon":[1,"close-icon"],"messageLine":[2,"message-line"],"autoCloseDelay":[2,"auto-close-delay"],"closeOnOutsideClick":[4,"close-on-outside-click"],"message":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"actionColor":[1,"action-color"],"radius":[1],"zIndex":[1,"z-index"]}]]],["p-18624f2b",[[257,"ur-user-profile"]]],["p-b5164a99",[[257,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-53764324",[[257,"ur-page",{"pageId":[1,"page-id"],"loading":[4],"followed":[4],"pageTitle":[1,"page-title"],"pageCover":[1,"page-cover"],"pageCoverFallback":[1,"page-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"pageDescription":[1,"page-description"],"pageType":[1,"page-type"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-99d6b36d",[[257,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followed":[4],"userTitle":[1,"user-title"],"userCover":[1,"user-cover"],"userCoverFallback":[1,"user-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"userDescription":[1,"user-description"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-c605df0e",[[257,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1],"containerPadding":[1,"container-padding"],"iconMargin":[1,"icon-margin"],"borderRadius":[1,"border-radius"]}]]],["p-50245874",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-18531d84",[[257,"ur-button-icon",{"disabled":[4],"loading":[4],"variant":[1],"icon":[1],"selectedIcon":[1,"selected-icon"],"selected":[4],"active":[4],"borderRadius":[1,"border-radius"],"buttonWidth":[1,"button-width"],"buttonHeight":[1,"button-height"],"fontColor":[1,"font-color"],"backgroundColor":[1,"background-color"]}]]],["p-6813b14e",[[257,"ur-novl",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"likes":[2],"views":[2],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"]}],[257,"ur-tooltip",{"content":[1],"variant":[1],"placement":[1],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"trigger":[1],"colorScheme":[1,"color-scheme"],"disabled":[4],"isVisible":[32]}],[257,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1],"skeleton":[4]}]]],["p-e572d1ff",[[257,"ur-competition",{"competitionId":[1,"competition-id"],"competitionTitle":[1,"competition-title"],"description":[1],"literatureType":[1,"literature-type"],"genre":[1],"language":[1],"entryFee":[2,"entry-fee"],"hasEntryFee":[4,"has-entry-fee"],"prizeTypes":[16,"prize-types"],"startDate":[1,"start-date"],"submissionDeadline":[1,"submission-deadline"],"winnersAnnouncementDate":[1,"winners-announcement-date"],"status":[1],"imageUrl":[1,"image-url"],"pageAvatar":[1,"page-avatar"],"clickable":[4],"height":[1],"skeleton":[4],"freeText":[1,"free-text"],"tbdText":[1,"tbd-text"],"unknownText":[1,"unknown-text"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"startDateText":[1,"start-date-text"],"deadlineText":[1,"deadline-text"],"winnersText":[1,"winners-text"],"closedText":[1,"closed-text"],"completedText":[1,"completed-text"],"entryFeeText":[1,"entry-fee-text"],"prizeText":[1,"prize-text"]}]]],["p-ac24f392",[[257,"ur-competition-carousel",{"competitions":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"cardHeight":[1,"card-height"],"skeleton":[4],"disabledPrev":[32],"disabledNext":[32],"addCompetitions":[64],"updateCompetitionsByIndex":[64],"reset":[64]}]]],["p-f4e3468d",[[257,"ur-button",{"disabled":[4],"variant":[1],"icon":[8],"endIcon":[8,"end-icon"],"fullWidth":[4,"full-width"],"loading":[4],"fontColor":[1,"font-color"],"buttonHeight":[1,"button-height"],"borderRadius":[1,"border-radius"],"backgroundColor":[1,"background-color"],"skeleton":[4]}]]],["p-555ff814",[[257,"ur-page-profile",{"pageId":[1,"page-id"],"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"stories":[2],"views":[2],"pageCreatedText":[1,"page-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"websiteText":[1,"website-text"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isPageOwner":[4,"is-page-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"pageType":[1,"page-type"],"pageCreationDate":[8,"page-creation-date"],"locale":[1],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"membersText":[1,"members-text"],"followText":[1,"follow-text"],"followingText":[1,"following-text"],"becomeMemberText":[1,"become-member-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"cancelMembershipText":[1,"cancel-membership-text"],"youreMemberText":[1,"youre-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"skeleton":[4],"memberRequestStatus":[1025,"member-request-status"],"memberButtonHoverState":[32]}]]],["p-c4ef9ff3",[[257,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"submitButtonText":[1,"submit-button-text"],"formState":[32]}]]],["p-7f227e76",[[257,"ur-feedback",{"titleText":[1,"title-text"],"descriptionText":[1,"description-text"],"placeholderText":[1,"placeholder-text"],"feedbackText":[1,"feedback-text"],"supportText":[1,"support-text"],"pressText":[1,"press-text"],"successText":[1,"success-text"],"user":[4],"failureText":[1,"failure-text"],"messageLabel":[1,"message-label"],"emailLabel":[1,"email-label"],"emailPlaceholder":[1,"email-placeholder"],"sendText":[1,"send-text"],"text":[32],"disabled":[32],"success":[32],"failure":[32],"mode":[32],"userEmail":[32],"emailError":[32],"reset":[64],"handleSubmitSuccess":[64],"handleSubmitFailure":[64]}]]],["p-2768fcb6",[[257,"ur-user-page-profile",{"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"website":[8],"stories":[2],"views":[2],"userProfileCreatedText":[1,"user-profile-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"isProfileFollowed":[4,"is-profile-followed"],"unFollowText":[1,"un-follow-text"],"websiteText":[1,"website-text"],"writerText":[1,"writer-text"],"readerText":[1,"reader-text"],"isLoggedIn":[4,"is-logged-in"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isProfileOwner":[4,"is-profile-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"isWriter":[4,"is-writer"],"userProfileCreatedDate":[8,"user-profile-created-date"],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"followingText":[1,"following-text"],"pagesFollowingText":[1,"pages-following-text"],"pagesFollowing":[2,"pages-following"],"logoutText":[1,"logout-text"],"locale":[1],"skeleton":[4],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-41e13975",[[257,"ur-autosave-drawer",{"autosaves":[1040],"emptyMessage":[1,"empty-message"],"chapterText":[1,"chapter-text"],"yesText":[1,"yes-text"],"noText":[1,"no-text"],"autosavesTitle":[1,"autosaves-title"],"deleteConfirmMessage":[1,"delete-confirm-message"],"forceRender":[32]},null,{"autosaves":["autosavesChanged"]}]]],["p-0e5384a3",[[257,"ur-chapter-item",{"chapterId":[1,"chapter-id"],"chapterNumber":[2,"chapter-number"],"chapterTitle":[1,"chapter-title"],"createdAt":[1,"created-at"],"isBound":[4,"is-bound"],"isStoryCompleted":[4,"is-story-completed"],"likes":[2],"views":[2],"isOwner":[4,"is-owner"],"readingDuration":[2,"reading-duration"],"readChapterText":[1,"read-chapter-text"],"likesText":[1,"likes-text"],"viewsText":[1,"views-text"],"readingDurationText":[1,"reading-duration-text"],"locale":[1],"isLocked":[4,"is-locked"],"isLastChapter":[4,"is-last-chapter"],"loading":[32]}]]],["p-275df36e",[[257,"ur-main-desktop-top-app-bar",{"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"fontColor":[1,"font-color"],"quillText":[1,"quill-text"],"deviceVariant":[1,"device-variant"],"searchText":[1,"search-text"],"quillCount":[2,"quill-count"]}]]],["p-c6b088b3",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-0efa0800",[[257,"ur-page-list",{"pages":[16],"skeleton":[4],"titleFontSize":[1,"title-font-size"],"gap":[1],"hideTitle":[4,"hide-title"],"containerPadding":[1,"container-padding"],"avatarSize":[1,"avatar-size"]}]]],["p-36ef057f",[[257,"ur-player",{"src":[1],"storyTitle":[1,"story-title"],"author":[1],"coverImage":[1,"cover-image"],"chapterName":[1,"chapter-name"],"playText":[1,"play-text"],"pauseText":[1,"pause-text"],"forwardText":[1,"forward-text"],"backwardText":[1,"backward-text"],"speedText":[1,"speed-text"],"volumeText":[1,"volume-text"],"autoPlay":[4,"auto-play"],"showControls":[4,"show-controls"],"primaryColor":[1,"primary-color"],"accentColor":[1,"accent-color"],"darkMode":[4,"dark-mode"],"isPlaying":[32],"currentTime":[32],"duration":[32],"loadedPercentage":[32],"volume":[32],"playbackRate":[32],"play":[64],"pause":[64],"togglePlay":[64],"seekTo":[64],"setVolume":[64],"setPlaybackRate":[64],"skipForward":[64],"skipBackward":[64]},null,{"src":["onSourceChange"]}]]],["p-656844fe",[[257,"ur-read-rail",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[2],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"mode":[1],"isFollowed":[4,"is-followed"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isPaidChapter":[4,"is-paid-chapter"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"isHostSmall":[4,"is-host-small"],"pageSrc":[1,"page-src"],"pageName":[1,"page-name"],"pageId":[1,"page-id"],"isPageFollowed":[4,"is-page-followed"],"isVisible":[4,"is-visible"],"isLiked":[32],"isDisliked":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isPaidChapter":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isHostSmall":["handlePropChange","handleHostSmallChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"],"pageSrc":["handlePropChange"],"pageName":["handlePropChange"],"pageId":["handlePropChange"],"isPageFollowed":["handlePropChange"]}]]],["p-375f5509",[[257,"ur-reader",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"loading":[4],"chapterLocked":[4,"chapter-locked"],"storyTitle":[1,"story-title"],"chapterTitle":[1,"chapter-title"],"chapterContent":[1,"chapter-content"],"fontSize":[1,"font-size"],"chapterSequence":[2,"chapter-sequence"],"fontType":[1,"font-type"],"readingDurationText":[1,"reading-duration-text"],"minutesText":[1,"minutes-text"],"likes":[1],"comments":[2],"dislike":[1],"donate":[1],"share":[1],"isVisible":[4,"is-visible"],"readingTimePerWord":[2,"reading-time-per-word"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"hasPreviousChapter":[4,"has-previous-chapter"],"hasNextChapter":[4,"has-next-chapter"],"lockedMessage":[1,"locked-message"],"nextChapterText":[1,"next-chapter-text"],"previousChapterText":[1,"previous-chapter-text"],"unlockButtonLabel":[1,"unlock-button-label"],"isSmallContainer":[32],"baseFontSize":[32],"fontStyles":[32],"isHostSmall":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"storyTitle":["handlePropChange"],"chapterTitle":["handlePropChange"],"chapterContent":["handlePropChange"],"fontSize":["handlePropChange"],"fontType":["handlePropChange"],"loading":["handlePropChange"],"chapterLocked":["handlePropChange"],"chapterSequence":["handlePropChange"],"hasPreviousChapter":["handlePropChange"],"hasNextChapter":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-8fcfad4e",[[257,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"loading":[4],"skeleton":[4],"reset":[64]}]]],["p-97ced9bc",[[257,"ur-read-rail-mobile",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[1],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"isFollowed":[4,"is-followed"],"isVisible":[4,"is-visible"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-ba46a0f2",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16,"step-titles"],"stepDescriptions":[16,"step-descriptions"],"showStepNumbers":[4,"show-step-numbers"],"completedStepIcon":[1,"completed-step-icon"],"nextButtonText":[1,"next-button-text"],"previousButtonText":[1,"previous-button-text"],"completeButtonText":[1,"complete-button-text"],"completeStepText":[1,"complete-step-text"],"ongoingStepText":[1,"ongoing-step-text"],"nextButtonDisabled":[4,"next-button-disabled"],"completedSteps":[32],"stepValidation":[32],"goToStep":[64],"markStepComplete":[64],"markStepInvalid":[64],"reset":[64]}]]],["p-f30aa75c",[[257,"ur-checkbox-group",{"name":[1],"values":[1040],"required":[4],"selectAll":[4,"select-all"],"selectAllText":[1,"select-all-text"],"maxSelectable":[2,"max-selectable"],"options":[32],"validate":[64],"reset":[64]}]]],["p-aef81956",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-570322a6",[[257,"ur-hero",{"heroTitle":[1,"hero-title"],"heroSubtitle":[1,"hero-subtitle"],"ctaText":[1,"cta-text"],"backgroundImage":[1,"background-image"],"backgroundColor":[1,"background-color"],"layout":[1],"backgroundJustification":[1,"background-justification"],"backgroundAlignment":[1,"background-alignment"],"heroTitleColor":[1,"hero-title-color"],"heroSubtitleColor":[1,"hero-subtitle-color"],"widthClass":[32]}]]],["p-a645e793",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-072aa311",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-8d8fab25",[[257,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-78d04bb3",[[257,"ur-shelf-item",{"shelf":[16],"novels":[16],"isOwnShelf":[4,"is-own-shelf"],"skeleton":[4],"totalStoryCount":[2,"total-story-count"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"],"noStoriesText":[1,"no-stories-text"]}]]],["p-2d75d645",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6655a44d",[[257,"ur-bottom-sheet",{"open":[4],"selectedDetent":[1,"selected-detent"],"backdropDismiss":[4,"backdrop-dismiss"],"currentDetent":[32],"dragPosition":[32],"isVisible":[32],"showSheet":[64],"hideSheet":[64]},null,{"open":["watchOpen"]}]]],["p-b74098cc",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-b6af1ca4",[[257,"ur-dropdown",{"open":[1540],"disabled":[4],"trigger":[1],"placement":[1],"stayOpenOnClick":[4,"stay-open-on-click"],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"openOnPointer":[4,"open-on-pointer"],"openDropdown":[64],"closeDropdown":[64],"toggle":[64]},null,{"open":["handleOpenChange"]}]]],["p-5b467c2c",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-cc1a0f05",[[260,"ur-grid-col",{"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"],"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"windowWidth":[32]}]]],["p-c6c9068d",[[257,"ur-grid-row"]]],["p-f07ff4a4",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-d2d9ec5b",[[257,"ur-image-uploader",{"width":[1],"height":[1],"maxHeight":[1,"max-height"],"borderRadius":[1,"border-radius"],"borderStyle":[1,"border-style"],"backgroundColor":[1,"background-color"],"hoverBackgroundColor":[1,"hover-background-color"],"acceptTypes":[1,"accept-types"],"disabled":[4],"placeholderText":[1,"placeholder-text"],"uploadingText":[1,"uploading-text"],"showFileName":[4,"show-file-name"],"maxFileSize":[2,"max-file-size"],"enableNativeUpload":[4,"enable-native-upload"],"loading":[4],"isDragOver":[32],"selectedFile":[32],"previewUrl":[32],"isUploading":[32],"setImageUrl":[64],"getImageUrl":[64],"clearImage":[64],"getSelectedFile":[64],"setUploadingState":[64]}]]],["p-2a7f97ed",[[257,"ur-loader"]]],["p-20768738",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-b0df607b",[[257,"ur-menu-item",{"value":[1],"label":[1],"disabled":[4],"selected":[4],"size":[1],"selectedIcon":[1,"selected-icon"],"fullWidth":[4,"full-width"],"leftAligned":[4,"left-aligned"],"heightNumber":[514,"height-number"],"isHovered":[32]},[[4,"selectionChanged","handleSelectionChanged"]],{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-41b3a1b3",[[257,"ur-navigation-drawer",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contained":[4],"openDrawer":[64],"closeDrawer":[64]}]]],["p-28b7d6da",[[257,"ur-navigation-drawer-global",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contentHeight":[32],"openDrawer":[64],"closeDrawer":[64]}]]],["p-f7e454e5",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-755b4a8a",[[257,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-136af971",[[257,"ur-page-shared-list-tabs",{"activeTab":[1,"active-tab"],"followersTabText":[1,"followers-tab-text"],"membersTabText":[1,"members-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-8656aef0",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-af64573e",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-aadc0685",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-50590839",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-8843bf71",[[257,"ur-profile-card",{"avatarSrc":[1,"avatar-src"],"avatarAlt":[1,"avatar-alt"],"name":[1],"avatarSize":[1,"avatar-size"],"description":[1],"followButtonText":[1,"follow-button-text"],"isOwner":[4,"is-owner"],"profileType":[1,"profile-type"],"nameFontSize":[1,"name-font-size"],"unfollowButtonText":[1,"unfollow-button-text"],"buttonHeight":[1,"button-height"],"buttonWidth":[1,"button-width"],"pageActionsTooltipText":[1,"page-actions-tooltip-text"],"memberActionsTooltipText":[1,"member-actions-tooltip-text"],"showDescription":[4,"show-description"],"showMemberActions":[4,"show-member-actions"],"showPageActions":[4,"show-page-actions"],"hideFollowActions":[4,"hide-follow-actions"],"initialFollowState":[4,"initial-follow-state"],"skeleton":[4],"isFollowing":[32]},null,{"initialFollowState":["onInitialFollowStateChange"]}]]],["p-af90b0c6",[[257,"ur-competition-novl-card",{"novlId":[1,"novl-id"],"novlTitle":[1,"novl-title"],"shortSummary":[1,"short-summary"],"chaptersCount":[2,"chapters-count"],"wordCount":[2,"word-count"],"coverImage":[1,"cover-image"],"language":[1],"genre":[1],"literatureType":[1,"literature-type"],"authorName":[1,"author-name"],"showDescription":[4,"show-description"],"showAuthor":[4,"show-author"],"showStats":[4,"show-stats"],"showChips":[4,"show-chips"],"clickable":[4],"size":[1],"chipSize":[1,"chip-size"],"skeleton":[4],"showMenu":[4,"show-menu"],"entryId":[1,"entry-id"],"isOwnerViewing":[4,"is-owner-viewing"],"winnerPosition":[2,"winner-position"],"isWinner":[4,"is-winner"],"winnerBadgePosition":[1,"winner-badge-position"],"withdrawButtonText":[1,"withdraw-button-text"],"removeEntryText":[1,"remove-entry-text"],"chaptersText":[1,"chapters-text"],"wordsText":[1,"words-text"],"winnerText":[1,"winner-text"],"isMenuOpen":[32]}],[257,"ur-stats",{"stats":[16],"skeleton":[4],"layout":[1],"showSeparators":[4,"show-separators"],"background":[1]}]]],["p-eb736d69",[[257,"ur-list"]]],["p-323c221c",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-66b794bc",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-9596a813",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-5dad32b3",[[257,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[4,"full-width"]},null,{"checked":["watchChecked"]}],[257,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-d0171c81",[[257,"ur-text-field",{"label":[1],"placeholder":[1],"helper":[1],"disabled":[4],"required":[4],"variant":[1],"value":[1025],"name":[1],"endIcon":[1,"end-icon"],"rows":[2],"autosize":[4],"minRows":[2,"min-rows"],"maxRows":[2,"max-rows"],"minlength":[2],"maxlength":[2],"counter":[4],"type":[1],"pattern":[1],"min":[8],"max":[8],"step":[8],"error":[1540],"errorMessage":[1537,"error-message"],"skeleton":[4]}]]],["p-c719a7e0",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-29a42efe",[[257,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"skeleton":[4],"disabled":[4],"clickable":[4]}]]]]'),e))));
1
+ import{p as e,g as t,b as a}from"./p-DxicD_v0.js";export{s as setNonce}from"./p-DxicD_v0.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await t(),a(JSON.parse('[["p-d3773116",[[257,"ur-competition-overview",{"competition":[16],"submissions":[16],"submissionsLoading":[4,"submissions-loading"],"loading":[4],"error":[1],"deviceSize":[1,"device-size"],"isOwner":[4,"is-owner"],"isParticipant":[4,"is-participant"],"canSubmit":[4,"can-submit"],"showEditButton":[4,"show-edit-button"],"showDeleteButton":[4,"show-delete-button"],"skeleton":[4],"currentUserId":[1,"current-user-id"],"userHasSubmission":[4,"user-has-submission"],"userSubmission":[16,"user-submission"],"initialTab":[1,"initial-tab"],"currentPage":[2,"current-page"],"itemsPerPage":[2,"items-per-page"],"totalEntries":[2,"total-entries"],"winnerBadgePosition":[1,"winner-badge-position"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"tabDetailsText":[1,"tab-details-text"],"tabSubmissionsText":[1,"tab-submissions-text"],"sectionDescriptionText":[1,"section-description-text"],"sectionJudgingText":[1,"section-judging-text"],"sectionPrizesText":[1,"section-prizes-text"],"sectionCreatedByText":[1,"section-created-by-text"],"statEntryFeeText":[1,"stat-entry-fee-text"],"statWordCountText":[1,"stat-word-count-text"],"statStartDateText":[1,"stat-start-date-text"],"statDeadlineText":[1,"stat-deadline-text"],"statWinnersText":[1,"stat-winners-text"],"submitButtonText":[1,"submit-button-text"],"withdrawButtonText":[1,"withdraw-button-text"],"finalizeButtonText":[1,"finalize-button-text"],"deleteButtonText":[1,"delete-button-text"],"editButtonText":[1,"edit-button-text"],"backButtonText":[1,"back-button-text"],"previousButtonText":[1,"previous-button-text"],"nextButtonText":[1,"next-button-text"],"removeEntryText":[1,"remove-entry-text"],"noSubmissionsText":[1,"no-submissions-text"],"loadingSubmissionsText":[1,"loading-submissions-text"],"showingEntriesText":[1,"showing-entries-text"],"freeText":[1,"free-text"],"noLimitText":[1,"no-limit-text"],"upToText":[1,"up-to-text"],"atLeastText":[1,"at-least-text"],"rangeText":[1,"range-text"],"tbdText":[1,"tbd-text"],"editDisabledTooltipText":[1,"edit-disabled-tooltip-text"],"activeTab":[32],"setActiveTab":[64]}]]],["p-70ef7dcb",[[257,"ur-main-menu",{"opened":[4],"loggedIn":[4,"logged-in"],"userName":[1,"user-name"],"userRole":[1,"user-role"],"userAvatar":[1,"user-avatar"],"badgeCount":[2,"badge-count"],"termsText":[1,"terms-text"],"rulesText":[1,"rules-text"],"privacyText":[1,"privacy-text"],"paymentText":[1,"payment-text"],"acceptableUseText":[1,"acceptable-use-text"],"partnershipText":[1,"partnership-text"],"homeText":[1,"home-text"],"storiesText":[1,"stories-text"],"pagesText":[1,"pages-text"],"myLibraryText":[1,"my-library-text"],"competitionsText":[1,"competitions-text"],"notificationText":[1,"notification-text"],"facebookText":[1,"facebook-text"],"xText":[1,"x-text"],"discordText":[1,"discord-text"],"contactUsText":[1,"contact-us-text"],"signUpText":[1,"sign-up-text"],"premiumText":[1,"premium-text"],"whatsNewText":[1,"whats-new-text"],"faqsText":[1,"faqs-text"],"currentRoute":[1,"current-route"],"notificationCenterOpened":[4,"notification-center-opened"],"myLibraryOpened":[4,"my-library-opened"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"],"myLibraryOpened":["watchMyLibraryOpenedHandler"]}]]],["p-5cc527a4",[[257,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"attachRequestStatus":[1025,"attach-request-status"],"attachStoryText":[1,"attach-story-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"detachFromPageText":[1,"detach-from-page-text"],"attachedToPageText":[1,"attached-to-page-text"],"editTitleTooltipText":[1,"edit-title-tooltip-text"],"editDescriptionTooltipText":[1,"edit-description-tooltip-text"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"visibility":[1],"visibilityPublicText":[1,"visibility-public-text"],"visibilityPrivateText":[1,"visibility-private-text"],"completeStoryText":[1,"complete-story-text"],"revertStoryText":[1,"revert-story-text"],"expanded":[4],"showPublishedButton":[4,"show-published-button"],"skeleton":[4],"attachButtonHoverState":[32],"reset":[64]}]]],["p-fbf18c17",[[257,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32],"isShelfPublic":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-260ae23e",[[257,"ur-novl-carousel",{"novls":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-25b2dd40",[[257,"ur-page-carousel",{"pages":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4ebc2130",[[257,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-f94a1a59",[[257,"ur-user-profile-settings-form",{"settings":[8],"skeleton":[4],"locationLabelText":[1,"location-label-text"],"websiteLabelText":[1,"website-label-text"],"aboutLabelText":[1,"about-label-text"],"facebookLabelText":[1,"facebook-label-text"],"twitterLabelText":[1,"twitter-label-text"],"linkedinLabelText":[1,"linkedin-label-text"],"emailLabelText":[1,"email-label-text"],"personalInfoTitleText":[1,"personal-info-title-text"],"interactTitleText":[1,"interact-title-text"],"facebookTitleText":[1,"facebook-title-text"],"twitterTitleText":[1,"twitter-title-text"],"linkedinTitleText":[1,"linkedin-title-text"],"emailTitleText":[1,"email-title-text"],"facebookPrefixText":[1,"facebook-prefix-text"],"twitterPrefixText":[1,"twitter-prefix-text"],"linkedinPrefixText":[1,"linkedin-prefix-text"],"personalInfoSubtitleText":[1,"personal-info-subtitle-text"],"interactSubtitleText":[1,"interact-subtitle-text"],"socialEnabled":[32]},null,{"settings":["settingsChanged"]}]]],["p-1710f088",[[257,"ur-editor",{"content":[1],"disabled":[4],"placeholder":[1],"wordLabel":[1,"word-label"],"charLabel":[1,"char-label"],"readingDurationLabel":[1,"reading-duration-label"],"enableBold":[4,"enable-bold"],"enableItalic":[4,"enable-italic"],"enableUnderline":[4,"enable-underline"],"enableTextAlign":[4,"enable-text-align"],"enableBlockquote":[4,"enable-blockquote"],"maxLength":[2,"max-length"],"maxWords":[2,"max-words"],"showCounter":[4,"show-counter"],"showFixedToolbar":[516,"show-fixed-toolbar"],"showSelectionToolbar":[516,"show-selection-toolbar"],"minHeight":[1,"min-height"],"formattingState":[32],"charCount":[32],"wordCount":[32],"readingDuration":[32],"readingDurationSeconds":[32],"selectionTooltip":[32],"isMouseDown":[32],"getHTML":[64],"getText":[64],"setContent":[64],"clearContent":[64]},null,{"maxLength":["maxLengthUpdated"],"maxWords":["maxWordsUpdated"],"content":["contentUpdated"],"disabled":["disabledUpdated"],"enableBold":["formattingOptionsUpdated"],"enableItalic":["formattingOptionsUpdated"],"enableUnderline":["formattingOptionsUpdated"],"enableBlockquote":["formattingOptionsUpdated"],"enableTextAlign":["formattingOptionsUpdated"],"minHeight":["minHeightUpdated"]}]]],["p-75a75867",[[257,"ur-top-app-bar",{"headerTitle":[1,"header-title"],"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-572d5844",[[257,"ur-dialog",{"description":[1],"open":[4],"fullscreen":[4],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"showHeader":[4,"show-header"],"overlayHeader":[4,"overlay-header"],"variant":[1],"borderRadius":[1,"border-radius"],"openDialog":[64],"closeDialog":[64]}]]],["p-5622a86f",[[257,"ur-list-subheader",{"text":[1]}]]],["p-ff5119f4",[[257,"ur-navigation-bar",{"position":[1],"labelVisibility":[1,"label-visibility"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"value":[1537],"scrollTarget":[1,"scroll-target"],"setValue":[64]},[[0,"change","changeHandler"]],{"value":["valueChanged"]}]]],["p-173882b8",[[257,"ur-profile",{"name":[8],"description":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"show_follow":[4],"show_donate":[4],"show_become_member":[4],"show_send_message":[4],"show_stats":[4],"stories_count":[2],"views_count":[2],"followers_count":[2],"writers_count":[2],"show_languages":[4],"languages":[1],"show_genres":[4],"genres":[1],"show_member_since":[4],"member_since":[1]}]]],["p-2cc17248",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-190ed39b",[[257,"ur-select",{"value":[1],"name":[1],"label":[1],"placeholder":[1],"helper":[1],"variant":[1],"usage":[1],"multiple":[4],"clearable":[4],"disabled":[4],"required":[4],"readonly":[4],"size":[1],"placement":[1],"icon":[1],"endIcon":[1,"end-icon"],"flex":[4],"suffix":[1],"clearIcon":[1,"clear-icon"],"displayText":[32]},[[0,"menuItemChange","handleMenuItemChange"]],{"value":["handleValueChange"]}]]],["p-44a1e2be",[[257,"ur-snackbar",{"open":[1540],"placement":[1],"action":[1],"actionLoading":[4,"action-loading"],"closeable":[4],"closeIcon":[1,"close-icon"],"messageLine":[2,"message-line"],"autoCloseDelay":[2,"auto-close-delay"],"closeOnOutsideClick":[4,"close-on-outside-click"],"message":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"actionColor":[1,"action-color"],"radius":[1],"zIndex":[1,"z-index"]}]]],["p-18624f2b",[[257,"ur-user-profile"]]],["p-b5164a99",[[257,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-53764324",[[257,"ur-page",{"pageId":[1,"page-id"],"loading":[4],"followed":[4],"pageTitle":[1,"page-title"],"pageCover":[1,"page-cover"],"pageCoverFallback":[1,"page-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"pageDescription":[1,"page-description"],"pageType":[1,"page-type"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-99d6b36d",[[257,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followed":[4],"userTitle":[1,"user-title"],"userCover":[1,"user-cover"],"userCoverFallback":[1,"user-cover-fallback"],"followers":[2],"showStats":[4,"show-stats"],"userDescription":[1,"user-description"],"borderRadius":[1,"border-radius"],"followLabel":[1,"follow-label"],"followingLabel":[1,"following-label"],"followersLabel":[1,"followers-label"]}]]],["p-c605df0e",[[257,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1],"containerPadding":[1,"container-padding"],"iconMargin":[1,"icon-margin"],"borderRadius":[1,"border-radius"]}]]],["p-50245874",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-18531d84",[[257,"ur-button-icon",{"disabled":[4],"loading":[4],"variant":[1],"icon":[1],"selectedIcon":[1,"selected-icon"],"selected":[4],"active":[4],"borderRadius":[1,"border-radius"],"buttonWidth":[1,"button-width"],"buttonHeight":[1,"button-height"],"fontColor":[1,"font-color"],"backgroundColor":[1,"background-color"]}]]],["p-6813b14e",[[257,"ur-novl",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"likes":[2],"views":[2],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"ongoingLabel":[1,"ongoing-label"],"likesLabel":[1,"likes-label"],"viewsLabel":[1,"views-label"]}],[257,"ur-tooltip",{"content":[1],"variant":[1],"placement":[1],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"trigger":[1],"colorScheme":[1,"color-scheme"],"disabled":[4],"isVisible":[32]}],[257,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1],"skeleton":[4]}]]],["p-e572d1ff",[[257,"ur-competition",{"competitionId":[1,"competition-id"],"competitionTitle":[1,"competition-title"],"description":[1],"literatureType":[1,"literature-type"],"genre":[1],"language":[1],"entryFee":[2,"entry-fee"],"hasEntryFee":[4,"has-entry-fee"],"prizeTypes":[16,"prize-types"],"startDate":[1,"start-date"],"submissionDeadline":[1,"submission-deadline"],"winnersAnnouncementDate":[1,"winners-announcement-date"],"status":[1],"imageUrl":[1,"image-url"],"pageAvatar":[1,"page-avatar"],"clickable":[4],"height":[1],"skeleton":[4],"freeText":[1,"free-text"],"tbdText":[1,"tbd-text"],"unknownText":[1,"unknown-text"],"statusUpcomingText":[1,"status-upcoming-text"],"statusActiveText":[1,"status-active-text"],"statusClosedText":[1,"status-closed-text"],"statusCompletedText":[1,"status-completed-text"],"startDateText":[1,"start-date-text"],"deadlineText":[1,"deadline-text"],"winnersText":[1,"winners-text"],"closedText":[1,"closed-text"],"completedText":[1,"completed-text"],"entryFeeText":[1,"entry-fee-text"],"prizeText":[1,"prize-text"]}]]],["p-ac24f392",[[257,"ur-competition-carousel",{"competitions":[16],"loading":[32],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4],"destroyListeners":[4,"destroy-listeners"],"debug":[4],"cardHeight":[1,"card-height"],"skeleton":[4],"disabledPrev":[32],"disabledNext":[32],"addCompetitions":[64],"updateCompetitionsByIndex":[64],"reset":[64]}]]],["p-f4e3468d",[[257,"ur-button",{"disabled":[4],"variant":[1],"icon":[8],"endIcon":[8,"end-icon"],"fullWidth":[4,"full-width"],"loading":[4],"fontColor":[1,"font-color"],"buttonHeight":[1,"button-height"],"borderRadius":[1,"border-radius"],"backgroundColor":[1,"background-color"],"skeleton":[4]}]]],["p-555ff814",[[257,"ur-page-profile",{"pageId":[1,"page-id"],"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"phone":[8],"website":[8],"stories":[2],"views":[2],"pageCreatedText":[1,"page-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"websiteText":[1,"website-text"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isPageOwner":[4,"is-page-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"pageType":[1,"page-type"],"pageCreationDate":[8,"page-creation-date"],"locale":[1],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"membersText":[1,"members-text"],"followText":[1,"follow-text"],"followingText":[1,"following-text"],"becomeMemberText":[1,"become-member-text"],"cancelRequestText":[1,"cancel-request-text"],"requestPendingText":[1,"request-pending-text"],"cancelMembershipText":[1,"cancel-membership-text"],"youreMemberText":[1,"youre-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"skeleton":[4],"memberRequestStatus":[1025,"member-request-status"],"memberButtonHoverState":[32]}]]],["p-c4ef9ff3",[[257,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"submitButtonText":[1,"submit-button-text"],"formState":[32]}]]],["p-7f227e76",[[257,"ur-feedback",{"titleText":[1,"title-text"],"descriptionText":[1,"description-text"],"placeholderText":[1,"placeholder-text"],"feedbackText":[1,"feedback-text"],"supportText":[1,"support-text"],"pressText":[1,"press-text"],"successText":[1,"success-text"],"user":[4],"failureText":[1,"failure-text"],"messageLabel":[1,"message-label"],"emailLabel":[1,"email-label"],"emailPlaceholder":[1,"email-placeholder"],"sendText":[1,"send-text"],"text":[32],"disabled":[32],"success":[32],"failure":[32],"mode":[32],"userEmail":[32],"emailError":[32],"reset":[64],"handleSubmitSuccess":[64],"handleSubmitFailure":[64]}]]],["p-2768fcb6",[[257,"ur-user-page-profile",{"platform":[1],"avatar":[8],"name":[8],"about":[8],"location":[8],"facebook_url":[8],"twitter_url":[8],"linkedin_url":[8],"email":[8],"website":[8],"stories":[2],"views":[2],"userProfileCreatedText":[1,"user-profile-created-text"],"following":[2],"followers":[2],"members":[2],"showFollow":[4,"show-follow"],"isProfileFollowed":[4,"is-profile-followed"],"unFollowText":[1,"un-follow-text"],"websiteText":[1,"website-text"],"writerText":[1,"writer-text"],"readerText":[1,"reader-text"],"isLoggedIn":[4,"is-logged-in"],"showBecomeMember":[4,"show-become-member"],"showDonate":[4,"show-donate"],"showSendMessage":[4,"show-send-message"],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"isProfileOwner":[4,"is-profile-owner"],"pageCreatorName":[8,"page-creator-name"],"pageCreatorImage":[8,"page-creator-image"],"isWriter":[4,"is-writer"],"userProfileCreatedDate":[8,"user-profile-created-date"],"createdByText":[1,"created-by-text"],"literatureTypesText":[1,"literature-types-text"],"genresText":[1,"genres-text"],"languagesText":[1,"languages-text"],"viewsText":[1,"views-text"],"storiesText":[1,"stories-text"],"followersText":[1,"followers-text"],"followingText":[1,"following-text"],"pagesFollowingText":[1,"pages-following-text"],"pagesFollowing":[2,"pages-following"],"logoutText":[1,"logout-text"],"locale":[1],"skeleton":[4],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-41e13975",[[257,"ur-autosave-drawer",{"autosaves":[1040],"emptyMessage":[1,"empty-message"],"chapterText":[1,"chapter-text"],"yesText":[1,"yes-text"],"noText":[1,"no-text"],"autosavesTitle":[1,"autosaves-title"],"deleteConfirmMessage":[1,"delete-confirm-message"],"forceRender":[32]},null,{"autosaves":["autosavesChanged"]}]]],["p-0e5384a3",[[257,"ur-chapter-item",{"chapterId":[1,"chapter-id"],"chapterNumber":[2,"chapter-number"],"chapterTitle":[1,"chapter-title"],"createdAt":[1,"created-at"],"isBound":[4,"is-bound"],"isStoryCompleted":[4,"is-story-completed"],"likes":[2],"views":[2],"isOwner":[4,"is-owner"],"readingDuration":[2,"reading-duration"],"readChapterText":[1,"read-chapter-text"],"likesText":[1,"likes-text"],"viewsText":[1,"views-text"],"readingDurationText":[1,"reading-duration-text"],"locale":[1],"isLocked":[4,"is-locked"],"isLastChapter":[4,"is-last-chapter"],"loading":[32]}]]],["p-275df36e",[[257,"ur-main-desktop-top-app-bar",{"variant":[1],"logoRotation":[2,"logo-rotation"],"logoOpacity":[2,"logo-opacity"],"fontColor":[1,"font-color"],"quillText":[1,"quill-text"],"deviceVariant":[1,"device-variant"],"searchText":[1,"search-text"],"quillCount":[2,"quill-count"]}]]],["p-c6b088b3",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-0efa0800",[[257,"ur-page-list",{"pages":[16],"skeleton":[4],"titleFontSize":[1,"title-font-size"],"gap":[1],"hideTitle":[4,"hide-title"],"containerPadding":[1,"container-padding"],"avatarSize":[1,"avatar-size"]}]]],["p-36ef057f",[[257,"ur-player",{"src":[1],"storyTitle":[1,"story-title"],"author":[1],"coverImage":[1,"cover-image"],"chapterName":[1,"chapter-name"],"playText":[1,"play-text"],"pauseText":[1,"pause-text"],"forwardText":[1,"forward-text"],"backwardText":[1,"backward-text"],"speedText":[1,"speed-text"],"volumeText":[1,"volume-text"],"autoPlay":[4,"auto-play"],"showControls":[4,"show-controls"],"primaryColor":[1,"primary-color"],"accentColor":[1,"accent-color"],"darkMode":[4,"dark-mode"],"isPlaying":[32],"currentTime":[32],"duration":[32],"loadedPercentage":[32],"volume":[32],"playbackRate":[32],"play":[64],"pause":[64],"togglePlay":[64],"seekTo":[64],"setVolume":[64],"setPlaybackRate":[64],"skipForward":[64],"skipBackward":[64]},null,{"src":["onSourceChange"]}]]],["p-656844fe",[[257,"ur-read-rail",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[2],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"mode":[1],"isFollowed":[4,"is-followed"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isPaidChapter":[4,"is-paid-chapter"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"isHostSmall":[4,"is-host-small"],"pageSrc":[1,"page-src"],"pageName":[1,"page-name"],"pageId":[1,"page-id"],"isPageFollowed":[4,"is-page-followed"],"isVisible":[4,"is-visible"],"isLiked":[32],"isDisliked":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isPaidChapter":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isHostSmall":["handlePropChange","handleHostSmallChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"],"pageSrc":["handlePropChange"],"pageName":["handlePropChange"],"pageId":["handlePropChange"],"isPageFollowed":["handlePropChange"]}]]],["p-375f5509",[[257,"ur-reader",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"loading":[4],"chapterLocked":[4,"chapter-locked"],"storyTitle":[1,"story-title"],"chapterTitle":[1,"chapter-title"],"chapterContent":[1,"chapter-content"],"fontSize":[1,"font-size"],"chapterSequence":[2,"chapter-sequence"],"fontType":[1,"font-type"],"readingDurationText":[1,"reading-duration-text"],"minutesText":[1,"minutes-text"],"likes":[1],"comments":[2],"dislike":[1],"donate":[1],"share":[1],"isVisible":[4,"is-visible"],"readingTimePerWord":[2,"reading-time-per-word"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"],"hasPreviousChapter":[4,"has-previous-chapter"],"hasNextChapter":[4,"has-next-chapter"],"lockedMessage":[1,"locked-message"],"nextChapterText":[1,"next-chapter-text"],"previousChapterText":[1,"previous-chapter-text"],"unlockButtonLabel":[1,"unlock-button-label"],"isSmallContainer":[32],"baseFontSize":[32],"fontStyles":[32],"isHostSmall":[32]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"storyTitle":["handlePropChange"],"chapterTitle":["handlePropChange"],"chapterContent":["handlePropChange"],"fontSize":["handlePropChange"],"fontType":["handlePropChange"],"loading":["handlePropChange"],"chapterLocked":["handlePropChange"],"chapterSequence":["handlePropChange"],"hasPreviousChapter":["handlePropChange"],"hasNextChapter":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-8fcfad4e",[[257,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"loading":[4],"skeleton":[4],"reset":[64]}]]],["p-97ced9bc",[[257,"ur-read-rail-mobile",{"avatarSrc":[1,"avatar-src"],"avatarName":[1,"avatar-name"],"likes":[1],"dislike":[1],"comments":[2],"donate":[1],"share":[1],"isFollowed":[4,"is-followed"],"isVisible":[4,"is-visible"],"isOwnChapter":[4,"is-own-chapter"],"isChapterPurchased":[4,"is-chapter-purchased"],"isNovlDeleted":[4,"is-novl-deleted"],"isAuthorFollowed":[4,"is-author-followed"],"isAuthorPro":[4,"is-author-pro"],"isDonationsEnabled":[4,"is-donations-enabled"]},null,{"avatarSrc":["handlePropChange"],"avatarName":["handlePropChange"],"likes":["handlePropChange"],"dislike":["handlePropChange"],"comments":["handlePropChange"],"donate":["handlePropChange"],"share":["handlePropChange"],"isVisible":["handlePropChange"],"isOwnChapter":["handlePropChange"],"isChapterPurchased":["handlePropChange"],"isNovlDeleted":["handlePropChange"],"isAuthorFollowed":["handlePropChange"],"isAuthorPro":["handlePropChange"],"isDonationsEnabled":["handlePropChange"]}]]],["p-ba46a0f2",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16,"step-titles"],"stepDescriptions":[16,"step-descriptions"],"showStepNumbers":[4,"show-step-numbers"],"completedStepIcon":[1,"completed-step-icon"],"nextButtonText":[1,"next-button-text"],"previousButtonText":[1,"previous-button-text"],"completeButtonText":[1,"complete-button-text"],"completeStepText":[1,"complete-step-text"],"ongoingStepText":[1,"ongoing-step-text"],"nextButtonDisabled":[4,"next-button-disabled"],"completedSteps":[32],"stepValidation":[32],"goToStep":[64],"markStepComplete":[64],"markStepInvalid":[64],"reset":[64]}]]],["p-f30aa75c",[[257,"ur-checkbox-group",{"name":[1],"values":[1040],"required":[4],"selectAll":[4,"select-all"],"selectAllText":[1,"select-all-text"],"maxSelectable":[2,"max-selectable"],"options":[32],"validate":[64],"reset":[64]}]]],["p-aef81956",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-570322a6",[[257,"ur-hero",{"heroTitle":[1,"hero-title"],"heroSubtitle":[1,"hero-subtitle"],"ctaText":[1,"cta-text"],"backgroundImage":[1,"background-image"],"backgroundColor":[1,"background-color"],"layout":[1],"backgroundJustification":[1,"background-justification"],"backgroundAlignment":[1,"background-alignment"],"heroTitleColor":[1,"hero-title-color"],"heroSubtitleColor":[1,"hero-subtitle-color"],"widthClass":[32]}]]],["p-a645e793",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-072aa311",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-8d8fab25",[[257,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-a03b30aa",[[257,"ur-shelf-item",{"shelf":[16],"novels":[16],"isOwnShelf":[4,"is-own-shelf"],"skeleton":[4],"totalStoryCount":[2,"total-story-count"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"],"noStoriesText":[1,"no-stories-text"]}]]],["p-2d75d645",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6655a44d",[[257,"ur-bottom-sheet",{"open":[4],"selectedDetent":[1,"selected-detent"],"backdropDismiss":[4,"backdrop-dismiss"],"currentDetent":[32],"dragPosition":[32],"isVisible":[32],"showSheet":[64],"hideSheet":[64]},null,{"open":["watchOpen"]}]]],["p-b74098cc",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-b6af1ca4",[[257,"ur-dropdown",{"open":[1540],"disabled":[4],"trigger":[1],"placement":[1],"stayOpenOnClick":[4,"stay-open-on-click"],"openDelay":[2,"open-delay"],"closeDelay":[2,"close-delay"],"openOnPointer":[4,"open-on-pointer"],"openDropdown":[64],"closeDropdown":[64],"toggle":[64]},null,{"open":["handleOpenChange"]}]]],["p-5b467c2c",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-cc1a0f05",[[260,"ur-grid-col",{"size":[1],"sizeXs":[1,"size-xs"],"sizeSm":[1,"size-sm"],"sizeMd":[1,"size-md"],"sizeLg":[1,"size-lg"],"sizeXl":[1,"size-xl"],"offset":[1],"offsetXs":[1,"offset-xs"],"offsetSm":[1,"offset-sm"],"offsetMd":[1,"offset-md"],"offsetLg":[1,"offset-lg"],"offsetXl":[1,"offset-xl"],"pull":[1],"pullXs":[1,"pull-xs"],"pullSm":[1,"pull-sm"],"pullMd":[1,"pull-md"],"pullLg":[1,"pull-lg"],"pullXl":[1,"pull-xl"],"push":[1],"pushXs":[1,"push-xs"],"pushSm":[1,"push-sm"],"pushMd":[1,"push-md"],"pushLg":[1,"push-lg"],"pushXl":[1,"push-xl"],"windowWidth":[32]}]]],["p-c6c9068d",[[257,"ur-grid-row"]]],["p-f07ff4a4",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-d2d9ec5b",[[257,"ur-image-uploader",{"width":[1],"height":[1],"maxHeight":[1,"max-height"],"borderRadius":[1,"border-radius"],"borderStyle":[1,"border-style"],"backgroundColor":[1,"background-color"],"hoverBackgroundColor":[1,"hover-background-color"],"acceptTypes":[1,"accept-types"],"disabled":[4],"placeholderText":[1,"placeholder-text"],"uploadingText":[1,"uploading-text"],"showFileName":[4,"show-file-name"],"maxFileSize":[2,"max-file-size"],"enableNativeUpload":[4,"enable-native-upload"],"loading":[4],"isDragOver":[32],"selectedFile":[32],"previewUrl":[32],"isUploading":[32],"setImageUrl":[64],"getImageUrl":[64],"clearImage":[64],"getSelectedFile":[64],"setUploadingState":[64]}]]],["p-2a7f97ed",[[257,"ur-loader"]]],["p-20768738",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-b0df607b",[[257,"ur-menu-item",{"value":[1],"label":[1],"disabled":[4],"selected":[4],"size":[1],"selectedIcon":[1,"selected-icon"],"fullWidth":[4,"full-width"],"leftAligned":[4,"left-aligned"],"heightNumber":[514,"height-number"],"isHovered":[32]},[[4,"selectionChanged","handleSelectionChanged"]],{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-41b3a1b3",[[257,"ur-navigation-drawer",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contained":[4],"openDrawer":[64],"closeDrawer":[64]}]]],["p-28b7d6da",[[257,"ur-navigation-drawer-global",{"open":[4],"placement":[1],"closeOnEsc":[4,"close-on-esc"],"closeOnOverlayClick":[4,"close-on-overlay-click"],"contentHeight":[32],"openDrawer":[64],"closeDrawer":[64]}]]],["p-f7e454e5",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-755b4a8a",[[257,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-136af971",[[257,"ur-page-shared-list-tabs",{"activeTab":[1,"active-tab"],"followersTabText":[1,"followers-tab-text"],"membersTabText":[1,"members-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-8656aef0",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-af64573e",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-aadc0685",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-50590839",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-8843bf71",[[257,"ur-profile-card",{"avatarSrc":[1,"avatar-src"],"avatarAlt":[1,"avatar-alt"],"name":[1],"avatarSize":[1,"avatar-size"],"description":[1],"followButtonText":[1,"follow-button-text"],"isOwner":[4,"is-owner"],"profileType":[1,"profile-type"],"nameFontSize":[1,"name-font-size"],"unfollowButtonText":[1,"unfollow-button-text"],"buttonHeight":[1,"button-height"],"buttonWidth":[1,"button-width"],"pageActionsTooltipText":[1,"page-actions-tooltip-text"],"memberActionsTooltipText":[1,"member-actions-tooltip-text"],"showDescription":[4,"show-description"],"showMemberActions":[4,"show-member-actions"],"showPageActions":[4,"show-page-actions"],"hideFollowActions":[4,"hide-follow-actions"],"initialFollowState":[4,"initial-follow-state"],"skeleton":[4],"isFollowing":[32]},null,{"initialFollowState":["onInitialFollowStateChange"]}]]],["p-af90b0c6",[[257,"ur-competition-novl-card",{"novlId":[1,"novl-id"],"novlTitle":[1,"novl-title"],"shortSummary":[1,"short-summary"],"chaptersCount":[2,"chapters-count"],"wordCount":[2,"word-count"],"coverImage":[1,"cover-image"],"language":[1],"genre":[1],"literatureType":[1,"literature-type"],"authorName":[1,"author-name"],"showDescription":[4,"show-description"],"showAuthor":[4,"show-author"],"showStats":[4,"show-stats"],"showChips":[4,"show-chips"],"clickable":[4],"size":[1],"chipSize":[1,"chip-size"],"skeleton":[4],"showMenu":[4,"show-menu"],"entryId":[1,"entry-id"],"isOwnerViewing":[4,"is-owner-viewing"],"winnerPosition":[2,"winner-position"],"isWinner":[4,"is-winner"],"winnerBadgePosition":[1,"winner-badge-position"],"withdrawButtonText":[1,"withdraw-button-text"],"removeEntryText":[1,"remove-entry-text"],"chaptersText":[1,"chapters-text"],"wordsText":[1,"words-text"],"winnerText":[1,"winner-text"],"isMenuOpen":[32]}],[257,"ur-stats",{"stats":[16],"skeleton":[4],"layout":[1],"showSeparators":[4,"show-separators"],"background":[1]}]]],["p-eb736d69",[[257,"ur-list"]]],["p-323c221c",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-66b794bc",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-9596a813",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-5dad32b3",[[257,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[4,"full-width"]},null,{"checked":["watchChecked"]}],[257,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-d0171c81",[[257,"ur-text-field",{"label":[1],"placeholder":[1],"helper":[1],"disabled":[4],"required":[4],"variant":[1],"value":[1025],"name":[1],"endIcon":[1,"end-icon"],"rows":[2],"autosize":[4],"minRows":[2,"min-rows"],"maxRows":[2,"max-rows"],"minlength":[2],"maxlength":[2],"counter":[4],"type":[1],"pattern":[1],"min":[8],"max":[8],"step":[8],"error":[1540],"errorMessage":[1537,"error-message"],"skeleton":[4]}]]],["p-c719a7e0",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-29a42efe",[[257,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"skeleton":[4],"disabled":[4],"clickable":[4]}]]]]'),e))));
@@ -1 +0,0 @@
1
- import{r as t,c as e,h as o,H as r}from"./p-DxicD_v0.js";import"./ur-list-item.entry.esm.js";import"./p-zh2SzAzp.js";import"./p-DGxHnPQH.js";import"./p-DmwpJ3Xb.js";import"./p-CaBWcz-D.js";import"./p-CLzk4uXM.js";import"./p-BHOPlFNt.js";import"./p-BnvqNZ1a.js";import"./p-BeOzk1pg.js";import"./p-D17Erkn3.js";import"./p-yaA8vKgL.js";import"./p-Bc8ZFWuw.js";import"./p-DD45e1Fb.js";import"./p-bGirE084.js";import"./p-DPvu0yIY.js";import"./p-DtvpcoBz.js";import"./p-CHcLApx5.js";const i=class{constructor(o){t(this,o),this.shelfClick=e(this,"shelfClick"),this.novels=[],this.isOwnShelf=!1,this.skeleton=!1,this.followerText="follower",this.followersText="followers",this.storyText="story",this.storiesText="stories",this.noStoriesText="No stories yet",this.handleShelfClick=()=>{this.shelfClick.emit(this.shelf)}}formatFollowerCount(t){return t>=1e6?`${(t/1e6).toFixed(1)}M`:t>=1e3?`${(t/1e3).toFixed(1)}K`:t.toString()}render(){var t,e;if(this.skeleton)return o(r,{class:"shelf-item skeleton"},o("ur-list-item",{class:"shelf-list-item",containerPadding:"0",iconMargin:"0",borderRadius:"8px"},o("div",{slot:"custom",class:"custom-content"},o("div",{class:"shelf-covers-preview"},o("div",{class:"covers-stack skeleton"},o("div",{class:"skeleton-cover loading"}))),o("div",{class:"custom-content__info"},o("div",{class:"skeleton-title loading"}),o("div",{class:"skeleton-subtitle loading"})),o("div",{class:"skeleton-chevron"},o("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none"},o("path",{d:"M9 6L15 12L9 18",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}))))));const i=this.novels.slice(0,3),s=void 0!==this.totalStoryCount?this.totalStoryCount:this.novels.length;return o(r,null,o("ur-list-item",{class:"shelf-list-item","end-icon":"chevron_right",onClick:this.handleShelfClick,containerPadding:"0",iconMargin:"0",borderRadius:"8px"},o("div",{slot:"custom",class:"custom-content"},o("div",{class:"shelf-covers-preview"},o("div",{class:`covers-stack covers-count-${Math.min(i.length,3)}`},i.length>0?i.map(((t,e)=>{var r,i;return o("div",{class:`cover-item cover-${e}`},t.coverImage?o("img",{src:t.coverImage,alt:t.title,class:"cover-image"}):o("div",{class:"cover-placeholder"},o("span",null,(null===(r=t.title)||void 0===r?void 0:r.charAt(0))||(null===(i=this.shelf.name)||void 0===i?void 0:i.charAt(0))||"?")))})):o("div",{class:"cover-item cover-0"},o("div",{class:"cover-placeholder"},o("span",null,(null===(e=null===(t=this.shelf.name)||void 0===t?void 0:t.charAt(0))||void 0===e?void 0:e.toUpperCase())||"?"))))),o("div",{class:"custom-content__info"},o("div",{class:"custom-content__username"},this.shelf.name),o("div",{class:"custom-content__subtitle"},void 0!==this.shelf.followerCount&&o("span",{class:"subtitle-item"},o("span",{class:"stat-number"},this.formatFollowerCount(this.shelf.followerCount))," ",1===this.shelf.followerCount?this.followerText:this.followersText),s>0?o("span",{class:"subtitle-item"},o("span",{class:"stat-number"},s)," ",1===s?this.storyText:this.storiesText):o("span",{class:"subtitle-item"},this.noStoriesText),this.shelf.owner&&!this.isOwnShelf&&o("span",{class:"subtitle-item shelf-owner"},this.shelf.owner.displayName))))))}};i.style=":host{display:block;width:100%;--ur-color-on-background:rgb(var(--mdui-color-on-background))}.shelf-list-item{flex:1;display:block}.custom-content{display:flex;align-items:center;gap:16px;width:100%}.custom-content__info{flex-grow:1;display:flex;flex-direction:column;gap:4px}.custom-content__username{font-size:14px;line-height:1.2rem;font-style:normal;font-weight:700;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;margin-bottom:4px;text-transform:capitalize}.custom-content__subtitle{font-size:12px;font-weight:400;line-height:16px;color:var(--ur-color-on-background);display:flex;flex-wrap:wrap;align-items:center;gap:4px 0}.subtitle-item{display:inline-flex;align-items:center;white-space:nowrap}.subtitle-item:not(:last-child)::after{content:' · ';margin:0 6px;color:var(--ur-color-on-background);opacity:0.5}.stat-number{font-weight:700}.shelf-owner{font-size:12px;font-style:normal;font-weight:600;line-height:inherit}.shelf-covers-preview{flex-shrink:0;position:relative;width:20%;min-width:55px;max-width:130px;max-height:80px;aspect-ratio:1.25;border-radius:8px 0 0 8px;background-color:rgb(var(--mdui-color-surface-container-low));transition:transform 0.3s ease}.covers-stack{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center;transition:transform 0.3s ease}.cover-item{position:absolute;transition:transform 0.3s ease;height:100%;width:100%}.cover-image{width:100%;height:100%;aspect-ratio:2.25;background-repeat:no-repeat;background-size:cover;background-position:center;border-radius:8px;display:block;object-fit:cover}.cover-placeholder{width:100%;height:100%;aspect-ratio:2.25;border-radius:8px;background-color:rgb(var(--mdui-color-surface-container-high));background-repeat:no-repeat;background-size:cover;background-position:center;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:600;color:var(--ur-color-on-background);text-transform:uppercase}.covers-count-1 .cover-item{transform:none}.covers-count-1 .cover-image,.covers-count-1 .cover-placeholder{border-radius:8px 0 0 8px}.covers-count-2 .cover-0{transform:translateX(-3px) rotate(-1deg);z-index:1}.covers-count-2 .cover-1{transform:translateX(3px) rotate(1deg);z-index:2}.covers-count-3 .cover-0{transform:translateX(-5px) rotate(-2deg);z-index:1}.covers-count-3 .cover-1{transform:translateY(-2px);z-index:3}.covers-count-3 .cover-2{transform:translateX(5px) rotate(2deg);z-index:2}ur-list-item:hover .covers-count-2 .cover-0{transform:translateX(-6px) rotate(-2deg)}ur-list-item:hover .covers-count-2 .cover-1{transform:translateX(6px) rotate(2deg)}ur-list-item:hover .covers-count-3 .cover-0{transform:translateX(-8px) rotate(-3deg)}ur-list-item:hover .covers-count-3 .cover-1{transform:translateY(-3px) scale(1.02)}ur-list-item:hover .covers-count-3 .cover-2{transform:translateX(8px) rotate(3deg)}@keyframes placeholderAnimate{0%{background-position:-650px 0}100%{background-position:650px 0}}.loading{animation-duration:1.7s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-timing-function:linear;animation-name:placeholderAnimate;background:linear-gradient(\n to right,\n rgba(var(--ur-color-on-background), 0.04) 2%,\n rgba(var(--ur-color-on-background), 0.12) 18%,\n rgba(var(--ur-color-on-background), 0.04) 33%\n );background-size:1000px}.covers-stack.skeleton{display:flex;align-items:center;justify-content:center}.skeleton-cover{width:100%;height:100%;border-radius:8px 0 0 8px;aspect-ratio:2.25}.skeleton-title{height:20px;width:120px;border-radius:4px;margin-bottom:4px}.skeleton-subtitle{height:14px;width:180px;border-radius:4px}.skeleton-chevron{display:flex;align-items:center;justify-content:center;margin-left:auto;color:rgba(var(--ur-color-on-background), 0.12)}.skeleton-chevron svg{width:32px;height:32px;scale:0.75}";export{i as ur_shelf_item}
@@ -1 +0,0 @@
1
- import{r as t,c as e,h as o,H as r}from"./p-DxicD_v0.js";import"./ur-list-item.entry.esm.js";import"./p-zh2SzAzp.js";import"./p-DGxHnPQH.js";import"./p-DmwpJ3Xb.js";import"./p-CaBWcz-D.js";import"./p-CLzk4uXM.js";import"./p-BHOPlFNt.js";import"./p-BnvqNZ1a.js";import"./p-BeOzk1pg.js";import"./p-D17Erkn3.js";import"./p-yaA8vKgL.js";import"./p-Bc8ZFWuw.js";import"./p-DD45e1Fb.js";import"./p-bGirE084.js";import"./p-DPvu0yIY.js";import"./p-DtvpcoBz.js";import"./p-CHcLApx5.js";const i=class{constructor(o){t(this,o),this.shelfClick=e(this,"shelfClick"),this.novels=[],this.isOwnShelf=!1,this.skeleton=!1,this.followerText="follower",this.followersText="followers",this.storyText="story",this.storiesText="stories",this.noStoriesText="No stories yet",this.handleShelfClick=()=>{this.shelfClick.emit(this.shelf)}}formatFollowerCount(t){return t>=1e6?`${(t/1e6).toFixed(1)}M`:t>=1e3?`${(t/1e3).toFixed(1)}K`:t.toString()}render(){var t,e;if(this.skeleton)return o(r,{class:"shelf-item skeleton"},o("ur-list-item",{class:"shelf-list-item",containerPadding:"0",iconMargin:"0",borderRadius:"8px"},o("div",{slot:"custom",class:"custom-content"},o("div",{class:"shelf-covers-preview"},o("div",{class:"covers-stack skeleton"},o("div",{class:"skeleton-cover loading"}))),o("div",{class:"custom-content__info"},o("div",{class:"skeleton-title loading"}),o("div",{class:"skeleton-subtitle loading"})),o("div",{class:"skeleton-chevron"},o("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none"},o("path",{d:"M9 6L15 12L9 18",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"}))))));const i=this.novels.slice(0,3),s=void 0!==this.totalStoryCount?this.totalStoryCount:this.novels.length;return o(r,null,o("ur-list-item",{class:"shelf-list-item","end-icon":"chevron_right",onClick:this.handleShelfClick,containerPadding:"0",iconMargin:"0",borderRadius:"8px"},o("div",{slot:"custom",class:"custom-content"},o("div",{class:"shelf-covers-preview"},o("div",{class:`covers-stack covers-count-${Math.min(i.length,3)}`},i.length>0?i.map(((t,e)=>{var r,i;return o("div",{class:`cover-item cover-${e}`},t.coverImage?o("img",{src:t.coverImage,alt:t.title,class:"cover-image"}):o("div",{class:"cover-placeholder"},o("span",null,(null===(r=t.title)||void 0===r?void 0:r.charAt(0))||(null===(i=this.shelf.name)||void 0===i?void 0:i.charAt(0))||"?")))})):o("div",{class:"cover-item cover-0"},o("div",{class:"cover-placeholder"},o("span",null,(null===(e=null===(t=this.shelf.name)||void 0===t?void 0:t.charAt(0))||void 0===e?void 0:e.toUpperCase())||"?"))))),o("div",{class:"custom-content__info"},o("div",{class:"custom-content__username"},this.shelf.name),o("div",{class:"custom-content__subtitle"},void 0!==this.shelf.followerCount&&o("span",{class:"subtitle-item"},o("span",{class:"stat-number"},this.formatFollowerCount(this.shelf.followerCount))," ",1===this.shelf.followerCount?this.followerText:this.followersText),s>0?o("span",{class:"subtitle-item"},o("span",{class:"stat-number"},s)," ",1===s?this.storyText:this.storiesText):o("span",{class:"subtitle-item"},this.noStoriesText),this.shelf.owner&&!this.isOwnShelf&&o("span",{class:"subtitle-item shelf-owner"},this.shelf.owner.displayName))))))}};i.style=":host{display:block;width:100%;--ur-color-on-background:rgb(var(--mdui-color-on-background))}.shelf-list-item{flex:1;display:block}.custom-content{display:flex;align-items:center;gap:16px;width:100%}.custom-content__info{flex-grow:1;display:flex;flex-direction:column;gap:4px}.custom-content__username{font-size:14px;line-height:1.2rem;font-style:normal;font-weight:700;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;margin-bottom:4px;text-transform:capitalize}.custom-content__subtitle{font-size:12px;font-weight:400;line-height:16px;color:var(--ur-color-on-background);display:flex;flex-wrap:wrap;align-items:center;gap:4px 0}.subtitle-item{display:inline-flex;align-items:center;white-space:nowrap}.subtitle-item:not(:last-child)::after{content:' · ';margin:0 6px;color:var(--ur-color-on-background);opacity:0.5}.stat-number{font-weight:700}.shelf-owner{font-size:12px;font-style:normal;font-weight:600;line-height:inherit}.shelf-covers-preview{flex-shrink:0;position:relative;width:20%;min-width:55px;max-width:130px;max-height:80px;aspect-ratio:1.25;border-radius:8px 0 0 8px;background-color:rgb(var(--mdui-color-surface-container-low));transition:transform 0.3s ease}.covers-stack{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center;transition:transform 0.3s ease}.cover-item{position:absolute;transition:transform 0.3s ease;height:100%;width:100%}.cover-image{width:100%;height:100%;aspect-ratio:2.25;background-repeat:no-repeat;background-size:cover;background-position:center;border-radius:8px;display:block;object-fit:cover}.cover-placeholder{width:100%;height:100%;aspect-ratio:2.25;border-radius:8px;background-color:rgb(var(--mdui-color-surface-container-high));background-repeat:no-repeat;background-size:cover;background-position:center;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:600;color:var(--ur-color-on-background);text-transform:uppercase}.covers-count-1 .cover-item{transform:none}.covers-count-1 .cover-image,.covers-count-1 .cover-placeholder{border-radius:8px 0 0 8px}.covers-count-2 .cover-0{transform:translateX(-3px) rotate(-1deg);z-index:1}.covers-count-2 .cover-1{transform:translateX(3px) rotate(1deg);z-index:2}.covers-count-3 .cover-0{transform:translateX(-5px) rotate(-2deg);z-index:1}.covers-count-3 .cover-1{transform:translateY(-2px);z-index:3}.covers-count-3 .cover-2{transform:translateX(5px) rotate(2deg);z-index:2}ur-list-item:hover .covers-count-2 .cover-0{transform:translateX(-6px) rotate(-2deg)}ur-list-item:hover .covers-count-2 .cover-1{transform:translateX(6px) rotate(2deg)}ur-list-item:hover .covers-count-3 .cover-0{transform:translateX(-8px) rotate(-3deg)}ur-list-item:hover .covers-count-3 .cover-1{transform:translateY(-3px) scale(1.02)}ur-list-item:hover .covers-count-3 .cover-2{transform:translateX(8px) rotate(3deg)}@keyframes placeholderAnimate{0%{background-position:-650px 0}100%{background-position:650px 0}}.loading{animation-duration:1.7s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-timing-function:linear;animation-name:placeholderAnimate;background:linear-gradient(\n to right,\n rgba(var(--ur-color-on-background), 0.04) 2%,\n rgba(var(--ur-color-on-background), 0.12) 18%,\n rgba(var(--ur-color-on-background), 0.04) 33%\n );background-size:1000px}.covers-stack.skeleton{display:flex;align-items:center;justify-content:center}.skeleton-cover{width:100%;height:100%;border-radius:8px 0 0 8px;aspect-ratio:2.25}.skeleton-title{height:20px;width:120px;border-radius:4px;margin-bottom:4px}.skeleton-subtitle{height:14px;width:180px;border-radius:4px}.skeleton-chevron{display:flex;align-items:center;justify-content:center;margin-left:auto;color:rgba(var(--ur-color-on-background), 0.12)}.skeleton-chevron svg{width:32px;height:32px;scale:0.75}";export{i as ur_shelf_item}