urnovl-web-components 0.0.241 → 0.0.243
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/ur-page-profile-tabs.cjs.entry.js +2 -8
- package/dist/cjs/ur-user-profile-tabs.cjs.entry.js +1 -1
- package/dist/collection/components/ur-page-profile-tabs/ur-page-profile-tabs.css +8 -0
- package/dist/collection/components/ur-page-profile-tabs/ur-page-profile-tabs.js +1 -7
- package/dist/collection/components/ur-user-profile-tabs/ur-user-profile-tabs.css +11 -0
- package/dist/components/ur-page-profile-tabs.js +2 -8
- package/dist/components/ur-user-profile-tabs.js +1 -1
- package/dist/esm/ur-page-profile-tabs.entry.js +2 -8
- package/dist/esm/ur-user-profile-tabs.entry.js +1 -1
- package/dist/types/components/ur-page-profile-tabs/ur-page-profile-tabs.d.ts +0 -1
- package/dist/urnovl-web-components/p-6282ec6e.entry.js +1 -0
- package/dist/urnovl-web-components/{p-402e1580.entry.js → p-8443c614.entry.js} +1 -1
- package/dist/urnovl-web-components/urnovl-web-components.esm.js +1 -1
- package/package.json +1 -1
- package/www/build/p-6282ec6e.entry.js +1 -0
- package/www/build/{p-402e1580.entry.js → p-8443c614.entry.js} +1 -1
- package/www/build/{p-3bee073c.js → p-b79c95d2.js} +1 -1
- package/www/build/urnovl-web-components.esm.js +1 -1
- package/dist/urnovl-web-components/p-f195ffa4.entry.js +0 -1
- package/www/build/p-f195ffa4.entry.js +0 -1
|
@@ -21,7 +21,7 @@ require('./template-X5q71k2a.js');
|
|
|
21
21
|
require('./ripple-mixin-C2DLe6Qm.js');
|
|
22
22
|
require('./appendTo-BUfHDDFs.js');
|
|
23
23
|
|
|
24
|
-
const urPageProfileTabsCss = ":host{display:block}:host mdui-tabs{display:inline-flex;width:auto}:host mdui-tab{min-width:fit-content;padding:0 8px}:host mdui-tab span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host mdui-tabs[full-width-tabs]{width:100%}";
|
|
24
|
+
const urPageProfileTabsCss = ":host{display:block}:host mdui-tabs{display:inline-flex;width:auto}:host mdui-tab{min-width:fit-content;padding:0 8px}:host mdui-tab span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host mdui-tabs[full-width-tabs]{width:100%}mdui-tabs::part(container){border-bottom:1px solid rgb(var(--mdui-color-surface-variant))}mdui-tabs::part(container)::after{display:none !important}";
|
|
25
25
|
|
|
26
26
|
const UrPageProfileTabs = class {
|
|
27
27
|
constructor(hostRef) {
|
|
@@ -50,12 +50,6 @@ const UrPageProfileTabs = class {
|
|
|
50
50
|
}
|
|
51
51
|
};
|
|
52
52
|
}
|
|
53
|
-
componentWillLoad() {
|
|
54
|
-
// Emit the initial tab value when the component loads
|
|
55
|
-
if (this.activeTab) {
|
|
56
|
-
this.tabChange.emit(this.activeTab);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
53
|
activeTabChanged(newValue) {
|
|
60
54
|
// Log when prop changes to verify it's being detected
|
|
61
55
|
console.log('[ur-page-profile-tabs] activeTab changed to:', newValue);
|
|
@@ -110,7 +104,7 @@ const UrPageProfileTabs = class {
|
|
|
110
104
|
}
|
|
111
105
|
render() {
|
|
112
106
|
const visibleTabs = this.getVisibleTabs();
|
|
113
|
-
return (index.h(index.Host, { key: '
|
|
107
|
+
return (index.h(index.Host, { key: '9a01fd9df743a56b19f31d07a6d769833bf5e2ab' }, index.h("mdui-tabs", { key: 'd0fc2ce8b8c5f4dedb27f528de1aa93b08c5f470', value: this.activeTab, onChange: this.handleTabChange, "full-width-tabs": this.fullWidthTabs }, visibleTabs.map(tab => (index.h("mdui-tab", { key: tab.value, value: tab.value }, tab.text()))), visibleTabs.map(tab => (index.h("mdui-tab-panel", { key: tab.value, slot: "panel", value: tab.value }, index.h("slot", { name: tab.value })))))));
|
|
114
108
|
}
|
|
115
109
|
static get watchers() { return {
|
|
116
110
|
"activeTab": ["activeTabChanged"]
|
|
@@ -21,7 +21,7 @@ require('./template-X5q71k2a.js');
|
|
|
21
21
|
require('./ripple-mixin-C2DLe6Qm.js');
|
|
22
22
|
require('./appendTo-BUfHDDFs.js');
|
|
23
23
|
|
|
24
|
-
const urUserProfileTabsCss = "";
|
|
24
|
+
const urUserProfileTabsCss = ":host{display:block}mdui-tabs::part(container){border-bottom:1px solid rgb(var(--mdui-color-surface-variant))}mdui-tabs::part(container)::after{display:none !important}";
|
|
25
25
|
|
|
26
26
|
const UrUserProfileTabs = class {
|
|
27
27
|
constructor(hostRef) {
|
|
@@ -27,12 +27,6 @@ export class UrPageProfileTabs {
|
|
|
27
27
|
}
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
|
-
componentWillLoad() {
|
|
31
|
-
// Emit the initial tab value when the component loads
|
|
32
|
-
if (this.activeTab) {
|
|
33
|
-
this.tabChange.emit(this.activeTab);
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
30
|
activeTabChanged(newValue) {
|
|
37
31
|
// Log when prop changes to verify it's being detected
|
|
38
32
|
console.log('[ur-page-profile-tabs] activeTab changed to:', newValue);
|
|
@@ -87,7 +81,7 @@ export class UrPageProfileTabs {
|
|
|
87
81
|
}
|
|
88
82
|
render() {
|
|
89
83
|
const visibleTabs = this.getVisibleTabs();
|
|
90
|
-
return (h(Host, { key: '
|
|
84
|
+
return (h(Host, { key: '9a01fd9df743a56b19f31d07a6d769833bf5e2ab' }, h("mdui-tabs", { key: 'd0fc2ce8b8c5f4dedb27f528de1aa93b08c5f470', value: this.activeTab, onChange: this.handleTabChange, "full-width-tabs": this.fullWidthTabs }, visibleTabs.map(tab => (h("mdui-tab", { key: tab.value, value: tab.value }, tab.text()))), visibleTabs.map(tab => (h("mdui-tab-panel", { key: tab.value, slot: "panel", value: tab.value }, h("slot", { name: tab.value })))))));
|
|
91
85
|
}
|
|
92
86
|
static get is() { return "ur-page-profile-tabs"; }
|
|
93
87
|
static get encapsulation() { return "shadow"; }
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { p as proxyCustomElement, H, c as createEvent, h, a as Host } from './index.js';
|
|
2
2
|
import './p-CzZ6bw3y.js';
|
|
3
3
|
|
|
4
|
-
const urPageProfileTabsCss = ":host{display:block}:host mdui-tabs{display:inline-flex;width:auto}:host mdui-tab{min-width:fit-content;padding:0 8px}:host mdui-tab span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host mdui-tabs[full-width-tabs]{width:100%}";
|
|
4
|
+
const urPageProfileTabsCss = ":host{display:block}:host mdui-tabs{display:inline-flex;width:auto}:host mdui-tab{min-width:fit-content;padding:0 8px}:host mdui-tab span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host mdui-tabs[full-width-tabs]{width:100%}mdui-tabs::part(container){border-bottom:1px solid rgb(var(--mdui-color-surface-variant))}mdui-tabs::part(container)::after{display:none !important}";
|
|
5
5
|
|
|
6
6
|
const UrPageProfileTabs$1 = /*@__PURE__*/ proxyCustomElement(class UrPageProfileTabs extends H {
|
|
7
7
|
constructor(registerHost) {
|
|
@@ -34,12 +34,6 @@ const UrPageProfileTabs$1 = /*@__PURE__*/ proxyCustomElement(class UrPageProfile
|
|
|
34
34
|
}
|
|
35
35
|
};
|
|
36
36
|
}
|
|
37
|
-
componentWillLoad() {
|
|
38
|
-
// Emit the initial tab value when the component loads
|
|
39
|
-
if (this.activeTab) {
|
|
40
|
-
this.tabChange.emit(this.activeTab);
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
37
|
activeTabChanged(newValue) {
|
|
44
38
|
// Log when prop changes to verify it's being detected
|
|
45
39
|
console.log('[ur-page-profile-tabs] activeTab changed to:', newValue);
|
|
@@ -94,7 +88,7 @@ const UrPageProfileTabs$1 = /*@__PURE__*/ proxyCustomElement(class UrPageProfile
|
|
|
94
88
|
}
|
|
95
89
|
render() {
|
|
96
90
|
const visibleTabs = this.getVisibleTabs();
|
|
97
|
-
return (h(Host, { key: '
|
|
91
|
+
return (h(Host, { key: '9a01fd9df743a56b19f31d07a6d769833bf5e2ab' }, h("mdui-tabs", { key: 'd0fc2ce8b8c5f4dedb27f528de1aa93b08c5f470', value: this.activeTab, onChange: this.handleTabChange, "full-width-tabs": this.fullWidthTabs }, visibleTabs.map(tab => (h("mdui-tab", { key: tab.value, value: tab.value }, tab.text()))), visibleTabs.map(tab => (h("mdui-tab-panel", { key: tab.value, slot: "panel", value: tab.value }, h("slot", { name: tab.value })))))));
|
|
98
92
|
}
|
|
99
93
|
static get watchers() { return {
|
|
100
94
|
"activeTab": ["activeTabChanged"]
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { p as proxyCustomElement, H, c as createEvent, h, a as Host } from './index.js';
|
|
2
2
|
import './p-CzZ6bw3y.js';
|
|
3
3
|
|
|
4
|
-
const urUserProfileTabsCss = "";
|
|
4
|
+
const urUserProfileTabsCss = ":host{display:block}mdui-tabs::part(container){border-bottom:1px solid rgb(var(--mdui-color-surface-variant))}mdui-tabs::part(container)::after{display:none !important}";
|
|
5
5
|
|
|
6
6
|
const UrUserProfileTabs$1 = /*@__PURE__*/ proxyCustomElement(class UrUserProfileTabs extends H {
|
|
7
7
|
constructor(registerHost) {
|
|
@@ -19,7 +19,7 @@ import './template-Dv4lqTb2.js';
|
|
|
19
19
|
import './ripple-mixin-C8VsNOtj.js';
|
|
20
20
|
import './appendTo-tJ_R_BcV.js';
|
|
21
21
|
|
|
22
|
-
const urPageProfileTabsCss = ":host{display:block}:host mdui-tabs{display:inline-flex;width:auto}:host mdui-tab{min-width:fit-content;padding:0 8px}:host mdui-tab span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host mdui-tabs[full-width-tabs]{width:100%}";
|
|
22
|
+
const urPageProfileTabsCss = ":host{display:block}:host mdui-tabs{display:inline-flex;width:auto}:host mdui-tab{min-width:fit-content;padding:0 8px}:host mdui-tab span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host mdui-tabs[full-width-tabs]{width:100%}mdui-tabs::part(container){border-bottom:1px solid rgb(var(--mdui-color-surface-variant))}mdui-tabs::part(container)::after{display:none !important}";
|
|
23
23
|
|
|
24
24
|
const UrPageProfileTabs = class {
|
|
25
25
|
constructor(hostRef) {
|
|
@@ -48,12 +48,6 @@ const UrPageProfileTabs = class {
|
|
|
48
48
|
}
|
|
49
49
|
};
|
|
50
50
|
}
|
|
51
|
-
componentWillLoad() {
|
|
52
|
-
// Emit the initial tab value when the component loads
|
|
53
|
-
if (this.activeTab) {
|
|
54
|
-
this.tabChange.emit(this.activeTab);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
51
|
activeTabChanged(newValue) {
|
|
58
52
|
// Log when prop changes to verify it's being detected
|
|
59
53
|
console.log('[ur-page-profile-tabs] activeTab changed to:', newValue);
|
|
@@ -108,7 +102,7 @@ const UrPageProfileTabs = class {
|
|
|
108
102
|
}
|
|
109
103
|
render() {
|
|
110
104
|
const visibleTabs = this.getVisibleTabs();
|
|
111
|
-
return (h(Host, { key: '
|
|
105
|
+
return (h(Host, { key: '9a01fd9df743a56b19f31d07a6d769833bf5e2ab' }, h("mdui-tabs", { key: 'd0fc2ce8b8c5f4dedb27f528de1aa93b08c5f470', value: this.activeTab, onChange: this.handleTabChange, "full-width-tabs": this.fullWidthTabs }, visibleTabs.map(tab => (h("mdui-tab", { key: tab.value, value: tab.value }, tab.text()))), visibleTabs.map(tab => (h("mdui-tab-panel", { key: tab.value, slot: "panel", value: tab.value }, h("slot", { name: tab.value })))))));
|
|
112
106
|
}
|
|
113
107
|
static get watchers() { return {
|
|
114
108
|
"activeTab": ["activeTabChanged"]
|
|
@@ -19,7 +19,7 @@ import './template-Dv4lqTb2.js';
|
|
|
19
19
|
import './ripple-mixin-C8VsNOtj.js';
|
|
20
20
|
import './appendTo-tJ_R_BcV.js';
|
|
21
21
|
|
|
22
|
-
const urUserProfileTabsCss = "";
|
|
22
|
+
const urUserProfileTabsCss = ":host{display:block}mdui-tabs::part(container){border-bottom:1px solid rgb(var(--mdui-color-surface-variant))}mdui-tabs::part(container)::after{display:none !important}";
|
|
23
23
|
|
|
24
24
|
const UrUserProfileTabs = class {
|
|
25
25
|
constructor(hostRef) {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{r as t,c as i,h as s,H as a}from"./p-CCvuajik.js";import"./p-awwPhqIW.js";import"./p-zh2SzAzp.js";import"./p-DGxHnPQH.js";import"./p-bGirE084.js";import"./p-DmwpJ3Xb.js";import"./p-DPvu0yIY.js";import"./p-CaBWcz-D.js";import"./p-CLzk4uXM.js";import"./p-DD45e1Fb.js";import"./p-D17Erkn3.js";import"./p-CHcLApx5.js";import"./p-BeOzk1pg.js";import"./p-BvhH6khE.js";import"./p-CmJNLkgk.js";import"./p-DOqf3A_i.js";import"./p-DEJm_QN9.js";import"./p-yaA8vKgL.js";import"./p-Bc8ZFWuw.js";import"./p-DtvpcoBz.js";const e=class{constructor(s){t(this,s),this.tabChange=i(this,"tabChange"),this.activeTab="stories",this.homeTabText="Home",this.storiesTabText="Stories",this.shelvesTabText="Shelves",this.transactionsTabText="Transactions",this.statisticsTabText="Statistics",this.settingsTabText="Settings",this.aboutTabText="About",this.isOwner=!1,this.homeTabEnabled=!1,this.fullWidthTabs=!0,this.isMobile=!1,this.handleTabChange=t=>{var i;const s=null===(i=t.target)||void 0===i?void 0:i.value;s&&this.tabChange.emit(s)}}activeTabChanged(t){console.log("[ur-page-profile-tabs] activeTab changed to:",t)}getTabs(){return[{value:"home",text:()=>this.homeTabText,visibleFor:this.homeTabEnabled?"all":"owner"},{value:"stories",text:()=>this.storiesTabText,visibleFor:"all"},{value:"shelves",text:()=>this.shelvesTabText,visibleFor:"all"},{value:"about",text:()=>this.aboutTabText,visibleFor:"all",mobileOnly:!0}]}getVisibleTabs(){return this.getTabs().filter((t=>("all"===t.visibleFor||"owner"===t.visibleFor&&this.isOwner)&&(!t.mobileOnly||this.isMobile)))}render(){const t=this.getVisibleTabs();return s(a,{key:"9a01fd9df743a56b19f31d07a6d769833bf5e2ab"},s("mdui-tabs",{key:"d0fc2ce8b8c5f4dedb27f528de1aa93b08c5f470",value:this.activeTab,onChange:this.handleTabChange,"full-width-tabs":this.fullWidthTabs},t.map((t=>s("mdui-tab",{key:t.value,value:t.value},t.text()))),t.map((t=>s("mdui-tab-panel",{key:t.value,slot:"panel",value:t.value},s("slot",{name:t.value}))))))}static get watchers(){return{activeTab:["activeTabChanged"]}}};e.style=":host{display:block}:host mdui-tabs{display:inline-flex;width:auto}:host mdui-tab{min-width:fit-content;padding:0 8px}:host mdui-tab span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host mdui-tabs[full-width-tabs]{width:100%}mdui-tabs::part(container){border-bottom:1px solid rgb(var(--mdui-color-surface-variant))}mdui-tabs::part(container)::after{display:none !important}";export{e as ur_page_profile_tabs}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as t,c as s,h as
|
|
1
|
+
import{r as t,c as s,h as i,H as e}from"./p-CCvuajik.js";import"./p-awwPhqIW.js";import"./p-zh2SzAzp.js";import"./p-DGxHnPQH.js";import"./p-bGirE084.js";import"./p-DmwpJ3Xb.js";import"./p-DPvu0yIY.js";import"./p-CaBWcz-D.js";import"./p-CLzk4uXM.js";import"./p-DD45e1Fb.js";import"./p-D17Erkn3.js";import"./p-CHcLApx5.js";import"./p-BeOzk1pg.js";import"./p-BvhH6khE.js";import"./p-CmJNLkgk.js";import"./p-DOqf3A_i.js";import"./p-DEJm_QN9.js";import"./p-yaA8vKgL.js";import"./p-Bc8ZFWuw.js";import"./p-DtvpcoBz.js";const a=class{constructor(i){t(this,i),this.tabChange=s(this,"tabChange"),this.activeTab="stories",this.homeTabText="Home",this.storiesTabText="Stories",this.libraryTabText="Shelves",this.transactionsTabText="Transactions",this.statisticsTabText="Statistics",this.settingsTabText="Settings",this.aboutTabText="About",this.isOwner=!1,this.homeTabEnabled=!1,this.fullWidthTabs=!0,this.isMobile=!1,this.handleTabChange=t=>{var s;const i=null===(s=t.target)||void 0===s?void 0:s.value;i&&this.tabChange.emit(i)}}componentWillLoad(){this.activeTab&&this.tabChange.emit(this.activeTab)}activeTabChanged(t){console.log("[ur-user-profile-tabs] activeTab changed to:",t)}isOwnerChanged(t){console.log("[ur-user-profile-tabs] isOwner changed to:",t)}homeTabEnabledChanged(t){console.log("[ur-user-profile-tabs] homeTabEnabled changed to:",t)}getTabs(){return[{value:"home",text:()=>this.homeTabText,visibleFor:this.homeTabEnabled?"all":"owner"},{value:"stories",text:()=>this.storiesTabText,visibleFor:"all"},{value:"collection",text:()=>this.libraryTabText,visibleFor:"all"},{value:"transactions",text:()=>this.transactionsTabText,visibleFor:"owner"},{value:"statistics",text:()=>this.statisticsTabText,visibleFor:"owner"},{value:"settings",text:()=>this.settingsTabText,visibleFor:"owner"},{value:"about",text:()=>this.aboutTabText,visibleFor:"all",mobileOnly:!0}]}getVisibleTabs(){return this.getTabs().filter((t=>("all"===t.visibleFor||"owner"===t.visibleFor&&this.isOwner)&&(!t.mobileOnly||this.isMobile)))}render(){const t=this.getVisibleTabs();return i(e,{key:"524e0706bd234332ae984b0677121efec0a308ce"},i("mdui-tabs",{key:"a488ec206de040a37eac6709debad5b0666621b4",value:this.activeTab,onChange:this.handleTabChange,"full-width-tabs":this.fullWidthTabs},t.map((t=>i("mdui-tab",{key:t.value,value:t.value},t.text()))),t.map((t=>i("mdui-tab-panel",{key:t.value,slot:"panel",value:t.value},i("slot",{name:t.value}))))))}static get watchers(){return{activeTab:["activeTabChanged"],isOwner:["isOwnerChanged"],homeTabEnabled:["homeTabEnabledChanged"]}}};a.style=":host{display:block}mdui-tabs::part(container){border-bottom:1px solid rgb(var(--mdui-color-surface-variant))}mdui-tabs::part(container)::after{display:none !important}";export{a as ur_user_profile_tabs}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,g as t,b as a}from"./p-CCvuajik.js";export{s as setNonce}from"./p-CCvuajik.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-ff21c485",[[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],"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-a8abe70a",[[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-4e490186",[[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"],"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-216b58a7",[[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"],"selectProfileLabelText":[1,"select-profile-label-text"],"userProfileText":[1,"user-profile-text"],"userProfileSubtitleText":[1,"user-profile-subtitle-text"],"pageShelfSubtitleText":[1,"page-shelf-subtitle-text"],"user":[16],"pages":[16],"shelves":[16],"pageShelves":[16],"newShelfName":[32],"isShelfPublic":[32],"showCreateView":[32],"showProfileSelection":[32],"selectedProfile":[32],"selectedPageId":[32]}]]],["p-c919017b",[[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-993a2594",[[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-7e68d757",[[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-aa0f9e24",[[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-11c076c8",[[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-72f16be9",[[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-35f6c536",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-bbfa4bba",[[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-f5789884",[[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-28d36deb",[[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-dbfd37c7",[[257,"ur-library-shelf-creator",{"createButtonText":[1,"create-button-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"newShelfName":[32],"isShelfPublic":[32]}]]],["p-388e3bd3",[[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-c2bc2434",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-6b56bda6",[[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-dd6e73df",[[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-88f8e664",[[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-13e26d26",[[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-2cc4acd0",[[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"],"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-91709490",[[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-c4a15c98",[[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"],"editChapterTooltip":[1,"edit-chapter-tooltip"],"selectChapterTooltip":[1,"select-chapter-tooltip"],"storySummaryTooltip":[1,"story-summary-tooltip"],"readingSettingsTooltip":[1,"reading-settings-tooltip"],"topValue":[32]}]]],["p-c9a13998",[[257,"ur-shelf-card",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"followerCount":[2,"follower-count"],"storyCount":[2,"story-count"],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"cardHoverText":[1,"card-hover-text"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"]}]]],["p-694ad0ef",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16],"stepDescriptions":[16],"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-bf8ac05e",[[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-23e52910",[[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-7148bb7f",[[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-40f5240d",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-bbf13c1f",[[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-fa66c0b0",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-fa132951",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-1f63f529",[[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-11795724",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6b45594c",[[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-157d9bed",[[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-c428106d",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-605aed37",[[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-a5545a90",[[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-2cf6d5e9",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-b0e55832",[[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-e57086f4",[[257,"ur-grid-row"]]],["p-9431fc7b",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-05f4285f",[[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-17a0631b",[[257,"ur-list-subheader",{"text":[1]}]]],["p-e6e9653e",[[257,"ur-loader"]]],["p-52b98350",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-c2ecb954",[[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-b0500e7f",[[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-82f7b4fc",[[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-71e97c9d",[[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-22ed54bb",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-f195ffa4",[[257,"ur-page-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"storiesTabText":[1,"stories-tab-text"],"shelvesTabText":[1,"shelves-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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"]}]]],["p-b2eb9e30",[[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-fc2a4e31",[[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-c186dfab",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-e8a73444",[[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-c64d4010",[[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-8f59c26d",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-ea2eccbf",[[257,"ur-user-profile"]]],["p-402e1580",[[257,"ur-user-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"],"isOwner":["isOwnerChanged"],"homeTabEnabled":["homeTabEnabledChanged"]}]]],["p-aa3f200d",[[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],"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-00774584",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-acbec56b",[[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-0cb44e8c",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-9e9223af",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-af1421f2",[[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-7089f80d",[[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-d02c2560",[[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-c6636644",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[516,"full-width"]},null,{"checked":["watchChecked"]}]]],["p-e64b6826",[[257,"ur-list"]]],["p-a21edf1f",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-3c9b357b",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-ccb0c498",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a55de58d",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-2a5bd90b",[[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"],"border":[1],"showAvatarSlot":[4,"show-avatar-slot"]}]]],["p-77f32095",[[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-fd4f4fea",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-8246e1bc",[[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]}]]],["p-5aa5c63f",[[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-ad4e9d55",[[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],"maxWidth":[1,"max-width"]}]]],["p-04f4e4e3",[[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],"imageSrc":[32],"imageError":[32]},null,{"src":["handleSrcChange"]}]]]]'),e))));
|
|
1
|
+
import{p as e,g as t,b as a}from"./p-CCvuajik.js";export{s as setNonce}from"./p-CCvuajik.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-ff21c485",[[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],"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-a8abe70a",[[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-4e490186",[[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"],"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-216b58a7",[[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"],"selectProfileLabelText":[1,"select-profile-label-text"],"userProfileText":[1,"user-profile-text"],"userProfileSubtitleText":[1,"user-profile-subtitle-text"],"pageShelfSubtitleText":[1,"page-shelf-subtitle-text"],"user":[16],"pages":[16],"shelves":[16],"pageShelves":[16],"newShelfName":[32],"isShelfPublic":[32],"showCreateView":[32],"showProfileSelection":[32],"selectedProfile":[32],"selectedPageId":[32]}]]],["p-c919017b",[[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-993a2594",[[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-7e68d757",[[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-aa0f9e24",[[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-11c076c8",[[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-72f16be9",[[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-35f6c536",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-bbfa4bba",[[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-f5789884",[[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-28d36deb",[[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-dbfd37c7",[[257,"ur-library-shelf-creator",{"createButtonText":[1,"create-button-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"newShelfName":[32],"isShelfPublic":[32]}]]],["p-388e3bd3",[[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-c2bc2434",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-6b56bda6",[[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-dd6e73df",[[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-88f8e664",[[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-13e26d26",[[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-2cc4acd0",[[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"],"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-91709490",[[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-c4a15c98",[[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"],"editChapterTooltip":[1,"edit-chapter-tooltip"],"selectChapterTooltip":[1,"select-chapter-tooltip"],"storySummaryTooltip":[1,"story-summary-tooltip"],"readingSettingsTooltip":[1,"reading-settings-tooltip"],"topValue":[32]}]]],["p-c9a13998",[[257,"ur-shelf-card",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"followerCount":[2,"follower-count"],"storyCount":[2,"story-count"],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"cardHoverText":[1,"card-hover-text"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"]}]]],["p-694ad0ef",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16],"stepDescriptions":[16],"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-bf8ac05e",[[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-23e52910",[[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-7148bb7f",[[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-40f5240d",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-bbf13c1f",[[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-fa66c0b0",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-fa132951",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-1f63f529",[[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-11795724",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6b45594c",[[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-157d9bed",[[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-c428106d",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-605aed37",[[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-a5545a90",[[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-2cf6d5e9",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-b0e55832",[[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-e57086f4",[[257,"ur-grid-row"]]],["p-9431fc7b",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-05f4285f",[[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-17a0631b",[[257,"ur-list-subheader",{"text":[1]}]]],["p-e6e9653e",[[257,"ur-loader"]]],["p-52b98350",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-c2ecb954",[[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-b0500e7f",[[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-82f7b4fc",[[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-71e97c9d",[[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-22ed54bb",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-6282ec6e",[[257,"ur-page-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"storiesTabText":[1,"stories-tab-text"],"shelvesTabText":[1,"shelves-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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"]}]]],["p-b2eb9e30",[[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-fc2a4e31",[[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-c186dfab",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-e8a73444",[[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-c64d4010",[[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-8f59c26d",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-ea2eccbf",[[257,"ur-user-profile"]]],["p-8443c614",[[257,"ur-user-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"],"isOwner":["isOwnerChanged"],"homeTabEnabled":["homeTabEnabledChanged"]}]]],["p-aa3f200d",[[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],"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-00774584",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-acbec56b",[[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-0cb44e8c",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-9e9223af",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-af1421f2",[[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-7089f80d",[[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-d02c2560",[[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-c6636644",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[516,"full-width"]},null,{"checked":["watchChecked"]}]]],["p-e64b6826",[[257,"ur-list"]]],["p-a21edf1f",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-3c9b357b",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-ccb0c498",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a55de58d",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-2a5bd90b",[[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"],"border":[1],"showAvatarSlot":[4,"show-avatar-slot"]}]]],["p-77f32095",[[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-fd4f4fea",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-8246e1bc",[[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]}]]],["p-5aa5c63f",[[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-ad4e9d55",[[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],"maxWidth":[1,"max-width"]}]]],["p-04f4e4e3",[[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],"imageSrc":[32],"imageError":[32]},null,{"src":["handleSrcChange"]}]]]]'),e))));
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{r as t,c as i,h as s,H as a}from"./p-CCvuajik.js";import"./p-awwPhqIW.js";import"./p-zh2SzAzp.js";import"./p-DGxHnPQH.js";import"./p-bGirE084.js";import"./p-DmwpJ3Xb.js";import"./p-DPvu0yIY.js";import"./p-CaBWcz-D.js";import"./p-CLzk4uXM.js";import"./p-DD45e1Fb.js";import"./p-D17Erkn3.js";import"./p-CHcLApx5.js";import"./p-BeOzk1pg.js";import"./p-BvhH6khE.js";import"./p-CmJNLkgk.js";import"./p-DOqf3A_i.js";import"./p-DEJm_QN9.js";import"./p-yaA8vKgL.js";import"./p-Bc8ZFWuw.js";import"./p-DtvpcoBz.js";const e=class{constructor(s){t(this,s),this.tabChange=i(this,"tabChange"),this.activeTab="stories",this.homeTabText="Home",this.storiesTabText="Stories",this.shelvesTabText="Shelves",this.transactionsTabText="Transactions",this.statisticsTabText="Statistics",this.settingsTabText="Settings",this.aboutTabText="About",this.isOwner=!1,this.homeTabEnabled=!1,this.fullWidthTabs=!0,this.isMobile=!1,this.handleTabChange=t=>{var i;const s=null===(i=t.target)||void 0===i?void 0:i.value;s&&this.tabChange.emit(s)}}activeTabChanged(t){console.log("[ur-page-profile-tabs] activeTab changed to:",t)}getTabs(){return[{value:"home",text:()=>this.homeTabText,visibleFor:this.homeTabEnabled?"all":"owner"},{value:"stories",text:()=>this.storiesTabText,visibleFor:"all"},{value:"shelves",text:()=>this.shelvesTabText,visibleFor:"all"},{value:"about",text:()=>this.aboutTabText,visibleFor:"all",mobileOnly:!0}]}getVisibleTabs(){return this.getTabs().filter((t=>("all"===t.visibleFor||"owner"===t.visibleFor&&this.isOwner)&&(!t.mobileOnly||this.isMobile)))}render(){const t=this.getVisibleTabs();return s(a,{key:"9a01fd9df743a56b19f31d07a6d769833bf5e2ab"},s("mdui-tabs",{key:"d0fc2ce8b8c5f4dedb27f528de1aa93b08c5f470",value:this.activeTab,onChange:this.handleTabChange,"full-width-tabs":this.fullWidthTabs},t.map((t=>s("mdui-tab",{key:t.value,value:t.value},t.text()))),t.map((t=>s("mdui-tab-panel",{key:t.value,slot:"panel",value:t.value},s("slot",{name:t.value}))))))}static get watchers(){return{activeTab:["activeTabChanged"]}}};e.style=":host{display:block}:host mdui-tabs{display:inline-flex;width:auto}:host mdui-tab{min-width:fit-content;padding:0 8px}:host mdui-tab span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host mdui-tabs[full-width-tabs]{width:100%}mdui-tabs::part(container){border-bottom:1px solid rgb(var(--mdui-color-surface-variant))}mdui-tabs::part(container)::after{display:none !important}";export{e as ur_page_profile_tabs}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as t,c as s,h as
|
|
1
|
+
import{r as t,c as s,h as i,H as e}from"./p-CCvuajik.js";import"./p-awwPhqIW.js";import"./p-zh2SzAzp.js";import"./p-DGxHnPQH.js";import"./p-bGirE084.js";import"./p-DmwpJ3Xb.js";import"./p-DPvu0yIY.js";import"./p-CaBWcz-D.js";import"./p-CLzk4uXM.js";import"./p-DD45e1Fb.js";import"./p-D17Erkn3.js";import"./p-CHcLApx5.js";import"./p-BeOzk1pg.js";import"./p-BvhH6khE.js";import"./p-CmJNLkgk.js";import"./p-DOqf3A_i.js";import"./p-DEJm_QN9.js";import"./p-yaA8vKgL.js";import"./p-Bc8ZFWuw.js";import"./p-DtvpcoBz.js";const a=class{constructor(i){t(this,i),this.tabChange=s(this,"tabChange"),this.activeTab="stories",this.homeTabText="Home",this.storiesTabText="Stories",this.libraryTabText="Shelves",this.transactionsTabText="Transactions",this.statisticsTabText="Statistics",this.settingsTabText="Settings",this.aboutTabText="About",this.isOwner=!1,this.homeTabEnabled=!1,this.fullWidthTabs=!0,this.isMobile=!1,this.handleTabChange=t=>{var s;const i=null===(s=t.target)||void 0===s?void 0:s.value;i&&this.tabChange.emit(i)}}componentWillLoad(){this.activeTab&&this.tabChange.emit(this.activeTab)}activeTabChanged(t){console.log("[ur-user-profile-tabs] activeTab changed to:",t)}isOwnerChanged(t){console.log("[ur-user-profile-tabs] isOwner changed to:",t)}homeTabEnabledChanged(t){console.log("[ur-user-profile-tabs] homeTabEnabled changed to:",t)}getTabs(){return[{value:"home",text:()=>this.homeTabText,visibleFor:this.homeTabEnabled?"all":"owner"},{value:"stories",text:()=>this.storiesTabText,visibleFor:"all"},{value:"collection",text:()=>this.libraryTabText,visibleFor:"all"},{value:"transactions",text:()=>this.transactionsTabText,visibleFor:"owner"},{value:"statistics",text:()=>this.statisticsTabText,visibleFor:"owner"},{value:"settings",text:()=>this.settingsTabText,visibleFor:"owner"},{value:"about",text:()=>this.aboutTabText,visibleFor:"all",mobileOnly:!0}]}getVisibleTabs(){return this.getTabs().filter((t=>("all"===t.visibleFor||"owner"===t.visibleFor&&this.isOwner)&&(!t.mobileOnly||this.isMobile)))}render(){const t=this.getVisibleTabs();return i(e,{key:"524e0706bd234332ae984b0677121efec0a308ce"},i("mdui-tabs",{key:"a488ec206de040a37eac6709debad5b0666621b4",value:this.activeTab,onChange:this.handleTabChange,"full-width-tabs":this.fullWidthTabs},t.map((t=>i("mdui-tab",{key:t.value,value:t.value},t.text()))),t.map((t=>i("mdui-tab-panel",{key:t.value,slot:"panel",value:t.value},i("slot",{name:t.value}))))))}static get watchers(){return{activeTab:["activeTabChanged"],isOwner:["isOwnerChanged"],homeTabEnabled:["homeTabEnabledChanged"]}}};a.style=":host{display:block}mdui-tabs::part(container){border-bottom:1px solid rgb(var(--mdui-color-surface-variant))}mdui-tabs::part(container)::after{display:none !important}";export{a as ur_user_profile_tabs}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,g as t,b as a}from"./p-CCvuajik.js";export{s as setNonce}from"./p-CCvuajik.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-ff21c485",[[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],"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-a8abe70a",[[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-4e490186",[[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"],"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-216b58a7",[[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"],"selectProfileLabelText":[1,"select-profile-label-text"],"userProfileText":[1,"user-profile-text"],"userProfileSubtitleText":[1,"user-profile-subtitle-text"],"pageShelfSubtitleText":[1,"page-shelf-subtitle-text"],"user":[16],"pages":[16],"shelves":[16],"pageShelves":[16],"newShelfName":[32],"isShelfPublic":[32],"showCreateView":[32],"showProfileSelection":[32],"selectedProfile":[32],"selectedPageId":[32]}]]],["p-c919017b",[[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-993a2594",[[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-7e68d757",[[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-aa0f9e24",[[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-11c076c8",[[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-72f16be9",[[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-35f6c536",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-bbfa4bba",[[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-f5789884",[[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-28d36deb",[[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-dbfd37c7",[[257,"ur-library-shelf-creator",{"createButtonText":[1,"create-button-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"newShelfName":[32],"isShelfPublic":[32]}]]],["p-388e3bd3",[[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-c2bc2434",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-6b56bda6",[[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-dd6e73df",[[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-88f8e664",[[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-13e26d26",[[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-2cc4acd0",[[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"],"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-91709490",[[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-c4a15c98",[[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"],"editChapterTooltip":[1,"edit-chapter-tooltip"],"selectChapterTooltip":[1,"select-chapter-tooltip"],"storySummaryTooltip":[1,"story-summary-tooltip"],"readingSettingsTooltip":[1,"reading-settings-tooltip"],"topValue":[32]}]]],["p-c9a13998",[[257,"ur-shelf-card",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"followerCount":[2,"follower-count"],"storyCount":[2,"story-count"],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"cardHoverText":[1,"card-hover-text"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"]}]]],["p-694ad0ef",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16],"stepDescriptions":[16],"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-bf8ac05e",[[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-23e52910",[[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-7148bb7f",[[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-40f5240d",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-bbf13c1f",[[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-fa66c0b0",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-fa132951",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-1f63f529",[[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-11795724",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6b45594c",[[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-157d9bed",[[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-c428106d",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-605aed37",[[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-a5545a90",[[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-2cf6d5e9",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-b0e55832",[[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-e57086f4",[[257,"ur-grid-row"]]],["p-9431fc7b",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-05f4285f",[[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-17a0631b",[[257,"ur-list-subheader",{"text":[1]}]]],["p-e6e9653e",[[257,"ur-loader"]]],["p-52b98350",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-c2ecb954",[[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-b0500e7f",[[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-82f7b4fc",[[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-71e97c9d",[[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-22ed54bb",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-f195ffa4",[[257,"ur-page-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"storiesTabText":[1,"stories-tab-text"],"shelvesTabText":[1,"shelves-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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"]}]]],["p-b2eb9e30",[[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-fc2a4e31",[[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-c186dfab",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-e8a73444",[[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-c64d4010",[[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-8f59c26d",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-ea2eccbf",[[257,"ur-user-profile"]]],["p-402e1580",[[257,"ur-user-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"],"isOwner":["isOwnerChanged"],"homeTabEnabled":["homeTabEnabledChanged"]}]]],["p-aa3f200d",[[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],"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-00774584",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-acbec56b",[[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-0cb44e8c",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-9e9223af",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-af1421f2",[[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-7089f80d",[[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-d02c2560",[[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-c6636644",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[516,"full-width"]},null,{"checked":["watchChecked"]}]]],["p-e64b6826",[[257,"ur-list"]]],["p-a21edf1f",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-3c9b357b",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-ccb0c498",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a55de58d",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-2a5bd90b",[[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"],"border":[1],"showAvatarSlot":[4,"show-avatar-slot"]}]]],["p-77f32095",[[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-fd4f4fea",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-8246e1bc",[[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]}]]],["p-5aa5c63f",[[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-ad4e9d55",[[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],"maxWidth":[1,"max-width"]}]]],["p-04f4e4e3",[[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],"imageSrc":[32],"imageError":[32]},null,{"src":["handleSrcChange"]}]]]]'),e))));
|
|
1
|
+
import{p as e,g as t,b as a}from"./p-CCvuajik.js";export{s as setNonce}from"./p-CCvuajik.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-ff21c485",[[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],"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-a8abe70a",[[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-4e490186",[[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"],"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-216b58a7",[[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"],"selectProfileLabelText":[1,"select-profile-label-text"],"userProfileText":[1,"user-profile-text"],"userProfileSubtitleText":[1,"user-profile-subtitle-text"],"pageShelfSubtitleText":[1,"page-shelf-subtitle-text"],"user":[16],"pages":[16],"shelves":[16],"pageShelves":[16],"newShelfName":[32],"isShelfPublic":[32],"showCreateView":[32],"showProfileSelection":[32],"selectedProfile":[32],"selectedPageId":[32]}]]],["p-c919017b",[[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-993a2594",[[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-7e68d757",[[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-aa0f9e24",[[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-11c076c8",[[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-72f16be9",[[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-35f6c536",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-bbfa4bba",[[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-f5789884",[[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-28d36deb",[[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-dbfd37c7",[[257,"ur-library-shelf-creator",{"createButtonText":[1,"create-button-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"newShelfName":[32],"isShelfPublic":[32]}]]],["p-388e3bd3",[[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-c2bc2434",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-6b56bda6",[[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-dd6e73df",[[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-88f8e664",[[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-13e26d26",[[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-2cc4acd0",[[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"],"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-91709490",[[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-c4a15c98",[[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"],"editChapterTooltip":[1,"edit-chapter-tooltip"],"selectChapterTooltip":[1,"select-chapter-tooltip"],"storySummaryTooltip":[1,"story-summary-tooltip"],"readingSettingsTooltip":[1,"reading-settings-tooltip"],"topValue":[32]}]]],["p-c9a13998",[[257,"ur-shelf-card",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"followerCount":[2,"follower-count"],"storyCount":[2,"story-count"],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"cardHoverText":[1,"card-hover-text"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"]}]]],["p-694ad0ef",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16],"stepDescriptions":[16],"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-bf8ac05e",[[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-23e52910",[[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-7148bb7f",[[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-40f5240d",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-bbf13c1f",[[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-fa66c0b0",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-fa132951",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-1f63f529",[[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-11795724",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6b45594c",[[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-157d9bed",[[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-c428106d",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-605aed37",[[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-a5545a90",[[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-2cf6d5e9",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-b0e55832",[[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-e57086f4",[[257,"ur-grid-row"]]],["p-9431fc7b",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-05f4285f",[[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-17a0631b",[[257,"ur-list-subheader",{"text":[1]}]]],["p-e6e9653e",[[257,"ur-loader"]]],["p-52b98350",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-c2ecb954",[[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-b0500e7f",[[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-82f7b4fc",[[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-71e97c9d",[[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-22ed54bb",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-6282ec6e",[[257,"ur-page-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"storiesTabText":[1,"stories-tab-text"],"shelvesTabText":[1,"shelves-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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"]}]]],["p-b2eb9e30",[[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-fc2a4e31",[[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-c186dfab",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-e8a73444",[[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-c64d4010",[[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-8f59c26d",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-ea2eccbf",[[257,"ur-user-profile"]]],["p-8443c614",[[257,"ur-user-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"],"isOwner":["isOwnerChanged"],"homeTabEnabled":["homeTabEnabledChanged"]}]]],["p-aa3f200d",[[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],"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-00774584",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-acbec56b",[[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-0cb44e8c",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-9e9223af",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-af1421f2",[[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-7089f80d",[[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-d02c2560",[[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-c6636644",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[516,"full-width"]},null,{"checked":["watchChecked"]}]]],["p-e64b6826",[[257,"ur-list"]]],["p-a21edf1f",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-3c9b357b",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-ccb0c498",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a55de58d",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-2a5bd90b",[[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"],"border":[1],"showAvatarSlot":[4,"show-avatar-slot"]}]]],["p-77f32095",[[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-fd4f4fea",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-8246e1bc",[[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]}]]],["p-5aa5c63f",[[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-ad4e9d55",[[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],"maxWidth":[1,"max-width"]}]]],["p-04f4e4e3",[[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],"imageSrc":[32],"imageError":[32]},null,{"src":["handleSrcChange"]}]]]]'),e))));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,g as t,b as a}from"./p-CCvuajik.js";export{s as setNonce}from"./p-CCvuajik.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-ff21c485",[[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],"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-a8abe70a",[[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-4e490186",[[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"],"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-216b58a7",[[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"],"selectProfileLabelText":[1,"select-profile-label-text"],"userProfileText":[1,"user-profile-text"],"userProfileSubtitleText":[1,"user-profile-subtitle-text"],"pageShelfSubtitleText":[1,"page-shelf-subtitle-text"],"user":[16],"pages":[16],"shelves":[16],"pageShelves":[16],"newShelfName":[32],"isShelfPublic":[32],"showCreateView":[32],"showProfileSelection":[32],"selectedProfile":[32],"selectedPageId":[32]}]]],["p-c919017b",[[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-993a2594",[[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-7e68d757",[[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-aa0f9e24",[[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-11c076c8",[[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-72f16be9",[[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-35f6c536",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-bbfa4bba",[[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-f5789884",[[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-28d36deb",[[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-dbfd37c7",[[257,"ur-library-shelf-creator",{"createButtonText":[1,"create-button-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"newShelfName":[32],"isShelfPublic":[32]}]]],["p-388e3bd3",[[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-c2bc2434",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-6b56bda6",[[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-dd6e73df",[[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-88f8e664",[[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-13e26d26",[[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-2cc4acd0",[[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"],"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-91709490",[[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-c4a15c98",[[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"],"editChapterTooltip":[1,"edit-chapter-tooltip"],"selectChapterTooltip":[1,"select-chapter-tooltip"],"storySummaryTooltip":[1,"story-summary-tooltip"],"readingSettingsTooltip":[1,"reading-settings-tooltip"],"topValue":[32]}]]],["p-c9a13998",[[257,"ur-shelf-card",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"followerCount":[2,"follower-count"],"storyCount":[2,"story-count"],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"cardHoverText":[1,"card-hover-text"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"]}]]],["p-694ad0ef",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16],"stepDescriptions":[16],"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-bf8ac05e",[[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-23e52910",[[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-7148bb7f",[[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-40f5240d",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-bbf13c1f",[[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-fa66c0b0",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-fa132951",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-1f63f529",[[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-11795724",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6b45594c",[[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-157d9bed",[[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-c428106d",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-605aed37",[[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-a5545a90",[[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-2cf6d5e9",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-b0e55832",[[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-e57086f4",[[257,"ur-grid-row"]]],["p-9431fc7b",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-05f4285f",[[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-17a0631b",[[257,"ur-list-subheader",{"text":[1]}]]],["p-e6e9653e",[[257,"ur-loader"]]],["p-52b98350",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-c2ecb954",[[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-b0500e7f",[[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-82f7b4fc",[[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-71e97c9d",[[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-22ed54bb",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-f195ffa4",[[257,"ur-page-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"storiesTabText":[1,"stories-tab-text"],"shelvesTabText":[1,"shelves-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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"]}]]],["p-b2eb9e30",[[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-fc2a4e31",[[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-c186dfab",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-e8a73444",[[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-c64d4010",[[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-8f59c26d",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-ea2eccbf",[[257,"ur-user-profile"]]],["p-402e1580",[[257,"ur-user-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"],"isOwner":["isOwnerChanged"],"homeTabEnabled":["homeTabEnabledChanged"]}]]],["p-aa3f200d",[[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],"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-00774584",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-acbec56b",[[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-0cb44e8c",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-9e9223af",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-af1421f2",[[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-7089f80d",[[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-d02c2560",[[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-c6636644",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[516,"full-width"]},null,{"checked":["watchChecked"]}]]],["p-e64b6826",[[257,"ur-list"]]],["p-a21edf1f",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-3c9b357b",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-ccb0c498",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a55de58d",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-2a5bd90b",[[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"],"border":[1],"showAvatarSlot":[4,"show-avatar-slot"]}]]],["p-77f32095",[[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-fd4f4fea",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-8246e1bc",[[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]}]]],["p-5aa5c63f",[[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-ad4e9d55",[[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],"maxWidth":[1,"max-width"]}]]],["p-04f4e4e3",[[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],"imageSrc":[32],"imageError":[32]},null,{"src":["handleSrcChange"]}]]]]'),e))));
|
|
1
|
+
import{p as e,g as t,b as a}from"./p-CCvuajik.js";export{s as setNonce}from"./p-CCvuajik.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-ff21c485",[[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],"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-a8abe70a",[[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-4e490186",[[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"],"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-216b58a7",[[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"],"selectProfileLabelText":[1,"select-profile-label-text"],"userProfileText":[1,"user-profile-text"],"userProfileSubtitleText":[1,"user-profile-subtitle-text"],"pageShelfSubtitleText":[1,"page-shelf-subtitle-text"],"user":[16],"pages":[16],"shelves":[16],"pageShelves":[16],"newShelfName":[32],"isShelfPublic":[32],"showCreateView":[32],"showProfileSelection":[32],"selectedProfile":[32],"selectedPageId":[32]}]]],["p-c919017b",[[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-993a2594",[[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-7e68d757",[[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-aa0f9e24",[[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-11c076c8",[[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-72f16be9",[[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-35f6c536",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-bbfa4bba",[[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-f5789884",[[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-28d36deb",[[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-dbfd37c7",[[257,"ur-library-shelf-creator",{"createButtonText":[1,"create-button-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"newShelfName":[32],"isShelfPublic":[32]}]]],["p-388e3bd3",[[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-c2bc2434",[[257,"ur-notification",{"notification":[16],"skeleton":[4],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32],"novlAttachRequestStatus":[32]}]]],["p-6b56bda6",[[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-dd6e73df",[[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-88f8e664",[[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-13e26d26",[[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-2cc4acd0",[[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"],"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-91709490",[[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-c4a15c98",[[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"],"editChapterTooltip":[1,"edit-chapter-tooltip"],"selectChapterTooltip":[1,"select-chapter-tooltip"],"storySummaryTooltip":[1,"story-summary-tooltip"],"readingSettingsTooltip":[1,"reading-settings-tooltip"],"topValue":[32]}]]],["p-c9a13998",[[257,"ur-shelf-card",{"novlId":[520,"novl-id"],"loading":[4],"novlTitle":[1,"novl-title"],"novlCover":[8,"novl-cover"],"novlCoverFallback":[1,"novl-cover-fallback"],"followerCount":[2,"follower-count"],"storyCount":[2,"story-count"],"showStats":[4,"show-stats"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"],"cardHoverText":[1,"card-hover-text"],"followerText":[1,"follower-text"],"followersText":[1,"followers-text"],"storyText":[1,"story-text"],"storiesText":[1,"stories-text"]}]]],["p-694ad0ef",[[257,"ur-stepper",{"stepCount":[2,"step-count"],"currentStep":[1026,"current-step"],"allowStepNavigation":[4,"allow-step-navigation"],"customClass":[1,"custom-class"],"stepTitles":[16],"stepDescriptions":[16],"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-bf8ac05e",[[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-23e52910",[[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-7148bb7f",[[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-40f5240d",[[257,"ur-grid",{"fixed":[4],"showMore":[4,"show-more"],"showMoreLimit":[2,"show-more-limit"],"showMoreText":[1,"show-more-text"],"showMoreClickCount":[32]}]]],["p-bbf13c1f",[[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-fa66c0b0",[[257,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16],"headerLabel":[1,"header-label"],"titleLabel":[1,"title-label"],"descriptionLabel":[1,"description-label"],"saveLabel":[1,"save-label"],"cancelLabel":[1,"cancel-label"],"mutableLocales":[32]}]]],["p-fa132951",[[257,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-1f63f529",[[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-11795724",[[257,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-6b45594c",[[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-157d9bed",[[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-c428106d",[[257,"ur-circular-progress",{"max":[514],"value":[514],"width":[513],"height":[513]}]]],["p-605aed37",[[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-a5545a90",[[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-2cf6d5e9",[[257,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-b0e55832",[[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-e57086f4",[[257,"ur-grid-row"]]],["p-9431fc7b",[[257,"ur-icon",{"name":[1],"src":[1],"size":[1],"color":[1]}]]],["p-05f4285f",[[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-17a0631b",[[257,"ur-list-subheader",{"text":[1]}]]],["p-e6e9653e",[[257,"ur-loader"]]],["p-52b98350",[[257,"ur-locale-filter-button",{"count":[2],"selected":[4],"label":[1]}]]],["p-c2ecb954",[[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-b0500e7f",[[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-82f7b4fc",[[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-71e97c9d",[[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-22ed54bb",[[257,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-6282ec6e",[[257,"ur-page-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"storiesTabText":[1,"stories-tab-text"],"shelvesTabText":[1,"shelves-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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"]}]]],["p-b2eb9e30",[[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-fc2a4e31",[[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-c186dfab",[[257,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-e8a73444",[[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-c64d4010",[[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-8f59c26d",[[257,"ur-tabs",{"tabs":[16],"panels":[16],"value":[513]}]]],["p-ea2eccbf",[[257,"ur-user-profile"]]],["p-8443c614",[[257,"ur-user-profile-tabs",{"activeTab":[1025,"active-tab"],"homeTabText":[1,"home-tab-text"],"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"],"homeTabEnabled":[4,"home-tab-enabled"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]},null,{"activeTab":["activeTabChanged"],"isOwner":["isOwnerChanged"],"homeTabEnabled":["homeTabEnabledChanged"]}]]],["p-aa3f200d",[[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],"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-00774584",[[257,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-acbec56b",[[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-0cb44e8c",[[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"],"followerLabel":[1,"follower-label"],"followersLabel":[1,"followers-label"]}]]],["p-9e9223af",[[257,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-af1421f2",[[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-7089f80d",[[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-d02c2560",[[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-c6636644",[[257,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1],"fullWidth":[516,"full-width"]},null,{"checked":["watchChecked"]}]]],["p-e64b6826",[[257,"ur-list"]]],["p-a21edf1f",[[257,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-3c9b357b",[[257,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"skeleton":[4],"isExpanded":[32]}]]],["p-ccb0c498",[[257,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a55de58d",[[257,"ur-time-ago",{"date":[1],"locale":[1],"timeAgo":[32]},null,{"date":["watchDate"],"locale":["watchLocale"]}]]],["p-2a5bd90b",[[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"],"border":[1],"showAvatarSlot":[4,"show-avatar-slot"]}]]],["p-77f32095",[[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-fd4f4fea",[[257,"ur-button-arrow-left",{"disabled":[4]}],[257,"ur-button-arrow-right",{"disabled":[4]}]]],["p-8246e1bc",[[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]}]]],["p-5aa5c63f",[[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-ad4e9d55",[[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],"maxWidth":[1,"max-width"]}]]],["p-04f4e4e3",[[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],"imageSrc":[32],"imageError":[32]},null,{"src":["handleSrcChange"]}]]]]'),e))));
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as t,c as i,h as s,H as e}from"./p-CCvuajik.js";import"./p-awwPhqIW.js";import"./p-zh2SzAzp.js";import"./p-DGxHnPQH.js";import"./p-bGirE084.js";import"./p-DmwpJ3Xb.js";import"./p-DPvu0yIY.js";import"./p-CaBWcz-D.js";import"./p-CLzk4uXM.js";import"./p-DD45e1Fb.js";import"./p-D17Erkn3.js";import"./p-CHcLApx5.js";import"./p-BeOzk1pg.js";import"./p-BvhH6khE.js";import"./p-CmJNLkgk.js";import"./p-DOqf3A_i.js";import"./p-DEJm_QN9.js";import"./p-yaA8vKgL.js";import"./p-Bc8ZFWuw.js";import"./p-DtvpcoBz.js";const a=class{constructor(s){t(this,s),this.tabChange=i(this,"tabChange"),this.activeTab="stories",this.homeTabText="Home",this.storiesTabText="Stories",this.shelvesTabText="Shelves",this.transactionsTabText="Transactions",this.statisticsTabText="Statistics",this.settingsTabText="Settings",this.aboutTabText="About",this.isOwner=!1,this.homeTabEnabled=!1,this.fullWidthTabs=!0,this.isMobile=!1,this.handleTabChange=t=>{var i;const s=null===(i=t.target)||void 0===i?void 0:i.value;s&&this.tabChange.emit(s)}}componentWillLoad(){this.activeTab&&this.tabChange.emit(this.activeTab)}activeTabChanged(t){console.log("[ur-page-profile-tabs] activeTab changed to:",t)}getTabs(){return[{value:"home",text:()=>this.homeTabText,visibleFor:this.homeTabEnabled?"all":"owner"},{value:"stories",text:()=>this.storiesTabText,visibleFor:"all"},{value:"shelves",text:()=>this.shelvesTabText,visibleFor:"all"},{value:"about",text:()=>this.aboutTabText,visibleFor:"all",mobileOnly:!0}]}getVisibleTabs(){return this.getTabs().filter((t=>("all"===t.visibleFor||"owner"===t.visibleFor&&this.isOwner)&&(!t.mobileOnly||this.isMobile)))}render(){const t=this.getVisibleTabs();return s(e,{key:"b7dc5ad9915f060af004a751cc02580e1429c41f"},s("mdui-tabs",{key:"fab34d470c25513297e2c4a2d16757077f0708c6",value:this.activeTab,onChange:this.handleTabChange,"full-width-tabs":this.fullWidthTabs},t.map((t=>s("mdui-tab",{key:t.value,value:t.value},t.text()))),t.map((t=>s("mdui-tab-panel",{key:t.value,slot:"panel",value:t.value},s("slot",{name:t.value}))))))}static get watchers(){return{activeTab:["activeTabChanged"]}}};a.style=":host{display:block}:host mdui-tabs{display:inline-flex;width:auto}:host mdui-tab{min-width:fit-content;padding:0 8px}:host mdui-tab span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host mdui-tabs[full-width-tabs]{width:100%}";export{a as ur_page_profile_tabs}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import{r as t,c as i,h as s,H as e}from"./p-CCvuajik.js";import"./p-awwPhqIW.js";import"./p-zh2SzAzp.js";import"./p-DGxHnPQH.js";import"./p-bGirE084.js";import"./p-DmwpJ3Xb.js";import"./p-DPvu0yIY.js";import"./p-CaBWcz-D.js";import"./p-CLzk4uXM.js";import"./p-DD45e1Fb.js";import"./p-D17Erkn3.js";import"./p-CHcLApx5.js";import"./p-BeOzk1pg.js";import"./p-BvhH6khE.js";import"./p-CmJNLkgk.js";import"./p-DOqf3A_i.js";import"./p-DEJm_QN9.js";import"./p-yaA8vKgL.js";import"./p-Bc8ZFWuw.js";import"./p-DtvpcoBz.js";const a=class{constructor(s){t(this,s),this.tabChange=i(this,"tabChange"),this.activeTab="stories",this.homeTabText="Home",this.storiesTabText="Stories",this.shelvesTabText="Shelves",this.transactionsTabText="Transactions",this.statisticsTabText="Statistics",this.settingsTabText="Settings",this.aboutTabText="About",this.isOwner=!1,this.homeTabEnabled=!1,this.fullWidthTabs=!0,this.isMobile=!1,this.handleTabChange=t=>{var i;const s=null===(i=t.target)||void 0===i?void 0:i.value;s&&this.tabChange.emit(s)}}componentWillLoad(){this.activeTab&&this.tabChange.emit(this.activeTab)}activeTabChanged(t){console.log("[ur-page-profile-tabs] activeTab changed to:",t)}getTabs(){return[{value:"home",text:()=>this.homeTabText,visibleFor:this.homeTabEnabled?"all":"owner"},{value:"stories",text:()=>this.storiesTabText,visibleFor:"all"},{value:"shelves",text:()=>this.shelvesTabText,visibleFor:"all"},{value:"about",text:()=>this.aboutTabText,visibleFor:"all",mobileOnly:!0}]}getVisibleTabs(){return this.getTabs().filter((t=>("all"===t.visibleFor||"owner"===t.visibleFor&&this.isOwner)&&(!t.mobileOnly||this.isMobile)))}render(){const t=this.getVisibleTabs();return s(e,{key:"b7dc5ad9915f060af004a751cc02580e1429c41f"},s("mdui-tabs",{key:"fab34d470c25513297e2c4a2d16757077f0708c6",value:this.activeTab,onChange:this.handleTabChange,"full-width-tabs":this.fullWidthTabs},t.map((t=>s("mdui-tab",{key:t.value,value:t.value},t.text()))),t.map((t=>s("mdui-tab-panel",{key:t.value,slot:"panel",value:t.value},s("slot",{name:t.value}))))))}static get watchers(){return{activeTab:["activeTabChanged"]}}};a.style=":host{display:block}:host mdui-tabs{display:inline-flex;width:auto}:host mdui-tab{min-width:fit-content;padding:0 8px}:host mdui-tab span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}:host mdui-tabs[full-width-tabs]{width:100%}";export{a as ur_page_profile_tabs}
|