urnovl-web-components 0.0.202 → 0.0.203
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-user.cjs.entry.js +12 -5
- package/dist/collection/components/ur-user/ur-user.js +14 -7
- package/dist/components/{p-DUdbN2ji.js → p-DYwdlwCl.js} +12 -5
- package/dist/components/ur-user-carousel.js +1 -1
- package/dist/components/ur-user.js +1 -1
- package/dist/esm/ur-user.entry.js +12 -5
- package/dist/types/components/ur-user/ur-user.d.ts +3 -2
- package/dist/types/components.d.ts +2 -2
- package/dist/urnovl-web-components/p-1fb1d249.entry.js +2 -0
- package/dist/urnovl-web-components/urnovl-web-components.esm.js +1 -1
- package/package.json +1 -1
- package/www/build/p-1fb1d249.entry.js +2 -0
- package/www/build/{p-6590f3e2.js → p-7672509d.js} +1 -1
- package/www/build/urnovl-web-components.esm.js +1 -1
- package/dist/urnovl-web-components/p-a4cbe68b.entry.js +0 -2
- package/www/build/p-a4cbe68b.entry.js +0 -2
- /package/dist/urnovl-web-components/{p-a4cbe68b.entry.js.map → p-1fb1d249.entry.js.map} +0 -0
- /package/www/build/{p-a4cbe68b.entry.js.map → p-1fb1d249.entry.js.map} +0 -0
|
@@ -22,9 +22,16 @@ const UrUser = class {
|
|
|
22
22
|
componentDidLoad() {
|
|
23
23
|
this.el.style.setProperty("--page-border-radius", this.borderRadius);
|
|
24
24
|
}
|
|
25
|
-
handleFollowClicked(event) {
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
handleFollowClicked($event, followed) {
|
|
26
|
+
$event.stopPropagation();
|
|
27
|
+
$event.preventDefault();
|
|
28
|
+
this.followStatus = !followed;
|
|
29
|
+
this.userFollowClicked.emit([this.userId, this.followStatus]);
|
|
30
|
+
}
|
|
31
|
+
handleUserClicked($event) {
|
|
32
|
+
$event.stopPropagation();
|
|
33
|
+
$event.preventDefault();
|
|
34
|
+
this.userClicked.emit(this.userId);
|
|
28
35
|
}
|
|
29
36
|
renderLoading() {
|
|
30
37
|
return index.h(index.Host, null, index.h("div", { class: "page loading" }, index.h("section", { class: "cover loading" }), index.h("section", { class: "info" }, index.h("div", { class: "title loading" }, "\u00A0"), index.h("div", { class: "stats loading" }), index.h("div", { class: "description loading" }, "\u00A0"), index.h("div", { class: "actions loading" }))));
|
|
@@ -33,10 +40,10 @@ const UrUser = class {
|
|
|
33
40
|
if (this.loading) {
|
|
34
41
|
return this.renderLoading();
|
|
35
42
|
}
|
|
36
|
-
return (index.h(index.Host, null, index.h("div", { class: "user", onClick: () => this.
|
|
43
|
+
return (index.h(index.Host, null, index.h("div", { class: "user", onClick: ($event) => this.handleUserClicked($event) }, index.h("section", { class: 'cover', style: {
|
|
37
44
|
backgroundImage: this.userCover ? `url(${this.userCover})` : `url(${this.userCoverFallback})`
|
|
38
45
|
} }), index.h("section", { class: 'info' }, index.h("div", { class: 'title' }, this.userTitle), this.showStats &&
|
|
39
|
-
index.h("div", { class: 'stats' }, index.h("div", { class: "followers" }, index.h("div", null, index.h("b", null, this.followers), " Followers"))), index.h("div", { class: "description" }, this.userDescription), index.h("div", { class: "actions" }, index.h("ur-button", { class: "follow", variant: "outlined", onClick: () => this.handleFollowClicked(this.followStatus) }, this.followStatus ? 'Unfollow' : 'Follow'))))));
|
|
46
|
+
index.h("div", { class: 'stats' }, index.h("div", { class: "followers" }, index.h("div", null, index.h("b", null, this.followers), " Followers"))), index.h("div", { class: "description" }, this.userDescription), index.h("div", { class: "actions" }, index.h("ur-button", { class: "follow", variant: "outlined", onClick: ($event) => this.handleFollowClicked($event, this.followStatus) }, this.followStatus ? 'Unfollow' : 'Follow'))))));
|
|
40
47
|
}
|
|
41
48
|
get el() { return index.getElement(this); }
|
|
42
49
|
};
|
|
@@ -13,9 +13,16 @@ export class UrUser {
|
|
|
13
13
|
componentDidLoad() {
|
|
14
14
|
this.el.style.setProperty("--page-border-radius", this.borderRadius);
|
|
15
15
|
}
|
|
16
|
-
handleFollowClicked(event) {
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
handleFollowClicked($event, followed) {
|
|
17
|
+
$event.stopPropagation();
|
|
18
|
+
$event.preventDefault();
|
|
19
|
+
this.followStatus = !followed;
|
|
20
|
+
this.userFollowClicked.emit([this.userId, this.followStatus]);
|
|
21
|
+
}
|
|
22
|
+
handleUserClicked($event) {
|
|
23
|
+
$event.stopPropagation();
|
|
24
|
+
$event.preventDefault();
|
|
25
|
+
this.userClicked.emit(this.userId);
|
|
19
26
|
}
|
|
20
27
|
renderLoading() {
|
|
21
28
|
return h(Host, null, h("div", { class: "page loading" }, h("section", { class: "cover loading" }), h("section", { class: "info" }, h("div", { class: "title loading" }, "\u00A0"), h("div", { class: "stats loading" }), h("div", { class: "description loading" }, "\u00A0"), h("div", { class: "actions loading" }))));
|
|
@@ -24,10 +31,10 @@ export class UrUser {
|
|
|
24
31
|
if (this.loading) {
|
|
25
32
|
return this.renderLoading();
|
|
26
33
|
}
|
|
27
|
-
return (h(Host, null, h("div", { class: "user", onClick: () => this.
|
|
34
|
+
return (h(Host, null, h("div", { class: "user", onClick: ($event) => this.handleUserClicked($event) }, h("section", { class: 'cover', style: {
|
|
28
35
|
backgroundImage: this.userCover ? `url(${this.userCover})` : `url(${this.userCoverFallback})`
|
|
29
36
|
} }), h("section", { class: 'info' }, h("div", { class: 'title' }, this.userTitle), this.showStats &&
|
|
30
|
-
h("div", { class: 'stats' }, h("div", { class: "followers" }, h("div", null, h("b", null, this.followers), " Followers"))), h("div", { class: "description" }, this.userDescription), h("div", { class: "actions" }, h("ur-button", { class: "follow", variant: "outlined", onClick: () => this.handleFollowClicked(this.followStatus) }, this.followStatus ? 'Unfollow' : 'Follow'))))));
|
|
37
|
+
h("div", { class: 'stats' }, h("div", { class: "followers" }, h("div", null, h("b", null, this.followers), " Followers"))), h("div", { class: "description" }, this.userDescription), h("div", { class: "actions" }, h("ur-button", { class: "follow", variant: "outlined", onClick: ($event) => this.handleFollowClicked($event, this.followStatus) }, this.followStatus ? 'Unfollow' : 'Follow'))))));
|
|
31
38
|
}
|
|
32
39
|
static get is() { return "ur-user"; }
|
|
33
40
|
static get encapsulation() { return "shadow"; }
|
|
@@ -269,8 +276,8 @@ export class UrUser {
|
|
|
269
276
|
"text": ""
|
|
270
277
|
},
|
|
271
278
|
"complexType": {
|
|
272
|
-
"original": "string",
|
|
273
|
-
"resolved": "string",
|
|
279
|
+
"original": "[string, boolean]",
|
|
280
|
+
"resolved": "[string, boolean]",
|
|
274
281
|
"references": {}
|
|
275
282
|
}
|
|
276
283
|
}];
|
|
@@ -23,9 +23,16 @@ const UrUser = /*@__PURE__*/ proxyCustomElement(class UrUser extends H {
|
|
|
23
23
|
componentDidLoad() {
|
|
24
24
|
this.el.style.setProperty("--page-border-radius", this.borderRadius);
|
|
25
25
|
}
|
|
26
|
-
handleFollowClicked(event) {
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
handleFollowClicked($event, followed) {
|
|
27
|
+
$event.stopPropagation();
|
|
28
|
+
$event.preventDefault();
|
|
29
|
+
this.followStatus = !followed;
|
|
30
|
+
this.userFollowClicked.emit([this.userId, this.followStatus]);
|
|
31
|
+
}
|
|
32
|
+
handleUserClicked($event) {
|
|
33
|
+
$event.stopPropagation();
|
|
34
|
+
$event.preventDefault();
|
|
35
|
+
this.userClicked.emit(this.userId);
|
|
29
36
|
}
|
|
30
37
|
renderLoading() {
|
|
31
38
|
return h(Host, null, h("div", { class: "page loading" }, h("section", { class: "cover loading" }), h("section", { class: "info" }, h("div", { class: "title loading" }, "\u00A0"), h("div", { class: "stats loading" }), h("div", { class: "description loading" }, "\u00A0"), h("div", { class: "actions loading" }))));
|
|
@@ -34,10 +41,10 @@ const UrUser = /*@__PURE__*/ proxyCustomElement(class UrUser extends H {
|
|
|
34
41
|
if (this.loading) {
|
|
35
42
|
return this.renderLoading();
|
|
36
43
|
}
|
|
37
|
-
return (h(Host, null, h("div", { class: "user", onClick: () => this.
|
|
44
|
+
return (h(Host, null, h("div", { class: "user", onClick: ($event) => this.handleUserClicked($event) }, h("section", { class: 'cover', style: {
|
|
38
45
|
backgroundImage: this.userCover ? `url(${this.userCover})` : `url(${this.userCoverFallback})`
|
|
39
46
|
} }), h("section", { class: 'info' }, h("div", { class: 'title' }, this.userTitle), this.showStats &&
|
|
40
|
-
h("div", { class: 'stats' }, h("div", { class: "followers" }, h("div", null, h("b", null, this.followers), " Followers"))), h("div", { class: "description" }, this.userDescription), h("div", { class: "actions" }, h("ur-button", { class: "follow", variant: "outlined", onClick: () => this.handleFollowClicked(this.followStatus) }, this.followStatus ? 'Unfollow' : 'Follow'))))));
|
|
47
|
+
h("div", { class: 'stats' }, h("div", { class: "followers" }, h("div", null, h("b", null, this.followers), " Followers"))), h("div", { class: "description" }, this.userDescription), h("div", { class: "actions" }, h("ur-button", { class: "follow", variant: "outlined", onClick: ($event) => this.handleFollowClicked($event, this.followStatus) }, this.followStatus ? 'Unfollow' : 'Follow'))))));
|
|
41
48
|
}
|
|
42
49
|
get el() { return this; }
|
|
43
50
|
static get style() { return urUserCss; }
|
|
@@ -2,7 +2,7 @@ import { p as proxyCustomElement, H, c as createEvent, h, a as Host } from './in
|
|
|
2
2
|
import { d as defineCustomElement$5 } from './p-Czs3YcHh.js';
|
|
3
3
|
import { d as defineCustomElement$4 } from './p-CH6h7pro.js';
|
|
4
4
|
import { d as defineCustomElement$3 } from './p-Egs-U7WO.js';
|
|
5
|
-
import { d as defineCustomElement$2 } from './p-
|
|
5
|
+
import { d as defineCustomElement$2 } from './p-DYwdlwCl.js';
|
|
6
6
|
|
|
7
7
|
const is_custom_data = (data) => {
|
|
8
8
|
return data && !!data.content && typeof data.content === 'function';
|
|
@@ -20,9 +20,16 @@ const UrUser = class {
|
|
|
20
20
|
componentDidLoad() {
|
|
21
21
|
this.el.style.setProperty("--page-border-radius", this.borderRadius);
|
|
22
22
|
}
|
|
23
|
-
handleFollowClicked(event) {
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
handleFollowClicked($event, followed) {
|
|
24
|
+
$event.stopPropagation();
|
|
25
|
+
$event.preventDefault();
|
|
26
|
+
this.followStatus = !followed;
|
|
27
|
+
this.userFollowClicked.emit([this.userId, this.followStatus]);
|
|
28
|
+
}
|
|
29
|
+
handleUserClicked($event) {
|
|
30
|
+
$event.stopPropagation();
|
|
31
|
+
$event.preventDefault();
|
|
32
|
+
this.userClicked.emit(this.userId);
|
|
26
33
|
}
|
|
27
34
|
renderLoading() {
|
|
28
35
|
return h(Host, null, h("div", { class: "page loading" }, h("section", { class: "cover loading" }), h("section", { class: "info" }, h("div", { class: "title loading" }, "\u00A0"), h("div", { class: "stats loading" }), h("div", { class: "description loading" }, "\u00A0"), h("div", { class: "actions loading" }))));
|
|
@@ -31,10 +38,10 @@ const UrUser = class {
|
|
|
31
38
|
if (this.loading) {
|
|
32
39
|
return this.renderLoading();
|
|
33
40
|
}
|
|
34
|
-
return (h(Host, null, h("div", { class: "user", onClick: () => this.
|
|
41
|
+
return (h(Host, null, h("div", { class: "user", onClick: ($event) => this.handleUserClicked($event) }, h("section", { class: 'cover', style: {
|
|
35
42
|
backgroundImage: this.userCover ? `url(${this.userCover})` : `url(${this.userCoverFallback})`
|
|
36
43
|
} }), h("section", { class: 'info' }, h("div", { class: 'title' }, this.userTitle), this.showStats &&
|
|
37
|
-
h("div", { class: 'stats' }, h("div", { class: "followers" }, h("div", null, h("b", null, this.followers), " Followers"))), h("div", { class: "description" }, this.userDescription), h("div", { class: "actions" }, h("ur-button", { class: "follow", variant: "outlined", onClick: () => this.handleFollowClicked(this.followStatus) }, this.followStatus ? 'Unfollow' : 'Follow'))))));
|
|
44
|
+
h("div", { class: 'stats' }, h("div", { class: "followers" }, h("div", null, h("b", null, this.followers), " Followers"))), h("div", { class: "description" }, this.userDescription), h("div", { class: "actions" }, h("ur-button", { class: "follow", variant: "outlined", onClick: ($event) => this.handleFollowClicked($event, this.followStatus) }, this.followStatus ? 'Unfollow' : 'Follow'))))));
|
|
38
45
|
}
|
|
39
46
|
get el() { return getElement(this); }
|
|
40
47
|
};
|
|
@@ -12,9 +12,10 @@ export declare class UrUser {
|
|
|
12
12
|
userDescription: string;
|
|
13
13
|
borderRadius: string;
|
|
14
14
|
userClicked: EventEmitter<string>;
|
|
15
|
-
userFollowClicked: EventEmitter<string>;
|
|
15
|
+
userFollowClicked: EventEmitter<[string, boolean]>;
|
|
16
16
|
componentDidLoad(): void;
|
|
17
|
-
handleFollowClicked(event: any): void;
|
|
17
|
+
handleFollowClicked($event: any, followed: any): void;
|
|
18
|
+
handleUserClicked($event: any): void;
|
|
18
19
|
renderLoading(): any;
|
|
19
20
|
render(): any;
|
|
20
21
|
}
|
|
@@ -2219,7 +2219,7 @@ declare global {
|
|
|
2219
2219
|
};
|
|
2220
2220
|
interface HTMLUrUserElementEventMap {
|
|
2221
2221
|
"userClicked": string;
|
|
2222
|
-
"userFollowClicked": string;
|
|
2222
|
+
"userFollowClicked": [string, boolean];
|
|
2223
2223
|
}
|
|
2224
2224
|
interface HTMLUrUserElement extends Components.UrUser, HTMLStencilElement {
|
|
2225
2225
|
addEventListener<K extends keyof HTMLUrUserElementEventMap>(type: K, listener: (this: HTMLUrUserElement, ev: UrUserCustomEvent<HTMLUrUserElementEventMap[K]>) => any, options?: boolean | AddEventListenerOptions): void;
|
|
@@ -3504,7 +3504,7 @@ declare namespace LocalJSX {
|
|
|
3504
3504
|
"followers"?: number;
|
|
3505
3505
|
"loading"?: boolean;
|
|
3506
3506
|
"onUserClicked"?: (event: UrUserCustomEvent<string>) => void;
|
|
3507
|
-
"onUserFollowClicked"?: (event: UrUserCustomEvent<string>) => void;
|
|
3507
|
+
"onUserFollowClicked"?: (event: UrUserCustomEvent<[string, boolean]>) => void;
|
|
3508
3508
|
"showStats"?: boolean;
|
|
3509
3509
|
"userCover"?: string;
|
|
3510
3510
|
"userCoverFallback"?: string;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{r as n,c as i,h as o,H as t,g as a}from"./p-DkPhPkdv.js";const e=class{constructor(o){n(this,o),this.userClicked=i(this,"userClicked"),this.userFollowClicked=i(this,"userFollowClicked"),this.loading=!1,this.followStatus=!1,this.userTitle="User title",this.userCoverFallback="data:image/webp;base64,UklGRtQAAABXRUJQVlA4TMgAAAAv/8f/EQfQla70pPIBIUHi/+9mIvqf8Z///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7vAQ==",this.followers=0,this.showStats=!0,this.borderRadius="8px"}componentDidLoad(){this.el.style.setProperty("--page-border-radius",this.borderRadius)}handleFollowClicked(n,i){n.stopPropagation(),n.preventDefault(),this.followStatus=!i,this.userFollowClicked.emit([this.userId,this.followStatus])}handleUserClicked(n){n.stopPropagation(),n.preventDefault(),this.userClicked.emit(this.userId)}renderLoading(){return o(t,null,o("div",{class:"page loading"},o("section",{class:"cover loading"}),o("section",{class:"info"},o("div",{class:"title loading"}," "),o("div",{class:"stats loading"}),o("div",{class:"description loading"}," "),o("div",{class:"actions loading"}))))}render(){return this.loading?this.renderLoading():o(t,null,o("div",{class:"user",onClick:n=>this.handleUserClicked(n)},o("section",{class:"cover",style:{backgroundImage:this.userCover?`url(${this.userCover})`:`url(${this.userCoverFallback})`}}),o("section",{class:"info"},o("div",{class:"title"},this.userTitle),this.showStats&&o("div",{class:"stats"},o("div",{class:"followers"},o("div",null,o("b",null,this.followers)," Followers"))),o("div",{class:"description"},this.userDescription),o("div",{class:"actions"},o("ur-button",{class:"follow",variant:"outlined",onClick:n=>this.handleFollowClicked(n,this.followStatus)},this.followStatus?"Unfollow":"Follow")))))}get el(){return a(this)}};e.style=":host {\n --user-width: 100%;\n --user-border-radius: 8px;\n --ur-color-on-background: var(--mdui-color-on-background);\n --ur-color-background: var(--mdui-color-background);\n --ur-color-on-container-primary: var(--mdui-color-primary-container);\n --ur-color-primary: var(--mdui-color-primary);\n}\n\n@keyframes placeholderAnimate {\n 0%{ background-position: -650px 0; }\n 100%{ background-position: 650px 0; }\n}\n\n:host {\n display: flex;\n flex-direction: column;\n box-sizing: content-box;\n container-type: inline-size;\n container-name: user;\n}\n\n:host .user {\n overflow: hidden;\n width: var(--user-width);\n border-radius: var(--user-border-radius);\n cursor: pointer;\n}\n\n:host .user.loading {\n cursor: default;\n}\n\n:host .cover {\n aspect-ratio: 1;\n background-color: rgb(var(--ur-color-on-background));\n background-repeat: no-repeat;\n background-size: cover;\n background-position: center;\n position: relative;\n}\n\n:host .cover.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info {\n display: flex;\n flex-direction: column;\n padding: 8px;\n row-gap: 8px;\n background: rgb(var(--ur-color-background));\n box-sizing: border-box;\n}\n\n:host .info:has(.loading) {\n padding-left: 0;\n padding-right: 0;\n}\n\n:host .info .title {\n color: rgb(var(--ur-color-on-background));\n font-size: 16px;\n font-style: normal;\n font-weight: 700;\n display: -webkit-box;\n -webkit-line-clamp: 2; /* Number of lines */\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n:host .info .title.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info .stats {\n font-size: 12px;\n font-weight: 400;\n line-height: 12px;\n display: flex;\n flex-direction: row;\n color: rgb(var(--ur-color-on-background));\n}\n\n:host .info .stats.loading {\n height: 12px;\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info .stats b {\n font-weight: 700;\n}\n\n:host .info .stats .followers {\n display: flex;\n}\n\n:host .user .actions {\n padding-top: 10px;\n}\n\n:host .info .actions.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .user .actions ur-button {\n width: 100%;\n padding-bottom: 5px;\n}\n\n:host .follow {\n display: flex;\n width: 100%;\n}\n\n:host .info .description {\n color: rgb(var(--ur-color-on-background));\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: 16px; /* 163.636% */\n display: -webkit-box;\n -webkit-line-clamp: 2; /* Number of lines */\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n:host .info .description.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n@container user (max-width: 300px) {\n :host .info .title {\n font-size: 14px;\n line-height: 1.2rem;\n }\n\n :host .info .stats {\n font-size: 11px;\n }\n\n :host .info .description{\n font-size: 11px;\n }\n\n :host .info {\n row-gap: 4px;\n padding: 4px;\n }\n\n\n :host .info .title.loading {\n margin: 0 4px;\n }\n\n :host .info .stats.loading {\n margin: 0 4px;\n }\n\n :host .info .description.loading {\n margin: 0 4px;\n }\n}\n";export{e as ur_user}
|
|
2
|
+
//# sourceMappingURL=p-1fb1d249.entry.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{p as e,b as t}from"./p-DkPhPkdv.js";export{s as setNonce}from"./p-DkPhPkdv.js";import{g as a}from"./p-DQuL1Twl.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await a(),t(JSON.parse('[["p-e70fff0c",[[1,"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"],"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"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"]}]]],["p-7b26904d",[[1,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"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"],"reset":[64]}]]],["p-c2bce6cc",[[1,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"formState":[32]}]]],["p-ac10a84e",[[1,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-de38311c",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4d05ea44",[[1,"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"],"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"],"becomeMemberText":[1,"become-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"memberRequestStatus":[1,"member-request-status"]}]]],["p-1e22475f",[[1,"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"],"isFollowing":[32]}]]],["p-e7f7252c",[[1,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4]}]]],["p-3908b942",[[1,"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-bf55683e",[[1,"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"],"isLocked":[4,"is-locked"],"loading":[32]}]]],["p-c48abe7e",[[1,"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-0f44dc1c",[[1,"ur-notification",{"notification":[16],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32]}]]],["p-c49053ab",[[1,"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-c43bb858",[[1,"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"],"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"]}]]],["p-6e0d78dd",[[1,"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-33106135",[[1,"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"],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-a5ae166d",[[1,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"reset":[64]}]]],["p-e6feb68c",[[1,"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-c8eeae70",[[1,"ur-user-profile-settings-form",{"settings":[8],"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-11b50872",[[1,"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-406c0de5",[[1,"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-33793daa",[[1,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"mutableLocales":[32]}]]],["p-205bc536",[[1,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-28b9d3b4",[[1,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-e02633ff",[[1,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-de094365",[[1,"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-a2b5cec7",[[1,"ur-wizard-step",{"step":[2],"stepTitle":[1,"step-title"],"subtitle":[1],"showPrevious":[4,"show-previous"],"showNext":[4,"show-next"],"previousButtonTitle":[1,"previous-button-title"],"nextButtonTitle":[1,"next-button-title"],"isSkippable":[4,"is-skippable"],"isValid":[1028,"is-valid"],"validationMessage":[1,"validation-message"],"customClass":[1,"custom-class"],"submitStepForm":[64],"resetStepForm":[64]},[[0,"formValid","handleFormValid"],[0,"formInvalid","handleFormInvalid"]]]]],["p-57b8960c",[[1,"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-05d93501",[[1,"ur-circular-progress",{"max":[514],"value":[514]}]]],["p-3676391e",[[1,"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-2d1da253",[[1,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-54d1bd7d",[[1,"ur-list-subheader",{"text":[1]}]]],["p-a6b1a440",[[1,"ur-loader"]]],["p-bca366c2",[[1,"ur-locale-filter-button",{"count":[2],"selected":[4]}]]],["p-efdd9735",[[1,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"isExpanded":[32]}]]],["p-42ca636c",[[1,"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]},null,{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-6e001c17",[[1,"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-91240f4e",[[1,"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-f864c57c",[[1,"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-29d47d57",[[1,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-4d84eeef",[[1,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-3278faa3",[[1,"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-ab295897",[[1,"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-5bf56929",[[1,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-40dca00d",[[1,"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"]},null,{"value":["handleValueChange"]}]]],["p-eb420baa",[[1,"ur-tabs",{"tabs":[16],"panels":[16]}]]],["p-5afc73fc",[[1,"ur-user-profile"]]],["p-da9e0394",[[1,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-24cdbf51",[[1,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-ad4fce04",[[1,"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"]}]]],["p-d8b5a71f",[[1,"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"],"borderRadius":[1,"border-radius"]}]]],["p-a4cbe68b",[[1,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followStatus":[4,"follow-status"],"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"]}]]],["p-86cc824b",[[1,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-de0de019",[[1,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-55c5607e",[[1,"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"],"novlDescription":[8,"novl-description"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"]}]]],["p-38949de2",[[1,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"disabled":[4],"clickable":[4]}]]],["p-35adc833",[[1,"ur-time-ago",{"date":[1],"timeAgo":[32]},null,{"date":["watchDate"]}]]],["p-96023638",[[1,"ur-button-arrow-left",{"disabled":[4]}],[1,"ur-button-arrow-right",{"disabled":[4]}]]],["p-ab87f01e",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-88df341c",[[1,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}],[1,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-b7fadb26",[[1,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a755cdc0",[[1,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-e2d516c7",[[1,"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"]}]]],["p-d3bb34b2",[[1,"ur-list"],[1,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"rounded":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1]}]]],["p-24db9109",[[1,"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]}]]],["p-20e3786a",[[1,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1]}]]],["p-36b4f962",[[1,"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"]}]]]]'),e))));
|
|
1
|
+
import{p as e,b as t}from"./p-DkPhPkdv.js";export{s as setNonce}from"./p-DkPhPkdv.js";import{g as a}from"./p-DQuL1Twl.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await a(),t(JSON.parse('[["p-e70fff0c",[[1,"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"],"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"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"]}]]],["p-7b26904d",[[1,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"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"],"reset":[64]}]]],["p-c2bce6cc",[[1,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"formState":[32]}]]],["p-ac10a84e",[[1,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-de38311c",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4d05ea44",[[1,"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"],"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"],"becomeMemberText":[1,"become-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"memberRequestStatus":[1,"member-request-status"]}]]],["p-1e22475f",[[1,"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"],"isFollowing":[32]}]]],["p-e7f7252c",[[1,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4]}]]],["p-3908b942",[[1,"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-bf55683e",[[1,"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"],"isLocked":[4,"is-locked"],"loading":[32]}]]],["p-c48abe7e",[[1,"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-0f44dc1c",[[1,"ur-notification",{"notification":[16],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32]}]]],["p-c49053ab",[[1,"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-c43bb858",[[1,"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"],"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"]}]]],["p-6e0d78dd",[[1,"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-33106135",[[1,"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"],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-a5ae166d",[[1,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"reset":[64]}]]],["p-e6feb68c",[[1,"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-c8eeae70",[[1,"ur-user-profile-settings-form",{"settings":[8],"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-11b50872",[[1,"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-406c0de5",[[1,"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-33793daa",[[1,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"mutableLocales":[32]}]]],["p-205bc536",[[1,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-28b9d3b4",[[1,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-e02633ff",[[1,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-de094365",[[1,"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-a2b5cec7",[[1,"ur-wizard-step",{"step":[2],"stepTitle":[1,"step-title"],"subtitle":[1],"showPrevious":[4,"show-previous"],"showNext":[4,"show-next"],"previousButtonTitle":[1,"previous-button-title"],"nextButtonTitle":[1,"next-button-title"],"isSkippable":[4,"is-skippable"],"isValid":[1028,"is-valid"],"validationMessage":[1,"validation-message"],"customClass":[1,"custom-class"],"submitStepForm":[64],"resetStepForm":[64]},[[0,"formValid","handleFormValid"],[0,"formInvalid","handleFormInvalid"]]]]],["p-57b8960c",[[1,"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-05d93501",[[1,"ur-circular-progress",{"max":[514],"value":[514]}]]],["p-3676391e",[[1,"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-2d1da253",[[1,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-54d1bd7d",[[1,"ur-list-subheader",{"text":[1]}]]],["p-a6b1a440",[[1,"ur-loader"]]],["p-bca366c2",[[1,"ur-locale-filter-button",{"count":[2],"selected":[4]}]]],["p-efdd9735",[[1,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"isExpanded":[32]}]]],["p-42ca636c",[[1,"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]},null,{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-6e001c17",[[1,"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-91240f4e",[[1,"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-f864c57c",[[1,"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-29d47d57",[[1,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-4d84eeef",[[1,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-3278faa3",[[1,"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-ab295897",[[1,"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-5bf56929",[[1,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-40dca00d",[[1,"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"]},null,{"value":["handleValueChange"]}]]],["p-eb420baa",[[1,"ur-tabs",{"tabs":[16],"panels":[16]}]]],["p-5afc73fc",[[1,"ur-user-profile"]]],["p-da9e0394",[[1,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-24cdbf51",[[1,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-ad4fce04",[[1,"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"]}]]],["p-d8b5a71f",[[1,"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"],"borderRadius":[1,"border-radius"]}]]],["p-1fb1d249",[[1,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followStatus":[4,"follow-status"],"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"]}]]],["p-86cc824b",[[1,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-de0de019",[[1,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-55c5607e",[[1,"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"],"novlDescription":[8,"novl-description"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"]}]]],["p-38949de2",[[1,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"disabled":[4],"clickable":[4]}]]],["p-35adc833",[[1,"ur-time-ago",{"date":[1],"timeAgo":[32]},null,{"date":["watchDate"]}]]],["p-96023638",[[1,"ur-button-arrow-left",{"disabled":[4]}],[1,"ur-button-arrow-right",{"disabled":[4]}]]],["p-ab87f01e",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-88df341c",[[1,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}],[1,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-b7fadb26",[[1,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a755cdc0",[[1,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-e2d516c7",[[1,"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"]}]]],["p-d3bb34b2",[[1,"ur-list"],[1,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"rounded":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1]}]]],["p-24db9109",[[1,"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]}]]],["p-20e3786a",[[1,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1]}]]],["p-36b4f962",[[1,"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"]}]]]]'),e))));
|
|
2
2
|
//# sourceMappingURL=urnovl-web-components.esm.js.map
|
package/package.json
CHANGED
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{r as n,c as i,h as o,H as t,g as a}from"./p-DkPhPkdv.js";const e=class{constructor(o){n(this,o),this.userClicked=i(this,"userClicked"),this.userFollowClicked=i(this,"userFollowClicked"),this.loading=!1,this.followStatus=!1,this.userTitle="User title",this.userCoverFallback="data:image/webp;base64,UklGRtQAAABXRUJQVlA4TMgAAAAv/8f/EQfQla70pPIBIUHi/+9mIvqf8Z///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7vAQ==",this.followers=0,this.showStats=!0,this.borderRadius="8px"}componentDidLoad(){this.el.style.setProperty("--page-border-radius",this.borderRadius)}handleFollowClicked(n,i){n.stopPropagation(),n.preventDefault(),this.followStatus=!i,this.userFollowClicked.emit([this.userId,this.followStatus])}handleUserClicked(n){n.stopPropagation(),n.preventDefault(),this.userClicked.emit(this.userId)}renderLoading(){return o(t,null,o("div",{class:"page loading"},o("section",{class:"cover loading"}),o("section",{class:"info"},o("div",{class:"title loading"}," "),o("div",{class:"stats loading"}),o("div",{class:"description loading"}," "),o("div",{class:"actions loading"}))))}render(){return this.loading?this.renderLoading():o(t,null,o("div",{class:"user",onClick:n=>this.handleUserClicked(n)},o("section",{class:"cover",style:{backgroundImage:this.userCover?`url(${this.userCover})`:`url(${this.userCoverFallback})`}}),o("section",{class:"info"},o("div",{class:"title"},this.userTitle),this.showStats&&o("div",{class:"stats"},o("div",{class:"followers"},o("div",null,o("b",null,this.followers)," Followers"))),o("div",{class:"description"},this.userDescription),o("div",{class:"actions"},o("ur-button",{class:"follow",variant:"outlined",onClick:n=>this.handleFollowClicked(n,this.followStatus)},this.followStatus?"Unfollow":"Follow")))))}get el(){return a(this)}};e.style=":host {\n --user-width: 100%;\n --user-border-radius: 8px;\n --ur-color-on-background: var(--mdui-color-on-background);\n --ur-color-background: var(--mdui-color-background);\n --ur-color-on-container-primary: var(--mdui-color-primary-container);\n --ur-color-primary: var(--mdui-color-primary);\n}\n\n@keyframes placeholderAnimate {\n 0%{ background-position: -650px 0; }\n 100%{ background-position: 650px 0; }\n}\n\n:host {\n display: flex;\n flex-direction: column;\n box-sizing: content-box;\n container-type: inline-size;\n container-name: user;\n}\n\n:host .user {\n overflow: hidden;\n width: var(--user-width);\n border-radius: var(--user-border-radius);\n cursor: pointer;\n}\n\n:host .user.loading {\n cursor: default;\n}\n\n:host .cover {\n aspect-ratio: 1;\n background-color: rgb(var(--ur-color-on-background));\n background-repeat: no-repeat;\n background-size: cover;\n background-position: center;\n position: relative;\n}\n\n:host .cover.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info {\n display: flex;\n flex-direction: column;\n padding: 8px;\n row-gap: 8px;\n background: rgb(var(--ur-color-background));\n box-sizing: border-box;\n}\n\n:host .info:has(.loading) {\n padding-left: 0;\n padding-right: 0;\n}\n\n:host .info .title {\n color: rgb(var(--ur-color-on-background));\n font-size: 16px;\n font-style: normal;\n font-weight: 700;\n display: -webkit-box;\n -webkit-line-clamp: 2; /* Number of lines */\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n:host .info .title.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info .stats {\n font-size: 12px;\n font-weight: 400;\n line-height: 12px;\n display: flex;\n flex-direction: row;\n color: rgb(var(--ur-color-on-background));\n}\n\n:host .info .stats.loading {\n height: 12px;\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info .stats b {\n font-weight: 700;\n}\n\n:host .info .stats .followers {\n display: flex;\n}\n\n:host .user .actions {\n padding-top: 10px;\n}\n\n:host .info .actions.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .user .actions ur-button {\n width: 100%;\n padding-bottom: 5px;\n}\n\n:host .follow {\n display: flex;\n width: 100%;\n}\n\n:host .info .description {\n color: rgb(var(--ur-color-on-background));\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: 16px; /* 163.636% */\n display: -webkit-box;\n -webkit-line-clamp: 2; /* Number of lines */\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n:host .info .description.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n@container user (max-width: 300px) {\n :host .info .title {\n font-size: 14px;\n line-height: 1.2rem;\n }\n\n :host .info .stats {\n font-size: 11px;\n }\n\n :host .info .description{\n font-size: 11px;\n }\n\n :host .info {\n row-gap: 4px;\n padding: 4px;\n }\n\n\n :host .info .title.loading {\n margin: 0 4px;\n }\n\n :host .info .stats.loading {\n margin: 0 4px;\n }\n\n :host .info .description.loading {\n margin: 0 4px;\n }\n}\n";export{e as ur_user}
|
|
2
|
+
//# sourceMappingURL=p-1fb1d249.entry.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{p as e,b as t}from"./p-DkPhPkdv.js";export{s as setNonce}from"./p-DkPhPkdv.js";import{g as a}from"./p-DQuL1Twl.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await a(),t(JSON.parse('[["p-e70fff0c",[[1,"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"],"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"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"]}]]],["p-7b26904d",[[1,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"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"],"reset":[64]}]]],["p-c2bce6cc",[[1,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"formState":[32]}]]],["p-ac10a84e",[[1,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-de38311c",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4d05ea44",[[1,"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"],"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"],"becomeMemberText":[1,"become-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"memberRequestStatus":[1,"member-request-status"]}]]],["p-1e22475f",[[1,"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"],"isFollowing":[32]}]]],["p-e7f7252c",[[1,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4]}]]],["p-3908b942",[[1,"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-bf55683e",[[1,"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"],"isLocked":[4,"is-locked"],"loading":[32]}]]],["p-c48abe7e",[[1,"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-0f44dc1c",[[1,"ur-notification",{"notification":[16],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32]}]]],["p-c49053ab",[[1,"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-c43bb858",[[1,"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"],"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"]}]]],["p-6e0d78dd",[[1,"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-33106135",[[1,"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"],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-a5ae166d",[[1,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"reset":[64]}]]],["p-e6feb68c",[[1,"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-c8eeae70",[[1,"ur-user-profile-settings-form",{"settings":[8],"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-11b50872",[[1,"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-406c0de5",[[1,"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-33793daa",[[1,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"mutableLocales":[32]}]]],["p-205bc536",[[1,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-28b9d3b4",[[1,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-e02633ff",[[1,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-de094365",[[1,"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-a2b5cec7",[[1,"ur-wizard-step",{"step":[2],"stepTitle":[1,"step-title"],"subtitle":[1],"showPrevious":[4,"show-previous"],"showNext":[4,"show-next"],"previousButtonTitle":[1,"previous-button-title"],"nextButtonTitle":[1,"next-button-title"],"isSkippable":[4,"is-skippable"],"isValid":[1028,"is-valid"],"validationMessage":[1,"validation-message"],"customClass":[1,"custom-class"],"submitStepForm":[64],"resetStepForm":[64]},[[0,"formValid","handleFormValid"],[0,"formInvalid","handleFormInvalid"]]]]],["p-57b8960c",[[1,"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-05d93501",[[1,"ur-circular-progress",{"max":[514],"value":[514]}]]],["p-3676391e",[[1,"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-2d1da253",[[1,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-54d1bd7d",[[1,"ur-list-subheader",{"text":[1]}]]],["p-a6b1a440",[[1,"ur-loader"]]],["p-bca366c2",[[1,"ur-locale-filter-button",{"count":[2],"selected":[4]}]]],["p-efdd9735",[[1,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"isExpanded":[32]}]]],["p-42ca636c",[[1,"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]},null,{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-6e001c17",[[1,"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-91240f4e",[[1,"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-f864c57c",[[1,"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-29d47d57",[[1,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-4d84eeef",[[1,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-3278faa3",[[1,"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-ab295897",[[1,"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-5bf56929",[[1,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-40dca00d",[[1,"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"]},null,{"value":["handleValueChange"]}]]],["p-eb420baa",[[1,"ur-tabs",{"tabs":[16],"panels":[16]}]]],["p-5afc73fc",[[1,"ur-user-profile"]]],["p-da9e0394",[[1,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-24cdbf51",[[1,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-ad4fce04",[[1,"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"]}]]],["p-d8b5a71f",[[1,"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"],"borderRadius":[1,"border-radius"]}]]],["p-a4cbe68b",[[1,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followStatus":[4,"follow-status"],"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"]}]]],["p-86cc824b",[[1,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-de0de019",[[1,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-55c5607e",[[1,"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"],"novlDescription":[8,"novl-description"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"]}]]],["p-38949de2",[[1,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"disabled":[4],"clickable":[4]}]]],["p-35adc833",[[1,"ur-time-ago",{"date":[1],"timeAgo":[32]},null,{"date":["watchDate"]}]]],["p-96023638",[[1,"ur-button-arrow-left",{"disabled":[4]}],[1,"ur-button-arrow-right",{"disabled":[4]}]]],["p-ab87f01e",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-88df341c",[[1,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}],[1,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-b7fadb26",[[1,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a755cdc0",[[1,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-e2d516c7",[[1,"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"]}]]],["p-d3bb34b2",[[1,"ur-list"],[1,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"rounded":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1]}]]],["p-24db9109",[[1,"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]}]]],["p-20e3786a",[[1,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1]}]]],["p-36b4f962",[[1,"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"]}]]]]'),e))));
|
|
1
|
+
import{p as e,b as t}from"./p-DkPhPkdv.js";export{s as setNonce}from"./p-DkPhPkdv.js";import{g as a}from"./p-DQuL1Twl.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await a(),t(JSON.parse('[["p-e70fff0c",[[1,"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"],"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"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"]}]]],["p-7b26904d",[[1,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"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"],"reset":[64]}]]],["p-c2bce6cc",[[1,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"formState":[32]}]]],["p-ac10a84e",[[1,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-de38311c",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4d05ea44",[[1,"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"],"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"],"becomeMemberText":[1,"become-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"memberRequestStatus":[1,"member-request-status"]}]]],["p-1e22475f",[[1,"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"],"isFollowing":[32]}]]],["p-e7f7252c",[[1,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4]}]]],["p-3908b942",[[1,"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-bf55683e",[[1,"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"],"isLocked":[4,"is-locked"],"loading":[32]}]]],["p-c48abe7e",[[1,"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-0f44dc1c",[[1,"ur-notification",{"notification":[16],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32]}]]],["p-c49053ab",[[1,"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-c43bb858",[[1,"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"],"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"]}]]],["p-6e0d78dd",[[1,"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-33106135",[[1,"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"],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-a5ae166d",[[1,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"reset":[64]}]]],["p-e6feb68c",[[1,"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-c8eeae70",[[1,"ur-user-profile-settings-form",{"settings":[8],"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-11b50872",[[1,"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-406c0de5",[[1,"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-33793daa",[[1,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"mutableLocales":[32]}]]],["p-205bc536",[[1,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-28b9d3b4",[[1,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-e02633ff",[[1,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-de094365",[[1,"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-a2b5cec7",[[1,"ur-wizard-step",{"step":[2],"stepTitle":[1,"step-title"],"subtitle":[1],"showPrevious":[4,"show-previous"],"showNext":[4,"show-next"],"previousButtonTitle":[1,"previous-button-title"],"nextButtonTitle":[1,"next-button-title"],"isSkippable":[4,"is-skippable"],"isValid":[1028,"is-valid"],"validationMessage":[1,"validation-message"],"customClass":[1,"custom-class"],"submitStepForm":[64],"resetStepForm":[64]},[[0,"formValid","handleFormValid"],[0,"formInvalid","handleFormInvalid"]]]]],["p-57b8960c",[[1,"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-05d93501",[[1,"ur-circular-progress",{"max":[514],"value":[514]}]]],["p-3676391e",[[1,"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-2d1da253",[[1,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-54d1bd7d",[[1,"ur-list-subheader",{"text":[1]}]]],["p-a6b1a440",[[1,"ur-loader"]]],["p-bca366c2",[[1,"ur-locale-filter-button",{"count":[2],"selected":[4]}]]],["p-efdd9735",[[1,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"isExpanded":[32]}]]],["p-42ca636c",[[1,"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]},null,{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-6e001c17",[[1,"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-91240f4e",[[1,"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-f864c57c",[[1,"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-29d47d57",[[1,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-4d84eeef",[[1,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-3278faa3",[[1,"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-ab295897",[[1,"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-5bf56929",[[1,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-40dca00d",[[1,"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"]},null,{"value":["handleValueChange"]}]]],["p-eb420baa",[[1,"ur-tabs",{"tabs":[16],"panels":[16]}]]],["p-5afc73fc",[[1,"ur-user-profile"]]],["p-da9e0394",[[1,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-24cdbf51",[[1,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-ad4fce04",[[1,"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"]}]]],["p-d8b5a71f",[[1,"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"],"borderRadius":[1,"border-radius"]}]]],["p-1fb1d249",[[1,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followStatus":[4,"follow-status"],"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"]}]]],["p-86cc824b",[[1,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-de0de019",[[1,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-55c5607e",[[1,"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"],"novlDescription":[8,"novl-description"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"]}]]],["p-38949de2",[[1,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"disabled":[4],"clickable":[4]}]]],["p-35adc833",[[1,"ur-time-ago",{"date":[1],"timeAgo":[32]},null,{"date":["watchDate"]}]]],["p-96023638",[[1,"ur-button-arrow-left",{"disabled":[4]}],[1,"ur-button-arrow-right",{"disabled":[4]}]]],["p-ab87f01e",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-88df341c",[[1,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}],[1,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-b7fadb26",[[1,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a755cdc0",[[1,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-e2d516c7",[[1,"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"]}]]],["p-d3bb34b2",[[1,"ur-list"],[1,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"rounded":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1]}]]],["p-24db9109",[[1,"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]}]]],["p-20e3786a",[[1,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1]}]]],["p-36b4f962",[[1,"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"]}]]]]'),e))));
|
|
2
2
|
//# sourceMappingURL=urnovl-web-components.esm.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{p as e,b as t}from"./p-DkPhPkdv.js";export{s as setNonce}from"./p-DkPhPkdv.js";import{g as a}from"./p-DQuL1Twl.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await a(),t(JSON.parse('[["p-e70fff0c",[[1,"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"],"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"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"]}]]],["p-7b26904d",[[1,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"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"],"reset":[64]}]]],["p-c2bce6cc",[[1,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"formState":[32]}]]],["p-ac10a84e",[[1,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-de38311c",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4d05ea44",[[1,"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"],"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"],"becomeMemberText":[1,"become-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"memberRequestStatus":[1,"member-request-status"]}]]],["p-1e22475f",[[1,"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"],"isFollowing":[32]}]]],["p-e7f7252c",[[1,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4]}]]],["p-3908b942",[[1,"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-bf55683e",[[1,"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"],"isLocked":[4,"is-locked"],"loading":[32]}]]],["p-c48abe7e",[[1,"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-0f44dc1c",[[1,"ur-notification",{"notification":[16],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32]}]]],["p-c49053ab",[[1,"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-c43bb858",[[1,"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"],"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"]}]]],["p-6e0d78dd",[[1,"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-33106135",[[1,"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"],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-a5ae166d",[[1,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"reset":[64]}]]],["p-e6feb68c",[[1,"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-c8eeae70",[[1,"ur-user-profile-settings-form",{"settings":[8],"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-11b50872",[[1,"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-406c0de5",[[1,"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-33793daa",[[1,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"mutableLocales":[32]}]]],["p-205bc536",[[1,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-28b9d3b4",[[1,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-e02633ff",[[1,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-de094365",[[1,"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-a2b5cec7",[[1,"ur-wizard-step",{"step":[2],"stepTitle":[1,"step-title"],"subtitle":[1],"showPrevious":[4,"show-previous"],"showNext":[4,"show-next"],"previousButtonTitle":[1,"previous-button-title"],"nextButtonTitle":[1,"next-button-title"],"isSkippable":[4,"is-skippable"],"isValid":[1028,"is-valid"],"validationMessage":[1,"validation-message"],"customClass":[1,"custom-class"],"submitStepForm":[64],"resetStepForm":[64]},[[0,"formValid","handleFormValid"],[0,"formInvalid","handleFormInvalid"]]]]],["p-57b8960c",[[1,"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-05d93501",[[1,"ur-circular-progress",{"max":[514],"value":[514]}]]],["p-3676391e",[[1,"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-2d1da253",[[1,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-54d1bd7d",[[1,"ur-list-subheader",{"text":[1]}]]],["p-a6b1a440",[[1,"ur-loader"]]],["p-bca366c2",[[1,"ur-locale-filter-button",{"count":[2],"selected":[4]}]]],["p-efdd9735",[[1,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"isExpanded":[32]}]]],["p-42ca636c",[[1,"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]},null,{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-6e001c17",[[1,"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-91240f4e",[[1,"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-f864c57c",[[1,"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-29d47d57",[[1,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-4d84eeef",[[1,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-3278faa3",[[1,"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-ab295897",[[1,"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-5bf56929",[[1,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-40dca00d",[[1,"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"]},null,{"value":["handleValueChange"]}]]],["p-eb420baa",[[1,"ur-tabs",{"tabs":[16],"panels":[16]}]]],["p-5afc73fc",[[1,"ur-user-profile"]]],["p-da9e0394",[[1,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-24cdbf51",[[1,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-ad4fce04",[[1,"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"]}]]],["p-d8b5a71f",[[1,"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"],"borderRadius":[1,"border-radius"]}]]],["p-a4cbe68b",[[1,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followStatus":[4,"follow-status"],"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"]}]]],["p-86cc824b",[[1,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-de0de019",[[1,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-55c5607e",[[1,"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"],"novlDescription":[8,"novl-description"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"]}]]],["p-38949de2",[[1,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"disabled":[4],"clickable":[4]}]]],["p-35adc833",[[1,"ur-time-ago",{"date":[1],"timeAgo":[32]},null,{"date":["watchDate"]}]]],["p-96023638",[[1,"ur-button-arrow-left",{"disabled":[4]}],[1,"ur-button-arrow-right",{"disabled":[4]}]]],["p-ab87f01e",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-88df341c",[[1,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}],[1,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-b7fadb26",[[1,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a755cdc0",[[1,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-e2d516c7",[[1,"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"]}]]],["p-d3bb34b2",[[1,"ur-list"],[1,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"rounded":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1]}]]],["p-24db9109",[[1,"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]}]]],["p-20e3786a",[[1,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1]}]]],["p-36b4f962",[[1,"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"]}]]]]'),e))));
|
|
1
|
+
import{p as e,b as t}from"./p-DkPhPkdv.js";export{s as setNonce}from"./p-DkPhPkdv.js";import{g as a}from"./p-DQuL1Twl.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await a(),t(JSON.parse('[["p-e70fff0c",[[1,"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"],"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"],"expanded":[32],"parentHeight":[32],"updateCounter":[32]},null,{"opened":["watchOpenedHandler"],"userName":["watchUserNameHandler"],"userRole":["watchUserRoleHandler"],"userAvatar":["watchUserAvatarHandler"],"badgeCount":["watchBadgeCountHandler"],"currentRoute":["watchCurrentRouteHandler"],"notificationCenterOpened":["watchNotificationCenterOpenedHandler"]}]]],["p-7b26904d",[[1,"ur-novl-overview-info",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"deviceSize":[1,"device-size"],"likesText":[1,"likes-text"],"views":[2],"editTitleMode":[4,"edit-title-mode"],"editDescriptionMode":[4,"edit-description-mode"],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"writeStoryText":[1,"write-story-text"],"descriptionText":[1,"description-text"],"chapterListText":[1,"chapter-list-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"isOwner":[4,"is-owner"],"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"],"reset":[64]}]]],["p-c2bce6cc",[[1,"ur-comment-form",{"user":[16],"isServer":[4,"is-server"],"placeholder":[1],"maxLength":[2,"max-length"],"minLength":[2,"min-length"],"disabled":[4],"variant":[1],"formState":[32]}]]],["p-ac10a84e",[[1,"ur-library-shelf-selector",{"chooseButtonText":[1,"choose-button-text"],"createButtonText":[1,"create-button-text"],"chooseShelfLabelText":[1,"choose-shelf-label-text"],"createNewShelfLabelText":[1,"create-new-shelf-label-text"],"createNewShelfSubtitleText":[1,"create-new-shelf-subtitle-text"],"orCreateNewShelf":[1,"or-create-new-shelf"],"newShelfPlaceholder":[1,"new-shelf-placeholder"],"shelves":[16],"selectedShelf":[1025,"selected-shelf"],"newShelfName":[32]},[[2,"valueSelected","handleRadioSelection"]]]]],["p-de38311c",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addPages":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-4d05ea44",[[1,"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"],"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"],"becomeMemberText":[1,"become-member-text"],"donateText":[1,"donate-text"],"sendMessageText":[1,"send-message-text"],"followed":[4],"memberRequestStatus":[1,"member-request-status"]}]]],["p-1e22475f",[[1,"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"],"isFollowing":[32]}]]],["p-e7f7252c",[[1,"ur-user-carousel",{"users":[16],"breakpoints":[16],"grid":[16],"slidesPerView":[8,"slides-per-view"],"spaceBetween":[8,"space-between"],"navigation":[4]}]]],["p-3908b942",[[1,"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-bf55683e",[[1,"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"],"isLocked":[4,"is-locked"],"loading":[32]}]]],["p-c48abe7e",[[1,"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-0f44dc1c",[[1,"ur-notification",{"notification":[16],"isRead":[32],"isFollowing":[32],"memberRequestStatus":[32]}]]],["p-c49053ab",[[1,"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-c43bb858",[[1,"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"],"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"]}]]],["p-6e0d78dd",[[1,"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-33106135",[[1,"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"],"followText":[1,"follow-text"],"donateText":[1,"donate-text"]},null,{"isProfileFollowed":["handleIsProfileFollowedChange"]}]]],["p-a5ae166d",[[1,"ur-novl-summary",{"novlTitle":[1,"novl-title"],"coverImage":[1,"cover-image"],"completeText":[1,"complete-text"],"ongoingText":[1,"ongoing-text"],"storyCompleteStatus":[4,"story-complete-status"],"likes":[2],"likesText":[1,"likes-text"],"views":[2],"viewsText":[1,"views-text"],"readingDuration":[1,"reading-duration"],"readingDurationText":[1,"reading-duration-text"],"description":[1],"languages":[1],"genres":[1],"literatureTypes":[1,"literature-types"],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"readStoryText":[1,"read-story-text"],"learnMoreText":[1,"learn-more-text"],"writeStoryText":[1,"write-story-text"],"buyStoryText":[1,"buy-story-text"],"addToLibraryText":[1,"add-to-library-text"],"removeFromLibraryText":[1,"remove-from-library-text"],"novlPrice":[1,"novl-price"],"hasBranches":[4,"has-branches"],"writeEnabled":[4,"write-enabled"],"novlPaid":[4,"novl-paid"],"novlPurchasedAt":[1,"novl-purchased-at"],"ownerAvatar":[1,"owner-avatar"],"ownerName":[1,"owner-name"],"isUserLoggedIn":[4,"is-user-logged-in"],"isNovlLibrary":[4,"is-novl-library"],"novlIsOwn":[4,"novl-is-own"],"expanded":[4],"reset":[64]}]]],["p-e6feb68c",[[1,"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-c8eeae70",[[1,"ur-user-profile-settings-form",{"settings":[8],"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-11b50872",[[1,"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-406c0de5",[[1,"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-33793daa",[[1,"ur-locale-filter-panel",{"showHeader":[4,"show-header"],"showFooter":[4,"show-footer"],"locales":[16],"disabledLocales":[16,"disabled-locales"],"mutableLocales":[32]}]]],["p-205bc536",[[1,"ur-read-mobile-top-app-bar",{"variant":[1],"headerTitle":[1,"header-title"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"]}]]],["p-28b9d3b4",[[1,"ur-read-top-app-bar",{"variant":[1],"novelTitle":[1,"novel-title"],"isChapterOwner":[4,"is-chapter-owner"],"deviceVariant":[1,"device-variant"],"scrollBehavior":[1,"scroll-behavior"],"scrollThreshold":[2,"scroll-threshold"],"topValue":[32]}]]],["p-e02633ff",[[1,"ur-thumbs-rating",{"likesCount":[2,"likes-count"],"dislikeText":[1,"dislike-text"],"isLiked":[1028,"is-liked"],"isDisliked":[1028,"is-disliked"]}]]],["p-de094365",[[1,"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-a2b5cec7",[[1,"ur-wizard-step",{"step":[2],"stepTitle":[1,"step-title"],"subtitle":[1],"showPrevious":[4,"show-previous"],"showNext":[4,"show-next"],"previousButtonTitle":[1,"previous-button-title"],"nextButtonTitle":[1,"next-button-title"],"isSkippable":[4,"is-skippable"],"isValid":[1028,"is-valid"],"validationMessage":[1,"validation-message"],"customClass":[1,"custom-class"],"submitStepForm":[64],"resetStepForm":[64]},[[0,"formValid","handleFormValid"],[0,"formInvalid","handleFormInvalid"]]]]],["p-57b8960c",[[1,"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-05d93501",[[1,"ur-circular-progress",{"max":[514],"value":[514]}]]],["p-3676391e",[[1,"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-2d1da253",[[1,"ur-form",{"submitForm":[64],"resetForm":[64]},[[0,"valueChanged","handleValueChanged"],[0,"errorStateChanged","handleErrorStateChanged"]]]]],["p-54d1bd7d",[[1,"ur-list-subheader",{"text":[1]}]]],["p-a6b1a440",[[1,"ur-loader"]]],["p-bca366c2",[[1,"ur-locale-filter-button",{"count":[2],"selected":[4]}]]],["p-efdd9735",[[1,"ur-long-description",{"description":[1],"showLessText":[1,"show-less-text"],"showMoreText":[1,"show-more-text"],"isExpanded":[32]}]]],["p-42ca636c",[[1,"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]},null,{"selected":["selectedChanged"],"disabled":["disabledChanged"],"heightNumber":["heightNumberChanged"]}]]],["p-6e001c17",[[1,"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-91240f4e",[[1,"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-f864c57c",[[1,"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-29d47d57",[[1,"ur-notification-tabs",{"activeTab":[1,"active-tab"],"notificationsTabText":[1,"notifications-tab-text"],"requestsTabText":[1,"requests-tab-text"],"fullWidthTabs":[4,"full-width-tabs"]}]]],["p-4d84eeef",[[1,"ur-page-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-3278faa3",[[1,"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-ab295897",[[1,"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-5bf56929",[[1,"ur-segment-button",{"likeLabel":[1,"like-label"]}]]],["p-40dca00d",[[1,"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"]},null,{"value":["handleValueChange"]}]]],["p-eb420baa",[[1,"ur-tabs",{"tabs":[16],"panels":[16]}]]],["p-5afc73fc",[[1,"ur-user-profile"]]],["p-da9e0394",[[1,"ur-user-profile-tabs",{"activeTab":[1,"active-tab"],"storiesTabText":[1,"stories-tab-text"],"libraryTabText":[1,"library-tab-text"],"transactionsTabText":[1,"transactions-tab-text"],"statisticsTabText":[1,"statistics-tab-text"],"settingsTabText":[1,"settings-tab-text"],"aboutTabText":[1,"about-tab-text"],"isOwner":[4,"is-owner"],"fullWidthTabs":[4,"full-width-tabs"],"isMobile":[4,"is-mobile"]}]]],["p-24cdbf51",[[1,"ur-menu-profile",{"userAvatar":[1,"user-avatar"],"userName":[1,"user-name"],"userRole":[1,"user-role"]}]]],["p-ad4fce04",[[1,"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"]}]]],["p-d8b5a71f",[[1,"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"],"borderRadius":[1,"border-radius"]}]]],["p-1fb1d249",[[1,"ur-user",{"userId":[513,"user-id"],"loading":[4],"followStatus":[4,"follow-status"],"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"]}]]],["p-86cc824b",[[1,"ur-checkbox",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}]]],["p-de0de019",[[1,"ur-linear-progress",{"value":[2],"max":[514]},null,{"value":["validateValue"]}]]],["p-55c5607e",[[1,"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"],"novlDescription":[8,"novl-description"],"authorAvatar":[8,"author-avatar"],"authorName":[8,"author-name"],"published":[4],"price":[1],"publisherAvatar":[1,"publisher-avatar"],"publisherName":[1,"publisher-name"],"borderRadius":[1,"border-radius"]}]]],["p-38949de2",[[1,"ur-chip",{"label":[1],"border":[1],"borderColor":[1,"border-color"],"radius":[1],"size":[1],"backColor":[1,"back-color"],"fontColor":[1,"font-color"],"loading":[4],"disabled":[4],"clickable":[4]}]]],["p-35adc833",[[1,"ur-time-ago",{"date":[1],"timeAgo":[32]},null,{"date":["watchDate"]}]]],["p-96023638",[[1,"ur-button-arrow-left",{"disabled":[4]}],[1,"ur-button-arrow-right",{"disabled":[4]}]]],["p-ab87f01e",[[1,"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],"disabledPrev":[32],"disabledNext":[32],"addNovls":[64],"updateNovlsByIndex":[64],"reset":[64]}]]],["p-88df341c",[[1,"ur-radio-button",{"disabled":[4],"checked":[1540],"value":[1],"name":[1]},null,{"checked":["watchChecked"]}],[1,"ur-radio-group",{"name":[1],"value":[1025],"required":[4],"options":[32],"validate":[64],"reset":[64]}]]],["p-b7fadb26",[[1,"ur-switch",{"disabled":[4],"checked":[1540],"checkedIcon":[1,"checked-icon"],"uncheckedIcon":[1,"unchecked-icon"]}]]],["p-a755cdc0",[[1,"ur-logo",{"width":[1],"height":[1],"color":[1],"rotation":[2],"opacity":[2]}]]],["p-e2d516c7",[[1,"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"]}]]],["p-d3bb34b2",[[1,"ur-list"],[1,"ur-list-item",{"content":[1],"disabled":[4],"active":[4],"nonclickable":[4],"rounded":[4],"alignment":[1],"icon":[1],"endIcon":[1,"end-icon"],"description":[1],"href":[1],"target":[1],"rel":[1]}]]],["p-24db9109",[[1,"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]}]]],["p-20e3786a",[[1,"ur-avatar",{"size":[1],"src":[1],"name":[1],"border":[1],"radius":[1],"variant":[1]}]]],["p-36b4f962",[[1,"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"]}]]]]'),e))));
|
|
2
2
|
//# sourceMappingURL=urnovl-web-components.esm.js.map
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import{r as n,c as i,h as o,H as t,g as a}from"./p-DkPhPkdv.js";const e=class{constructor(o){n(this,o),this.userClicked=i(this,"userClicked"),this.userFollowClicked=i(this,"userFollowClicked"),this.loading=!1,this.followStatus=!1,this.userTitle="User title",this.userCoverFallback="data:image/webp;base64,UklGRtQAAABXRUJQVlA4TMgAAAAv/8f/EQfQla70pPIBIUHi/+9mIvqf8Z///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7vAQ==",this.followers=0,this.showStats=!0,this.borderRadius="8px"}componentDidLoad(){this.el.style.setProperty("--page-border-radius",this.borderRadius)}handleFollowClicked(n){this.followStatus=!n,this.userFollowClicked.emit(this.userId)}renderLoading(){return o(t,null,o("div",{class:"page loading"},o("section",{class:"cover loading"}),o("section",{class:"info"},o("div",{class:"title loading"}," "),o("div",{class:"stats loading"}),o("div",{class:"description loading"}," "),o("div",{class:"actions loading"}))))}render(){return this.loading?this.renderLoading():o(t,null,o("div",{class:"user",onClick:()=>this.userClicked.emit(this.userId)},o("section",{class:"cover",style:{backgroundImage:this.userCover?`url(${this.userCover})`:`url(${this.userCoverFallback})`}}),o("section",{class:"info"},o("div",{class:"title"},this.userTitle),this.showStats&&o("div",{class:"stats"},o("div",{class:"followers"},o("div",null,o("b",null,this.followers)," Followers"))),o("div",{class:"description"},this.userDescription),o("div",{class:"actions"},o("ur-button",{class:"follow",variant:"outlined",onClick:()=>this.handleFollowClicked(this.followStatus)},this.followStatus?"Unfollow":"Follow")))))}get el(){return a(this)}};e.style=":host {\n --user-width: 100%;\n --user-border-radius: 8px;\n --ur-color-on-background: var(--mdui-color-on-background);\n --ur-color-background: var(--mdui-color-background);\n --ur-color-on-container-primary: var(--mdui-color-primary-container);\n --ur-color-primary: var(--mdui-color-primary);\n}\n\n@keyframes placeholderAnimate {\n 0%{ background-position: -650px 0; }\n 100%{ background-position: 650px 0; }\n}\n\n:host {\n display: flex;\n flex-direction: column;\n box-sizing: content-box;\n container-type: inline-size;\n container-name: user;\n}\n\n:host .user {\n overflow: hidden;\n width: var(--user-width);\n border-radius: var(--user-border-radius);\n cursor: pointer;\n}\n\n:host .user.loading {\n cursor: default;\n}\n\n:host .cover {\n aspect-ratio: 1;\n background-color: rgb(var(--ur-color-on-background));\n background-repeat: no-repeat;\n background-size: cover;\n background-position: center;\n position: relative;\n}\n\n:host .cover.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info {\n display: flex;\n flex-direction: column;\n padding: 8px;\n row-gap: 8px;\n background: rgb(var(--ur-color-background));\n box-sizing: border-box;\n}\n\n:host .info:has(.loading) {\n padding-left: 0;\n padding-right: 0;\n}\n\n:host .info .title {\n color: rgb(var(--ur-color-on-background));\n font-size: 16px;\n font-style: normal;\n font-weight: 700;\n display: -webkit-box;\n -webkit-line-clamp: 2; /* Number of lines */\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n:host .info .title.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info .stats {\n font-size: 12px;\n font-weight: 400;\n line-height: 12px;\n display: flex;\n flex-direction: row;\n color: rgb(var(--ur-color-on-background));\n}\n\n:host .info .stats.loading {\n height: 12px;\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info .stats b {\n font-weight: 700;\n}\n\n:host .info .stats .followers {\n display: flex;\n}\n\n:host .user .actions {\n padding-top: 10px;\n}\n\n:host .info .actions.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .user .actions ur-button {\n width: 100%;\n padding-bottom: 5px;\n}\n\n:host .follow {\n display: flex;\n width: 100%;\n}\n\n:host .info .description {\n color: rgb(var(--ur-color-on-background));\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: 16px; /* 163.636% */\n display: -webkit-box;\n -webkit-line-clamp: 2; /* Number of lines */\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n:host .info .description.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n@container user (max-width: 300px) {\n :host .info .title {\n font-size: 14px;\n line-height: 1.2rem;\n }\n\n :host .info .stats {\n font-size: 11px;\n }\n\n :host .info .description{\n font-size: 11px;\n }\n\n :host .info {\n row-gap: 4px;\n padding: 4px;\n }\n\n\n :host .info .title.loading {\n margin: 0 4px;\n }\n\n :host .info .stats.loading {\n margin: 0 4px;\n }\n\n :host .info .description.loading {\n margin: 0 4px;\n }\n}\n";export{e as ur_user}
|
|
2
|
-
//# sourceMappingURL=p-a4cbe68b.entry.js.map
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
import{r as n,c as i,h as o,H as t,g as a}from"./p-DkPhPkdv.js";const e=class{constructor(o){n(this,o),this.userClicked=i(this,"userClicked"),this.userFollowClicked=i(this,"userFollowClicked"),this.loading=!1,this.followStatus=!1,this.userTitle="User title",this.userCoverFallback="data:image/webp;base64,UklGRtQAAABXRUJQVlA4TMgAAAAv/8f/EQfQla70pPIBIUHi/+9mIvqf8Z///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7zn//85z//+c9//vOf//znP//5z3/+85///Oc///nPf/7vAQ==",this.followers=0,this.showStats=!0,this.borderRadius="8px"}componentDidLoad(){this.el.style.setProperty("--page-border-radius",this.borderRadius)}handleFollowClicked(n){this.followStatus=!n,this.userFollowClicked.emit(this.userId)}renderLoading(){return o(t,null,o("div",{class:"page loading"},o("section",{class:"cover loading"}),o("section",{class:"info"},o("div",{class:"title loading"}," "),o("div",{class:"stats loading"}),o("div",{class:"description loading"}," "),o("div",{class:"actions loading"}))))}render(){return this.loading?this.renderLoading():o(t,null,o("div",{class:"user",onClick:()=>this.userClicked.emit(this.userId)},o("section",{class:"cover",style:{backgroundImage:this.userCover?`url(${this.userCover})`:`url(${this.userCoverFallback})`}}),o("section",{class:"info"},o("div",{class:"title"},this.userTitle),this.showStats&&o("div",{class:"stats"},o("div",{class:"followers"},o("div",null,o("b",null,this.followers)," Followers"))),o("div",{class:"description"},this.userDescription),o("div",{class:"actions"},o("ur-button",{class:"follow",variant:"outlined",onClick:()=>this.handleFollowClicked(this.followStatus)},this.followStatus?"Unfollow":"Follow")))))}get el(){return a(this)}};e.style=":host {\n --user-width: 100%;\n --user-border-radius: 8px;\n --ur-color-on-background: var(--mdui-color-on-background);\n --ur-color-background: var(--mdui-color-background);\n --ur-color-on-container-primary: var(--mdui-color-primary-container);\n --ur-color-primary: var(--mdui-color-primary);\n}\n\n@keyframes placeholderAnimate {\n 0%{ background-position: -650px 0; }\n 100%{ background-position: 650px 0; }\n}\n\n:host {\n display: flex;\n flex-direction: column;\n box-sizing: content-box;\n container-type: inline-size;\n container-name: user;\n}\n\n:host .user {\n overflow: hidden;\n width: var(--user-width);\n border-radius: var(--user-border-radius);\n cursor: pointer;\n}\n\n:host .user.loading {\n cursor: default;\n}\n\n:host .cover {\n aspect-ratio: 1;\n background-color: rgb(var(--ur-color-on-background));\n background-repeat: no-repeat;\n background-size: cover;\n background-position: center;\n position: relative;\n}\n\n:host .cover.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info {\n display: flex;\n flex-direction: column;\n padding: 8px;\n row-gap: 8px;\n background: rgb(var(--ur-color-background));\n box-sizing: border-box;\n}\n\n:host .info:has(.loading) {\n padding-left: 0;\n padding-right: 0;\n}\n\n:host .info .title {\n color: rgb(var(--ur-color-on-background));\n font-size: 16px;\n font-style: normal;\n font-weight: 700;\n display: -webkit-box;\n -webkit-line-clamp: 2; /* Number of lines */\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n:host .info .title.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info .stats {\n font-size: 12px;\n font-weight: 400;\n line-height: 12px;\n display: flex;\n flex-direction: row;\n color: rgb(var(--ur-color-on-background));\n}\n\n:host .info .stats.loading {\n height: 12px;\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .info .stats b {\n font-weight: 700;\n}\n\n:host .info .stats .followers {\n display: flex;\n}\n\n:host .user .actions {\n padding-top: 10px;\n}\n\n:host .info .actions.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n:host .user .actions ur-button {\n width: 100%;\n padding-bottom: 5px;\n}\n\n:host .follow {\n display: flex;\n width: 100%;\n}\n\n:host .info .description {\n color: rgb(var(--ur-color-on-background));\n font-size: 12px;\n font-style: normal;\n font-weight: 400;\n line-height: 16px; /* 163.636% */\n display: -webkit-box;\n -webkit-line-clamp: 2; /* Number of lines */\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n:host .info .description.loading {\n animation-duration: 1.7s;\n animation-fill-mode: forwards;\n animation-iteration-count: infinite;\n animation-timing-function: linear;\n animation-name: placeholderAnimate;\n background: #f6f7f8;\n background: linear-gradient(to right, #eee 2%, #ddd 18%, #eee 33%);\n background-size: 1000px;\n}\n\n@container user (max-width: 300px) {\n :host .info .title {\n font-size: 14px;\n line-height: 1.2rem;\n }\n\n :host .info .stats {\n font-size: 11px;\n }\n\n :host .info .description{\n font-size: 11px;\n }\n\n :host .info {\n row-gap: 4px;\n padding: 4px;\n }\n\n\n :host .info .title.loading {\n margin: 0 4px;\n }\n\n :host .info .stats.loading {\n margin: 0 4px;\n }\n\n :host .info .description.loading {\n margin: 0 4px;\n }\n}\n";export{e as ur_user}
|
|
2
|
-
//# sourceMappingURL=p-a4cbe68b.entry.js.map
|
|
File without changes
|
|
File without changes
|