diff --git a/.gitattributes b/.gitattributes index 5565a7f0..e6b9a0d3 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ +*.ts linguist-language=go *.js linguist-language=go *.css linguist-language=go *.vue linguist-language=go diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 66a46ea3..aac0a0d4 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -47,7 +47,7 @@ jobs: name: Test strategy: matrix: - go-version: [ 1.20.x, 1.21.x ] + go-version: [ 1.21.x, 1.22.x ] platform: [ ubuntu-latest, macos-latest ] runs-on: ${{ matrix.platform }} steps: @@ -66,7 +66,7 @@ jobs: name: TestOnWindows strategy: matrix: - go-version: [ 1.20.x, 1.21.x ] + go-version: [ 1.21.x, 1.22.x ] platform: [ windows-latest ] runs-on: ${{ matrix.platform }} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d65bf0c..3b2f9eed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ All notable changes to paopao-ce are documented in this file. ## 0.6.0+dev ([`dev`](https://github.com/rocboss/paopao-ce/tree/dev)) -TODO; +### Added +- add all-in-one docker image build scripts. +- frontend: add tweets filter support use tag for home page and make it as default behavior. +- add pin topic support. +- support upload webp format image as picture when send tweet. ## 0.5.2 ### Change diff --git a/Dockerfile b/Dockerfile index 91fcdd6d..5b2ea3c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# syntax=docker/dockerfile:experimental +# syntax=docker/dockerfile:1 # build frontend FROM node:19-alpine as frontend @@ -22,9 +22,9 @@ ARG USE_DIST=no WORKDIR /paopao-ce COPY . . COPY --from=frontend /web/dist ./web/dist -ENV GOPROXY=https://goproxy.cn -RUN [ $EMBED_UI != yes ] || make build TAGS='go_json' -RUN [ $EMBED_UI = yes ] || make build TAGS='slim embed go_json' +ENV GOPROXY=https://goproxy.cn,direct +RUN --mount=type=cache,target=$GOPATH/go/pkg,id=paopao-ce-gopkg [ $EMBED_UI != yes ] || make buildx TAGS='go_json' +RUN --mount=type=cache,target=$GOPATH/go/pkg,id=paopao-ce-gopkg [ $EMBED_UI = yes ] || make buildx TAGS='slim embed go_json' FROM bitbus/paopao-ce-backend-runner:latest ARG API_HOST diff --git a/Dockerfile.allinone b/Dockerfile.allinone new file mode 100644 index 00000000..efe4be4b --- /dev/null +++ b/Dockerfile.allinone @@ -0,0 +1,37 @@ +# syntax=docker/dockerfile:1 + +# build frontend +FROM node:19-alpine as frontend +ARG API_HOST +ARG USE_API_HOST=yes +ARG EMBED_UI=yes +ARG USE_DIST=no +WORKDIR /web +COPY web/ ./ +RUN [ $EMBED_UI != yes ] || [ $USE_API_HOST != yes ] || echo "VITE_HOST='$API_HOST'">.env.local +RUN [ $EMBED_UI != yes ] || [ $USE_DIST != no ] || (yarn && yarn build) +RUN [ $EMBED_UI = yes ] || mkdir dist || echo "" + +# build backend +FROM bitbus/paopao-ce-backend-builder:latest AS backend +ARG API_HOST +ARG USE_API_HOST=yes +ARG EMBED_UI=yes +ARG USE_DIST=no + +WORKDIR /paopao-ce +COPY . . +COPY --from=frontend /web/dist ./web/dist +ENV GOPROXY=https://goproxy.cn,direct +RUN --mount=type=cache,target=$GOPATH/go/pkg,id=paopao-ce-gopkg [ $EMBED_UI != yes ] || make buildx TAGS='go_json migration' +RUN --mount=type=cache,target=$GOPATH/go/pkg,id=paopao-ce-gopkg [ $EMBED_UI = yes ] || make buildx TAGS='slim embed go_json migration' + +FROM bitbus/paopao-ce-allinone-runner:latest +ARG API_HOST +ARG USE_API_HOST=yes +ARG EMBED_UI=yes +ARG USE_DIST=no +ENV TZ=Asia/Shanghai + +WORKDIR /app +COPY --from=backend /paopao-ce/release/paopao . diff --git a/Makefile b/Makefile index 1aa96136..5dedcec0 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,10 @@ LDFLAGS = -X "${MOD_NAME}/pkg/version.version=${BUILD_VERSION}" \ all: fmt build build: + @echo Build paopao-ce + @go build -pgo=auto -trimpath -tags '$(TAGS)' -ldflags '$(LDFLAGS)' -o $(RELEASE_ROOT)/$(TARGET) + +buildx: @go mod download @echo Build paopao-ce @go build -pgo=auto -trimpath -tags '$(TAGS)' -ldflags '$(LDFLAGS)' -o $(RELEASE_ROOT)/$(TARGET) @@ -115,10 +119,10 @@ pre-commit: fmt .PHONY: install-protobuf-plugins install-protobuf-plugins: - @go install github.com/bufbuild/buf/cmd/buf@v1.25.0 - @go install github.com/bufbuild/buf/cmd/protoc-gen-buf-breaking@v1.25.0 - @go install github.com/bufbuild/buf/cmd/protoc-gen-buf-lint@v1.25.0 - @go install github.com/bufbuild/connect-go/cmd/protoc-gen-connect-go@latest + @go install github.com/bufbuild/buf/cmd/buf@v1.28.1 + @go install github.com/bufbuild/buf/cmd/protoc-gen-buf-breaking@v1.28.1 + @go install github.com/bufbuild/buf/cmd/protoc-gen-buf-lint@v1.28.1 + @go install connectrpc.com/connect/cmd/protoc-gen-connect-go@latest @go install github.com/fullstorydev/grpcurl/cmd/grpcurl@latest @go install google.golang.org/protobuf/cmd/protoc-gen-go@latest @go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest diff --git a/README.md b/README.md index 69a5c860..11026ba6 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ PaoPao主要由以下优秀的开源项目/工具构建 * [Mir](https://github.com/alimy/mir 'go-mir') * [Buf](https://github.com/bufbuild/buf 'buf') * [gRPC](https://github.com/grpc/grpc-go 'grpc-go') -* [Zinc](https://zinclabs.io/ 'zinc') +* [Meilisearch](https://www.meilisearch.com/ 'meilisearch') #### 前端: * [Naive UI](https://www.naiveui.com/) @@ -69,9 +69,7 @@ PaoPao主要由以下优秀的开源项目/工具构建 * Node.js (14+) * MySQL (5.7+) * Redis -* Zinc - -> Zinc是一款轻量级全文搜索引擎,可以查阅 安装 +* Meilisearch 以上环境版本为PaoPao官方的开发版本,仅供参考,其他版本的环境未进行充分测试 @@ -221,6 +219,23 @@ PaoPao主要由以下优秀的开源项目/工具构建 docker run -d -p 8010:80 your/paopao-ce:web ``` + * All-In-One: + ```sh + # 构建Image + docker buildx build --build-arg USE_DIST="yes" -t your/paopao-ce:all-in-one-latest -f Dockerfile.allinone . + + # 运行 + docker run --name paopao-ce-allinone -d -p 8000:8008 -p 7700:7700 -v ./data/custom:/app/custom -v ./data/meili_data:/app/meili_data your/paopao-ce:all-in-one-latest + + # 或者使用官方Image运行 + docker run --name paopao-ce-allinone -d -p 8000:8008 -p 7700:7700 -v ./data/custom:/app/custom -v ./data/meili_data:/app/meili_data bitbus/paopao-ce:all-in-one-latest + + # 或者使用官方Image运行 + 自定义config.yaml + docker run --name paopao-ce-allinone -d -p 8000:8008 -p 7700:7700 -v ./config.yaml:/app/config.yaml -v ./data/custom:/app/custom -v ./data/meili_data:/app/meili_data bitbus/paopao-ce:all-in-one-latest + ``` + > 注意在`config.yaml` 中`Meili.ApiKey`的值必须与容器中meili启动时设定的`MEILI_MASTER_KEY`环境变量值相同,默认为`paopao-meilisearch`. 可以在docker启动容器时通过`-e MEILI_MASTER_KEY=`设置该值。 + + ### 方式三. 使用 docker-compose 运行 ```sh git clone https://github.com/rocboss/paopao-ce.git diff --git a/auto/api/m/v1/user.go b/auto/api/m/v1/user.go index 8918a199..bea939a4 100644 --- a/auto/api/m/v1/user.go +++ b/auto/api/m/v1/user.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/r/v1/user.go b/auto/api/r/v1/user.go index e7f98082..82850dc2 100644 --- a/auto/api/r/v1/user.go +++ b/auto/api/r/v1/user.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/s/v1/user.go b/auto/api/s/v1/user.go index c0b7dae3..ac25628d 100644 --- a/auto/api/s/v1/user.go +++ b/auto/api/s/v1/user.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/v1/admin.go b/auto/api/v1/admin.go index 2ea0ed96..b3c208c7 100644 --- a/auto/api/v1/admin.go +++ b/auto/api/v1/admin.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 @@ -22,6 +22,7 @@ type _render_ interface { type _default_ interface { Bind(*gin.Context, any) mir.Error + BindJson(*gin.Context, any) mir.Error Render(*gin.Context, any, mir.Error) } diff --git a/auto/api/v1/alipay_priv.go b/auto/api/v1/alipay_priv.go index 02500522..86669b89 100644 --- a/auto/api/v1/alipay_priv.go +++ b/auto/api/v1/alipay_priv.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/v1/alipay_pub.go b/auto/api/v1/alipay_pub.go index b31172ad..f4bbde51 100644 --- a/auto/api/v1/alipay_pub.go +++ b/auto/api/v1/alipay_pub.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/v1/core.go b/auto/api/v1/core.go index 1eee2f63..cd564736 100644 --- a/auto/api/v1/core.go +++ b/auto/api/v1/core.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/v1/followship.go b/auto/api/v1/followship.go index af668dc8..f1787fc4 100644 --- a/auto/api/v1/followship.go +++ b/auto/api/v1/followship.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/v1/friendship.go b/auto/api/v1/friendship.go index e6e912fe..78747933 100644 --- a/auto/api/v1/friendship.go +++ b/auto/api/v1/friendship.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 @@ -56,7 +56,7 @@ func RegisterFriendshipServant(e *gin.Engine, s Friendship) { default: } req := new(web.DeleteFriendReq) - if err := s.Bind(c, req); err != nil { + if err := s.BindJson(c, req); err != nil { s.Render(c, nil, err) return } @@ -69,7 +69,7 @@ func RegisterFriendshipServant(e *gin.Engine, s Friendship) { default: } req := new(web.RejectFriendReq) - if err := s.Bind(c, req); err != nil { + if err := s.BindJson(c, req); err != nil { s.Render(c, nil, err) return } @@ -82,7 +82,7 @@ func RegisterFriendshipServant(e *gin.Engine, s Friendship) { default: } req := new(web.AddFriendReq) - if err := s.Bind(c, req); err != nil { + if err := s.BindJson(c, req); err != nil { s.Render(c, nil, err) return } @@ -95,7 +95,7 @@ func RegisterFriendshipServant(e *gin.Engine, s Friendship) { default: } req := new(web.RequestingFriendReq) - if err := s.Bind(c, req); err != nil { + if err := s.BindJson(c, req); err != nil { s.Render(c, nil, err) return } diff --git a/auto/api/v1/loose.go b/auto/api/v1/loose.go index 536c3d1d..80d4f4ae 100644 --- a/auto/api/v1/loose.go +++ b/auto/api/v1/loose.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/v1/priv.go b/auto/api/v1/priv.go index 063f00af..a48ef256 100644 --- a/auto/api/v1/priv.go +++ b/auto/api/v1/priv.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 @@ -20,6 +20,7 @@ type Priv interface { UnfollowTopic(*web.UnfollowTopicReq) mir.Error FollowTopic(*web.FollowTopicReq) mir.Error + PinTopic(*web.PinTopicReq) (*web.PinTopicResp, mir.Error) StickTopic(*web.StickTopicReq) (*web.StickTopicResp, mir.Error) ThumbsDownTweetReply(*web.TweetReplyThumbsReq) mir.Error ThumbsUpTweetReply(*web.TweetReplyThumbsReq) mir.Error @@ -91,6 +92,20 @@ func RegisterPrivServant(e *gin.Engine, s Priv, m ...PrivChain) { } s.Render(c, nil, s.FollowTopic(req)) }) + router.Handle("POST", "/topic/pin", func(c *gin.Context) { + select { + case <-c.Request.Context().Done(): + return + default: + } + req := new(web.PinTopicReq) + if err := s.Bind(c, req); err != nil { + s.Render(c, nil, err) + return + } + resp, err := s.PinTopic(req) + s.Render(c, resp, err) + }) router.Handle("POST", "/topic/stick", func(c *gin.Context) { select { case <-c.Request.Context().Done(): @@ -406,6 +421,10 @@ func (UnimplementedPrivServant) FollowTopic(req *web.FollowTopicReq) mir.Error { return mir.Errorln(http.StatusNotImplemented, http.StatusText(http.StatusNotImplemented)) } +func (UnimplementedPrivServant) PinTopic(req *web.PinTopicReq) (*web.PinTopicResp, mir.Error) { + return nil, mir.Errorln(http.StatusNotImplemented, http.StatusText(http.StatusNotImplemented)) +} + func (UnimplementedPrivServant) StickTopic(req *web.StickTopicReq) (*web.StickTopicResp, mir.Error) { return nil, mir.Errorln(http.StatusNotImplemented, http.StatusText(http.StatusNotImplemented)) } diff --git a/auto/api/v1/pub.go b/auto/api/v1/pub.go index 2a68a600..28abcb46 100644 --- a/auto/api/v1/pub.go +++ b/auto/api/v1/pub.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/v1/relax.go b/auto/api/v1/relax.go index 2cd41803..65aac2aa 100644 --- a/auto/api/v1/relax.go +++ b/auto/api/v1/relax.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/v1/site.go b/auto/api/v1/site.go index 7f4f16cf..ba523c2d 100644 --- a/auto/api/v1/site.go +++ b/auto/api/v1/site.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/v1/trends.go b/auto/api/v1/trends.go index 9576ca84..959fa317 100644 --- a/auto/api/v1/trends.go +++ b/auto/api/v1/trends.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/api/x/v1/user.go b/auto/api/x/v1/user.go index 9de31b49..a6ae9a58 100644 --- a/auto/api/x/v1/user.go +++ b/auto/api/x/v1/user.go @@ -1,6 +1,6 @@ // Code generated by go-mir. DO NOT EDIT. // versions: -// - mir v4.0.0 +// - mir v4.2.0 package v1 diff --git a/auto/connect/core/v1/corev1connect/auth.connect.go b/auto/connect/core/v1/corev1connect/auth.connect.go index f15ea068..50c3d0f8 100644 --- a/auto/connect/core/v1/corev1connect/auth.connect.go +++ b/auto/connect/core/v1/corev1connect/auth.connect.go @@ -5,9 +5,9 @@ package corev1connect import ( + connect "connectrpc.com/connect" context "context" errors "errors" - connect_go "github.com/bufbuild/connect-go" v1 "github.com/rocboss/paopao-ce/auto/rpc/core/v1" http "net/http" strings "strings" @@ -18,7 +18,7 @@ import ( // generated with a version of connect newer than the one compiled into your binary. You can fix the // problem by either regenerating this code with an older version of connect or updating the connect // version compiled into your binary. -const _ = connect_go.IsAtLeastVersion0_1_0 +const _ = connect.IsAtLeastVersion1_13_0 const ( // AuthenticateServiceName is the fully-qualified name of the AuthenticateService service. @@ -44,11 +44,19 @@ const ( AuthenticateServiceLogoutProcedure = "/core.v1.AuthenticateService/logout" ) +// These variables are the protoreflect.Descriptor objects for the RPCs defined in this package. +var ( + authenticateServiceServiceDescriptor = v1.File_core_v1_auth_proto.Services().ByName("AuthenticateService") + authenticateServicePreLoginMethodDescriptor = authenticateServiceServiceDescriptor.Methods().ByName("preLogin") + authenticateServiceLoginMethodDescriptor = authenticateServiceServiceDescriptor.Methods().ByName("login") + authenticateServiceLogoutMethodDescriptor = authenticateServiceServiceDescriptor.Methods().ByName("logout") +) + // AuthenticateServiceClient is a client for the core.v1.AuthenticateService service. type AuthenticateServiceClient interface { - PreLogin(context.Context, *connect_go.Request[v1.User]) (*connect_go.Response[v1.ActionReply], error) - Login(context.Context, *connect_go.Request[v1.User]) (*connect_go.Response[v1.LoginReply], error) - Logout(context.Context, *connect_go.Request[v1.User]) (*connect_go.Response[v1.ActionReply], error) + PreLogin(context.Context, *connect.Request[v1.User]) (*connect.Response[v1.ActionReply], error) + Login(context.Context, *connect.Request[v1.User]) (*connect.Response[v1.LoginReply], error) + Logout(context.Context, *connect.Request[v1.User]) (*connect.Response[v1.ActionReply], error) } // NewAuthenticateServiceClient constructs a client for the core.v1.AuthenticateService service. By @@ -58,54 +66,57 @@ type AuthenticateServiceClient interface { // // The URL supplied here should be the base URL for the Connect or gRPC server (for example, // http://api.acme.com or https://acme.com/grpc). -func NewAuthenticateServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) AuthenticateServiceClient { +func NewAuthenticateServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) AuthenticateServiceClient { baseURL = strings.TrimRight(baseURL, "/") return &authenticateServiceClient{ - preLogin: connect_go.NewClient[v1.User, v1.ActionReply]( + preLogin: connect.NewClient[v1.User, v1.ActionReply]( httpClient, baseURL+AuthenticateServicePreLoginProcedure, - opts..., + connect.WithSchema(authenticateServicePreLoginMethodDescriptor), + connect.WithClientOptions(opts...), ), - login: connect_go.NewClient[v1.User, v1.LoginReply]( + login: connect.NewClient[v1.User, v1.LoginReply]( httpClient, baseURL+AuthenticateServiceLoginProcedure, - opts..., + connect.WithSchema(authenticateServiceLoginMethodDescriptor), + connect.WithClientOptions(opts...), ), - logout: connect_go.NewClient[v1.User, v1.ActionReply]( + logout: connect.NewClient[v1.User, v1.ActionReply]( httpClient, baseURL+AuthenticateServiceLogoutProcedure, - opts..., + connect.WithSchema(authenticateServiceLogoutMethodDescriptor), + connect.WithClientOptions(opts...), ), } } // authenticateServiceClient implements AuthenticateServiceClient. type authenticateServiceClient struct { - preLogin *connect_go.Client[v1.User, v1.ActionReply] - login *connect_go.Client[v1.User, v1.LoginReply] - logout *connect_go.Client[v1.User, v1.ActionReply] + preLogin *connect.Client[v1.User, v1.ActionReply] + login *connect.Client[v1.User, v1.LoginReply] + logout *connect.Client[v1.User, v1.ActionReply] } // PreLogin calls core.v1.AuthenticateService.preLogin. -func (c *authenticateServiceClient) PreLogin(ctx context.Context, req *connect_go.Request[v1.User]) (*connect_go.Response[v1.ActionReply], error) { +func (c *authenticateServiceClient) PreLogin(ctx context.Context, req *connect.Request[v1.User]) (*connect.Response[v1.ActionReply], error) { return c.preLogin.CallUnary(ctx, req) } // Login calls core.v1.AuthenticateService.login. -func (c *authenticateServiceClient) Login(ctx context.Context, req *connect_go.Request[v1.User]) (*connect_go.Response[v1.LoginReply], error) { +func (c *authenticateServiceClient) Login(ctx context.Context, req *connect.Request[v1.User]) (*connect.Response[v1.LoginReply], error) { return c.login.CallUnary(ctx, req) } // Logout calls core.v1.AuthenticateService.logout. -func (c *authenticateServiceClient) Logout(ctx context.Context, req *connect_go.Request[v1.User]) (*connect_go.Response[v1.ActionReply], error) { +func (c *authenticateServiceClient) Logout(ctx context.Context, req *connect.Request[v1.User]) (*connect.Response[v1.ActionReply], error) { return c.logout.CallUnary(ctx, req) } // AuthenticateServiceHandler is an implementation of the core.v1.AuthenticateService service. type AuthenticateServiceHandler interface { - PreLogin(context.Context, *connect_go.Request[v1.User]) (*connect_go.Response[v1.ActionReply], error) - Login(context.Context, *connect_go.Request[v1.User]) (*connect_go.Response[v1.LoginReply], error) - Logout(context.Context, *connect_go.Request[v1.User]) (*connect_go.Response[v1.ActionReply], error) + PreLogin(context.Context, *connect.Request[v1.User]) (*connect.Response[v1.ActionReply], error) + Login(context.Context, *connect.Request[v1.User]) (*connect.Response[v1.LoginReply], error) + Logout(context.Context, *connect.Request[v1.User]) (*connect.Response[v1.ActionReply], error) } // NewAuthenticateServiceHandler builds an HTTP handler from the service implementation. It returns @@ -113,21 +124,24 @@ type AuthenticateServiceHandler interface { // // By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf // and JSON codecs. They also support gzip compression. -func NewAuthenticateServiceHandler(svc AuthenticateServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler) { - authenticateServicePreLoginHandler := connect_go.NewUnaryHandler( +func NewAuthenticateServiceHandler(svc AuthenticateServiceHandler, opts ...connect.HandlerOption) (string, http.Handler) { + authenticateServicePreLoginHandler := connect.NewUnaryHandler( AuthenticateServicePreLoginProcedure, svc.PreLogin, - opts..., + connect.WithSchema(authenticateServicePreLoginMethodDescriptor), + connect.WithHandlerOptions(opts...), ) - authenticateServiceLoginHandler := connect_go.NewUnaryHandler( + authenticateServiceLoginHandler := connect.NewUnaryHandler( AuthenticateServiceLoginProcedure, svc.Login, - opts..., + connect.WithSchema(authenticateServiceLoginMethodDescriptor), + connect.WithHandlerOptions(opts...), ) - authenticateServiceLogoutHandler := connect_go.NewUnaryHandler( + authenticateServiceLogoutHandler := connect.NewUnaryHandler( AuthenticateServiceLogoutProcedure, svc.Logout, - opts..., + connect.WithSchema(authenticateServiceLogoutMethodDescriptor), + connect.WithHandlerOptions(opts...), ) return "/core.v1.AuthenticateService/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { switch r.URL.Path { @@ -146,14 +160,14 @@ func NewAuthenticateServiceHandler(svc AuthenticateServiceHandler, opts ...conne // UnimplementedAuthenticateServiceHandler returns CodeUnimplemented from all methods. type UnimplementedAuthenticateServiceHandler struct{} -func (UnimplementedAuthenticateServiceHandler) PreLogin(context.Context, *connect_go.Request[v1.User]) (*connect_go.Response[v1.ActionReply], error) { - return nil, connect_go.NewError(connect_go.CodeUnimplemented, errors.New("core.v1.AuthenticateService.preLogin is not implemented")) +func (UnimplementedAuthenticateServiceHandler) PreLogin(context.Context, *connect.Request[v1.User]) (*connect.Response[v1.ActionReply], error) { + return nil, connect.NewError(connect.CodeUnimplemented, errors.New("core.v1.AuthenticateService.preLogin is not implemented")) } -func (UnimplementedAuthenticateServiceHandler) Login(context.Context, *connect_go.Request[v1.User]) (*connect_go.Response[v1.LoginReply], error) { - return nil, connect_go.NewError(connect_go.CodeUnimplemented, errors.New("core.v1.AuthenticateService.login is not implemented")) +func (UnimplementedAuthenticateServiceHandler) Login(context.Context, *connect.Request[v1.User]) (*connect.Response[v1.LoginReply], error) { + return nil, connect.NewError(connect.CodeUnimplemented, errors.New("core.v1.AuthenticateService.login is not implemented")) } -func (UnimplementedAuthenticateServiceHandler) Logout(context.Context, *connect_go.Request[v1.User]) (*connect_go.Response[v1.ActionReply], error) { - return nil, connect_go.NewError(connect_go.CodeUnimplemented, errors.New("core.v1.AuthenticateService.logout is not implemented")) +func (UnimplementedAuthenticateServiceHandler) Logout(context.Context, *connect.Request[v1.User]) (*connect.Response[v1.ActionReply], error) { + return nil, connect.NewError(connect.CodeUnimplemented, errors.New("core.v1.AuthenticateService.logout is not implemented")) } diff --git a/auto/connect/greet/v1/greetv1connect/greet.connect.go b/auto/connect/greet/v1/greetv1connect/greet.connect.go index c06f8e69..59d26952 100644 --- a/auto/connect/greet/v1/greetv1connect/greet.connect.go +++ b/auto/connect/greet/v1/greetv1connect/greet.connect.go @@ -5,9 +5,9 @@ package greetv1connect import ( + connect "connectrpc.com/connect" context "context" errors "errors" - connect_go "github.com/bufbuild/connect-go" v1 "github.com/rocboss/paopao-ce/auto/rpc/greet/v1" http "net/http" strings "strings" @@ -18,7 +18,7 @@ import ( // generated with a version of connect newer than the one compiled into your binary. You can fix the // problem by either regenerating this code with an older version of connect or updating the connect // version compiled into your binary. -const _ = connect_go.IsAtLeastVersion0_1_0 +const _ = connect.IsAtLeastVersion1_13_0 const ( // GreetServiceName is the fully-qualified name of the GreetService service. @@ -37,9 +37,15 @@ const ( GreetServiceGreetProcedure = "/greet.v1.GreetService/Greet" ) +// These variables are the protoreflect.Descriptor objects for the RPCs defined in this package. +var ( + greetServiceServiceDescriptor = v1.File_greet_v1_greet_proto.Services().ByName("GreetService") + greetServiceGreetMethodDescriptor = greetServiceServiceDescriptor.Methods().ByName("Greet") +) + // GreetServiceClient is a client for the greet.v1.GreetService service. type GreetServiceClient interface { - Greet(context.Context, *connect_go.Request[v1.GreetRequest]) (*connect_go.Response[v1.GreetResponse], error) + Greet(context.Context, *connect.Request[v1.GreetRequest]) (*connect.Response[v1.GreetResponse], error) } // NewGreetServiceClient constructs a client for the greet.v1.GreetService service. By default, it @@ -49,30 +55,31 @@ type GreetServiceClient interface { // // The URL supplied here should be the base URL for the Connect or gRPC server (for example, // http://api.acme.com or https://acme.com/grpc). -func NewGreetServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) GreetServiceClient { +func NewGreetServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) GreetServiceClient { baseURL = strings.TrimRight(baseURL, "/") return &greetServiceClient{ - greet: connect_go.NewClient[v1.GreetRequest, v1.GreetResponse]( + greet: connect.NewClient[v1.GreetRequest, v1.GreetResponse]( httpClient, baseURL+GreetServiceGreetProcedure, - opts..., + connect.WithSchema(greetServiceGreetMethodDescriptor), + connect.WithClientOptions(opts...), ), } } // greetServiceClient implements GreetServiceClient. type greetServiceClient struct { - greet *connect_go.Client[v1.GreetRequest, v1.GreetResponse] + greet *connect.Client[v1.GreetRequest, v1.GreetResponse] } // Greet calls greet.v1.GreetService.Greet. -func (c *greetServiceClient) Greet(ctx context.Context, req *connect_go.Request[v1.GreetRequest]) (*connect_go.Response[v1.GreetResponse], error) { +func (c *greetServiceClient) Greet(ctx context.Context, req *connect.Request[v1.GreetRequest]) (*connect.Response[v1.GreetResponse], error) { return c.greet.CallUnary(ctx, req) } // GreetServiceHandler is an implementation of the greet.v1.GreetService service. type GreetServiceHandler interface { - Greet(context.Context, *connect_go.Request[v1.GreetRequest]) (*connect_go.Response[v1.GreetResponse], error) + Greet(context.Context, *connect.Request[v1.GreetRequest]) (*connect.Response[v1.GreetResponse], error) } // NewGreetServiceHandler builds an HTTP handler from the service implementation. It returns the @@ -80,11 +87,12 @@ type GreetServiceHandler interface { // // By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf // and JSON codecs. They also support gzip compression. -func NewGreetServiceHandler(svc GreetServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler) { - greetServiceGreetHandler := connect_go.NewUnaryHandler( +func NewGreetServiceHandler(svc GreetServiceHandler, opts ...connect.HandlerOption) (string, http.Handler) { + greetServiceGreetHandler := connect.NewUnaryHandler( GreetServiceGreetProcedure, svc.Greet, - opts..., + connect.WithSchema(greetServiceGreetMethodDescriptor), + connect.WithHandlerOptions(opts...), ) return "/greet.v1.GreetService/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { switch r.URL.Path { @@ -99,6 +107,6 @@ func NewGreetServiceHandler(svc GreetServiceHandler, opts ...connect_go.HandlerO // UnimplementedGreetServiceHandler returns CodeUnimplemented from all methods. type UnimplementedGreetServiceHandler struct{} -func (UnimplementedGreetServiceHandler) Greet(context.Context, *connect_go.Request[v1.GreetRequest]) (*connect_go.Response[v1.GreetResponse], error) { - return nil, connect_go.NewError(connect_go.CodeUnimplemented, errors.New("greet.v1.GreetService.Greet is not implemented")) +func (UnimplementedGreetServiceHandler) Greet(context.Context, *connect.Request[v1.GreetRequest]) (*connect.Response[v1.GreetResponse], error) { + return nil, connect.NewError(connect.CodeUnimplemented, errors.New("greet.v1.GreetService.Greet is not implemented")) } diff --git a/auto/rpc/core/v1/auth.pb.go b/auto/rpc/core/v1/auth.pb.go index c3f6fdae..d319130c 100644 --- a/auto/rpc/core/v1/auth.pb.go +++ b/auto/rpc/core/v1/auth.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: core/v1/auth.proto diff --git a/auto/rpc/greet/v1/greet.pb.go b/auto/rpc/greet/v1/greet.pb.go index ca79b86e..cd0e7fa0 100644 --- a/auto/rpc/greet/v1/greet.pb.go +++ b/auto/rpc/greet/v1/greet.pb.go @@ -1,6 +1,6 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: greet/v1/greet.proto diff --git a/build-allinone.sh b/build-allinone.sh new file mode 100755 index 00000000..06353b81 --- /dev/null +++ b/build-allinone.sh @@ -0,0 +1,26 @@ +#!/bin/sh +# eg.1 : sh build-image.sh +# eg.2, set image: sh build-image.sh bitbus/paopao-ce + +VERSION=`git describe --tags --always | cut -f1,2 -d "-"` # eg.: 0.2.5 +IMAGE="bitbus/paopao-ce" + +if [ -n "$1" ]; then + IMAGE="$1" +fi +if [ -n "$2" ]; then + VERSION="$2" +fi + +# build image +docker buildx build \ + --build-arg USE_DIST="yes" \ + --tag "$IMAGE:all-in-one-${VERSION}" \ + --tag "$IMAGE:all-in-one-latest" \ + . -f Dockerfile.allinone + +# push to image rep +# if [ -n "$1" ]; then +# docker push "$IMAGE:${VERSION}" +# docker push "$IMAGE:latest" +# fi diff --git a/docker-compose.yaml b/docker-compose.yaml index a9e3f578..0a42d705 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -2,7 +2,7 @@ version: '3.1' services: db: - image: mysql:8.0 + image: mysql:${MYSQL_TAG:-8.0} restart: always environment: MYSQL_DATABASE: paopao @@ -33,7 +33,7 @@ services: # - paopao-network # redis: - # image: redis:7.2.1-alpine + # image: redis:${REDIS_TAG:-7.2.1-alpine} # restart: always # ports: # - 6379:6379 @@ -41,7 +41,7 @@ services: # - paopao-network redis: - image: redis/redis-stack:7.2.0-v2 + image: redis/redis-stack:${REDIS_STACK_TAG:-7.2.0-v6} restart: always ports: - 6379:6379 @@ -67,7 +67,7 @@ services: # - paopao-network meili: - image: getmeili/meilisearch:v1.4 + image: getmeili/meilisearch:${MEILI_TAG:-v1.7} restart: always ports: - 7700:7700 @@ -87,7 +87,7 @@ services: # - paopao-network # openobserve: - # image: public.ecr.aws/zinclabs/openobserve:latest + # image: public.ecr.aws/zinclabs/openobserve:${OPENOBSERVE_TAG:-latest} # restart: always # ports: # - 5080:5080 @@ -101,7 +101,7 @@ services: # - paopao-network # pyroscope: - # image: pyroscope/pyroscope:latest + # image: pyroscope/pyroscope:${PYROSCOPE_TAG:-latest} # restart: always # ports: # - 4040:4040 @@ -111,7 +111,7 @@ services: # - paopao-network # phpmyadmin: - # image: phpmyadmin:5.2 + # image: phpmyadmin:${PHPMYADMIN_TAG:-5.2} # depends_on: # - db # ports: @@ -124,7 +124,7 @@ services: # - paopao-network backend: - image: bitbus/paopao-ce:0.5 + image: bitbus/paopao-ce:${PAOPAOCE_TAG:-nightly} restart: always depends_on: - db diff --git a/docker/README.md b/docker/README.md new file mode 100644 index 00000000..00bd2a6e --- /dev/null +++ b/docker/README.md @@ -0,0 +1,3 @@ +# Docker for paopao-ce + +TODO; \ No newline at end of file diff --git a/docker/build/finalize.sh b/docker/build/finalize.sh new file mode 100755 index 00000000..c6fceb82 --- /dev/null +++ b/docker/build/finalize.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +set -xe + +# Create paopao user for paopao-ce +addgroup -S paopao +adduser -G paopao -H -D -g 'paopao User' paopao -h /app -s /bin/sh && usermod -p '*' paopao && passwd -u paopao +# echo "export PAOPAO_CUSTOM=${PAOPAO_CUSTOM}" >> /etc/profile + +# Final cleaning +mv /app/docker/config.yaml /app/config.yaml +rm -rf /app/docker/build +rm /app/docker/README.md diff --git a/docker/config.yaml b/docker/config.yaml new file mode 100644 index 00000000..a3432727 --- /dev/null +++ b/docker/config.yaml @@ -0,0 +1,71 @@ +App: # APP基础设置项 + RunMode: debug + AttachmentIncomeRate: 0.8 + MaxCommentCount: 10 + DefaultContextTimeout: 60 + DefaultPageSize: 10 + MaxPageSize: 100 +Features: + Default: ["Web", "Frontend:EmbedWeb", "Meili", "LocalOSS", "Sqlite3", "LoggerFile", "Migration"] + Sms: "SmsJuhe" +WebServer: # Web服务 + HttpIp: 0.0.0.0 + HttpPort: 8008 + ReadTimeout: 60 + WriteTimeout: 60 +SmsJuhe: + Gateway: https://v.juhe.cn/sms/send + Key: + TplID: + TplVal: "#code#=%s&#m#=%d" +Logger: # 日志通用配置 + Level: debug # 日志级别 panic|fatal|error|warn|info|debug|trace +LoggerFile: # 使用File写日志 + SavePath: custom/logs + FileName: app + FileExt: .log +JWT: # 鉴权加密 + Secret: 18a6413dc4fe394c66345ebe501b2f26 + Issuer: paopao-api + Expire: 86400 +Meili: # Meili搜索配置 + Host: 127.0.0.1:7700 + Index: paopao-data + ApiKey: paopao-meilisearch + Secure: False +ObjectStorage: # 对象存储通用配置 + RetainInDays: 2 # 临时对象过期时间多少天 + TempDir: tmp # 临时对象存放目录名 +LocalOSS: # 本地文件OSS存储配置 + SavePath: custom/oss + Secure: False + Bucket: paopao + Domain: 127.0.0.1:8008 +Database: # Database通用配置 + LogLevel: error # 日志级别 silent|error|warn|info + TablePrefix: p_ # 表名前缀 +Sqlite3: # Sqlite3数据库 + Path: custom/paopao-ce.db +Redis: + InitAddress: + - 127.0.0.1:6379 +WebProfile: + UseFriendship: true # 前端是否使用好友体系 + EnableTrendsBar: true # 广场页面是否开启动态条栏功能 + EnableWallet: false # 是否开启钱包功能 + AllowTweetAttachment: true # 是否允许推文附件 + AllowTweetAttachmentPrice: true # 是否允许推文付费附件 + AllowTweetVideo: true # 是否允许视频推文 + AllowUserRegister: true # 是否允许用户注册 + AllowPhoneBind: true # 是否允许手机绑定 + DefaultTweetMaxLength: 2000 # 推文允许输入的最大长度, 默认2000字,值的范围需要查询后端支持的最大字数 + TweetWebEllipsisSize: 400 # Web端推文作为feed显示的最长字数,默认400字 + TweetMobileEllipsisSize: 300 # 移动端推文作为feed显示的最长字数,默认300字 + DefaultTweetVisibility: friend # 推文可见性,默认好友可见 值: public/following/friend/private + DefaultMsgLoopInterval: 5000 # 拉取未读消息的间隔,单位:毫秒, 默认5000ms + CopyrightTop: "2023 paopao.info" + CopyrightLeft: "Roc's Me" + CopyrightLeftLink: "" + CopyrightRight: "泡泡(PaoPao)开源社区" + CopyrightRightLink: "https://www.paopao.info" + \ No newline at end of file diff --git a/docker/s6/.s6-svscan/finish b/docker/s6/.s6-svscan/finish new file mode 100755 index 00000000..73c191ab --- /dev/null +++ b/docker/s6/.s6-svscan/finish @@ -0,0 +1,3 @@ +#!/bin/sh + +# do nothing now diff --git a/docker/s6/meilisearch/run b/docker/s6/meilisearch/run new file mode 100755 index 00000000..573fd242 --- /dev/null +++ b/docker/s6/meilisearch/run @@ -0,0 +1,8 @@ +#!/bin/sh + +if test -f ./setup; then + # shellcheck disable=SC2039,SC1091,SC3046 + source ./setup +fi + +exec gosu ${USER} /bin/meilisearch diff --git a/docker/s6/meilisearch/setup b/docker/s6/meilisearch/setup new file mode 100755 index 00000000..21239fd5 --- /dev/null +++ b/docker/s6/meilisearch/setup @@ -0,0 +1,3 @@ +#!/bin/sh + +cd /app/meili_data || exit 1 diff --git a/docker/s6/paopao-ce/run b/docker/s6/paopao-ce/run new file mode 100755 index 00000000..367e6cc4 --- /dev/null +++ b/docker/s6/paopao-ce/run @@ -0,0 +1,8 @@ +#!/bin/sh + +if test -f ./setup; then + # shellcheck disable=SC2039,SC1091,SC3046 + source ./setup +fi + +exec gosu ${USER} /app/paopao serve diff --git a/docker/s6/paopao-ce/setup b/docker/s6/paopao-ce/setup new file mode 100755 index 00000000..790a945d --- /dev/null +++ b/docker/s6/paopao-ce/setup @@ -0,0 +1,5 @@ +#!/bin/sh + +# sleep 10s等待meilisearch启动完成,这是笨方法,暂时先凑着,后面再找更靠谱的法子;这里之所以要等待meili启动完成,是因为paopao-ce首次启动时需要初始化一次meili的index,如果初始化失败就无法在后续使用。 +sleep 10 +cd /app || exit 1 diff --git a/docker/s6/redis/run b/docker/s6/redis/run new file mode 100755 index 00000000..02b7528b --- /dev/null +++ b/docker/s6/redis/run @@ -0,0 +1,8 @@ +#!/bin/sh + +if test -f ./setup; then + # shellcheck disable=SC2039,SC1091,SC3046 + source ./setup +fi + +exec docker-entrypoint.sh redis-server diff --git a/docker/start.sh b/docker/start.sh new file mode 100755 index 00000000..e767b9ea --- /dev/null +++ b/docker/start.sh @@ -0,0 +1,35 @@ +#!/bin/sh + +create_volume_subfolder() { + # only change ownership if needed, if using an nfs mount this could be expensive + if [ "$USER:$USER" != "$(stat /app -c '%U:%G')" ] + then + # Modify the owner of /app dir, make $USER(paopao) user have permission to create sub-dir in /app. + chown -R "$USER:$USER" /app + fi + + # Create VOLUME subfolder + for f in /app/custom /app/meili_data; do + if ! test -d $f; then + gosu "$USER" mkdir -p $f + fi + done +} + +setids() { + export USER=paopao + PUID=${PUID:-1000} + PGID=${PGID:-1000} + groupmod -o -g "$PGID" $USER + usermod -o -u "$PUID" $USER +} + +setids +create_volume_subfolder + +# Exec CMD or S6 by default if nothing present +if [ $# -gt 0 ];then + exec "$@" +else + exec /bin/s6-svscan /app/gogs/docker/s6/ +fi diff --git a/go.mod b/go.mod index 694c4964..705be911 100644 --- a/go.mod +++ b/go.mod @@ -1,111 +1,112 @@ module github.com/rocboss/paopao-ce -go 1.20 +go 1.21 require ( + connectrpc.com/connect v1.16.2 github.com/Masterminds/semver/v3 v3.2.1 - github.com/RoaringBitmap/roaring v1.5.0 + github.com/RoaringBitmap/roaring v1.9.4 github.com/afocus/captcha v0.0.0-20191010092841-4bd1f21c8868 - github.com/alimy/mir/v4 v4.0.0 - github.com/alimy/tryst v0.8.3 - github.com/aliyun/aliyun-oss-go-sdk v2.2.9+incompatible + github.com/alimy/mir/v4 v4.2.0-alpha.5 + github.com/alimy/tryst v0.21.0 + github.com/aliyun/aliyun-oss-go-sdk v3.0.2+incompatible github.com/allegro/bigcache/v3 v3.1.0 - github.com/bufbuild/connect-go v1.10.0 - github.com/bytedance/sonic v1.10.1 - github.com/cockroachdb/errors v1.11.1 + github.com/bytedance/sonic v1.11.9 + github.com/cockroachdb/errors v1.11.3 github.com/disintegration/imaging v1.6.2 - github.com/fatih/color v1.15.0 - github.com/getsentry/sentry-go v0.24.1 - github.com/gin-contrib/cors v1.4.0 - github.com/gin-gonic/gin v1.9.1 - github.com/go-resty/resty/v2 v2.9.1 - github.com/goccy/go-json v0.10.2 - github.com/gofrs/uuid/v5 v5.0.0 - github.com/golang-jwt/jwt/v5 v5.0.0 - github.com/golang-migrate/migrate/v4 v4.15.2 - github.com/huaweicloud/huaweicloud-sdk-go-obs v3.23.9+incompatible + github.com/fatih/color v1.17.0 + github.com/getsentry/sentry-go v0.28.1 + github.com/gin-contrib/cors v1.7.2 + github.com/gin-gonic/gin v1.10.0 + github.com/go-resty/resty/v2 v2.12.0 + github.com/goccy/go-json v0.10.3 + github.com/gofrs/uuid/v5 v5.2.0 + github.com/golang-jwt/jwt/v5 v5.2.1 + github.com/golang-migrate/migrate/v4 v4.17.1 + github.com/grafana/pyroscope-go v1.1.2 + github.com/huaweicloud/huaweicloud-sdk-go-obs v3.24.6+incompatible github.com/json-iterator/go v1.1.12 - github.com/meilisearch/meilisearch-go v0.25.1 - github.com/minio/minio-go/v7 v7.0.63 - github.com/onsi/ginkgo/v2 v2.12.1 - github.com/onsi/gomega v1.28.0 - github.com/prometheus/client_golang v1.16.0 - github.com/pyroscope-io/client v0.7.2 - github.com/redis/rueidis v1.0.19 + github.com/meilisearch/meilisearch-go v0.27.2 + github.com/minio/minio-go/v7 v7.0.66 + github.com/onsi/ginkgo/v2 v2.19.0 + github.com/onsi/gomega v1.33.1 + github.com/prometheus/client_golang v1.19.1 + github.com/redis/rueidis v1.0.37 github.com/robfig/cron/v3 v3.0.1 github.com/sirupsen/logrus v1.9.3 - github.com/smartwalle/alipay/v3 v3.2.16 + github.com/smartwalle/alipay/v3 v3.2.20 github.com/sourcegraph/conc v0.3.0 - github.com/spf13/cobra v1.7.0 - github.com/spf13/viper v1.16.0 - github.com/tencentyun/cos-go-sdk-v5 v0.7.43 + github.com/spf13/cobra v1.8.1 + github.com/spf13/viper v1.18.2 + github.com/tencentyun/cos-go-sdk-v5 v0.7.52 github.com/yinheli/mahonia v0.0.0-20131226213531-0eef680515cc go.uber.org/automaxprocs v1.5.3 - google.golang.org/grpc v1.58.2 - google.golang.org/protobuf v1.31.0 + golang.org/x/crypto v0.25.0 + google.golang.org/grpc v1.64.0 + google.golang.org/protobuf v1.34.1 gopkg.in/natefinch/lumberjack.v2 v2.2.1 gopkg.in/resty.v1 v1.12.0 - gorm.io/driver/mysql v1.5.1 - gorm.io/driver/postgres v1.5.2 - gorm.io/driver/sqlite v1.5.3 - gorm.io/gorm v1.25.4 - gorm.io/plugin/dbresolver v1.4.7 + gorm.io/driver/mysql v1.5.6 + gorm.io/driver/postgres v1.5.7 + gorm.io/driver/sqlite v1.5.6 + gorm.io/gorm v1.25.10 + gorm.io/plugin/dbresolver v1.5.1 gorm.io/plugin/soft_delete v1.2.1 - modernc.org/sqlite v1.26.0 + modernc.org/sqlite v1.29.6 ) require ( - github.com/andybalholm/brotli v1.0.5 // indirect + github.com/andybalholm/brotli v1.1.0 // indirect github.com/beorn7/perks v1.0.1 // indirect - github.com/bits-and-blooms/bitset v1.2.0 // indirect + github.com/bits-and-blooms/bitset v1.12.0 // indirect + github.com/bytedance/sonic/loader v0.1.1 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect - github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect - github.com/chenzhuoyu/iasm v0.9.0 // indirect github.com/clbanning/mxj v1.8.4 // indirect + github.com/cloudwego/base64x v0.1.4 // indirect + github.com/cloudwego/iasm v0.2.0 // indirect github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect github.com/cockroachdb/redact v1.1.5 // indirect github.com/dustin/go-humanize v1.0.1 // indirect - github.com/fsnotify/fsnotify v1.6.0 // indirect - github.com/gabriel-vasile/mimetype v1.4.2 // indirect + github.com/fsnotify/fsnotify v1.7.0 // indirect + github.com/gabriel-vasile/mimetype v1.4.3 // indirect github.com/gin-contrib/sse v0.1.0 // indirect - github.com/go-logr/logr v1.2.4 // indirect + github.com/go-logr/logr v1.4.1 // indirect github.com/go-playground/locales v0.14.1 // indirect github.com/go-playground/universal-translator v0.18.1 // indirect - github.com/go-playground/validator/v10 v10.14.0 // indirect + github.com/go-playground/validator/v10 v10.20.0 // indirect github.com/go-sql-driver/mysql v1.7.0 // indirect - github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect + github.com/go-task/slim-sprig/v3 v3.0.0 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/golang-jwt/jwt/v4 v4.5.0 // indirect github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect - github.com/golang/protobuf v1.5.3 // indirect - github.com/google/go-cmp v0.5.9 // indirect + github.com/google/go-cmp v0.6.0 // indirect github.com/google/go-querystring v1.1.0 // indirect - github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect - github.com/google/uuid v1.3.0 // indirect + github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 // indirect + github.com/google/uuid v1.6.0 // indirect + github.com/grafana/pyroscope-go/godeltaprof v0.1.8 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect - github.com/hashicorp/golang-lru/v2 v2.0.6 // indirect + github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/jackc/pgpassfile v1.0.0 // indirect github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect - github.com/jackc/pgx/v5 v5.3.1 // indirect + github.com/jackc/pgx/v5 v5.5.4 // indirect + github.com/jackc/puddle/v2 v2.2.1 // indirect github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect github.com/josharian/intern v1.0.0 // indirect - github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect - github.com/klauspost/compress v1.16.7 // indirect - github.com/klauspost/cpuid/v2 v2.2.5 // indirect + github.com/klauspost/compress v1.17.8 // indirect + github.com/klauspost/cpuid/v2 v2.2.7 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect - github.com/leodido/go-urn v1.2.4 // indirect - github.com/lib/pq v1.10.0 // indirect + github.com/leodido/go-urn v1.4.0 // indirect + github.com/lib/pq v1.10.9 // indirect github.com/magiconair/properties v1.8.7 // indirect github.com/mailru/easyjson v0.7.7 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.19 // indirect - github.com/mattn/go-sqlite3 v1.14.17 // indirect - github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/mattn/go-sqlite3 v1.14.22 // indirect github.com/minio/md5-simd v1.1.2 // indirect github.com/minio/sha256-simd v1.0.1 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect @@ -113,47 +114,46 @@ require ( github.com/modern-go/reflect2 v1.0.2 // indirect github.com/mozillazg/go-httpheader v0.2.1 // indirect github.com/mschoch/smat v0.2.0 // indirect - github.com/pelletier/go-toml/v2 v2.0.8 // indirect + github.com/ncruces/go-strftime v0.1.9 // indirect + github.com/pelletier/go-toml/v2 v2.2.2 // indirect github.com/pkg/errors v0.9.1 // indirect - github.com/prometheus/client_model v0.3.0 // indirect - github.com/prometheus/common v0.42.0 // indirect - github.com/prometheus/procfs v0.10.1 // indirect - github.com/pyroscope-io/godeltaprof v0.1.2 // indirect + github.com/prometheus/client_model v0.5.0 // indirect + github.com/prometheus/common v0.48.0 // indirect + github.com/prometheus/procfs v0.12.0 // indirect github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect - github.com/rogpeppe/go-internal v1.9.0 // indirect + github.com/rogpeppe/go-internal v1.10.0 // indirect github.com/rs/xid v1.5.0 // indirect - github.com/smartwalle/ncrypto v1.0.3 // indirect - github.com/smartwalle/ngx v1.0.7 // indirect - github.com/smartwalle/nsign v1.0.8 // indirect - github.com/spf13/afero v1.9.5 // indirect - github.com/spf13/cast v1.5.1 // indirect - github.com/spf13/jwalterweatherman v1.1.0 // indirect + github.com/sagikazarmark/locafero v0.4.0 // indirect + github.com/sagikazarmark/slog-shim v0.1.0 // indirect + github.com/smartwalle/ncrypto v1.0.4 // indirect + github.com/smartwalle/ngx v1.0.9 // indirect + github.com/smartwalle/nsign v1.0.9 // indirect + github.com/spf13/afero v1.11.0 // indirect + github.com/spf13/cast v1.6.0 // indirect github.com/spf13/pflag v1.0.5 // indirect - github.com/subosito/gotenv v1.4.2 // indirect + github.com/subosito/gotenv v1.6.0 // indirect github.com/twitchyliquid64/golang-asm v0.15.1 // indirect - github.com/ugorji/go/codec v1.2.11 // indirect + github.com/ugorji/go/codec v1.2.12 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect - github.com/valyala/fasthttp v1.40.0 // indirect + github.com/valyala/fasthttp v1.52.0 // indirect go.uber.org/atomic v1.9.0 // indirect - golang.org/x/arch v0.3.0 // indirect - golang.org/x/crypto v0.13.0 // indirect + go.uber.org/multierr v1.9.0 // indirect + golang.org/x/arch v0.8.0 // indirect + golang.org/x/exp v0.0.0-20231108232855-2478ac86f678 // indirect golang.org/x/image v0.0.0-20210216034530-4410531fe030 // indirect - golang.org/x/mod v0.12.0 // indirect - golang.org/x/net v0.15.0 // indirect - golang.org/x/sys v0.12.0 // indirect - golang.org/x/text v0.13.0 // indirect - golang.org/x/time v0.3.0 // indirect - golang.org/x/tools v0.12.0 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 // indirect + golang.org/x/net v0.25.0 // indirect + golang.org/x/sync v0.7.0 // indirect + golang.org/x/sys v0.22.0 // indirect + golang.org/x/text v0.16.0 // indirect + golang.org/x/time v0.5.0 // indirect + golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect - lukechampine.com/uint128 v1.2.0 // indirect - modernc.org/cc/v3 v3.40.0 // indirect - modernc.org/ccgo/v3 v3.16.13 // indirect - modernc.org/libc v1.24.1 // indirect - modernc.org/mathutil v1.5.0 // indirect - modernc.org/memory v1.6.0 // indirect - modernc.org/opt v0.1.3 // indirect - modernc.org/strutil v1.1.3 // indirect - modernc.org/token v1.0.1 // indirect + modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect + modernc.org/libc v1.41.0 // indirect + modernc.org/mathutil v1.6.0 // indirect + modernc.org/memory v1.7.2 // indirect + modernc.org/strutil v1.2.0 // indirect + modernc.org/token v1.1.0 // indirect ) diff --git a/go.sum b/go.sum index 0fc6b105..a3bcd033 100644 --- a/go.sum +++ b/go.sum @@ -1,2182 +1,475 @@ -bazil.org/fuse v0.0.0-20160811212531-371fbbdaa898/go.mod h1:Xbm+BRKSBEpa4q4hTSxohYNQpsxXPbPry4JJWOB3LB8= -bazil.org/fuse v0.0.0-20200407214033-5883e5a4b512/go.mod h1:FbcW6z/2VytnFDhZfumh8Ss8zxHE6qpMP5sHTRe0EaM= -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= -cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= -cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= -cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= -cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= -cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= -cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= -cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= -cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= -cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= -cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= -cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= -cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= -cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= -cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= -cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= -cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= -cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= -cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= -cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= -cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= -cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= -cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go v0.98.0/go.mod h1:ua6Ush4NALrHk5QXDWnjvZHN93OuF0HfuEPq9I1X0cM= -cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= -cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= -cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= -cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= -cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= -cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= -cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= -cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/firestore v1.1.0/go.mod h1:ulACoGHTpvq5r8rxGJ4ddJZBZqakUQqClKRT5SZwBmk= -cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= -cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= -cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= -cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/spanner v1.28.0/go.mod h1:7m6mtQZn/hMbMfx62ct5EWrGND4DNqkXyrmBPRS+OJo= -cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= -cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= -cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= -cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= -cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= -github.com/AdaLogics/go-fuzz-headers v0.0.0-20210715213245-6c3934b029d8/go.mod h1:CzsSbkDixRphAF5hS6wbMKq0eI6ccJRb7/A0M6JBnwg= -github.com/Azure/azure-pipeline-go v0.2.3/go.mod h1:x841ezTBIMG6O3lAcl8ATHnsOPVl2bqk7S3ta6S6u4k= -github.com/Azure/azure-sdk-for-go v16.2.1+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= -github.com/Azure/azure-storage-blob-go v0.14.0/go.mod h1:SMqIBi+SuiQH32bvyjngEewEeXoPfKMgWlBDaYf6fck= -github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= -github.com/Azure/go-ansiterm v0.0.0-20210608223527-2377c96fe795/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= -github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 h1:UQHMgLO+TxOElx5B5HZ4hJQsoJ/PvUvKRhJHDQXO8P8= -github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= -github.com/Azure/go-autorest v10.8.1+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= -github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24= -github.com/Azure/go-autorest/autorest v0.11.1/go.mod h1:JFgpikqFJ/MleTTxwepExTKnFUKKszPS8UavbQYUMuw= -github.com/Azure/go-autorest/autorest v0.11.18/go.mod h1:dSiJPy22c3u0OtOKDNttNgqpNFY/GeWa7GH/Pz56QRA= -github.com/Azure/go-autorest/autorest/adal v0.9.0/go.mod h1:/c022QCutn2P7uY+/oQWWNcK9YU+MH96NgK+jErpbcg= -github.com/Azure/go-autorest/autorest/adal v0.9.5/go.mod h1:B7KF7jKIeC9Mct5spmyCB/A8CG/sEz1vwIRGv/bbw7A= -github.com/Azure/go-autorest/autorest/adal v0.9.13/go.mod h1:W/MM4U6nLxnIskrw4UwWzlHfGjwUS50aOsc/I3yuU8M= -github.com/Azure/go-autorest/autorest/adal v0.9.16/go.mod h1:tGMin8I49Yij6AQ+rvV+Xa/zwxYQB5hmsd6DkfAx2+A= -github.com/Azure/go-autorest/autorest/date v0.3.0/go.mod h1:BI0uouVdmngYNUzGWeSYnokU+TrmwEsOqdt8Y6sso74= -github.com/Azure/go-autorest/autorest/mocks v0.4.0/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k= -github.com/Azure/go-autorest/autorest/mocks v0.4.1/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k= -github.com/Azure/go-autorest/logger v0.2.0/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= -github.com/Azure/go-autorest/logger v0.2.1/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8= -github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/ClickHouse/clickhouse-go v1.4.3/go.mod h1:EaI/sW7Azgz9UATzd5ZdZHRUhHgv5+JMS9NSr2smCJI= +connectrpc.com/connect v1.16.2 h1:ybd6y+ls7GOlb7Bh5C8+ghA6SvCBajHwxssO2CGFjqE= +connectrpc.com/connect v1.16.2/go.mod h1:n2kgwskMHXC+lVqb18wngEpF95ldBHXjZYJussz5FRc= +github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0= +github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/Masterminds/semver/v3 v3.2.1 h1:RN9w6+7QoMeJVGyfmbcgs28Br8cvmnucEXnY0rYXWg0= github.com/Masterminds/semver/v3 v3.2.1/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ= -github.com/Microsoft/go-winio v0.4.11/go.mod h1:VhR8bwka0BXejwEJY73c50VrPtXAaKcyvVC4A4RozmA= -github.com/Microsoft/go-winio v0.4.14/go.mod h1:qXqCSQ3Xa7+6tgxaGTIe4Kpcdsi+P8jBhyzoq1bpyYA= -github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5/go.mod h1:tTuCMEN+UleMWgg9dVx4Hu52b1bJo+59jBh3ajtinzw= -github.com/Microsoft/go-winio v0.4.16-0.20201130162521-d1ffc52c7331/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0= -github.com/Microsoft/go-winio v0.4.16/go.mod h1:XB6nPKklQyQ7GC9LdcBEcBl8PF76WugXOPRXwdLnMv0= -github.com/Microsoft/go-winio v0.4.17-0.20210211115548-6eac466e5fa3/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84= -github.com/Microsoft/go-winio v0.4.17-0.20210324224401-5516f17a5958/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84= -github.com/Microsoft/go-winio v0.4.17/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84= -github.com/Microsoft/go-winio v0.5.1/go.mod h1:JPGBdM1cNvN/6ISo+n8V5iA4v8pBzdOpzfwIujj1a84= -github.com/Microsoft/go-winio v0.5.2 h1:a9IhgEQBCUEk6QCdml9CiJGhAws+YwffDHEMp1VMrpA= -github.com/Microsoft/go-winio v0.5.2/go.mod h1:WpS1mjBmmwHBEWmogvA2mj8546UReBk4v8QkMxJ6pZY= -github.com/Microsoft/hcsshim v0.8.6/go.mod h1:Op3hHsoHPAvb6lceZHDtd9OkTew38wNoXnJs8iY7rUg= -github.com/Microsoft/hcsshim v0.8.7-0.20190325164909-8abdbb8205e4/go.mod h1:Op3hHsoHPAvb6lceZHDtd9OkTew38wNoXnJs8iY7rUg= -github.com/Microsoft/hcsshim v0.8.7/go.mod h1:OHd7sQqRFrYd3RmSgbgji+ctCwkbq2wbEYNSzOYtcBQ= -github.com/Microsoft/hcsshim v0.8.9/go.mod h1:5692vkUqntj1idxauYlpoINNKeqCiG6Sg38RRsjT5y8= -github.com/Microsoft/hcsshim v0.8.14/go.mod h1:NtVKoYxQuTLx6gEq0L96c9Ju4JbRJ4nY2ow3VK6a9Lg= -github.com/Microsoft/hcsshim v0.8.15/go.mod h1:x38A4YbHbdxJtc0sF6oIz+RG0npwSCAvn69iY6URG00= -github.com/Microsoft/hcsshim v0.8.16/go.mod h1:o5/SZqmR7x9JNKsW3pu+nqHm0MF8vbA+VxGOoXdC600= -github.com/Microsoft/hcsshim v0.8.20/go.mod h1:+w2gRZ5ReXQhFOrvSQeNfhrYB/dg3oDwTOcER2fw4I4= -github.com/Microsoft/hcsshim v0.8.21/go.mod h1:+w2gRZ5ReXQhFOrvSQeNfhrYB/dg3oDwTOcER2fw4I4= -github.com/Microsoft/hcsshim v0.8.23/go.mod h1:4zegtUJth7lAvFyc6cH2gGQ5B3OFQim01nnU2M8jKDg= -github.com/Microsoft/hcsshim v0.9.2/go.mod h1:7pLA8lDk46WKDWlVsENo92gC0XFa8rbKfyFRBqxEbCc= -github.com/Microsoft/hcsshim/test v0.0.0-20201218223536-d3e5debf77da/go.mod h1:5hlzMzRKMLyo42nCZ9oml8AdTlq/0cvIaBv6tK1RehU= -github.com/Microsoft/hcsshim/test v0.0.0-20210227013316-43a75bb4edd3/go.mod h1:mw7qgWloBUl75W/gVH3cQszUg1+gUITj7D6NY7ywVnY= -github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ= -github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c= -github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/PuerkitoBio/purell v1.0.0/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= -github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0= -github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= -github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE= +github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow= +github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/QcloudApi/qcloud_sign_golang v0.0.0-20141224014652-e4130a326409/go.mod h1:1pk82RBxDY/JZnPQrtqHlUFfCctgdorsd9M06fMynOM= -github.com/RoaringBitmap/roaring v1.5.0 h1:V0VCSiHjroItEYCM3guC8T83ehi5QMt3oM9EefTTOms= -github.com/RoaringBitmap/roaring v1.5.0/go.mod h1:plvDsJQpxOC5bw8LRteu/MLWHsHez/3y6cubLI4/1yE= -github.com/Shopify/logrus-bugsnag v0.0.0-20171204204709-577dee27f20d/go.mod h1:HI8ITrYtUY+O+ZhtlqUnD8+KwNPOyugEhfP9fdUIaEQ= +github.com/RoaringBitmap/roaring v1.9.4 h1:yhEIoH4YezLYT04s1nHehNO64EKFTop/wBhxv2QzDdQ= +github.com/RoaringBitmap/roaring v1.9.4/go.mod h1:6AXUsoIEzDTFFQCe1RbGA6uFONMhvejWj5rqITANK90= github.com/afocus/captcha v0.0.0-20191010092841-4bd1f21c8868 h1:uFrPOl1VBt/Abfl2z+A/DFc+AwmFLxEHR1+Yq6cXvww= github.com/afocus/captcha v0.0.0-20191010092841-4bd1f21c8868/go.mod h1:srphKZ1i+yGXxl/LpBS7ZIECTjCTPzZzAMtJWoG3sLo= -github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= -github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= -github.com/alexflint/go-filemutex v0.0.0-20171022225611-72bdc8eae2ae/go.mod h1:CgnQgUtFrFz9mxFNtED3jI5tLDjKlOM+oUF/sTk6ps0= -github.com/alexflint/go-filemutex v1.1.0/go.mod h1:7P4iRhttt/nUvUOrYIhcpMzv2G6CY9UnI16Z+UJqRyk= -github.com/alimy/mir/v4 v4.0.0 h1:MzGfmoLjjvR69jbZEmpKJO3tUuqB0RGRv1UWPbtukBg= -github.com/alimy/mir/v4 v4.0.0/go.mod h1:d58dBvw2KImcVbAUANrciEV/of0arMNsI9c/5UNCMMc= -github.com/alimy/tryst v0.8.3 h1:k54a9YesCGUTqfyDp9NL55TI8CxIj8HNJZyzbIoNab8= -github.com/alimy/tryst v0.8.3/go.mod h1:ua2eJbFrisHPh7z93Bgc0jNBE8Khu1SCx2p/6t3OzZI= -github.com/aliyun/aliyun-oss-go-sdk v2.2.9+incompatible h1:Sg/2xHwDrioHpxTN6WMiwbXTpUEinBpHsN7mG21Rc2k= -github.com/aliyun/aliyun-oss-go-sdk v2.2.9+incompatible/go.mod h1:T/Aws4fEfogEE9v+HPhhw+CntffsBHJ8nXQCwKr0/g8= +github.com/alimy/mir/v4 v4.2.0-alpha.5 h1:ExSJpbFzKX3Avk1CoTOU3OLyvo4PTB2SnTSQXfeJNIc= +github.com/alimy/mir/v4 v4.2.0-alpha.5/go.mod h1:d58dBvw2KImcVbAUANrciEV/of0arMNsI9c/5UNCMMc= +github.com/alimy/tryst v0.21.0 h1:0J5kPdBNXmepw5y8Npyg0tffjqtyy7na7PIzyM9AtGc= +github.com/alimy/tryst v0.21.0/go.mod h1:99hpfoQRvOSsXC+zBTX5aF44qOhxGH0ZkJ1Pw2JTtPA= +github.com/aliyun/aliyun-oss-go-sdk v3.0.2+incompatible h1:8psS8a+wKfiLt1iVDX79F7Y6wUM49Lcha2FMXt4UM8g= +github.com/aliyun/aliyun-oss-go-sdk v3.0.2+incompatible/go.mod h1:T/Aws4fEfogEE9v+HPhhw+CntffsBHJ8nXQCwKr0/g8= github.com/allegro/bigcache/v3 v3.1.0 h1:H2Vp8VOvxcrB91o86fUSVJFqeuz8kpyyB02eH3bSzwk= github.com/allegro/bigcache/v3 v3.1.0/go.mod h1:aPyh7jEvrog9zAwx5N7+JUQX5dZTSGpxF1LAR4dr35I= github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= -github.com/andybalholm/brotli v1.0.5 h1:8uQZIdzKmjc/iuPu7O2ioW48L81FgatrcpfFmiq/cCs= -github.com/andybalholm/brotli v1.0.5/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= -github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/apache/arrow/go/arrow v0.0.0-20210818145353-234c94e4ce64/go.mod h1:2qMFB56yOP3KzkB3PbYZ4AlUFg3a88F67TIx5lB/WwY= -github.com/apache/arrow/go/arrow v0.0.0-20211013220434-5962184e7a30/go.mod h1:Q7yQnSMnLvcXlZ8RV+jwz/6y1rQTqbX6C82SndT52Zs= -github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= -github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= -github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= -github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= -github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= -github.com/aws/aws-sdk-go v1.15.11/go.mod h1:mFuSZ37Z9YOHbQEwBWztmVzqXrEkub65tZoCYDt7FT0= -github.com/aws/aws-sdk-go v1.17.7/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go-v2 v1.8.0/go.mod h1:xEFuWz+3TYdlPRuo+CqATbeDWIWyaT5uAPwPaWtgse0= -github.com/aws/aws-sdk-go-v2 v1.9.2/go.mod h1:cK/D0BBs0b/oWPIcX/Z/obahJK1TT7IPVjy53i/mX/4= -github.com/aws/aws-sdk-go-v2/config v1.6.0/go.mod h1:TNtBVmka80lRPk5+S9ZqVfFszOQAGJJ9KbT3EM3CHNU= -github.com/aws/aws-sdk-go-v2/config v1.8.3/go.mod h1:4AEiLtAb8kLs7vgw2ZV3p2VZ1+hBavOc84hqxVNpCyw= -github.com/aws/aws-sdk-go-v2/credentials v1.3.2/go.mod h1:PACKuTJdt6AlXvEq8rFI4eDmoqDFC5DpVKQbWysaDgM= -github.com/aws/aws-sdk-go-v2/credentials v1.4.3/go.mod h1:FNNC6nQZQUuyhq5aE5c7ata8o9e4ECGmS4lAXC7o1mQ= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.4.0/go.mod h1:Mj/U8OpDbcVcoctrYwA2bak8k/HFPdcLzI/vaiXMwuM= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.6.0/go.mod h1:gqlclDEZp4aqJOancXK6TN24aKhT0W0Ae9MHk3wzTMM= -github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.4.0/go.mod h1:eHwXu2+uE/T6gpnYWwBwqoeqRf9IXyCcolyOWDRAErQ= -github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.5.4/go.mod h1:Ex7XQmbFmgFHrjUX6TN3mApKW5Hglyga+F7wZHTtYhA= -github.com/aws/aws-sdk-go-v2/internal/ini v1.2.0/go.mod h1:Q5jATQc+f1MfZp3PDMhn6ry18hGvE0i8yvbXoKbnZaE= -github.com/aws/aws-sdk-go-v2/internal/ini v1.2.4/go.mod h1:ZcBrrI3zBKlhGFNYWvju0I3TR93I7YIgAfy82Fh4lcQ= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.2.2/go.mod h1:EASdTcM1lGhUe1/p4gkojHwlGJkeoRjjr1sRCzup3Is= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.3.0/go.mod h1:v8ygadNyATSm6elwJ/4gzJwcFhri9RqS8skgHKiwXPU= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.2.2/go.mod h1:NXmNI41bdEsJMrD0v9rUvbGCB5GwdBEpKvUvIY3vTFg= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.3.2/go.mod h1:72HRZDLMtmVQiLG2tLfQcaWLCssELvGl+Zf2WVxMmR8= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.5.2/go.mod h1:QuL2Ym8BkrLmN4lUofXYq6000/i5jPjosCNK//t6gak= -github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.7.2/go.mod h1:np7TMuJNT83O0oDOSF8i4dF3dvGqA6hPYYo6YYkzgRA= -github.com/aws/aws-sdk-go-v2/service/s3 v1.12.0/go.mod h1:6J++A5xpo7QDsIeSqPK4UHqMSyPOCopa+zKtqAMhqVQ= -github.com/aws/aws-sdk-go-v2/service/s3 v1.16.1/go.mod h1:CQe/KvWV1AqRc65KqeJjrLzr5X2ijnFTTVzJW0VBRCI= -github.com/aws/aws-sdk-go-v2/service/sso v1.3.2/go.mod h1:J21I6kF+d/6XHVk7kp/cx9YVD2TMD2TbLwtRGVcinXo= -github.com/aws/aws-sdk-go-v2/service/sso v1.4.2/go.mod h1:NBvT9R1MEF+Ud6ApJKM0G+IkPchKS7p7c2YPKwHmBOk= -github.com/aws/aws-sdk-go-v2/service/sts v1.6.1/go.mod h1:hLZ/AnkIKHLuPGjEiyghNEdvJ2PP0MgOxcmv9EBJ4xs= -github.com/aws/aws-sdk-go-v2/service/sts v1.7.2/go.mod h1:8EzeIqfWt2wWT4rJVu3f21TfrhJ8AEMzVybRNSb/b4g= -github.com/aws/smithy-go v1.7.0/go.mod h1:SObp3lf9smib00L/v3U2eAKG8FyQ7iLrJnQiAmR5n+E= -github.com/aws/smithy-go v1.8.0/go.mod h1:SObp3lf9smib00L/v3U2eAKG8FyQ7iLrJnQiAmR5n+E= -github.com/benbjohnson/clock v1.0.3/go.mod h1:bGMdMPoPVvcYyt1gHDf4J2KE153Yf9BuiUKYMaxlTDM= -github.com/beorn7/perks v0.0.0-20160804104726-4c0e84591b9a/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/andybalholm/brotli v1.1.0 h1:eLKJA0d02Lf0mVpIDgYnqXcUn0GqVmEFny3VuID1U3M= +github.com/andybalholm/brotli v1.1.0/go.mod h1:sms7XGricyQI9K10gOSf56VKKWS4oLer58Q+mhRPtnY= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= -github.com/bitly/go-hostpool v0.0.0-20171023180738-a3a6125de932/go.mod h1:NOuUCSz6Q9T7+igc/hlvDOUdtWKryOrtFyIVABv/p7k= -github.com/bitly/go-simplejson v0.5.0/go.mod h1:cXHtHw4XUPsvGaxgjIAn8PhEWG9NfngEKAMDJEczWVA= -github.com/bits-and-blooms/bitset v1.2.0 h1:Kn4yilvwNtMACtf1eYDlG8H77R07mZSPbMjLyS07ChA= -github.com/bits-and-blooms/bitset v1.2.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= -github.com/bkaradzic/go-lz4 v1.0.0/go.mod h1:0YdlkowM3VswSROI7qDxhRvJ3sLhlFrRRwjwegp5jy4= -github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= -github.com/blang/semver v3.1.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= -github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= -github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4= -github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/bshuster-repo/logrus-logstash-hook v0.4.1/go.mod h1:zsTqEiSzDgAa/8GZR7E1qaXrhYNDKBYy5/dWPTIflbk= -github.com/bufbuild/connect-go v1.10.0 h1:QAJ3G9A1OYQW2Jbk3DeoJbkCxuKArrvZgDt47mjdTbg= -github.com/bufbuild/connect-go v1.10.0/go.mod h1:CAIePUgkDR5pAFaylSMtNK45ANQjp9JvpluG20rhpV8= -github.com/buger/jsonparser v0.0.0-20180808090653-f4dd9f5a6b44/go.mod h1:bbYlZJ7hK1yFx9hf58LP0zeX7UjIGs20ufpu3evjr+s= -github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0= -github.com/bugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd/go.mod h1:2oa8nejYd4cQ/b0hMIopN0lCRxU0bueqREvZLWFrtK8= -github.com/bugsnag/osext v0.0.0-20130617224835-0dd3f918b21b/go.mod h1:obH5gd0BsqsP2LwDJ9aOkm/6J86V6lyAXCoQWGw3K50= -github.com/bugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0/go.mod h1:D/8v3kj0zr8ZAKg1AQ6crr+5VwKN5eIywRkfhyM/+dE= -github.com/bytedance/sonic v1.5.0/go.mod h1:ED5hyg4y6t3/9Ku1R6dU/4KyJ48DZ4jPhfY1O2AihPM= -github.com/bytedance/sonic v1.10.0-rc/go.mod h1:ElCzW+ufi8qKqNW0FY314xriJhyJhuoJ3gFZdAHF7NM= -github.com/bytedance/sonic v1.10.1 h1:7a1wuFXL1cMy7a3f7/VFcEtriuXQnUBhtoVfOZiaysc= -github.com/bytedance/sonic v1.10.1/go.mod h1:iZcSUejdk5aukTND/Eu/ivjQuEL0Cu9/rf50Hi0u/g4= -github.com/cenkalti/backoff/v4 v4.1.1/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= -github.com/cenkalti/backoff/v4 v4.1.2/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= -github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/certifi/gocertifi v0.0.0-20191021191039-0944d244cd40/go.mod h1:sGbDF6GwGcLpkNXPUTkMRoywsNa/ol15pxFe6ERfguA= -github.com/certifi/gocertifi v0.0.0-20200922220541-2c3bb06c6054/go.mod h1:sGbDF6GwGcLpkNXPUTkMRoywsNa/ol15pxFe6ERfguA= -github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= -github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/bits-and-blooms/bitset v1.12.0 h1:U/q1fAF7xXRhFCrhROzIfffYnu+dlS38vCZtmFVPHmA= +github.com/bits-and-blooms/bitset v1.12.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8= +github.com/bytedance/sonic v1.11.9 h1:LFHENlIY/SLzDWverzdOvgMztTxcfcF+cqNsz9pK5zg= +github.com/bytedance/sonic v1.11.9/go.mod h1:LysEHSvpvDySVdC2f87zGWf6CIKJcAvqab1ZaiQtds4= +github.com/bytedance/sonic/loader v0.1.1 h1:c+e5Pt1k/cy5wMveRDyk2X4B9hF4g7an8N3zCYjJFNM= +github.com/bytedance/sonic/loader v0.1.1/go.mod h1:ncP89zfokxS5LZrJxl5z0UJcsk4M4yY2JpfqGeCtNLU= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/checkpoint-restore/go-criu/v4 v4.1.0/go.mod h1:xUQBLp4RLc5zJtWY++yjOoMoB5lihDt7fai+75m+rGw= -github.com/checkpoint-restore/go-criu/v5 v5.0.0/go.mod h1:cfwC0EG7HMUenopBsUf9d89JlCLQIfgVcNsNN0t6T2M= -github.com/checkpoint-restore/go-criu/v5 v5.3.0/go.mod h1:E/eQpaFtUKGOOSEBZgmKAcn+zUUwWxqcaKZlF54wK8E= -github.com/chenzhuoyu/base64x v0.0.0-20211019084208-fb5309c8db06/go.mod h1:DH46F32mSOjUmXrMHnKwZdA8wcEefY7UVqBKYGjpdQY= -github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311/go.mod h1:b583jCggY9gE99b6G5LEC39OIiVsWj+R97kbl5odCEk= -github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d h1:77cEq6EriyTZ0g/qfRdp61a3Uu/AWrgIq2s0ClJV1g0= -github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d/go.mod h1:8EPpVsBuRksnlj1mLy4AWzRNQYxauNi62uWcE3to6eA= -github.com/chenzhuoyu/iasm v0.9.0 h1:9fhXjVzq5hUy2gkhhgHl95zG2cEAhw9OSGs8toWWAwo= -github.com/chenzhuoyu/iasm v0.9.0/go.mod h1:Xjy2NpN3h7aUqeqM+woSuuvxmIe6+DDsiNLIrkAmYog= -github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= -github.com/cilium/ebpf v0.0.0-20200110133405-4032b1d8aae3/go.mod h1:MA5e5Lr8slmEg9bt0VpxxWqJlO4iwu3FBdHUzV7wQVg= -github.com/cilium/ebpf v0.0.0-20200702112145-1c8d4c9ef775/go.mod h1:7cR51M8ViRLIdUjrmSXlK9pkrsDlLHbO8jiB8X8JnOc= -github.com/cilium/ebpf v0.2.0/go.mod h1:To2CFviqOWL/M0gIMsvSMlqe7em/l1ALkX1PyjrX2Qs= -github.com/cilium/ebpf v0.4.0/go.mod h1:4tRaxcgiL706VnOzHOdBlY8IEAIdxINsQBcU4xJJXRs= -github.com/cilium/ebpf v0.6.2/go.mod h1:4tRaxcgiL706VnOzHOdBlY8IEAIdxINsQBcU4xJJXRs= -github.com/cilium/ebpf v0.7.0/go.mod h1:/oI2+1shJiTGAMgl6/RgJr36Eo1jzrRcAWbcXO2usCA= github.com/clbanning/mxj v1.8.4 h1:HuhwZtbyvyOw+3Z1AowPkU87JkJUSv751ELWaiTpj8I= github.com/clbanning/mxj v1.8.4/go.mod h1:BVjHeAH+rl9rs6f+QIpeRl0tfu10SXn1pUSa5PVGJng= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cloudflare/golz4 v0.0.0-20150217214814-ef862a3cdc58/go.mod h1:EOBUe0h4xcZ5GoxqC5SDxFQ8gwyZPKQoEzownBlhI80= -github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= -github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211130200136-a8f946100490/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ= -github.com/cockroachdb/cockroach-go/v2 v2.1.1/go.mod h1:7NtUnP6eK+l6k483WSYNrq3Kb23bWV10IRV1TyeSpwM= -github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= -github.com/cockroachdb/datadriven v0.0.0-20200714090401-bf6692d28da5/go.mod h1:h6jFvWxBdQXxjopDMZyH2UVceIRfR84bdzbkoKrsWNo= -github.com/cockroachdb/errors v1.2.4/go.mod h1:rQD95gz6FARkaKkQXUksEje/d9a6wBJoCr5oaCLELYA= -github.com/cockroachdb/errors v1.11.1 h1:xSEW75zKaKCWzR3OfxXUxgrk/NtT4G1MiOv5lWZazG8= -github.com/cockroachdb/errors v1.11.1/go.mod h1:8MUxA3Gi6b25tYlFEBGLf+D8aISL+M4MIpiWMSNRfxw= -github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f/go.mod h1:i/u985jwjWRlyHXQbwatDASoW0RMlZ/3i9yJHE2xLkI= +github.com/cloudwego/base64x v0.1.4 h1:jwCgWpFanWmN8xoIUHa2rtzmkd5J2plF/dnLS6Xd/0Y= +github.com/cloudwego/base64x v0.1.4/go.mod h1:0zlkT4Wn5C6NdauXdJRhSKRlJvmclQ1hhJgA0rcu/8w= +github.com/cloudwego/iasm v0.2.0 h1:1KNIy1I1H9hNNFEEH3DVnI4UujN+1zjpuk6gwHLTssg= +github.com/cloudwego/iasm v0.2.0/go.mod h1:8rXZaNYT2n95jn+zTI1sDr+IgcD2GVs0nlbbQPiEFhY= +github.com/cockroachdb/errors v1.11.3 h1:5bA+k2Y6r+oz/6Z/RFlNeVCesGARKuC6YymtcDrbC/I= +github.com/cockroachdb/errors v1.11.3/go.mod h1:m4UIW4CDjx+R5cybPsNrRbreomiFqt8o1h1wUVazSd8= github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b h1:r6VH0faHjZeQy818SGhaone5OnYfxFR/+AzdY3sf5aE= github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b/go.mod h1:Vz9DsVWQQhf3vs21MhPMZpMGSht7O/2vFW2xusFUVOs= github.com/cockroachdb/redact v1.1.5 h1:u1PMllDkdFfPWaNGMyLD1+so+aq3uUItthCFqzwPJ30= github.com/cockroachdb/redact v1.1.5/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg= -github.com/containerd/aufs v0.0.0-20200908144142-dab0cbea06f4/go.mod h1:nukgQABAEopAHvB6j7cnP5zJ+/3aVcE7hCYqvIwAHyE= -github.com/containerd/aufs v0.0.0-20201003224125-76a6863f2989/go.mod h1:AkGGQs9NM2vtYHaUen+NljV0/baGCAPELGm2q9ZXpWU= -github.com/containerd/aufs v0.0.0-20210316121734-20793ff83c97/go.mod h1:kL5kd6KM5TzQjR79jljyi4olc1Vrx6XBlcyj3gNv2PU= -github.com/containerd/aufs v1.0.0/go.mod h1:kL5kd6KM5TzQjR79jljyi4olc1Vrx6XBlcyj3gNv2PU= -github.com/containerd/btrfs v0.0.0-20201111183144-404b9149801e/go.mod h1:jg2QkJcsabfHugurUvvPhS3E08Oxiuh5W/g1ybB4e0E= -github.com/containerd/btrfs v0.0.0-20210316141732-918d888fb676/go.mod h1:zMcX3qkXTAi9GI50+0HOeuV8LU2ryCE/V2vG/ZBiTss= -github.com/containerd/btrfs v1.0.0/go.mod h1:zMcX3qkXTAi9GI50+0HOeuV8LU2ryCE/V2vG/ZBiTss= -github.com/containerd/cgroups v0.0.0-20190717030353-c4b9ac5c7601/go.mod h1:X9rLEHIqSf/wfK8NsPqxJmeZgW4pcfzdXITDrUSJ6uI= -github.com/containerd/cgroups v0.0.0-20190919134610-bf292b21730f/go.mod h1:OApqhQ4XNSNC13gXIwDjhOQxjWa/NxkwZXJ1EvqT0ko= -github.com/containerd/cgroups v0.0.0-20200531161412-0dbf7f05ba59/go.mod h1:pA0z1pT8KYB3TCXK/ocprsh7MAkoW8bZVzPdih9snmM= -github.com/containerd/cgroups v0.0.0-20200710171044-318312a37340/go.mod h1:s5q4SojHctfxANBDvMeIaIovkq29IP48TKAxnhYRxvo= -github.com/containerd/cgroups v0.0.0-20200824123100-0b889c03f102/go.mod h1:s5q4SojHctfxANBDvMeIaIovkq29IP48TKAxnhYRxvo= -github.com/containerd/cgroups v0.0.0-20210114181951-8a68de567b68/go.mod h1:ZJeTFisyysqgcCdecO57Dj79RfL0LNeGiFUqLYQRYLE= -github.com/containerd/cgroups v1.0.1/go.mod h1:0SJrPIenamHDcZhEcJMNBB85rHcUsw4f25ZfBiPYRkU= -github.com/containerd/cgroups v1.0.3/go.mod h1:/ofk34relqNjSGyqPrmEULrO4Sc8LJhvJmWbUCUKqj8= -github.com/containerd/console v0.0.0-20180822173158-c12b1e7919c1/go.mod h1:Tj/on1eG8kiEhd0+fhSDzsPAFESxzBBvdyEgyryXffw= -github.com/containerd/console v0.0.0-20181022165439-0650fd9eeb50/go.mod h1:Tj/on1eG8kiEhd0+fhSDzsPAFESxzBBvdyEgyryXffw= -github.com/containerd/console v0.0.0-20191206165004-02ecf6a7291e/go.mod h1:8Pf4gM6VEbTNRIT26AyyU7hxdQU3MvAvxVI0sc00XBE= -github.com/containerd/console v1.0.1/go.mod h1:XUsP6YE/mKtz6bxc+I8UiKKTP04qjQL4qcS3XoQ5xkw= -github.com/containerd/console v1.0.2/go.mod h1:ytZPjGgY2oeTkAONYafi2kSj0aYggsf8acV1PGKCbzQ= -github.com/containerd/console v1.0.3/go.mod h1:7LqA/THxQ86k76b8c/EMSiaJ3h1eZkMkXar0TQ1gf3U= -github.com/containerd/containerd v1.2.10/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.0-beta.2.0.20190828155532-0293cbd26c69/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.0/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.1-0.20191213020239-082f7e3aed57/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.3.2/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.4.0-beta.2.0.20200729163537-40b22ef07410/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.4.1/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.4.3/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.4.9/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= -github.com/containerd/containerd v1.5.0-beta.1/go.mod h1:5HfvG1V2FsKesEGQ17k5/T7V960Tmcumvqn8Mc+pCYQ= -github.com/containerd/containerd v1.5.0-beta.3/go.mod h1:/wr9AVtEM7x9c+n0+stptlo/uBBoBORwEx6ardVcmKU= -github.com/containerd/containerd v1.5.0-beta.4/go.mod h1:GmdgZd2zA2GYIBZ0w09ZvgqEq8EfBp/m3lcVZIvPHhI= -github.com/containerd/containerd v1.5.0-rc.0/go.mod h1:V/IXoMqNGgBlabz3tHD2TWDoTJseu1FGOKuoA4nNb2s= -github.com/containerd/containerd v1.5.1/go.mod h1:0DOxVqwDy2iZvrZp2JUx/E+hS0UNTVn7dJnIOwtYR4g= -github.com/containerd/containerd v1.5.7/go.mod h1:gyvv6+ugqY25TiXxcZC3L5yOeYgEw0QMhscqVp1AR9c= -github.com/containerd/containerd v1.5.8/go.mod h1:YdFSv5bTFLpG2HIYmfqDpSYYTDX+mc5qtSuYx1YUb/s= -github.com/containerd/containerd v1.6.1 h1:oa2uY0/0G+JX4X7hpGCYvkp9FjUancz56kSNnb1sG3o= -github.com/containerd/containerd v1.6.1/go.mod h1:1nJz5xCZPusx6jJU8Frfct988y0NpumIq9ODB0kLtoE= -github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= -github.com/containerd/continuity v0.0.0-20190815185530-f2a389ac0a02/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= -github.com/containerd/continuity v0.0.0-20191127005431-f65d91d395eb/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= -github.com/containerd/continuity v0.0.0-20200710164510-efbc4488d8fe/go.mod h1:cECdGN1O8G9bgKTlLhuPJimka6Xb/Gg7vYzCTNVxhvo= -github.com/containerd/continuity v0.0.0-20201208142359-180525291bb7/go.mod h1:kR3BEg7bDFaEddKm54WSmrol1fKWDU1nKYkgrcgZT7Y= -github.com/containerd/continuity v0.0.0-20210208174643-50096c924a4e/go.mod h1:EXlVlkqNba9rJe3j7w3Xa924itAMLgZH4UD/Q4PExuQ= -github.com/containerd/continuity v0.1.0/go.mod h1:ICJu0PwR54nI0yPEnJ6jcS+J7CZAUXrLh8lPo2knzsM= -github.com/containerd/continuity v0.2.2/go.mod h1:pWygW9u7LtS1o4N/Tn0FoCFDIXZ7rxcMX7HX1Dmibvk= -github.com/containerd/fifo v0.0.0-20180307165137-3d5202aec260/go.mod h1:ODA38xgv3Kuk8dQz2ZQXpnv/UZZUHUCL7pnLehbXgQI= -github.com/containerd/fifo v0.0.0-20190226154929-a9fb20d87448/go.mod h1:ODA38xgv3Kuk8dQz2ZQXpnv/UZZUHUCL7pnLehbXgQI= -github.com/containerd/fifo v0.0.0-20200410184934-f15a3290365b/go.mod h1:jPQ2IAeZRCYxpS/Cm1495vGFww6ecHmMk1YJH2Q5ln0= -github.com/containerd/fifo v0.0.0-20201026212402-0724c46b320c/go.mod h1:jPQ2IAeZRCYxpS/Cm1495vGFww6ecHmMk1YJH2Q5ln0= -github.com/containerd/fifo v0.0.0-20210316144830-115abcc95a1d/go.mod h1:ocF/ME1SX5b1AOlWi9r677YJmCPSwwWnQ9O123vzpE4= -github.com/containerd/fifo v1.0.0/go.mod h1:ocF/ME1SX5b1AOlWi9r677YJmCPSwwWnQ9O123vzpE4= -github.com/containerd/go-cni v1.0.1/go.mod h1:+vUpYxKvAF72G9i1WoDOiPGRtQpqsNW/ZHtSlv++smU= -github.com/containerd/go-cni v1.0.2/go.mod h1:nrNABBHzu0ZwCug9Ije8hL2xBCYh/pjfMb1aZGrrohk= -github.com/containerd/go-cni v1.1.0/go.mod h1:Rflh2EJ/++BA2/vY5ao3K6WJRR/bZKsX123aPk+kUtA= -github.com/containerd/go-cni v1.1.3/go.mod h1:Rflh2EJ/++BA2/vY5ao3K6WJRR/bZKsX123aPk+kUtA= -github.com/containerd/go-runc v0.0.0-20180907222934-5a6d9f37cfa3/go.mod h1:IV7qH3hrUgRmyYrtgEeGWJfWbgcHL9CSRruz2Vqcph0= -github.com/containerd/go-runc v0.0.0-20190911050354-e029b79d8cda/go.mod h1:IV7qH3hrUgRmyYrtgEeGWJfWbgcHL9CSRruz2Vqcph0= -github.com/containerd/go-runc v0.0.0-20200220073739-7016d3ce2328/go.mod h1:PpyHrqVs8FTi9vpyHwPwiNEGaACDxT/N/pLcvMSRA9g= -github.com/containerd/go-runc v0.0.0-20201020171139-16b287bc67d0/go.mod h1:cNU0ZbCgCQVZK4lgG3P+9tn9/PaJNmoDXPpoJhDR+Ok= -github.com/containerd/go-runc v1.0.0/go.mod h1:cNU0ZbCgCQVZK4lgG3P+9tn9/PaJNmoDXPpoJhDR+Ok= -github.com/containerd/imgcrypt v1.0.1/go.mod h1:mdd8cEPW7TPgNG4FpuP3sGBiQ7Yi/zak9TYCG3juvb0= -github.com/containerd/imgcrypt v1.0.4-0.20210301171431-0ae5c75f59ba/go.mod h1:6TNsg0ctmizkrOgXRNQjAPFWpMYRWuiB6dSF4Pfa5SA= -github.com/containerd/imgcrypt v1.1.1-0.20210312161619-7ed62a527887/go.mod h1:5AZJNI6sLHJljKuI9IHnw1pWqo/F0nGDOuR9zgTs7ow= -github.com/containerd/imgcrypt v1.1.1/go.mod h1:xpLnwiQmEUJPvQoAapeb2SNCxz7Xr6PJrXQb0Dpc4ms= -github.com/containerd/imgcrypt v1.1.3/go.mod h1:/TPA1GIDXMzbj01yd8pIbQiLdQxed5ue1wb8bP7PQu4= -github.com/containerd/nri v0.0.0-20201007170849-eb1350a75164/go.mod h1:+2wGSDGFYfE5+So4M5syatU0N0f0LbWpuqyMi4/BE8c= -github.com/containerd/nri v0.0.0-20210316161719-dbaa18c31c14/go.mod h1:lmxnXF6oMkbqs39FiCt1s0R2HSMhcLel9vNL3m4AaeY= -github.com/containerd/nri v0.1.0/go.mod h1:lmxnXF6oMkbqs39FiCt1s0R2HSMhcLel9vNL3m4AaeY= -github.com/containerd/stargz-snapshotter/estargz v0.4.1/go.mod h1:x7Q9dg9QYb4+ELgxmo4gBUeJB0tl5dqH1Sdz0nJU1QM= -github.com/containerd/ttrpc v0.0.0-20190828154514-0e0f228740de/go.mod h1:PvCDdDGpgqzQIzDW1TphrGLssLDZp2GuS+X5DkEJB8o= -github.com/containerd/ttrpc v0.0.0-20190828172938-92c8520ef9f8/go.mod h1:PvCDdDGpgqzQIzDW1TphrGLssLDZp2GuS+X5DkEJB8o= -github.com/containerd/ttrpc v0.0.0-20191028202541-4f1b8fe65a5c/go.mod h1:LPm1u0xBw8r8NOKoOdNMeVHSawSsltak+Ihv+etqsE8= -github.com/containerd/ttrpc v1.0.1/go.mod h1:UAxOpgT9ziI0gJrmKvgcZivgxOp8iFPSk8httJEt98Y= -github.com/containerd/ttrpc v1.0.2/go.mod h1:UAxOpgT9ziI0gJrmKvgcZivgxOp8iFPSk8httJEt98Y= -github.com/containerd/ttrpc v1.1.0/go.mod h1:XX4ZTnoOId4HklF4edwc4DcqskFZuvXB1Evzy5KFQpQ= -github.com/containerd/typeurl v0.0.0-20180627222232-a93fcdb778cd/go.mod h1:Cm3kwCdlkCfMSHURc+r6fwoGH6/F1hH3S4sg0rLFWPc= -github.com/containerd/typeurl v0.0.0-20190911142611-5eb25027c9fd/go.mod h1:GeKYzf2pQcqv7tJ0AoCuuhtnqhva5LNU3U+OyKxxJpk= -github.com/containerd/typeurl v1.0.1/go.mod h1:TB1hUtrpaiO88KEK56ijojHS1+NeF0izUACaJW2mdXg= -github.com/containerd/typeurl v1.0.2/go.mod h1:9trJWW2sRlGub4wZJRTW83VtbOLS6hwcDZXTn6oPz9s= -github.com/containerd/zfs v0.0.0-20200918131355-0a33824f23a2/go.mod h1:8IgZOBdv8fAgXddBT4dBXJPtxyRsejFIpXoklgxgEjw= -github.com/containerd/zfs v0.0.0-20210301145711-11e8f1707f62/go.mod h1:A9zfAbMlQwE+/is6hi0Xw8ktpL+6glmqZYtevJgaB8Y= -github.com/containerd/zfs v0.0.0-20210315114300-dde8f0fda960/go.mod h1:m+m51S1DvAP6r3FcmYCp54bQ34pyOwTieQDNRIRHsFY= -github.com/containerd/zfs v0.0.0-20210324211415-d5c4544f0433/go.mod h1:m+m51S1DvAP6r3FcmYCp54bQ34pyOwTieQDNRIRHsFY= -github.com/containerd/zfs v1.0.0/go.mod h1:m+m51S1DvAP6r3FcmYCp54bQ34pyOwTieQDNRIRHsFY= -github.com/containernetworking/cni v0.7.1/go.mod h1:LGwApLUm2FpoOfxTDEeq8T9ipbpZ61X79hmU3w8FmsY= -github.com/containernetworking/cni v0.8.0/go.mod h1:LGwApLUm2FpoOfxTDEeq8T9ipbpZ61X79hmU3w8FmsY= -github.com/containernetworking/cni v0.8.1/go.mod h1:LGwApLUm2FpoOfxTDEeq8T9ipbpZ61X79hmU3w8FmsY= -github.com/containernetworking/cni v1.0.1/go.mod h1:AKuhXbN5EzmD4yTNtfSsX3tPcmtrBI6QcRV0NiNt15Y= -github.com/containernetworking/plugins v0.8.6/go.mod h1:qnw5mN19D8fIwkqW7oHHYDHVlzhJpcY6TQxn/fUyDDM= -github.com/containernetworking/plugins v0.9.1/go.mod h1:xP/idU2ldlzN6m4p5LmGiwRDjeJr6FLK6vuiUwoH7P8= -github.com/containernetworking/plugins v1.0.1/go.mod h1:QHCfGpaTwYTbbH+nZXKVTxNBDZcxSOplJT5ico8/FLE= -github.com/containers/ocicrypt v1.0.1/go.mod h1:MeJDzk1RJHv89LjsH0Sp5KTY3ZYkjXO/C+bKAeWFIrc= -github.com/containers/ocicrypt v1.1.0/go.mod h1:b8AOe0YR67uU8OqfVNcznfFpAzu3rdgUV4GP9qXPfu4= -github.com/containers/ocicrypt v1.1.1/go.mod h1:Dm55fwWm1YZAjYRaJ94z2mfZikIyIN4B0oB3dj3jFxY= -github.com/containers/ocicrypt v1.1.2/go.mod h1:Dm55fwWm1YZAjYRaJ94z2mfZikIyIN4B0oB3dj3jFxY= -github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= -github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= -github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= -github.com/coreos/go-iptables v0.4.5/go.mod h1:/mVI274lEDI2ns62jHCDnCyBF9Iwsmekav8Dbxlm1MU= -github.com/coreos/go-iptables v0.5.0/go.mod h1:/mVI274lEDI2ns62jHCDnCyBF9Iwsmekav8Dbxlm1MU= -github.com/coreos/go-iptables v0.6.0/go.mod h1:Qe8Bv2Xik5FyTXwgIbLAnv2sWSBmvWdFETJConOQ//Q= -github.com/coreos/go-oidc v2.1.0+incompatible/go.mod h1:CgnwVTmzoESiwO9qyAFEMiHoZ1nMCKZlZ9V6mm3/LKc= -github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-systemd v0.0.0-20161114122254-48702e0da86b/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd/v22 v22.0.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk= -github.com/coreos/go-systemd/v22 v22.1.0/go.mod h1:xO0FLkIi5MaZafQlIrOotqXZ90ih+1atmu1JpKERPPk= -github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= -github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= -github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= -github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= +github.com/cpuguy83/go-md2man/v2 v2.0.4/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/creack/pty v1.1.11/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/cyphar/filepath-securejoin v0.2.2/go.mod h1:FpkQEhXnPnOthhzymB7CGsFk2G9VLXONKD9G7QGMM+4= -github.com/cyphar/filepath-securejoin v0.2.3/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4= -github.com/cznic/mathutil v0.0.0-20180504122225-ca4c9f2c1369/go.mod h1:e6NPNENfs9mPDVNRekM7lKScauxd5kXTr1Mfyig6TDM= -github.com/d2g/dhcp4 v0.0.0-20170904100407-a1d1b6c41b1c/go.mod h1:Ct2BUK8SB0YC1SMSibvLzxjeJLnrYEVLULFNiHY9YfQ= -github.com/d2g/dhcp4client v1.0.0/go.mod h1:j0hNfjhrt2SxUOw55nL0ATM/z4Yt3t2Kd1mW34z5W5s= -github.com/d2g/dhcp4server v0.0.0-20181031114812-7d4a0a7f59a5/go.mod h1:Eo87+Kg/IX2hfWJfwxMzLyuSZyxSoAug2nGa1G2QAi8= -github.com/d2g/hardwareaddr v0.0.0-20190221164911-e7d9fbe030e4/go.mod h1:bMl4RjIciD2oAxI7DmWRx6gbeqrkoLqv3MV0vzNad+I= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/denisenkom/go-mssqldb v0.10.0/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU= -github.com/denverdino/aliyungo v0.0.0-20190125010748-a747050bb1ba/go.mod h1:dV8lFg6daOBZbT6/BDGIz6Y3WFGn8juu6G+CQ6LHtl0= -github.com/dgrijalva/jwt-go v0.0.0-20170104182250-a601269ab70c/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= -github.com/dhui/dktest v0.3.10 h1:0frpeeoM9pHouHjhLeZDuDTJ0PqjDTrycaHaMmkJAo8= -github.com/dhui/dktest v0.3.10/go.mod h1:h5Enh0nG3Qbo9WjNFRrwmKUaePEBhXMOygbz3Ww7Sz0= +github.com/dhui/dktest v0.4.1 h1:/w+IWuDXVymg3IrRJCHHOkMK10m9aNVMOyD0X12YVTg= +github.com/dhui/dktest v0.4.1/go.mod h1:DdOqcUpL7vgyP4GlF3X3w7HbSlz8cEQzwewPveYEQbA= github.com/disintegration/imaging v1.6.2 h1:w1LecBlG2Lnp8B3jk5zSuNqd7b4DXhcjwek1ei82L+c= github.com/disintegration/imaging v1.6.2/go.mod h1:44/5580QXChDfwIclfc/PCwrr44amcmDAg8hxG0Ewe4= -github.com/dnaeon/go-vcr v1.0.1/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E= -github.com/docker/cli v0.0.0-20191017083524-a8ff7f821017/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8= -github.com/docker/distribution v0.0.0-20190905152932-14b96e55d84c/go.mod h1:0+TTO4EOBfRPhZXAeF1Vu+W3hHZ8eLp8PgKVZlcvtFY= -github.com/docker/distribution v2.7.1-0.20190205005809-0d3efadf0154+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/distribution v2.8.1+incompatible h1:Q50tZOPR6T/hjNsyc9g8/syEs6bk8XXApsHjKukMl68= -github.com/docker/distribution v2.8.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= -github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docker/docker v20.10.13+incompatible h1:5s7uxnKZG+b8hYWlPYUi6x1Sjpq2MSt96d15eLZeHyw= -github.com/docker/docker v20.10.13+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docker/docker-credential-helpers v0.6.3/go.mod h1:WRaJzqw3CTB9bk10avuGsjVBZsD05qeibJ1/TYlvc0Y= +github.com/docker/distribution v2.8.2+incompatible h1:T3de5rq0dB1j30rp0sA2rER+m322EBzniBPB6ZIzuh8= +github.com/docker/distribution v2.8.2+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= +github.com/docker/docker v24.0.9+incompatible h1:HPGzNmwfLZWdxHqK9/II92pyi1EpYKsAqcl4G0Of9v0= +github.com/docker/docker v24.0.9+incompatible/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/go-connections v0.4.0 h1:El9xVISelRB7BuFusrZozjnkIM5YnzCViNKohAFqRJQ= github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= -github.com/docker/go-events v0.0.0-20170721190031-9461782956ad/go.mod h1:Uw6UezgYA44ePAFQYUehOuCzmy5zmg/+nl2ZfMWGkpA= -github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c/go.mod h1:Uw6UezgYA44ePAFQYUehOuCzmy5zmg/+nl2ZfMWGkpA= -github.com/docker/go-metrics v0.0.0-20180209012529-399ea8c73916/go.mod h1:/u0gXw0Gay3ceNrsHubL3BtdOL2fHf93USgMTe0W5dI= -github.com/docker/go-metrics v0.0.1/go.mod h1:cG1hvH2utMXtqgqqYE9plW6lDxS3/5ayHzueweSI3Vw= -github.com/docker/go-units v0.4.0 h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw= -github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= -github.com/docker/libtrust v0.0.0-20150114040149-fa567046d9b1/go.mod h1:cyGadeNEkKy96OOhEzfZl+yxihPEzKnqJwvfuSUqbZE= -github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= -github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4= +github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= -github.com/edsrzf/mmap-go v0.0.0-20170320065105-0bce6a688712/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= -github.com/elazarl/goproxy v0.0.0-20180725130230-947c36da3153/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= -github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= -github.com/emicklei/go-restful v2.9.5+incompatible/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs= -github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= -github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= -github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= -github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= -github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.1/go.mod h1:AY7fTTXNdv/aJ2O5jwpxAPOWUZ7hQAEvzN5Pf27BkQQ= -github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/envoyproxy/protoc-gen-validate v0.6.2/go.mod h1:2t7qjJNvHPx8IjnBOzl9E9/baC+qXE/TeeyBRzgJDws= -github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/evanphx/json-patch v4.11.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= -github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= -github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs= -github.com/fatih/color v1.15.0/go.mod h1:0h5ZqXfHYED7Bhv2ZJamyIOUej9KtShiJESRwBDUSsw= -github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= -github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= -github.com/form3tech-oss/jwt-go v3.2.3+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= -github.com/form3tech-oss/jwt-go v3.2.5+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k= -github.com/frankban/quicktest v1.11.3/go.mod h1:wRf/ReqHper53s+kmmSZizM8NamnL3IM0I9ntUbOk+k= -github.com/frankban/quicktest v1.14.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= -github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= -github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= -github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= -github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= -github.com/fsouza/fake-gcs-server v1.17.0/go.mod h1:D1rTE4YCyHFNa99oyJJ5HyclvN/0uQR+pM/VdlL83bw= -github.com/fullsailor/pkcs7 v0.0.0-20190404230743-d7302db945fa/go.mod h1:KnogPXtdwXqoenmZCw6S+25EAm2MkxbG0deNDu4cbSA= -github.com/gabriel-vasile/mimetype v1.3.1/go.mod h1:fA8fi6KUiG7MgQQ+mEWotXoEOvmxRtOJlERCzSmRvr8= -github.com/gabriel-vasile/mimetype v1.4.0/go.mod h1:fA8fi6KUiG7MgQQ+mEWotXoEOvmxRtOJlERCzSmRvr8= -github.com/gabriel-vasile/mimetype v1.4.2 h1:w5qFW6JKBz9Y393Y4q372O9A7cUSequkh1Q7OhCmWKU= -github.com/gabriel-vasile/mimetype v1.4.2/go.mod h1:zApsH/mKG4w07erKIaJPFiX0Tsq9BFQgN3qGY5GnNgA= -github.com/garyburd/redigo v0.0.0-20150301180006-535138d7bcd7/go.mod h1:NR3MbYisc3/PwhQ00EMzDiPmrwpPxAn5GI05/YaO1SY= -github.com/getsentry/raven-go v0.2.0/go.mod h1:KungGk8q33+aIAZUIVWZDr2OfAEBsO49PX4NzFV5kcQ= -github.com/getsentry/sentry-go v0.24.1 h1:W6/0GyTy8J6ge6lVCc94WB6Gx2ZuLrgopnn9w8Hiwuk= -github.com/getsentry/sentry-go v0.24.1/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY= -github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/gin-contrib/cors v1.4.0 h1:oJ6gwtUl3lqV0WEIwM/LxPF1QZ5qe2lGWdY2+bz7y0g= -github.com/gin-contrib/cors v1.4.0/go.mod h1:bs9pNM0x/UsmHPBWT2xZz9ROh8xYjYkiURUfmBoMlcs= +github.com/fatih/color v1.17.0 h1:GlRw1BRJxkpqUCBKzKOw098ed57fEsKeNjpTe3cSjK4= +github.com/fatih/color v1.17.0/go.mod h1:YZ7TlrGPkiz6ku9fK3TLD/pl3CpsiFyu8N92HLgmosI= +github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8= +github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= +github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA= +github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM= +github.com/gabriel-vasile/mimetype v1.4.3 h1:in2uUcidCuFcDKtdcBxlR0rJ1+fsokWf+uqxgUFjbI0= +github.com/gabriel-vasile/mimetype v1.4.3/go.mod h1:d8uq/6HKRL6CGdk+aubisF/M5GcPfT7nKyLpA0lbSSk= +github.com/getsentry/sentry-go v0.28.1 h1:zzaSm/vHmGllRM6Tpx1492r0YDzauArdBfkJRtY6P5k= +github.com/getsentry/sentry-go v0.28.1/go.mod h1:1fQZ+7l7eeJ3wYi82q5Hg8GqAPgefRq+FP/QhafYVgg= +github.com/gin-contrib/cors v1.7.2 h1:oLDHxdg8W/XDoN/8zamqk/Drgt4oVZDvaV0YmvVICQw= +github.com/gin-contrib/cors v1.7.2/go.mod h1:SUJVARKgQ40dmrzgXEVxj2m7Ig1v1qIboQkPDTQ9t2E= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= -github.com/gin-gonic/gin v1.8.1/go.mod h1:ji8BvRH1azfM+SYow9zQ6SZMvR8qOMZHmsCuWR9tTTk= -github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg= -github.com/gin-gonic/gin v1.9.1/go.mod h1:hPrL7YrpYKXt5YId3A/Tnip5kqbEAP+KLuI3SUcPTeU= +github.com/gin-gonic/gin v1.10.0 h1:nTuyha1TYqgedzytsKYqna+DfLos46nTv2ygFy86HFU= +github.com/gin-gonic/gin v1.10.0/go.mod h1:4PMNQiOhvDRa013RKVbsiNwoyezlm2rm0uX/T7kzp5Y= github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA= -github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= -github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= -github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= -github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-ini/ini v1.25.4/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8= -github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= -github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= -github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= -github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas= -github.com/go-logr/logr v0.2.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= -github.com/go-logr/logr v0.4.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU= -github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.1/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.4 h1:g01GSCwiDw2xSZfjJ2/T9M+S6pFdcNtFYsp+Y43HYDQ= -github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/stdr v1.2.0/go.mod h1:YkVgnZu1ZjjL7xTxrfm/LLZBfkhTqSR1ydtm6jTKKwI= -github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= -github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1/go.mod h1:+35s3my2LFTysnkMfxsJBAMHj/DoqoB9knIWoYG/Vk0= -github.com/go-openapi/jsonpointer v0.19.2/go.mod h1:3akKfEdA7DF1sugOqz1dVQHBcuDBPKZGEoHC/NkiQRg= -github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/jsonreference v0.0.0-20160704190145-13c6e3589ad9/go.mod h1:W3Z9FmVs9qj+KR4zFKmDPGiLdk1D9Rlm7cyMvf57TTg= -github.com/go-openapi/jsonreference v0.19.2/go.mod h1:jMjeRr2HHw6nAVajTXJ4eiUwohSTlpa0o73RUL1owJc= -github.com/go-openapi/jsonreference v0.19.3/go.mod h1:rjx6GuL8TTa9VaixXglHmQmIL98+wF9xc8zWvFonSJ8= -github.com/go-openapi/jsonreference v0.19.5/go.mod h1:RdybgQwPxbL4UEjuAruzK1x3nE69AqPYEJeo/TWfEeg= -github.com/go-openapi/spec v0.0.0-20160808142527-6aced65f8501/go.mod h1:J8+jY1nAiCcj+friV/PDoE1/3eeccG9LYBs0tYvLOWc= -github.com/go-openapi/spec v0.19.3/go.mod h1:FpwSN1ksY1eteniUU7X0N/BgJ7a4WvBFVA8Lj9mJglo= -github.com/go-openapi/swag v0.0.0-20160704191624-1d0bd113de87/go.mod h1:DXUve3Dpr1UfpPtxFw+EFuQ41HhCWZfha5jSVRG7C7I= -github.com/go-openapi/swag v0.19.2/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-openapi/swag v0.19.14/go.mod h1:QYRuS/SOXUCsnplDa677K7+DxSOj6IPNl/eQntq43wQ= -github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= +github.com/go-errors/errors v1.4.2/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og= +github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= +github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s= -github.com/go-playground/locales v0.14.0/go.mod h1:sawfccIbzZTqEDETgFXqTho0QybSa7l++s0DH+LDiLs= +github.com/go-playground/assert/v2 v2.2.0/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY= -github.com/go-playground/universal-translator v0.18.0/go.mod h1:UvRDBj+xPUEGrFYl+lu/H90nyDXpg0fqeB/AQUGNTVA= github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY= -github.com/go-playground/validator/v10 v10.10.0/go.mod h1:74x4gJWsvQexRdW8Pn3dXSGrTK4nAUsbPlLADvpJkos= -github.com/go-playground/validator/v10 v10.14.0 h1:vgvQWe3XCz3gIeFDm/HnTIbj6UGmg/+t63MyGU2n5js= -github.com/go-playground/validator/v10 v10.14.0/go.mod h1:9iXMNT7sEkjXb0I+enO7QXmzG6QCsPWY4zveKFVRSyU= -github.com/go-resty/resty/v2 v2.9.1 h1:PIgGx4VrHvag0juCJ4dDv3MiFRlDmP0vicBucwf+gLM= -github.com/go-resty/resty/v2 v2.9.1/go.mod h1:4/GYJVjh9nhkhGR6AUNW3XhpDYNUr+Uvy9gV/VGZIy4= -github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= -github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= +github.com/go-playground/validator/v10 v10.20.0 h1:K9ISHbSaI0lyB2eWMPJo+kOS/FBExVwjEviJTixqxL8= +github.com/go-playground/validator/v10 v10.20.0/go.mod h1:dbuPbCMFw/DrkbEynArYaCwl3amGuJotoKCe95atGMM= +github.com/go-resty/resty/v2 v2.12.0 h1:rsVL8P90LFvkUYq/V5BTVe203WfRIU4gvcf+yfzJzGA= +github.com/go-resty/resty/v2 v2.12.0/go.mod h1:o0yGPrkS3lOe1+eFajk6kBW8ScXzwU3hD69/gt2yB/0= github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg= github.com/go-sql-driver/mysql v1.7.0 h1:ueSltNNllEqE3qcWBTD0iQd3IpL/6U+mJxLkazJ7YPc= github.com/go-sql-driver/mysql v1.7.0/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9S1MCJN5yJMI= -github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE= -github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 h1:tfuBGBXKqDEevZMzYi5KSi8KkcZtzBcTgAUUtapy0OI= -github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572/go.mod h1:9Pwr4B2jHnOSGXyyzV8ROjYa2ojvAY6HCGYYfMoC3Ls= -github.com/gobuffalo/attrs v0.0.0-20190224210810-a9411de4debd/go.mod h1:4duuawTqi2wkkpB4ePgWMaai6/Kc6WEz83bhFwpHzj0= -github.com/gobuffalo/depgen v0.0.0-20190329151759-d478694a28d3/go.mod h1:3STtPUQYuzV0gBVOY3vy6CfMm/ljR4pABfrTeHNLHUY= -github.com/gobuffalo/depgen v0.1.0/go.mod h1:+ifsuy7fhi15RWncXQQKjWS9JPkdah5sZvtHc2RXGlg= -github.com/gobuffalo/envy v1.6.15/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI= -github.com/gobuffalo/envy v1.7.0/go.mod h1:n7DRkBerg/aorDM8kbduw5dN3oXGswK5liaSCx4T5NI= -github.com/gobuffalo/flect v0.1.0/go.mod h1:d2ehjJqGOH/Kjqcoz+F7jHTBbmDb38yXA598Hb50EGs= -github.com/gobuffalo/flect v0.1.1/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI= -github.com/gobuffalo/flect v0.1.3/go.mod h1:8JCgGVbRjJhVgD6399mQr4fx5rRfGKVzFjbj6RE/9UI= -github.com/gobuffalo/genny v0.0.0-20190329151137-27723ad26ef9/go.mod h1:rWs4Z12d1Zbf19rlsn0nurr75KqhYp52EAGGxTbBhNk= -github.com/gobuffalo/genny v0.0.0-20190403191548-3ca520ef0d9e/go.mod h1:80lIj3kVJWwOrXWWMRzzdhW3DsrdjILVil/SFKBzF28= -github.com/gobuffalo/genny v0.1.0/go.mod h1:XidbUqzak3lHdS//TPu2OgiFB+51Ur5f7CSnXZ/JDvo= -github.com/gobuffalo/genny v0.1.1/go.mod h1:5TExbEyY48pfunL4QSXxlDOmdsD44RRq4mVZ0Ex28Xk= -github.com/gobuffalo/gitgen v0.0.0-20190315122116-cc086187d211/go.mod h1:vEHJk/E9DmhejeLeNt7UVvlSGv3ziL+djtTr3yyzcOw= -github.com/gobuffalo/gogen v0.0.0-20190315121717-8f38393713f5/go.mod h1:V9QVDIxsgKNZs6L2IYiGR8datgMhB577vzTDqypH360= -github.com/gobuffalo/gogen v0.1.0/go.mod h1:8NTelM5qd8RZ15VjQTFkAW6qOMx5wBbW4dSCS3BY8gg= -github.com/gobuffalo/gogen v0.1.1/go.mod h1:y8iBtmHmGc4qa3urIyo1shvOD8JftTtfcKi+71xfDNE= -github.com/gobuffalo/here v0.6.0/go.mod h1:wAG085dHOYqUpf+Ap+WOdrPTp5IYcDAs/x7PLa8Y5fM= -github.com/gobuffalo/logger v0.0.0-20190315122211-86e12af44bc2/go.mod h1:QdxcLw541hSGtBnhUc4gaNIXRjiDppFGaDqzbrBd3v8= -github.com/gobuffalo/mapi v1.0.1/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc= -github.com/gobuffalo/mapi v1.0.2/go.mod h1:4VAGh89y6rVOvm5A8fKFxYG+wIW6LO1FMTG9hnKStFc= -github.com/gobuffalo/packd v0.0.0-20190315124812-a385830c7fc0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4= -github.com/gobuffalo/packd v0.1.0/go.mod h1:M2Juc+hhDXf/PnmBANFCqx4DM3wRbgDvnVWeG2RIxq4= -github.com/gobuffalo/packr/v2 v2.0.9/go.mod h1:emmyGweYTm6Kdper+iywB6YK5YzuKchGtJQZ0Odn4pQ= -github.com/gobuffalo/packr/v2 v2.2.0/go.mod h1:CaAwI0GPIAv+5wKLtv8Afwl+Cm78K/I/VCm/3ptBN+0= -github.com/gobuffalo/syncx v0.0.0-20190224160051-33c29581e754/go.mod h1:HhnNqWY95UYwwW3uSASeV7vtgYkT2t16hJgV3AEPUpw= -github.com/goccy/go-json v0.9.7/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= -github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= -github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= -github.com/gocql/gocql v0.0.0-20210515062232-b7ef815b4556/go.mod h1:DL0ekTmBSTdlNF25Orwt/JMzqIq3EJ4MVa/J/uK64OY= -github.com/godbus/dbus v0.0.0-20151105175453-c7fdd8b5cd55/go.mod h1:/YcGZj5zSblfDWMMoOzV4fas9FZnQYTkDnsGvmh2Grw= -github.com/godbus/dbus v0.0.0-20180201030542-885f9cc04c9c/go.mod h1:/YcGZj5zSblfDWMMoOzV4fas9FZnQYTkDnsGvmh2Grw= -github.com/godbus/dbus v0.0.0-20190422162347-ade71ed3457e/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= -github.com/godbus/dbus/v5 v5.0.3/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= -github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= -github.com/godbus/dbus/v5 v5.0.6/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= -github.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= -github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= -github.com/gofrs/uuid/v5 v5.0.0 h1:p544++a97kEL+svbcFbCQVM9KFu0Yo25UoISXGNNH9M= -github.com/gofrs/uuid/v5 v5.0.0/go.mod h1:CDOjlDMVAtN56jqyRUZh58JT31Tiw7/oQyEXZV+9bD8= -github.com/gogo/googleapis v1.2.0/go.mod h1:Njal3psf3qN6dwBtQfUmBZh2ybovJ0tlu3o/AC7HYjU= -github.com/gogo/googleapis v1.4.0/go.mod h1:5YRNX2z1oM5gXdAkurHa942MDgEJyk02w4OecKY87+c= -github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/gogo/protobuf v1.2.2-0.20190723190241-65acae22fc9d/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.3.0/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= +github.com/go-task/slim-sprig/v3 v3.0.0 h1:sUs3vkvUymDpBKi3qH1YSqBQk9+9D/8M2mN1vB6EwHI= +github.com/go-task/slim-sprig/v3 v3.0.0/go.mod h1:W848ghGpv3Qj3dhTPRyJypKRiqCdHZiAzKg9hl15HA8= +github.com/goccy/go-json v0.10.3 h1:KZ5WoDbxAIgm2HNbYckL0se1fHD6rz5j4ywS6ebzDqA= +github.com/goccy/go-json v0.10.3/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M= +github.com/gofrs/uuid/v5 v5.2.0 h1:qw1GMx6/y8vhVsx626ImfKMuS5CvJmhIKKtuyvfajMM= +github.com/gofrs/uuid/v5 v5.2.0/go.mod h1:CDOjlDMVAtN56jqyRUZh58JT31Tiw7/oQyEXZV+9bD8= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= -github.com/golang-jwt/jwt/v4 v4.1.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= github.com/golang-jwt/jwt/v4 v4.5.0 h1:7cYmW1XlMY7h7ii7UhUyChSgS5wUJEnm9uZVTGqOWzg= github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= -github.com/golang-jwt/jwt/v5 v5.0.0 h1:1n1XNM9hk7O9mnQoNBGolZvzebBQ7p93ULHRc28XJUE= -github.com/golang-jwt/jwt/v5 v5.0.0/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= -github.com/golang-migrate/migrate/v4 v4.15.2 h1:vU+M05vs6jWHKDdmE1Ecwj0BznygFc4QsdRe2E/L7kc= -github.com/golang-migrate/migrate/v4 v4.15.2/go.mod h1:f2toGLkYqD3JH+Todi4aZ2ZdbeUNx4sIwiOK96rE9Lw= -github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0= +github.com/golang-jwt/jwt/v5 v5.2.1 h1:OuVbFODueb089Lh128TAcimifWaLhJwVflnrgM17wHk= +github.com/golang-jwt/jwt/v5 v5.2.1/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk= +github.com/golang-migrate/migrate/v4 v4.17.1 h1:4zQ6iqL6t6AiItphxJctQb3cFqWiSpMnX7wLTPnnYO4= +github.com/golang-migrate/migrate/v4 v4.17.1/go.mod h1:m8hinFyWBn0SA4QKHuKh175Pm9wjmxj3S2Mia7dbXzM= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 h1:DACJavvAHhabrF08vX0COfcOBJRhZ8lUbR+ZWIs0Y5g= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= -github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= -github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= -github.com/golang/protobuf v1.0.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= -github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= -github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= -github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= -github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= -github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= -github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= -github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= -github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= -github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/snappy v0.0.0-20170215233205-553a64147049/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA= -github.com/google/flatbuffers v2.0.0+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= -github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-containerregistry v0.5.1/go.mod h1:Ct15B4yir3PLOP5jsy0GNeYVaIZs/MK/Jz5any1wFW0= -github.com/google/go-github/v39 v39.2.0/go.mod h1:C1s8C5aCC9L+JXIYpJM5GYytdX52vC1bLvHEF1IhBrE= +github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= -github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20230207041349-798e818bf904 h1:4/hN5RUoecvl+RmJRE2YxKWtnnQls6rQjjW5oV7qg2U= -github.com/google/pprof v0.0.0-20230207041349-798e818bf904/go.mod h1:uglQLonpP8qtYCYyzA+8c/9qtqgA3qsXGYqCPKARAFg= -github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6 h1:k7nVchz72niMH6YLQNvHSdIE7iqsQxK1P41mySCvssg= +github.com/google/pprof v0.0.0-20240424215950-a892ee059fd6/go.mod h1:kf6iHlnVGwgKolg33glAes7Yg/8iWP8ukqeldJSO7jw= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= -github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= -github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= -github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= -github.com/googleapis/gnostic v0.4.1/go.mod h1:LRhVm6pbyptWbWbuZ38d1eyptfvIytN3ir6b65WBswg= -github.com/googleapis/gnostic v0.5.1/go.mod h1:6U4PtQXGIEt/Z3h5MAT7FNofLnw9vXk2cUuW7uA/OeU= -github.com/googleapis/gnostic v0.5.5/go.mod h1:7+EbHbldMins07ALC74bsA81Ovc97DwqyJO1AENw9kA= -github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= -github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= -github.com/gorilla/handlers v0.0.0-20150720190736-60c7bfde3e33/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= -github.com/gorilla/handlers v1.4.2/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= -github.com/gorilla/mux v1.7.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= -github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= -github.com/gorilla/mux v1.7.4/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= -github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= -github.com/grpc-ecosystem/go-grpc-middleware v1.3.0/go.mod h1:z0ButlSOZa5vEBq9m2m2hlwIgKw+rp3sdCBRoJY+30Y= -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed/go.mod h1:tMWxXQ9wFIaZeTI9F+hmhFiGpFmhOHzyShyFUhRm0H4= -github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q= -github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8= -github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= +github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/grafana/pyroscope-go v1.1.2 h1:7vCfdORYQMCxIzI3NlYAs3FcBP760+gWuYWOyiVyYx8= +github.com/grafana/pyroscope-go v1.1.2/go.mod h1:HSSmHo2KRn6FasBA4vK7BMiQqyQq8KSuBKvrhkXxYPU= +github.com/grafana/pyroscope-go/godeltaprof v0.1.8 h1:iwOtYXeeVSAeYefJNaxDytgjKtUuKQbJqgAIjlnicKg= +github.com/grafana/pyroscope-go/godeltaprof v0.1.8/go.mod h1:2+l7K7twW49Ct4wFluZD3tZ6e0SjanjcUUBPVD/UuGU= +github.com/grafov/m3u8 v0.12.0/go.mod h1:nqzOkfBiZJENr52zTVd/Dcl03yzphIMbJqkXGu+u080= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/errwrap v1.1.0 h1:OxrOeh75EUXMY8TBjag2fzXGZ40LB6IKw45YeGUDY2I= github.com/hashicorp/errwrap v1.1.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= -github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= -github.com/hashicorp/go-multierror v0.0.0-20161216184304-ed905158d874/go.mod h1:JMRHfdO9jKNzS/+BTlxCjKNQHg/jZAft8U7LloJvN7I= -github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= -github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU= -github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= -github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= -github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go.net v0.0.1/go.mod h1:hjKkEWcCURg++eb33jQU7oqQcI9XDCnUzHA0oac0k90= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru/v2 v2.0.6 h1:3xi/Cafd1NaoEnS/yDssIiuVeDVywU0QdFGl3aQaQHM= -github.com/hashicorp/golang-lru/v2 v2.0.6/go.mod h1:QeFd9opnmA6QUJc5vARoKUSoFhyfM2/ZepoAG6RGpeM= +github.com/hashicorp/golang-lru/v2 v2.0.7 h1:a+bsQ5rvGLjzHuww6tVxozPZFVghXaHOwFs4luLUK2k= +github.com/hashicorp/golang-lru/v2 v2.0.7/go.mod h1:QeFd9opnmA6QUJc5vARoKUSoFhyfM2/ZepoAG6RGpeM= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= -github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= -github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= -github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= -github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= -github.com/huaweicloud/huaweicloud-sdk-go-obs v3.23.9+incompatible h1:zUhCrGMMpJxZGAB30GbQzluDhQuPENxRQfxss7KlpKU= -github.com/huaweicloud/huaweicloud-sdk-go-obs v3.23.9+incompatible/go.mod h1:l7VUhRbTKCzdOacdT4oWCwATKyvZqUOlOqr0Ous3k4s= -github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= -github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/imdario/mergo v0.3.8/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= -github.com/imdario/mergo v0.3.10/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= -github.com/imdario/mergo v0.3.11/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= -github.com/imdario/mergo v0.3.12/go.mod h1:jmQim1M+e3UYxmgPu/WyfjB3N3VflVyUjjjwH0dnCYA= -github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= +github.com/huaweicloud/huaweicloud-sdk-go-obs v3.24.6+incompatible h1:/2MdLc7zHJqzV7J2uVGaoGymVobB/OHC8wmEyWRaK68= +github.com/huaweicloud/huaweicloud-sdk-go-obs v3.24.6+incompatible/go.mod h1:l7VUhRbTKCzdOacdT4oWCwATKyvZqUOlOqr0Ous3k4s= github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= -github.com/intel/goresctrl v0.2.0/go.mod h1:+CZdzouYFn5EsxgqAQTEzMfwKwuc0fVdMrT9FCCAVRQ= -github.com/j-keck/arping v0.0.0-20160618110441-2cf9dc699c56/go.mod h1:ymszkNOg6tORTn+6F6j+Jc8TOr5osrynvN6ivFWZ2GA= -github.com/j-keck/arping v1.0.2/go.mod h1:aJbELhR92bSk7tp79AWM/ftfc90EfEi2bQJrbBFOsPw= -github.com/jackc/chunkreader v1.0.0/go.mod h1:RT6O25fNZIuasFJRyZ4R/Y2BbhasbmZXF9QQ7T3kePo= -github.com/jackc/chunkreader/v2 v2.0.0/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= -github.com/jackc/chunkreader/v2 v2.0.1/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk= -github.com/jackc/pgconn v0.0.0-20190420214824-7e0022ef6ba3/go.mod h1:jkELnwuX+w9qN5YIfX0fl88Ehu4XC3keFuOJJk9pcnA= -github.com/jackc/pgconn v0.0.0-20190824142844-760dd75542eb/go.mod h1:lLjNuW/+OfW9/pnVKPazfWOgNfH2aPem8YQ7ilXGvJE= -github.com/jackc/pgconn v0.0.0-20190831204454-2fabfa3c18b7/go.mod h1:ZJKsE/KZfsUgOEh9hBm+xYTstcNHg7UPMVJqRfQxq4s= -github.com/jackc/pgconn v1.4.0/go.mod h1:Y2O3ZDF0q4mMacyWV3AstPJpeHXWGEetiFttmq5lahk= -github.com/jackc/pgconn v1.5.0/go.mod h1:QeD3lBfpTFe8WUnPZWN5KY/mB8FGMIYRdd8P8Jr0fAI= -github.com/jackc/pgconn v1.5.1-0.20200601181101-fa742c524853/go.mod h1:QeD3lBfpTFe8WUnPZWN5KY/mB8FGMIYRdd8P8Jr0fAI= -github.com/jackc/pgconn v1.8.0/go.mod h1:1C2Pb36bGIP9QHGBYCjnyhqu7Rv3sGshaQUvmfGIB/o= -github.com/jackc/pgerrcode v0.0.0-20201024163028-a0d42d470451/go.mod h1:a/s9Lp5W7n/DD0VrVoyJ00FbP2ytTPDVOivvn2bMlds= -github.com/jackc/pgio v1.0.0/go.mod h1:oP+2QK2wFfUWgr+gxjoBH9KGBb31Eio69xUb0w5bYf8= -github.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2/go.mod h1:fGZlG77KXmcq05nJLRkk0+p82V8B8Dw8KN2/V9c/OAE= github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= -github.com/jackc/pgproto3 v1.1.0/go.mod h1:eR5FA3leWg7p9aeAqi37XOTgTIbkABlvcPB3E5rlc78= -github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190420180111-c116219b62db/go.mod h1:bhq50y+xrl9n5mRYyCBFKkpRVTLYJVWeCc+mEAI3yXA= -github.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190609003834-432c2951c711/go.mod h1:uH0AWtUmuShn0bcesswc4aBTWGvw0cAxIJp+6OB//Wg= -github.com/jackc/pgproto3/v2 v2.0.0-rc3/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= -github.com/jackc/pgproto3/v2 v2.0.0-rc3.0.20190831210041-4c03ce451f29/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM= -github.com/jackc/pgproto3/v2 v2.0.1/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= -github.com/jackc/pgproto3/v2 v2.0.6/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= -github.com/jackc/pgproto3/v2 v2.0.7/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA= -github.com/jackc/pgservicefile v0.0.0-20200307190119-3430c5407db8/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E= -github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E= github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a h1:bbPeKD0xmW/Y25WS6cokEszi5g+S0QxI/d45PkRi7Nk= github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM= -github.com/jackc/pgtype v0.0.0-20190421001408-4ed0de4755e0/go.mod h1:hdSHsc1V01CGwFsrv11mJRHWJ6aifDLfdV3aVjFF0zg= -github.com/jackc/pgtype v0.0.0-20190824184912-ab885b375b90/go.mod h1:KcahbBH1nCMSo2DXpzsoWOAfFkdEtEJpPbVLq8eE+mc= -github.com/jackc/pgtype v0.0.0-20190828014616-a8802b16cc59/go.mod h1:MWlu30kVJrUS8lot6TQqcg7mtthZ9T0EoIBFiJcmcyw= -github.com/jackc/pgtype v1.2.0/go.mod h1:5m2OfMh1wTK7x+Fk952IDmI4nw3nPrvtQdM0ZT4WpC0= -github.com/jackc/pgtype v1.3.1-0.20200510190516-8cd94a14c75a/go.mod h1:vaogEUkALtxZMCH411K+tKzNpwzCKU+AnPzBKZ+I+Po= -github.com/jackc/pgtype v1.3.1-0.20200606141011-f6355165a91c/go.mod h1:cvk9Bgu/VzJ9/lxTO5R5sf80p0DiucVtN7ZxvaC4GmQ= -github.com/jackc/pgtype v1.6.2/go.mod h1:JCULISAZBFGrHaOXIIFiyfzW5VY0GRitRr8NeJsrdig= -github.com/jackc/pgx/v4 v4.0.0-20190420224344-cc3461e65d96/go.mod h1:mdxmSJJuR08CZQyj1PVQBHy9XOp5p8/SHH6a0psbY9Y= -github.com/jackc/pgx/v4 v4.0.0-20190421002000-1b8f0016e912/go.mod h1:no/Y67Jkk/9WuGR0JG/JseM9irFbnEPbuWV2EELPNuM= -github.com/jackc/pgx/v4 v4.0.0-pre1.0.20190824185557-6972a5742186/go.mod h1:X+GQnOEnf1dqHGpw7JmHqHc1NxDoalibchSk9/RWuDc= -github.com/jackc/pgx/v4 v4.5.0/go.mod h1:EpAKPLdnTorwmPUUsqrPxy5fphV18j9q3wrfRXgo+kA= -github.com/jackc/pgx/v4 v4.6.1-0.20200510190926-94ba730bb1e9/go.mod h1:t3/cdRQl6fOLDxqtlyhe9UWgfIi9R8+8v8GKV5TRA/o= -github.com/jackc/pgx/v4 v4.6.1-0.20200606145419-4e5062306904/go.mod h1:ZDaNWkt9sW1JMiNn0kdYBaLelIhw7Pg4qd+Vk6tw7Hg= -github.com/jackc/pgx/v4 v4.10.1/go.mod h1:QlrWebbs3kqEZPHCTGyxecvzG6tvIsYu+A5b1raylkA= -github.com/jackc/pgx/v5 v5.3.1 h1:Fcr8QJ1ZeLi5zsPZqQeUZhNhxfkkKBOgJuYkJHoBOtU= -github.com/jackc/pgx/v5 v5.3.1/go.mod h1:t3JDKnCBlYIc0ewLF0Q7B8MXmoIaBOZj/ic7iHozM/8= -github.com/jackc/puddle v0.0.0-20190413234325-e4ced69a3a2b/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= -github.com/jackc/puddle v0.0.0-20190608224051-11cab39313c9/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= -github.com/jackc/puddle v1.1.0/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= -github.com/jackc/puddle v1.1.1/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= -github.com/jackc/puddle v1.1.3/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk= +github.com/jackc/pgx/v5 v5.5.4 h1:Xp2aQS8uXButQdnCMWNmvx6UysWQQC+u1EoizjguY+8= +github.com/jackc/pgx/v5 v5.5.4/go.mod h1:ez9gk+OAat140fv9ErkZDYFWmXLfV+++K0uAOiwgm1A= +github.com/jackc/puddle/v2 v2.2.1 h1:RhxXJtFG022u4ibrCSMSiu5aOq1i77R3OHKNJj77OAk= +github.com/jackc/puddle/v2 v2.2.1/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4= github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= github.com/jinzhu/now v1.1.1/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= github.com/jinzhu/now v1.1.4/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ= github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= -github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= -github.com/jmespath/go-jmespath v0.0.0-20160803190731-bd40a432e4c7/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= -github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= -github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= -github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= -github.com/jmoiron/sqlx v1.2.0/go.mod h1:1FEQNm3xlJgrMD+FBdI9+xvCksHtbpVBBw5dYhBSsks= -github.com/jmoiron/sqlx v1.3.1/go.mod h1:2BljVx/86SuTyjE+aPYlHCTNvZrnJXghYGpNiXLBMCQ= -github.com/joefitzgerald/rainbow-reporter v0.1.0/go.mod h1:481CNgqmVHQZzdIbN52CupLJyoVwB10FQ/IQlF1pdL8= -github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg= -github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= -github.com/jonboulle/clockwork v0.2.2/go.mod h1:Pkfl5aHPm1nk2H9h0bjmnJD/BcgbGXUBGnn1kMkgxc8= github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= -github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= -github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= -github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= -github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= -github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= -github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= -github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= -github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= -github.com/k0kubun/pp v2.3.0+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= -github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0/go.mod h1:1NbS8ALrpOvjt0rHPNLyCIeMtbizbir8U//inJ+zuB8= -github.com/karrick/godirwalk v1.8.0/go.mod h1:H5KPZjojv4lE+QYImBI8xVtrBRgYrIVsaRPx4tDPEn4= -github.com/karrick/godirwalk v1.10.3/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0LhBygSwrAsHA= -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs= -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= -github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= -github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/compress v1.9.5/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= -github.com/klauspost/compress v1.11.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.11.13/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.13.1/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= -github.com/klauspost/compress v1.13.4/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= -github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.15.0/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.15.6/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= -github.com/klauspost/compress v1.16.7 h1:2mk3MPGNzKyxErAw8YaohYh69+pa4sIQSC0fPGCFR9I= -github.com/klauspost/compress v1.16.7/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= +github.com/klauspost/compress v1.17.8 h1:YcnTYrq7MikUT7k0Yb5eceMmALQPYBW/Xltxn0NAMnU= +github.com/klauspost/compress v1.17.8/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/klauspost/cpuid/v2 v2.0.1/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= -github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= -github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= +github.com/klauspost/cpuid/v2 v2.2.7 h1:ZWSB3igEs+d0qvnxR/ZBzXVmxkgt8DdzP6m9pfuVLDM= +github.com/klauspost/cpuid/v2 v2.2.7/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/knz/go-libedit v1.10.1/go.mod h1:MZTVkCWyz0oBc7JOWP3wNAzd002ZbM/5hgShxwh4x8M= -github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= -github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= -github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= -github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA= -github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= -github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/ktrysmt/go-bitbucket v0.6.4/go.mod h1:9u0v3hsd2rqCHRIpbir1oP7F58uo5dq19sBYvuMoyQ4= -github.com/leodido/go-urn v1.2.1/go.mod h1:zt4jvISO2HfUBqxjfIshjdMTYS56ZS/qv49ictyFfxY= -github.com/leodido/go-urn v1.2.4 h1:XlAE/cm/ms7TE/VMVoduSpNBoyc2dOxHs5MZSwAN63Q= -github.com/leodido/go-urn v1.2.4/go.mod h1:7ZrI8mTSeBSHl/UaRyKQW1qZeMgak41ANeCNaVckg+4= -github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.1.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.3.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.8.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= -github.com/lib/pq v1.10.0 h1:Zx5DJFEYQXio93kgXnQ09fXNiUKsqv4OUEu2UtGcB1E= -github.com/lib/pq v1.10.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= -github.com/linuxkit/virtsock v0.0.0-20201010232012-f8cee7dfc7a3/go.mod h1:3r6x7q95whyfWQpmGZTu3gk3v2YkMi05HEzl7Tf7YEo= -github.com/lyft/protoc-gen-star v0.5.3/go.mod h1:V0xaHgaf5oCCqmcxYcWiDfTiKsZsRc87/1qhoTACD8w= -github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/magiconair/properties v1.8.1/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= +github.com/leodido/go-urn v1.4.0 h1:WT9HwE9SGECu3lg4d/dIA+jxlljEa1/ffXKmRjqdmIQ= +github.com/leodido/go-urn v1.4.0/go.mod h1:bvxc+MVxLKB4z00jd1z+Dvzr47oO32F/QSNjSBOlFxI= +github.com/lib/pq v1.10.9 h1:YXG7RB+JIjhP29X+OtkiDnYaXQwpS4JEWq7dtCCRUEw= +github.com/lib/pq v1.10.9/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY= github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0= -github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.7.0/go.mod h1:KAzv3t3aY1NaHWoQz1+4F1ccyAH66Jk7yos7ldAVICs= -github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0= github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE= -github.com/markbates/pkger v0.15.1/go.mod h1:0JoVlrol20BSywW79rN3kdFFsE5xYM+rSCQDXbLhiuI= -github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0= -github.com/marstr/guid v1.1.0/go.mod h1:74gB1z2wpxxInTG6yaqA7KrtM0NZ+RbrcqDvYHefzho= -github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ= -github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= -github.com/mattn/go-ieproxy v0.0.1/go.mod h1:pYabZ6IHcRpFh7vIaLfK7rdcWgFEb3SFJ6/gNWuh88E= -github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= -github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= -github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= -github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= -github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= -github.com/mattn/go-shellwords v1.0.3/go.mod h1:3xCvwCdWdlDJUrvuMn7Wuy9eWs4pE8vqg+NOMyg4B2o= -github.com/mattn/go-shellwords v1.0.6/go.mod h1:3xCvwCdWdlDJUrvuMn7Wuy9eWs4pE8vqg+NOMyg4B2o= -github.com/mattn/go-shellwords v1.0.12/go.mod h1:EZzvwXDESEeg03EKmM+RmDnNOPKG4lLtQsUlTZDWQ8Y= -github.com/mattn/go-sqlite3 v1.9.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-sqlite3 v1.14.3/go.mod h1:WVKg1VTActs4Qso6iwGbiFih2UIHo0ENGwNd0Lj+XmI= -github.com/mattn/go-sqlite3 v1.14.6/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= -github.com/mattn/go-sqlite3 v1.14.10/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= -github.com/mattn/go-sqlite3 v1.14.17 h1:mCRHCLDUBXgpKAqIKsaAaAsrAlbkeomtRFKXh2L6YIM= -github.com/mattn/go-sqlite3 v1.14.17/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= -github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= -github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/maxbrunsfeld/counterfeiter/v6 v6.2.2/go.mod h1:eD9eIE7cdwcMi9rYluz88Jz2VyhSmden33/aXg4oVIY= -github.com/meilisearch/meilisearch-go v0.25.1 h1:D5wY22sn5kkpRH3uYMGlwltdUEq5regIFmO7awHz3Vo= -github.com/meilisearch/meilisearch-go v0.25.1/go.mod h1:SxuSqDcPBIykjWz1PX+KzsYzArNLSCadQodWs8extS0= -github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= -github.com/miekg/pkcs11 v1.0.3/go.mod h1:XsNlhZGX73bx86s2hdc/FuaLm2CPZJemRLMA+WTFxgs= +github.com/mattn/go-sqlite3 v1.14.22 h1:2gZY6PC6kBnID23Tichd1K+Z0oS6nE/XwU+Vz/5o4kU= +github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y= +github.com/meilisearch/meilisearch-go v0.27.2 h1:3G21dJ5i208shnLPDsIEZ0L0Geg/5oeXABFV7nlK94k= +github.com/meilisearch/meilisearch-go v0.27.2/go.mod h1:SxuSqDcPBIykjWz1PX+KzsYzArNLSCadQodWs8extS0= github.com/minio/md5-simd v1.1.2 h1:Gdi1DZK69+ZVMoNHRXJyNcxrMA4dSxoYHZSQbirFg34= github.com/minio/md5-simd v1.1.2/go.mod h1:MzdKDxYpY2BT9XQFocsiZf/NKVtR7nkE4RoEpN+20RM= -github.com/minio/minio-go/v7 v7.0.63 h1:GbZ2oCvaUdgT5640WJOpyDhhDxvknAJU2/T3yurwcbQ= -github.com/minio/minio-go/v7 v7.0.63/go.mod h1:Q6X7Qjb7WMhvG65qKf4gUgA5XaiSox74kR1uAEjxRS4= +github.com/minio/minio-go/v7 v7.0.66 h1:bnTOXOHjOqv/gcMuiVbN9o2ngRItvqE774dG9nq0Dzw= +github.com/minio/minio-go/v7 v7.0.66/go.mod h1:DHAgmyQEGdW3Cif0UooKOyrT3Vxs82zNdV6tkKhRtbs= github.com/minio/sha256-simd v1.0.1 h1:6kaan5IFmwTNynnKKpDHe6FWHohJOHhCPchzK49dzMM= github.com/minio/sha256-simd v1.0.1/go.mod h1:Pz6AKMiUdngCLpeTL/RJY1M9rUuPMYujV5xJjtbRSN8= -github.com/mistifyio/go-zfs v2.1.2-0.20190413222219-f784269be439+incompatible/go.mod h1:8AuVvqP/mXw1px98n46wfvcGfQ4ci2FwoAjKYxuo3Z4= -github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= -github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= -github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= -github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= -github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v0.0.0-20180220230111-00c29f56e238/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY= github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/osext v0.0.0-20151018003038-5e2d6d41470f/go.mod h1:OkQIRizQZAeMln+1tSwduZz7+Af5oFlKirV/MSYes2A= -github.com/moby/locker v1.0.1/go.mod h1:S7SDdo5zpBK84bzzVlKr2V0hz+7x9hWbYC/kq7oQppc= -github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c= -github.com/moby/sys/mountinfo v0.4.0/go.mod h1:rEr8tzG/lsIZHBtN/JjGG+LMYx9eXgW2JI+6q0qou+A= -github.com/moby/sys/mountinfo v0.4.1/go.mod h1:rEr8tzG/lsIZHBtN/JjGG+LMYx9eXgW2JI+6q0qou+A= -github.com/moby/sys/mountinfo v0.5.0/go.mod h1:3bMD3Rg+zkqx8MRYPi7Pyb0Ie97QEBmdxbhnCLlSvSU= -github.com/moby/sys/signal v0.6.0/go.mod h1:GQ6ObYZfqacOwTtlXvcmh9A26dVRul/hbOZn88Kg8Tg= -github.com/moby/sys/symlink v0.1.0/go.mod h1:GGDODQmbFOjFsXvfLVn3+ZRxkch54RkSiGqsZeMYowQ= -github.com/moby/sys/symlink v0.2.0/go.mod h1:7uZVF2dqJjG/NsClqul95CqKOBRQyYSNnJ6BMgR/gFs= -github.com/moby/term v0.0.0-20200312100748-672ec06f55cd/go.mod h1:DdlQx2hp0Ss5/fLikoLlEeIYiATotOjgB//nb973jeo= -github.com/moby/term v0.0.0-20210610120745-9d4ed1856297/go.mod h1:vgPCkQMyxTZ7IDy8SXRufE172gr8+K/JE/7hHFxHW3A= -github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 h1:dcztxKSvZ4Id8iPpHERQBbIJfabdt4wUm5qy3wOL2Zc= -github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6/go.mod h1:E2VnQOmVuvZB6UYnnDB0qG5Nq/1tD9acaOpo6xmt0Kw= +github.com/moby/term v0.5.0 h1:xt8Q1nalod/v7BqbG21f8mQPqH+xAaC9C3N3wfWbVP0= +github.com/moby/term v0.5.0/go.mod h1:8FzsFHVUBGZdbDsJw/ot+X+d5HLUbvklYLJ9uGfcI3Y= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= github.com/morikuni/aec v1.0.0 h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A= github.com/morikuni/aec v1.0.0/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= github.com/mozillazg/go-httpheader v0.2.1 h1:geV7TrjbL8KXSyvghnFm+NyTux/hxwueTSrwhe88TQQ= github.com/mozillazg/go-httpheader v0.2.1/go.mod h1:jJ8xECTlalr6ValeXYdOF8fFUISeBAdw6E61aqQma60= -github.com/mrunalp/fileutils v0.5.0/go.mod h1:M1WthSahJixYnrXQl/DFQuteStB1weuxD2QJNHXfbSQ= github.com/mschoch/smat v0.2.0 h1:8imxQsjDm8yFEAVBe7azKmKSgzSkZXDuKkSq9374khM= github.com/mschoch/smat v0.2.0/go.mod h1:kc9mz7DoBKqDyiRL7VZN8KvXQMWeTaVnttLRXOlotKw= -github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= -github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ= -github.com/mutecomm/go-sqlcipher/v4 v4.4.0/go.mod h1:PyN04SaWalavxRGH9E8ZftG6Ju7rsPrGmQRjrEaVpiY= -github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw= -github.com/nakagami/firebirdsql v0.0.0-20190310045651-3c02a58cfed8/go.mod h1:86wM1zFnC6/uDBfZGNwB65O+pR2OFi5q/YQaEUid1qA= -github.com/ncw/swift v1.0.47/go.mod h1:23YIA4yWVnGwv2dQlN4bB7egfYX6YLn0Yo/S6zZO/ZM= -github.com/neo4j/neo4j-go-driver v1.8.1-0.20200803113522-b626aa943eba/go.mod h1:ncO5VaFWh0Nrt+4KT4mOZboaczBZcLuHrG+/sUeP8gI= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= -github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= -github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/olekukonko/tablewriter v0.0.0-20170122224234-a0225b3f23b5/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/onsi/ginkgo v0.0.0-20151202141238-7f8ab55aaf3b/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.8.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.10.1/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.11.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.12.0/go.mod h1:oUhWkIvk5aDxtKvDDuw8gItl8pKl42LzjC9KZE0HfGg= -github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= -github.com/onsi/ginkgo v1.13.0/go.mod h1:+REjRxOmWfHCjfv9TTWB1jD1Frx4XydAD3zm1lskyM0= -github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= -github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0= -github.com/onsi/ginkgo/v2 v2.12.1 h1:uHNEO1RP2SpuZApSkel9nEh1/Mu+hmQe7Q+Pepg5OYA= -github.com/onsi/ginkgo/v2 v2.12.1/go.mod h1:TE309ZR8s5FsKKpuB1YAQYBzCaAfUgatB/xlT/ETL/o= -github.com/onsi/gomega v0.0.0-20151007035656-2152b45fa28a/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= -github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= -github.com/onsi/gomega v1.5.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= -github.com/onsi/gomega v1.9.0/go.mod h1:Ho0h+IUsWyvy1OpqCwxlQ/21gkhVunqlU8fDGcoTdcA= -github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= -github.com/onsi/gomega v1.10.3/go.mod h1:V9xEwhxec5O8UDM77eCW8vLymOMltsqPVYWrpDsH8xc= -github.com/onsi/gomega v1.15.0/go.mod h1:cIuvLEne0aoVhAgh/O6ac0Op8WWw9H6eYCriF+tEHG0= -github.com/onsi/gomega v1.28.0 h1:i2rg/p9n/UqIDAMFUJ6qIUUMcsqOuUHgbpbu235Vr1c= -github.com/onsi/gomega v1.28.0/go.mod h1:A1H2JE76sI14WIP57LMKj7FVfCHx3g3BcZVjJG8bjX8= -github.com/opencontainers/go-digest v0.0.0-20170106003457-a6d0ee40d420/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= -github.com/opencontainers/go-digest v0.0.0-20180430190053-c9281466c8b2/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= -github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= -github.com/opencontainers/go-digest v1.0.0-rc1.0.20180430190053-c9281466c8b2/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= +github.com/ncruces/go-strftime v0.1.9 h1:bY0MQC28UADQmHmaF5dgpLmImcShSi2kHU9XLdhx/f4= +github.com/ncruces/go-strftime v0.1.9/go.mod h1:Fwc5htZGVVkseilnfgOVb9mKy6w1naJmn9CehxcKcls= +github.com/onsi/ginkgo/v2 v2.19.0 h1:9Cnnf7UHo57Hy3k6/m5k3dRfGTMXGvxhHFvkDTCTpvA= +github.com/onsi/ginkgo/v2 v2.19.0/go.mod h1:rlwLi9PilAFJ8jCg9UE1QP6VBpd6/xj3SRC0d6TU0To= +github.com/onsi/gomega v1.33.1 h1:dsYjIxxSR755MDmKVsaFQTE22ChNBcuuTWgkUDSubOk= +github.com/onsi/gomega v1.33.1/go.mod h1:U4R44UsT+9eLIaYRB2a5qajjtQYn0hauxvRm16AVYg0= github.com/opencontainers/go-digest v1.0.0 h1:apOUWs51W5PlhuyGyz9FCeeBIOUDA/6nW8Oi/yOhh5U= github.com/opencontainers/go-digest v1.0.0/go.mod h1:0JzlMkj0TRzQZfJkVvzbP0HBR3IKzErnv2BNG4W4MAM= -github.com/opencontainers/image-spec v1.0.0/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= -github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= -github.com/opencontainers/image-spec v1.0.2-0.20211117181255-693428a734f5/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= github.com/opencontainers/image-spec v1.0.2 h1:9yCKha/T5XdGtO0q9Q9a6T5NUCsTn/DrBg0D7ufOcFM= github.com/opencontainers/image-spec v1.0.2/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= -github.com/opencontainers/runc v0.0.0-20190115041553-12f6a991201f/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v0.1.1/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v1.0.0-rc8.0.20190926000215-3e425f80a8c9/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v1.0.0-rc9/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= -github.com/opencontainers/runc v1.0.0-rc93/go.mod h1:3NOsor4w32B2tC0Zbl8Knk4Wg84SM2ImC1fxBuqJ/H0= -github.com/opencontainers/runc v1.0.2/go.mod h1:aTaHFFwQXuA71CiyxOdFFIorAoemI04suvGRQFzWTD0= -github.com/opencontainers/runc v1.1.0/go.mod h1:Tj1hFw6eFWp/o33uxGf5yF2BX5yz2Z6iptFpuvbbKqc= -github.com/opencontainers/runtime-spec v0.1.2-0.20190507144316-5b71a03e2700/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.1/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.2-0.20190207185410-29686dbc5559/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.2/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.3-0.20200929063507-e6143ca7d51d/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= -github.com/opencontainers/runtime-tools v0.0.0-20181011054405-1d69bd0f9c39/go.mod h1:r3f7wjNzSs2extwzU3Y+6pKfobzPh+kKFJ3ofN+3nfs= -github.com/opencontainers/selinux v1.6.0/go.mod h1:VVGKuOLlE7v4PJyT6h7mNWvq1rzqiriPsEqVhc+svHE= -github.com/opencontainers/selinux v1.8.0/go.mod h1:RScLhm78qiWa2gbVCcGkC7tCGdgk3ogry1nUQF8Evvo= -github.com/opencontainers/selinux v1.8.2/go.mod h1:MUIHuUEvKB1wtJjQdOyYRgOnLD2xAPP8dBsCoU0KuF8= -github.com/opencontainers/selinux v1.10.0/go.mod h1:2i0OySw99QjzBBQByd1Gr9gSjvuho1lHsJxIJ3gGbJI= -github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= -github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE= -github.com/pelletier/go-toml v1.8.1/go.mod h1:T2/BmBdy8dvIRq1a/8aqjN41wvWlN4lrapLU/GW4pbc= -github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= -github.com/pelletier/go-toml/v2 v2.0.1/go.mod h1:r9LEWfGN8R5k0VXJ+0BkIe7MYkRdwZOjgMj2KwnJFUo= -github.com/pelletier/go-toml/v2 v2.0.8 h1:0ctb6s9mE31h0/lhu+J6OPmVeDxJn+kYnJc2jZR9tGQ= -github.com/pelletier/go-toml/v2 v2.0.8/go.mod h1:vuYfssBdrU2XDZ9bYydBu6t+6a6PYNcZljzZR9VXg+4= -github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= -github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= -github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= -github.com/pierrec/lz4/v4 v4.1.8/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= +github.com/pelletier/go-toml/v2 v2.2.2 h1:aYUidT7k73Pcl9nb2gScu7NSrKCSHIDE89b3+6Wq+LM= +github.com/pelletier/go-toml/v2 v2.2.2/go.mod h1:1t835xjRzz80PqgE6HHgN2JOsmgYu/h4qDAS4n929Rs= github.com/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4= -github.com/pkg/browser v0.0.0-20210706143420-7d21f8c997e2/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= -github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= +github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= -github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1-0.20171018195549-f15c970de5b7/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= -github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= -github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021/go.mod h1:prYjPmNq4d1NPVmpShWobRqXY3q7Vp+80DqgxxUrUIA= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prashantv/gostub v1.1.0 h1:BTyx3RfQjRHnUWaGF9oQos79AlQ5k8WNktv7VGvVH4g= -github.com/prometheus/client_golang v0.0.0-20180209125602-c332b6f63c06/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= -github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= -github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g= -github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= -github.com/prometheus/client_golang v1.16.0 h1:yk/hx9hDbrGHovbci4BY+pRMfSuuat626eFsHb7tmT8= -github.com/prometheus/client_golang v1.16.0/go.mod h1:Zsulrv/L9oM40tJ7T815tM89lFEugiJ9HzIqaAx4LKc= -github.com/prometheus/client_model v0.0.0-20171117100541-99fa1f4be8e5/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.3.0 h1:UBgGFHqYdG/TPFD1B1ogZywDqEkwp3fBMvqdiQ7Xew4= -github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= -github.com/prometheus/common v0.0.0-20180110214958-89604d197083/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= -github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= -github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= -github.com/prometheus/common v0.30.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.42.0 h1:EKsfXEYo4JpWMHH5cg+KOUWeuJSov1Id8zGR8eeI1YM= -github.com/prometheus/common v0.42.0/go.mod h1:xBwqVerjNdUDjgODMpudtOMwlOwf2SaTr1yjz4b7Zbc= -github.com/prometheus/procfs v0.0.0-20180125133057-cb4147076ac7/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.0-20190522114515-bc1a522cf7b1/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= -github.com/prometheus/procfs v0.0.5/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= -github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= -github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.2.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.10.1 h1:kYK1Va/YMlutzCGazswoHKo//tZVlFpKYh+PymziUAg= -github.com/prometheus/procfs v0.10.1/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPHWJq+XBB/FM= -github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= -github.com/pyroscope-io/client v0.7.2 h1:OX2qdUQsS8RSkn/3C8isD7f/P0YiZQlRbAlecAaj/R8= -github.com/pyroscope-io/client v0.7.2/go.mod h1:FEocnjn+Ngzxy6EtU9ZxXWRvQ0+pffkrBxHLnPpxwi8= -github.com/pyroscope-io/godeltaprof v0.1.2 h1:MdlEmYELd5w+lvIzmZvXGNMVzW2Qc9jDMuJaPOR75g4= -github.com/pyroscope-io/godeltaprof v0.1.2/go.mod h1:psMITXp90+8pFenXkKIpNhrfmI9saQnPbba27VIaiQE= -github.com/redis/rueidis v1.0.19 h1:s65oWtotzlIFN8eMPhyYwxlwLR1lUdhza2KtWprKYSo= -github.com/redis/rueidis v1.0.19/go.mod h1:8B+r5wdnjwK3lTFml5VtxjzGOQAC+5UmujoD12pDrEo= -github.com/remyoudompheng/bigfft v0.0.0-20190728182440-6a916e37a237/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= -github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U= +github.com/prometheus/client_golang v1.19.1 h1:wZWJDwK+NameRJuPGDhlnFgx8e8HN3XHQeLaYJFJBOE= +github.com/prometheus/client_golang v1.19.1/go.mod h1:mP78NwGzrVks5S2H6ab8+ZZGJLZUq1hoULYBAYBw1Ho= +github.com/prometheus/client_model v0.5.0 h1:VQw1hfvPvk3Uv6Qf29VrPF32JB6rtbgI6cYPYQjL0Qw= +github.com/prometheus/client_model v0.5.0/go.mod h1:dTiFglRmd66nLR9Pv9f0mZi7B7fk5Pm3gvsjB5tr+kI= +github.com/prometheus/common v0.48.0 h1:QO8U2CdOzSn1BBsmXJXduaaW+dY/5QLjfB8svtSzKKE= +github.com/prometheus/common v0.48.0/go.mod h1:0/KsvlIEfPQCQ5I2iNSAWKPZziNCvRs5EC6ILDTlAPc= +github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= +github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= +github.com/redis/rueidis v1.0.37 h1:RBb1s97wcvlK94YZvyh+B/c6zOkc0ssamlfWRGfRlaw= +github.com/redis/rueidis v1.0.37/go.mod h1:bnbkk4+CkXZgDPEbUtSos/o55i4RhFYYesJ4DS2zmq0= github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec h1:W09IVJc94icq4NjY3clb7Lk8O1qJ8BdBEF8z0ibU0rE= github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs= github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro= -github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= -github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= -github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= -github.com/rogpeppe/go-internal v1.8.0/go.mod h1:WmiCO8CzOY8rg0OYDC4/i/2WRWAB6poM+XZ2dLUbcbE= -github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= -github.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ= +github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= +github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= github.com/rs/xid v1.5.0 h1:mKX4bl4iPYJtEIxp6CYiUuLQ/8DYMoz0PUdtGgMFRVc= github.com/rs/xid v1.5.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= -github.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OKkWU= -github.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc= -github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= -github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= -github.com/safchain/ethtool v0.0.0-20190326074333-42ed695e3de8/go.mod h1:Z0q5wiBQGYcxhMZ6gUqHn6pYNLypFAvaL3UvgZLR0U4= -github.com/safchain/ethtool v0.0.0-20210803160452-9aa261dae9b1/go.mod h1:Z0q5wiBQGYcxhMZ6gUqHn6pYNLypFAvaL3UvgZLR0U4= -github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= -github.com/sclevine/agouti v3.0.0+incompatible/go.mod h1:b4WX9W9L1sfQKXeJf1mUTLZKJ48R1S7H23Ji7oFO5Bw= -github.com/sclevine/spec v1.2.0/go.mod h1:W4J29eT/Kzv7/b9IWLB055Z+qvVC9vt0Arko24q7p+U= -github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= -github.com/seccomp/libseccomp-golang v0.9.1/go.mod h1:GbW5+tmTXfcxTToHLXlScSlAvWlF4P2Ca7zGrPiEpWo= -github.com/seccomp/libseccomp-golang v0.9.2-0.20210429002308-3879420cc921/go.mod h1:JA8cRccbGaA1s33RQf7Y1+q9gHmZX1yB/z9WDN1C6fg= -github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4= -github.com/shopspring/decimal v0.0.0-20200227202807-02e2044944cc/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= -github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= -github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= -github.com/sirupsen/logrus v1.0.4-0.20170822132746-89742aefa4b2/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= -github.com/sirupsen/logrus v1.0.6/go.mod h1:pMByvHTf9Beacp5x1UXfOR9xyW/9antXMhjMPG0dEzc= -github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= -github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/sirupsen/logrus v1.7.0/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= -github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= +github.com/sagikazarmark/locafero v0.4.0 h1:HApY1R9zGo4DBgr7dqsTH/JJxLTTsOt7u6keLGt6kNQ= +github.com/sagikazarmark/locafero v0.4.0/go.mod h1:Pe1W6UlPYUk/+wc/6KFhbORCfqzgYEpgQ3O5fPuL3H4= +github.com/sagikazarmark/slog-shim v0.1.0 h1:diDBnUNK9N/354PgrxMywXnAwEr1QZcOr6gto+ugjYE= +github.com/sagikazarmark/slog-shim v0.1.0/go.mod h1:SrcSrq8aKtyuqEI1uvTDTK1arOWRIczQRv+GVI1AkeQ= github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ= github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= -github.com/smartwalle/alipay/v3 v3.2.16 h1:oSzcQgV+kUHH7ko7FjYowU4RIm6chuQjgXeuChUbj0M= -github.com/smartwalle/alipay/v3 v3.2.16/go.mod h1:5EC6QZNr51TjmDAJFHSEJMLLSoTtge7583W2vuNmOYc= -github.com/smartwalle/ncrypto v1.0.3 h1:fnzjoriZt2LZeD8ljEtRe2eU33Au7i8vIF4Gafz5RuI= -github.com/smartwalle/ncrypto v1.0.3/go.mod h1:Dwlp6sfeNaPMnOxMNayMTacvC5JGEVln3CVdiVDgbBk= -github.com/smartwalle/ngx v1.0.7 h1:BIQo6wmAnERehogNKUnthoxwBavTWxbR9oLFcGjWXKQ= -github.com/smartwalle/ngx v1.0.7/go.mod h1:mx/nz2Pk5j+RBs7t6u6k22MPiBG/8CtOMpCnALIG8Y0= -github.com/smartwalle/nsign v1.0.8 h1:78KWtwKPrdt4Xsn+tNEBVxaTLIJBX9YRX0ZSrMUeuHo= -github.com/smartwalle/nsign v1.0.8/go.mod h1:eY6I4CJlyNdVMP+t6z1H6Jpd4m5/V+8xi44ufSTxXgc= -github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= -github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= -github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= -github.com/snowflakedb/gosnowflake v1.6.3/go.mod h1:6hLajn6yxuJ4xUHZegMekpq9rnQbGJ7TMwXjgTmA6lg= -github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= -github.com/soheilhy/cmux v0.1.5/go.mod h1:T7TcVDs9LWfQgPlPsdngu6I6QIoyIFZDDC6sNE1GqG0= +github.com/smartwalle/alipay/v3 v3.2.20 h1:IjpG3YYgUgzCfS0z/EHlUbbr0OlrmOBHUst/3FzToYE= +github.com/smartwalle/alipay/v3 v3.2.20/go.mod h1:KWg91KsY+eIOf26ZfZeH7bed1bWulGpGrL1ErHF3jWo= +github.com/smartwalle/ncrypto v1.0.4 h1:P2rqQxDepJwgeO5ShoC+wGcK2wNJDmcdBOWAksuIgx8= +github.com/smartwalle/ncrypto v1.0.4/go.mod h1:Dwlp6sfeNaPMnOxMNayMTacvC5JGEVln3CVdiVDgbBk= +github.com/smartwalle/ngx v1.0.9 h1:pUXDvWRZJIHVrCKA1uZ15YwNti+5P4GuJGbpJ4WvpMw= +github.com/smartwalle/ngx v1.0.9/go.mod h1:mx/nz2Pk5j+RBs7t6u6k22MPiBG/8CtOMpCnALIG8Y0= +github.com/smartwalle/nsign v1.0.9 h1:8poAgG7zBd8HkZy9RQDwasC6XZvJpDGQWSjzL2FZL6E= +github.com/smartwalle/nsign v1.0.9/go.mod h1:eY6I4CJlyNdVMP+t6z1H6Jpd4m5/V+8xi44ufSTxXgc= github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo= github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIKqDmF7Mt0= -github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/afero v1.2.2/go.mod h1:9ZxEEn6pIJ8Rxe320qSDBk6AsU0r9pR7Q4OcevTdifk= -github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= -github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= -github.com/spf13/afero v1.9.5 h1:stMpOSZFs//0Lv29HduCmli3GUfpFoF3Y1Q/aXj/wVM= -github.com/spf13/afero v1.9.5/go.mod h1:UBogFpq8E9Hx+xc5CNTTEpTnuHVmXDwZcZcE1eb/UhQ= -github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cast v1.5.1 h1:R+kOtfhWQE6TVQzY+4D7wJLBgkdVasCEFxSUBYBYIlA= -github.com/spf13/cast v1.5.1/go.mod h1:b9PdjNptOpzXr7Rq1q9gJML/2cdGQAo69NKzQ10KN48= -github.com/spf13/cobra v0.0.2-0.20171109065643-2da4a54c5cee/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= -github.com/spf13/cobra v1.1.3/go.mod h1:pGADOWyqRD/YMrPZigI/zbliZ2wVD/23d+is3pSWzOo= -github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I= -github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0= -github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= -github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= -github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= -github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.1-0.20171106142849-4c012f6dcd95/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/afero v1.11.0 h1:WJQKhtpdm3v2IzqG8VMqrr6Rf3UYpEF239Jy9wNepM8= +github.com/spf13/afero v1.11.0/go.mod h1:GH9Y3pIexgf1MTIWtNGyogA5MwRIDXGUr+hbWNoBjkY= +github.com/spf13/cast v1.6.0 h1:GEiTHELF+vaR5dhz3VqZfFSzZjYbgeKDpBxQVS4GYJ0= +github.com/spf13/cast v1.6.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo= +github.com/spf13/cobra v1.8.1 h1:e5/vxKd/rZsfSJMUX1agtjeTDf+qv1/JdBF8gg5k9ZM= +github.com/spf13/cobra v1.8.1/go.mod h1:wHxEcudfqmLYa8iTfL+OuZPbBZkmvliBWKIezN3kD9Y= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= -github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= -github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= -github.com/spf13/viper v1.16.0 h1:rGGH0XDZhdUOryiDWjmIvUSWpbNqisK8Wk0Vyefw8hc= -github.com/spf13/viper v1.16.0/go.mod h1:yg78JgCJcbrQOvV9YLXgkLaZqUidkY9K+Dd1FofRzQg= -github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980/go.mod h1:AO3tvPzVZ/ayst6UlUKUv6rcPQInYe3IknH3jYhAKu8= -github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8= -github.com/stretchr/objx v0.0.0-20180129172003-8a3f7159479f/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/spf13/viper v1.18.2 h1:LUXCnvUvSM6FXAsj6nnfc8Q2tp1dIgUfY9Kc8GsSOiQ= +github.com/spf13/viper v1.18.2/go.mod h1:EKmWIqdnk5lOcmR72yw6hS+8OPYcwD0jteitLMVB+yk= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/testify v0.0.0-20180303142811-b89eecf5ca5d/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= -github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= -github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.3 h1:RP3t2pwF7cMEbC1dqtB6poj3niw/9gnV4Cjg5oW5gtY= -github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= -github.com/subosito/gotenv v1.4.2 h1:X1TuBLAMDFbaTAChgCBLu3DU3UPyELpnF2jjJ2cz/S8= -github.com/subosito/gotenv v1.4.2/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= -github.com/syndtr/gocapability v0.0.0-20170704070218-db04d3cc01c8/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= -github.com/syndtr/gocapability v0.0.0-20180916011248-d98352740cb2/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= -github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= -github.com/tchap/go-patricia v2.2.6+incompatible/go.mod h1:bmLyhP68RS6kStMGxByiQ23RP/odRBOTVjwp2cDyi6I= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8= +github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU= github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/common v1.0.563/go.mod h1:7sCQWVkxcsR38nffDW057DRGk8mUjK1Ing/EFOK8s8Y= github.com/tencentcloud/tencentcloud-sdk-go/tencentcloud/kms v1.0.563/go.mod h1:uom4Nvi9W+Qkom0exYiJ9VWJjXwyxtPYTkKkaLMlfE0= -github.com/tencentyun/cos-go-sdk-v5 v0.7.43 h1:aPCPWy85T3C3Ga3hn7va2DC4c0hAf8Dx0kpKj/uB/vw= -github.com/tencentyun/cos-go-sdk-v5 v0.7.43/go.mod h1:LUFnaqRmGk6pEHOaRmdn2dCZR2j0cSsM5xowWFPTPao= -github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= -github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/tv42/httpunix v0.0.0-20191220191345-2ba4b9c3382c/go.mod h1:hzIxponao9Kjc7aWznkXaL4U4TWaDSs8zcsY4Ka08nM= +github.com/tencentyun/cos-go-sdk-v5 v0.7.52 h1:gCCQBWGNs8Bgx0VSsld5vjgi2U+MiMwjbzy7sDMyKiA= +github.com/tencentyun/cos-go-sdk-v5 v0.7.52/go.mod h1:UN+VdbCl1hg+kKi5RXqZgaP+Boqfmk+D04GRc4XFk70= github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= -github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= -github.com/ugorji/go v1.2.7/go.mod h1:nF9osbDWLy6bDVv/Rtoh6QgnvNDpmCalQV5urGCCS6M= -github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY= -github.com/ugorji/go/codec v1.2.11 h1:BMaWp1Bb6fHwEtbplGBGJ498wD+LKlNSl25MjdZY4dU= -github.com/ugorji/go/codec v1.2.11/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg= -github.com/urfave/cli v0.0.0-20171014202726-7bc6a0acffa5/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= -github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= -github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= -github.com/urfave/cli v1.22.2/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/ugorji/go/codec v1.2.12 h1:9LC83zGrHhuUA9l16C9AHXAqEV/2wBQ4nkvumAE65EE= +github.com/ugorji/go/codec v1.2.12/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= github.com/valyala/fasthttp v1.37.1-0.20220607072126-8a320890c08d/go.mod h1:t/G+3rLek+CyY9bnIE+YlMRddxVAAGjhxndDB4i4C0I= -github.com/valyala/fasthttp v1.40.0 h1:CRq/00MfruPGFLTQKY8b+8SfdK60TxNztjRMnH0t1Yc= -github.com/valyala/fasthttp v1.40.0/go.mod h1:t/G+3rLek+CyY9bnIE+YlMRddxVAAGjhxndDB4i4C0I= +github.com/valyala/fasthttp v1.52.0 h1:wqBQpxH71XW0e2g+Og4dzQM8pk34aFYlA1Ga8db7gU0= +github.com/valyala/fasthttp v1.52.0/go.mod h1:hf5C4QnVMkNXMspnsUlfM3WitlgYflyhHYoKol/szxQ= github.com/valyala/tcplisten v1.0.0/go.mod h1:T0xQ8SeCZGxckz9qRXTfG43PvQ/mcWh7FwZEA7Ioqkc= -github.com/vishvananda/netlink v0.0.0-20181108222139-023a6dafdcdf/go.mod h1:+SR5DhBJrl6ZM7CoCKvpw5BKroDKQ+PJqOg65H/2ktk= -github.com/vishvananda/netlink v1.1.0/go.mod h1:cTgwzPIzzgDAYoQrMm0EdrjRUBkTqKYppBueQtXaqoE= -github.com/vishvananda/netlink v1.1.1-0.20201029203352-d40f9887b852/go.mod h1:twkDnbuQxJYemMlGd4JFIcuhgX83tXhKS2B/PRMpOho= -github.com/vishvananda/netlink v1.1.1-0.20210330154013-f5de75959ad5/go.mod h1:twkDnbuQxJYemMlGd4JFIcuhgX83tXhKS2B/PRMpOho= -github.com/vishvananda/netns v0.0.0-20180720170159-13995c7128cc/go.mod h1:ZjcWmFBXmLKZu9Nxj3WKYEafiSqer2rnvPr0en9UNpI= -github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17pCcGlemwknint6hfoeCVQrEMVwxRLRjXpq+BU= -github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0= -github.com/vishvananda/netns v0.0.0-20210104183010-2eb08e3e575f/go.mod h1:DD4vA1DwXk04H54A1oHXtwZmA0grkVMdPxx/VGLCah0= -github.com/willf/bitset v1.1.11-0.20200630133818-d5bec3311243/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= -github.com/willf/bitset v1.1.11/go.mod h1:83CECat5yLh5zVOf4P1ErAgKA5UDvKtgyUABdr3+MjI= -github.com/xanzy/go-gitlab v0.15.0/go.mod h1:8zdQa/ri1dfn8eS3Ir1SyfvOKlw7WBJ8DVThkpGiXrs= -github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI= -github.com/xdg-go/scram v1.0.2/go.mod h1:1WAq6h33pAW+iRreB34OORO2Nf7qel3VV3fjBj+hCSs= -github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM= -github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= -github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= -github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= -github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= github.com/yinheli/mahonia v0.0.0-20131226213531-0eef680515cc h1:7VHQaaNwHymWbj8lAcXMYX1qopebSBHwYC3ceXLWONU= github.com/yinheli/mahonia v0.0.0-20131226213531-0eef680515cc/go.mod h1:Pcc297eVCbkDBBVq8FbnI+qDUeIMrHy4Bo7nveAuCAs= -github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA= -github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= -github.com/yvasiyarov/go-metrics v0.0.0-20140926110328-57bccd1ccd43/go.mod h1:aX5oPXxHm3bOH+xeAttToC8pqch2ScQN/JoXYupl6xs= -github.com/yvasiyarov/gorelic v0.0.0-20141212073537-a9bba5b9ab50/go.mod h1:NUSPSUX/bi6SeDMUh6brw0nXpxHnc96TguQh0+r/ssA= -github.com/yvasiyarov/newrelic_platform_go v0.0.0-20140908184405-b21fdbd4370f/go.mod h1:GlGEuHIJweS1mbCqG+7vt2nvWLzLLnRHbXz5JKd/Qbg= -github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q= -gitlab.com/nyarla/go-crypt v0.0.0-20160106005555-d9a5dc2b789b/go.mod h1:T3BPAOm2cqquPa0MKWeNkmOM5RQsRhkrwMWonFMN7fE= -go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.5/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ= -go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= -go.etcd.io/etcd v0.5.0-alpha.5.0.20200910180754-dd1b699fc489/go.mod h1:yVHk9ub3CSBatqGNg7GRmsnfLWtoW60w4eDYfh7vHDg= -go.etcd.io/etcd/api/v3 v3.5.0/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs= -go.etcd.io/etcd/client/pkg/v3 v3.5.0/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= -go.etcd.io/etcd/client/v2 v2.305.0/go.mod h1:h9puh54ZTgAKtEbut2oe9P4L/oqKCVB6xsXlzd7alYQ= -go.etcd.io/etcd/client/v3 v3.5.0/go.mod h1:AIKXXVX/DQXtfTEqBryiLTUXwON+GuvO6Z7lLS/oTh0= -go.etcd.io/etcd/pkg/v3 v3.5.0/go.mod h1:UzJGatBQ1lXChBkQF0AuAtkRQMYnHubxAEYIrC3MSsE= -go.etcd.io/etcd/raft/v3 v3.5.0/go.mod h1:UFOHSIvO/nKwd4lhkwabrTD3cqW5yVyYYf/KlD00Szc= -go.etcd.io/etcd/server/v3 v3.5.0/go.mod h1:3Ah5ruV+M+7RZr0+Y/5mNLwC+eQlni+mQmOVdCRJoS4= -go.mongodb.org/mongo-driver v1.7.0/go.mod h1:Q4oFMbo1+MSNqICAdYMlC/zSTrwCogR4R8NzkI+yfU8= -go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1/go.mod h1:SNgMg+EgDFwmvSmLRTNKC5fegJjB7v23qTQ0XLGUNHk= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= -go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= -go.opentelemetry.io/contrib v0.20.0/go.mod h1:G/EtFaa6qaN7+LxqfIAT3GiZa7Wv5DTBUzl5H4LY0Kc= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.20.0/go.mod h1:oVGt1LRbBOBq1A5BQLlUg9UaU/54aiHw8cgjV3aWZ/E= -go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.28.0/go.mod h1:vEhqr0m4eTc+DWxfsXoXue2GBgV2uUwVznkGIHW/e5w= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.20.0/go.mod h1:2AboqHi0CiIZU0qwhtUfCYD1GeUzvvIXWNkhDt7ZMG4= -go.opentelemetry.io/otel v0.20.0/go.mod h1:Y3ugLH2oa81t5QO+Lty+zXf8zC9L26ax4Nzoxm/dooo= -go.opentelemetry.io/otel v1.3.0/go.mod h1:PWIKzi6JCp7sM0k9yZ43VX+T345uNbAkDKwHVjb2PTs= -go.opentelemetry.io/otel/exporters/otlp v0.20.0/go.mod h1:YIieizyaN77rtLJra0buKiNBOm9XQfkPEKBeuhoMwAM= -go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0/go.mod h1:VpP4/RMn8bv8gNo9uK7/IMY4mtWLELsS+JIP0inH0h4= -go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0/go.mod h1:hO1KLR7jcKaDDKDkvI9dP/FIhpmna5lkqPUQdEjFAM8= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0/go.mod h1:keUU7UfnwWTWpJ+FWnyqmogPa82nuU5VUANFq49hlMY= -go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0/go.mod h1:QNX1aly8ehqqX1LEa6YniTU7VY9I6R3X/oPxhGdTceE= -go.opentelemetry.io/otel/metric v0.20.0/go.mod h1:598I5tYlH1vzBjn+BTuhzTCSb/9debfNp6R3s7Pr1eU= -go.opentelemetry.io/otel/oteltest v0.20.0/go.mod h1:L7bgKf9ZB7qCwT9Up7i9/pn0PWIa9FqQ2IQ8LoxiGnw= -go.opentelemetry.io/otel/sdk v0.20.0/go.mod h1:g/IcepuwNsoiX5Byy2nNV0ySUF1em498m7hBWC279Yc= -go.opentelemetry.io/otel/sdk v1.3.0/go.mod h1:rIo4suHNhQwBIPg9axF8V9CA72Wz2mKF1teNrup8yzs= -go.opentelemetry.io/otel/sdk/export/metric v0.20.0/go.mod h1:h7RBNMsDJ5pmI1zExLi+bJK+Dr8NQCh0qGhm1KDnNlE= -go.opentelemetry.io/otel/sdk/metric v0.20.0/go.mod h1:knxiS8Xd4E/N+ZqKmUPf3gTTZ4/0TjTXukfxjzSTpHE= -go.opentelemetry.io/otel/trace v0.20.0/go.mod h1:6GjCW8zgDjwGHGa6GkyeB8+/5vjT16gUEi0Nf1iBdgw= -go.opentelemetry.io/otel/trace v1.3.0/go.mod h1:c/VDhno8888bvQYmbYLqe41/Ldmr/KKunbvWM4/fEjk= -go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= -go.opentelemetry.io/proto/otlp v0.11.0/go.mod h1:QpEjXPrNQzrFDZgoTo49dgHR9RYRSrg3NAKnUGl9YpQ= -go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= -go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE= go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= go.uber.org/automaxprocs v1.5.3 h1:kWazyxZUrS3Gs4qUpbwo5kEIMGe/DAvi5Z4tl2NW4j8= go.uber.org/automaxprocs v1.5.3/go.mod h1:eRbA25aqJrxAbsLO0xy5jVwPt7FQnRgjW+efnwa1WM0= -go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= -go.uber.org/goleak v1.1.12/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ= -go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= -go.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU= -go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= -go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= -go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= +go.uber.org/multierr v1.9.0 h1:7fIwc/ZtS0q++VgcfqFDxSBZVv/Xo49/SYnDFupUwlI= +go.uber.org/multierr v1.9.0/go.mod h1:X2jQV1h+kxSjClGpnseKVIxpmcjrj7MNnI0bnlfKTVQ= golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8= -golang.org/x/arch v0.3.0 h1:02VY4/ZcO/gBOH6PUaoiptASxtXU10jazRCP865E97k= -golang.org/x/arch v0.3.0/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8= -golang.org/x/crypto v0.0.0-20171113213409-9f005a07e0d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181009213950-7c1a557ab941/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/arch v0.8.0 h1:3wRIsP3pM4yUptoR96otTUOXI367OS0+c9eeRi9doIc= +golang.org/x/arch v0.8.0/go.mod h1:FEVrYAQjsQXMVJ1nsMoVVXPZg6p2JE2mx8psSWTDQys= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190411191339-88737f569e3a/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/crypto v0.0.0-20190422162423-af44ce270edf/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190911031432-227b76d455e7/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.13.0 h1:mvySKfSWJ+UKUii46M40LOvyWfN0s2U+46/jDd0e6Ck= -golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= -golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= -golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= -golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= -golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= -golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= -golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= -golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/crypto v0.19.0/go.mod h1:Iy9bg/ha4yyC70EfRS8jz+B6ybOBKMaSxLj6P6oBDfU= +golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= +golang.org/x/crypto v0.25.0 h1:ypSNr+bnYL2YhwoMt2zPxHFmbAN1KZs/njMG3hxUp30= +golang.org/x/crypto v0.25.0/go.mod h1:T+wALwcMOSE0kXgUAnPAHqTLW+XHgcELELW8VaDgm/M= +golang.org/x/exp v0.0.0-20231108232855-2478ac86f678 h1:mchzmB1XO2pMaKFRqk/+MV3mgGG96aqaPXaMifQU47w= +golang.org/x/exp v0.0.0-20231108232855-2478ac86f678/go.mod h1:zk2irFbV9DP96SEBUUAy67IdHUaZuSnrz1n472HUCLE= golang.org/x/image v0.0.0-20191009234506-e7c1f5e7dbb8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200119044424-58c23975cae1/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200430140353-33d19683fad8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200618115811-c13761719519/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20201208152932-35266b937fa6/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/image v0.0.0-20210216034530-4410531fe030 h1:lP9pYkih3DUSC641giIXa2XqfTIbbbRr0w2EOTA7wHA= golang.org/x/image v0.0.0-20210216034530-4410531fe030/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= -golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= -golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= -golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= -golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= -golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc= -golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/net v0.0.0-20180218175443-cbe0f9307d01/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181011144130-49bb7cea24b1/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181023162649-9b4f9f5ad519/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181108082009-03003ca0c849/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA= +golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190225153610-fe579d43d832/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= -golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= -golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190619014844-b5b0513f8c1b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191004110552-13f9640d40b9/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191112182307-2180aed22343/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20201006153459-a7d1128ccaa0/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= -golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210505024714-0287a6fb4125/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210520170846-37e1c6afe023/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210825183410-e898025ed96a/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211209124913-491a49abca63/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211216030914-fe4d6282115f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220111093109-d55c255bac03/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8= -golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= -golang.org/x/oauth2 v0.0.0-20180227000427-d7d64896b5ff/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190412183630-56d357773e84/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= +golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac= +golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E= -golang.org/x/sys v0.0.0-20180224232135-f6cff0780e54/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181026203630-95b1ffbd15a5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= +golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190419153524-e8e3143a4f4a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190522044717-8097e1b27ff5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190531175056-4c3a928424d2/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190602015325-4c4f7f33c9ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190606203320-7fc4e5ec1444/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190812073006-9eafafc0a87e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191022100944-742c48ecaeb7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191112214154-59a1497f0cea/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191115151921-52ab43148777/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191210023423-ac6580df4449/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200120151820-655fe14d7479/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200217220822-9197077df867/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200622214017-ed371f2e16b4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200817155316-9781c653f443/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200828194041-157a740278f4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200831180312-196b9ba8737a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200916030750-2334cc1a136f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200922070232-aee5d888a860/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200923182605-d9f96fdee20d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201112073958-5cba982894dd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201117170446-d9b008d0a637/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201126233918-771906719818/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201202213521-69691e467435/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210426230700-d19ff857e887/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210818153620-00dd8d7831e7/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210831042530-f4d43177bf5e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210903071746-97244b99971b/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210906170528-6f6e22806c34/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211116061358-0a5406a5449c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211205182925-97ca703d548d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220111092808-5a964db01320/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220317061510-51cd9980dadf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o= -golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= +golang.org/x/sys v0.17.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.22.0 h1:RI27ohtqKCnwULzJLqkv897zojh5/DwS/ENaMzUOaWI= +golang.org/x/sys v0.22.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= -golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= -golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/term v0.17.0/go.mod h1:lLRBjIVuehSbZlaOtGMbcMncT+aqLLLmKrsjNrUguwk= +golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= -golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220224211638-0e9765cccd65/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= -golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= +golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4= +golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI= +golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk= +golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181011042414-1f849cf54d09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190329151228-23e29df326fe/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190416151739-9c9e1878f421/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190420181800-aa740d480789/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190425163242-31fd60d6bfdc/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190531172133-b3315ee88b7d/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190614205625-5aca471b1d59/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190624222133-a101b041ded4/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190706070813-72ffa07ba3db/go.mod h1:jcCCGcm9btYwXyDqrUWc6MKQKKGJCWEQ3AfLSRIbEuI= -golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190823170909-c4a336ef6a2f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191112195655-aa38f8e97acc/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200505023115-26f46d2f7ef8/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200616133436-c1934b75d054/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20200916195026-c9a70fc28ce3/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= -golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= -golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.12.0 h1:YW6HUoUmYBpwSgyaGaZq1fHjrBjX1rlpZ54T6mu2kss= -golang.org/x/tools v0.12.0/go.mod h1:Sc0INKfu04TlqNoRA1hgpFZbhYXHPr4V5DzpSBTPqQM= -golang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d h1:vU5i/LfpvrRCpgM/VPfJLg5KjxD3E+hfT1SH+d9zLwg= +golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= -gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= -gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= -gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= -gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= -gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= -google.golang.org/api v0.0.0-20160322025152-9bf6e6e569ff/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= -google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= -google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= -google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= -google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.62.0/go.mod h1:dKmwPCydfsad4qCH08MSdgWjfHOyfpd4VtDGgRFdavw= -google.golang.org/appengine v1.0.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.3.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= -google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/cloud v0.0.0-20151119220103-975617b05ea8/go.mod h1:0H1ncTHf11KCFhTc/+EFRbzSCOZx+VUbRMk55Yv5MYk= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190522204451-c2c4e71fbf69/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s= -google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= -google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200117163144-32f20d992d24/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= -google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200423170343-7949de9c1215/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= -google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201110150050-8816d57aaa9a/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= -google.golang.org/genproto v0.0.0-20210630183607-d20f26d13c79/go.mod h1:yiaVoXHpRzHGyxV3o4DktVWY4mSUErTKaeEOq6C3t3U= -google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= -google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211129164237-f09f9a12af12/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211203200212-54befc351ae9/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220111164026-67b88f271998/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220314164441-57ef72a4c106/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 h1:bVf09lpb+OJbByTj913DRJioFFAjf/ZGxEz7MajTp2U= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= -google.golang.org/grpc v0.0.0-20160317175043-d3ddb4469d5a/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= -google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= -google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.23.1/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.24.0/go.mod h1:XDChyiUovWa60DnaeDeZmSW86xtLtjtZbwvSiRnRtcA= -google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= -google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= -google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= -google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= -google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.43.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= -google.golang.org/grpc v1.58.2 h1:SXUpjxeVF3FKrTYQI4f4KvbGD5u2xccdYdurwowix5I= -google.golang.org/grpc v1.58.2/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= -google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= -google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= -google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= -google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= -google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= -google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= -google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= -google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= -google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= -google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -gopkg.in/airbrake/gobrake.v2 v2.0.9/go.mod h1:/h5ZAUhDkGaJfjzjKLSjv6zCL6O0LLBxU4K+aSYdM/U= -gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 h1:NnYq6UN9ReLM9/Y01KWNOWyI5xQ9kbIms5GGJVwS/Yc= +google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= +google.golang.org/grpc v1.64.0 h1:KH3VH9y/MgNQg1dE7b3XfVK0GsPSIzJwdF617gUSbvY= +google.golang.org/grpc v1.64.0/go.mod h1:oxjF8E3FBnjp+/gVFYdWacaLDx9na1aqy9oovLpxQYg= +google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg= +google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20141024133853-64131543e789/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= -gopkg.in/cheggaaa/pb.v1 v1.0.25/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw= -gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= -gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= -gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2/go.mod h1:Xk6kEKp8OKb+X14hQBKWaSkCsqBpgog8nAV2xsGOxlo= -gopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s= -gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= -gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA= gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= gopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc= gopkg.in/natefinch/lumberjack.v2 v2.2.1/go.mod h1:YD8tP3GAjkrDg1eZH7EGmyESg/lsYskCTPBJVb9jqSc= gopkg.in/resty.v1 v1.12.0 h1:CuXP0Pjfw9rOuY6EP+UvtNvt5DSqHpIxILZKT/quCZI= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= -gopkg.in/square/go-jose.v2 v2.2.2/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= -gopkg.in/square/go-jose.v2 v2.3.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= -gopkg.in/square/go-jose.v2 v2.5.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= -gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= -gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= -gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gorm.io/driver/mysql v1.4.3/go.mod h1:sSIebwZAVPiT+27jK9HIwvsqOGKx3YMPmrA3mBJR10c= -gorm.io/driver/mysql v1.5.1 h1:WUEH5VF9obL/lTtzjmML/5e6VfFR/788coz2uaVCAZw= -gorm.io/driver/mysql v1.5.1/go.mod h1:Jo3Xu7mMhCyj8dlrb3WoCaRd1FhsVh+yMXb1jUInf5o= -gorm.io/driver/postgres v1.0.8/go.mod h1:4eOzrI1MUfm6ObJU/UcmbXyiHSs8jSwH95G5P5dxcAg= -gorm.io/driver/postgres v1.5.2 h1:ytTDxxEv+MplXOfFe3Lzm7SjG09fcdb3Z/c056DTBx0= -gorm.io/driver/postgres v1.5.2/go.mod h1:fmpX0m2I1PKuR7mKZiEluwrP3hbs+ps7JIGMUBpCgl8= +gorm.io/driver/mysql v1.5.6 h1:Ld4mkIickM+EliaQZQx3uOJDJHtrd70MxAUqWqlx3Y8= +gorm.io/driver/mysql v1.5.6/go.mod h1:sEtPWMiqiN1N1cMXoXmBbd8C6/l+TESwriotuRRpkDM= +gorm.io/driver/postgres v1.5.7 h1:8ptbNJTDbEmhdr62uReG5BGkdQyeasu/FZHxI0IMGnM= +gorm.io/driver/postgres v1.5.7/go.mod h1:3e019WlBaYI5o5LIdNV+LyxCMNtLOQETBXL2h4chKpA= gorm.io/driver/sqlite v1.1.3/go.mod h1:AKDgRWk8lcSQSw+9kxCJnX/yySj8G3rdwYlU57cB45c= -gorm.io/driver/sqlite v1.5.3 h1:7/0dUgX28KAcopdfbRWWl68Rflh6osa4rDh+m51KL2g= -gorm.io/driver/sqlite v1.5.3/go.mod h1:qxAuCol+2r6PannQDpOP1FP6ag3mKi4esLnB/jHed+4= +gorm.io/driver/sqlite v1.5.6 h1:fO/X46qn5NUEEOZtnjJRWRzZMe8nqJiQ9E+0hi+hKQE= +gorm.io/driver/sqlite v1.5.6/go.mod h1:U+J8craQU6Fzkcvu8oLeAQmi50TkwPEhHDEjQZXDah4= gorm.io/gorm v1.20.1/go.mod h1:0HFTzE/SqkGTzK6TlDPPQbAYCluiVvhzoA1+aVyzenw= -gorm.io/gorm v1.20.12/go.mod h1:0HFTzE/SqkGTzK6TlDPPQbAYCluiVvhzoA1+aVyzenw= -gorm.io/gorm v1.21.4/go.mod h1:0HFTzE/SqkGTzK6TlDPPQbAYCluiVvhzoA1+aVyzenw= gorm.io/gorm v1.23.0/go.mod h1:l2lP/RyAtc1ynaTjFksBde/O8v9oOGIApu2/xRitmZk= gorm.io/gorm v1.23.8/go.mod h1:l2lP/RyAtc1ynaTjFksBde/O8v9oOGIApu2/xRitmZk= -gorm.io/gorm v1.25.1/go.mod h1:L4uxeKpfBml98NYqVqwAdmV1a2nBtAec/cf3fpucW/k= gorm.io/gorm v1.25.2/go.mod h1:L4uxeKpfBml98NYqVqwAdmV1a2nBtAec/cf3fpucW/k= -gorm.io/gorm v1.25.4 h1:iyNd8fNAe8W9dvtlgeRI5zSVZPsq3OpcTu37cYcpCmw= -gorm.io/gorm v1.25.4/go.mod h1:L4uxeKpfBml98NYqVqwAdmV1a2nBtAec/cf3fpucW/k= -gorm.io/plugin/dbresolver v1.4.7 h1:ZwtwmJQxTx9us7o6zEHFvH1q4OeEo1pooU7efmnunJA= -gorm.io/plugin/dbresolver v1.4.7/go.mod h1:l4Cn87EHLEYuqUncpEeTC2tTJQkjngPSD+lo8hIvcT0= +gorm.io/gorm v1.25.7/go.mod h1:hbnx/Oo0ChWMn1BIhpy1oYozzpM15i4YPuHDmfYtwg8= +gorm.io/gorm v1.25.10 h1:dQpO+33KalOA+aFYGlK+EfxcI5MbO7EP2yYygwh9h+s= +gorm.io/gorm v1.25.10/go.mod h1:hbnx/Oo0ChWMn1BIhpy1oYozzpM15i4YPuHDmfYtwg8= +gorm.io/plugin/dbresolver v1.5.1 h1:s9Dj9f7r+1rE3nx/Ywzc85nXptUEaeOO0pt27xdopM8= +gorm.io/plugin/dbresolver v1.5.1/go.mod h1:l4Cn87EHLEYuqUncpEeTC2tTJQkjngPSD+lo8hIvcT0= gorm.io/plugin/soft_delete v1.2.1 h1:qx9D/c4Xu6w5KT8LviX8DgLcB9hkKl6JC9f44Tj7cGU= gorm.io/plugin/soft_delete v1.2.1/go.mod h1:Zv7vQctOJTGOsJ/bWgrN1n3od0GBAZgnLjEx+cApLGk= -gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= -gotest.tools/v3 v3.0.2/go.mod h1:3SzNCllyD9/Y+b5r9JIKQ474KzkZyqLqEfYqMsX94Bk= -gotest.tools/v3 v3.0.3/go.mod h1:Z7Lb0S5l+klDB31fvDQX8ss/FlKDxtlFlw3Oa8Ymbl8= -gotest.tools/v3 v3.1.0/go.mod h1:fHy7eyTmJFO5bQbUsEGQ1v4m2J3Jz9eWL54TP2/ZuYQ= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= -honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -k8s.io/api v0.20.1/go.mod h1:KqwcCVogGxQY3nBlRpwt+wpAMF/KjaCc7RpywacvqUo= -k8s.io/api v0.20.4/go.mod h1:++lNL1AJMkDymriNniQsWRkMDzRaX2Y/POTUi8yvqYQ= -k8s.io/api v0.20.6/go.mod h1:X9e8Qag6JV/bL5G6bU8sdVRltWKmdHsFUGS3eVndqE8= -k8s.io/api v0.22.5/go.mod h1:mEhXyLaSD1qTOf40rRiKXkc+2iCem09rWLlFwhCEiAs= -k8s.io/apimachinery v0.20.1/go.mod h1:WlLqWAHZGg07AeltaI0MV5uk1Omp8xaN0JGLY6gkRpU= -k8s.io/apimachinery v0.20.4/go.mod h1:WlLqWAHZGg07AeltaI0MV5uk1Omp8xaN0JGLY6gkRpU= -k8s.io/apimachinery v0.20.6/go.mod h1:ejZXtW1Ra6V1O5H8xPBGz+T3+4gfkTCeExAHKU57MAc= -k8s.io/apimachinery v0.22.1/go.mod h1:O3oNtNadZdeOMxHFVxOreoznohCpy0z6mocxbZr7oJ0= -k8s.io/apimachinery v0.22.5/go.mod h1:xziclGKwuuJ2RM5/rSFQSYAj0zdbci3DH8kj+WvyN0U= -k8s.io/apiserver v0.20.1/go.mod h1:ro5QHeQkgMS7ZGpvf4tSMx6bBOgPfE+f52KwvXfScaU= -k8s.io/apiserver v0.20.4/go.mod h1:Mc80thBKOyy7tbvFtB4kJv1kbdD0eIH8k8vianJcbFM= -k8s.io/apiserver v0.20.6/go.mod h1:QIJXNt6i6JB+0YQRNcS0hdRHJlMhflFmsBDeSgT1r8Q= -k8s.io/apiserver v0.22.5/go.mod h1:s2WbtgZAkTKt679sYtSudEQrTGWUSQAPe6MupLnlmaQ= -k8s.io/client-go v0.20.1/go.mod h1:/zcHdt1TeWSd5HoUe6elJmHSQ6uLLgp4bIJHVEuy+/Y= -k8s.io/client-go v0.20.4/go.mod h1:LiMv25ND1gLUdBeYxBIwKpkSC5IsozMMmOOeSJboP+k= -k8s.io/client-go v0.20.6/go.mod h1:nNQMnOvEUEsOzRRFIIkdmYOjAZrC8bgq0ExboWSU1I0= -k8s.io/client-go v0.22.5/go.mod h1:cs6yf/61q2T1SdQL5Rdcjg9J1ElXSwbjSrW2vFImM4Y= -k8s.io/code-generator v0.19.7/go.mod h1:lwEq3YnLYb/7uVXLorOJfxg+cUu2oihFhHZ0n9NIla0= -k8s.io/component-base v0.20.1/go.mod h1:guxkoJnNoh8LNrbtiQOlyp2Y2XFCZQmrcg2n/DeYNLk= -k8s.io/component-base v0.20.4/go.mod h1:t4p9EdiagbVCJKrQ1RsA5/V4rFQNDfRlevJajlGwgjI= -k8s.io/component-base v0.20.6/go.mod h1:6f1MPBAeI+mvuts3sIdtpjljHWBQ2cIy38oBIWMYnrM= -k8s.io/component-base v0.22.5/go.mod h1:VK3I+TjuF9eaa+Ln67dKxhGar5ynVbwnGrUiNF4MqCI= -k8s.io/cri-api v0.17.3/go.mod h1:X1sbHmuXhwaHs9xxYffLqJogVsnI+f6cPRcgPel7ywM= -k8s.io/cri-api v0.20.1/go.mod h1:2JRbKt+BFLTjtrILYVqQK5jqhI+XNdF6UiGMgczeBCI= -k8s.io/cri-api v0.20.4/go.mod h1:2JRbKt+BFLTjtrILYVqQK5jqhI+XNdF6UiGMgczeBCI= -k8s.io/cri-api v0.20.6/go.mod h1:ew44AjNXwyn1s0U4xCKGodU7J1HzBeZ1MpGrpa5r8Yc= -k8s.io/cri-api v0.23.1/go.mod h1:REJE3PSU0h/LOV1APBrupxrEJqnoxZC8KWzkBUHwrK4= -k8s.io/gengo v0.0.0-20200413195148-3a45101e95ac/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= -k8s.io/gengo v0.0.0-20200428234225-8167cfdcfc14/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0= -k8s.io/gengo v0.0.0-20201113003025-83324d819ded/go.mod h1:FiNAH4ZV3gBg2Kwh89tzAEV2be7d5xI0vBa/VySYy3E= -k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE= -k8s.io/klog/v2 v2.2.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y= -k8s.io/klog/v2 v2.4.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y= -k8s.io/klog/v2 v2.9.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec= -k8s.io/klog/v2 v2.30.0/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0= -k8s.io/kube-openapi v0.0.0-20200805222855-6aeccd4b50c6/go.mod h1:UuqjUnNftUyPE5H64/qeyjQoUZhGpeFDVdxjTeEVN2o= -k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd/go.mod h1:WOJ3KddDSol4tAGcJo0Tvi+dK12EcqSLqcWsryKMpfM= -k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e/go.mod h1:vHXdDvt9+2spS2Rx9ql3I8tycm3H9FDfdUoIuKCefvw= -k8s.io/kube-openapi v0.0.0-20211109043538-20434351676c/go.mod h1:vHXdDvt9+2spS2Rx9ql3I8tycm3H9FDfdUoIuKCefvw= -k8s.io/kubernetes v1.13.0/go.mod h1:ocZa8+6APFNC2tX1DZASIbocyYT5jHzqFVsY5aoB7Jk= -k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA= -lukechampine.com/uint128 v1.2.0 h1:mBi/5l91vocEN8otkC5bDLhi2KdCticRiwbdB0O+rjI= -lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -modernc.org/b v1.0.0/go.mod h1:uZWcZfRj1BpYzfN9JTerzlNUnnPsV9O2ZA8JsRcubNg= -modernc.org/cc/v3 v3.32.4/go.mod h1:0R6jl1aZlIl2avnYfbfHBS1QB6/f+16mihBObaBC878= -modernc.org/cc/v3 v3.40.0 h1:P3g79IUS/93SYhtoeaHW+kRCIrYaxJ27MFPv+7kaTOw= -modernc.org/cc/v3 v3.40.0/go.mod h1:/bTg4dnWkSXowUO6ssQKnOV0yMVxDYNIsIrzqTFDGH0= -modernc.org/ccgo/v3 v3.9.2/go.mod h1:gnJpy6NIVqkETT+L5zPsQFj7L2kkhfPMzOghRNv/CFo= -modernc.org/ccgo/v3 v3.16.13 h1:Mkgdzl46i5F/CNR/Kj80Ri59hC8TKAhZrYSaqvkwzUw= -modernc.org/ccgo/v3 v3.16.13/go.mod h1:2Quk+5YgpImhPjv2Qsob1DnZ/4som1lJTodubIcoUkY= -modernc.org/ccorpus v1.11.6 h1:J16RXiiqiCgua6+ZvQot4yUuUy8zxgqbqEEUuGPlISk= -modernc.org/db v1.0.0/go.mod h1:kYD/cO29L/29RM0hXYl4i3+Q5VojL31kTUVpVJDw0s8= -modernc.org/file v1.0.0/go.mod h1:uqEokAEn1u6e+J45e54dsEA/pw4o7zLrA2GwyntZzjw= -modernc.org/fileutil v1.0.0/go.mod h1:JHsWpkrk/CnVV1H/eGlFf85BEpfkrp56ro8nojIq9Q8= -modernc.org/golex v1.0.0/go.mod h1:b/QX9oBD/LhixY6NDh+IdGv17hgB+51fET1i2kPSmvk= -modernc.org/httpfs v1.0.6 h1:AAgIpFZRXuYnkjftxTAZwMIiwEqAfk8aVB2/oA6nAeM= -modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= -modernc.org/internal v1.0.0/go.mod h1:VUD/+JAkhCpvkUitlEOnhpVxCgsBI90oTzSCRcqQVSM= -modernc.org/libc v1.7.13-0.20210308123627-12f642a52bb8/go.mod h1:U1eq8YWr/Kc1RWCMFUWEdkTg8OTcfLw2kY8EDwl039w= -modernc.org/libc v1.9.5/go.mod h1:U1eq8YWr/Kc1RWCMFUWEdkTg8OTcfLw2kY8EDwl039w= -modernc.org/libc v1.24.1 h1:uvJSeCKL/AgzBo2yYIPPTy82v21KgGnizcGYfBHaNuM= -modernc.org/libc v1.24.1/go.mod h1:FmfO1RLrU3MHJfyi9eYYmZBfi/R+tqZ6+hQ3yQQUkak= -modernc.org/lldb v1.0.0/go.mod h1:jcRvJGWfCGodDZz8BPwiKMJxGJngQ/5DrRapkQnLob8= -modernc.org/mathutil v1.0.0/go.mod h1:wU0vUrJsVWBZ4P6e7xtFJEhFSNsfRLJ8H458uRjg03k= -modernc.org/mathutil v1.1.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.5.0 h1:rV0Ko/6SfM+8G+yKiyI830l3Wuz1zRutdslNoQ0kfiQ= -modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/memory v1.0.4/go.mod h1:nV2OApxradM3/OVbs2/0OsP6nPfakXpi50C7dcoHXlc= -modernc.org/memory v1.6.0 h1:i6mzavxrE9a30whzMfwf7XWVODx2r5OYXvU46cirX7o= -modernc.org/memory v1.6.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/opt v0.1.3 h1:3XOZf2yznlhC+ibLltsDGzABUGVx8J6pnFMS3E4dcq4= -modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/ql v1.0.0/go.mod h1:xGVyrLIatPcO2C1JvI/Co8c0sr6y91HKFNy4pt9JXEY= -modernc.org/sortutil v1.1.0/go.mod h1:ZyL98OQHJgH9IEfN71VsamvJgrtRX9Dj2gX+vH86L1k= -modernc.org/sqlite v1.10.6/go.mod h1:Z9FEjUtZP4qFEg6/SiADg9XCER7aYy9a/j7Pg9P7CPs= -modernc.org/sqlite v1.26.0 h1:SocQdLRSYlA8W99V8YH0NES75thx19d9sB/aFc4R8Lw= -modernc.org/sqlite v1.26.0/go.mod h1:FL3pVXie73rg3Rii6V/u5BoHlSoyeZeIgKZEgHARyCU= -modernc.org/strutil v1.1.0/go.mod h1:lstksw84oURvj9y3tn8lGvRxyRC1S2+g5uuIzNfIOBs= -modernc.org/strutil v1.1.3 h1:fNMm+oJklMGYfU9Ylcywl0CO5O6nTfaowNsh2wpPjzY= -modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= -modernc.org/tcl v1.5.2/go.mod h1:pmJYOLgpiys3oI4AeAafkcUfE+TKKilminxNyU/+Zlo= -modernc.org/tcl v1.15.2 h1:C4ybAYCGJw968e+Me18oW55kD/FexcHbqH2xak1ROSY= -modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/token v1.0.1 h1:A3qvTqOwexpfZZeyI0FeGPDlSWX5pjZu9hF4lU+EKWg= -modernc.org/token v1.0.1/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/z v1.0.1-0.20210308123920-1f282aa71362/go.mod h1:8/SRk5C/HgiQWCgXdfpb+1RvhORdkz5sw72d3jjtyqA= -modernc.org/z v1.0.1/go.mod h1:8/SRk5C/HgiQWCgXdfpb+1RvhORdkz5sw72d3jjtyqA= -modernc.org/z v1.7.3 h1:zDJf6iHjrnB+WRD88stbXokugjyc0/pB91ri1gO6LZY= -modernc.org/zappy v1.0.0/go.mod h1:hHe+oGahLVII/aTTyWK/b53VDHMAGCBYYeZ9sn83HC4= +modernc.org/fileutil v1.3.0 h1:gQ5SIzK3H9kdfai/5x41oQiKValumqNTDXMvKo62HvE= +modernc.org/fileutil v1.3.0/go.mod h1:XatxS8fZi3pS8/hKG2GH/ArUogfxjpEKs3Ku3aK4JyQ= +modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 h1:5D53IMaUuA5InSeMu9eJtlQXS2NxAhyWQvkKEgXZhHI= +modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6/go.mod h1:Qz0X07sNOR1jWYCrJMEnbW/X55x206Q7Vt4mz6/wHp4= +modernc.org/libc v1.41.0 h1:g9YAc6BkKlgORsUWj+JwqoB1wU3o4DE3bM3yvA3k+Gk= +modernc.org/libc v1.41.0/go.mod h1:w0eszPsiXoOnoMJgrXjglgLuDy/bt5RR4y3QzUUeodY= +modernc.org/mathutil v1.6.0 h1:fRe9+AmYlaej+64JsEEhoWuAYBkOtQiMEU7n/XgfYi4= +modernc.org/mathutil v1.6.0/go.mod h1:Ui5Q9q1TR2gFm0AQRqQUaBWFLAhQpCwNcuhBOSedWPo= +modernc.org/memory v1.7.2 h1:Klh90S215mmH8c9gO98QxQFsY+W451E8AnzjoE2ee1E= +modernc.org/memory v1.7.2/go.mod h1:NO4NVCQy0N7ln+T9ngWqOQfi7ley4vpwvARR+Hjw95E= +modernc.org/sqlite v1.29.6 h1:0lOXGrycJPptfHDuohfYgNqoe4hu+gYuN/pKgY5XjS4= +modernc.org/sqlite v1.29.6/go.mod h1:S02dvcmm7TnTRvGhv8IGYyLnIt7AS2KPaB1F/71p75U= +modernc.org/strutil v1.2.0 h1:agBi9dp1I+eOnxXeiZawM8F4LawKv4NzGWSaLfyeNZA= +modernc.org/strutil v1.2.0/go.mod h1:/mdcBmfOibveCTBxUl5B5l6W+TTH1FXPLHZE6bTosX0= +modernc.org/token v1.1.0 h1:Xl7Ap9dKaEs5kLoOQeQmPWevfnk/DM5qcLcYlA8ys6Y= +modernc.org/token v1.1.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= nullprogram.com/x/optparse v1.0.0/go.mod h1:KdyPE+Igbe0jQUrVfMqDMeJQIJZEuyV7pjYmp6pbG50= -rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= -rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= -rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.14/go.mod h1:LEScyzhFmoF5pso/YSeBstl57mOzx9xlU9n85RGrDQg= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.15/go.mod h1:LEScyzhFmoF5pso/YSeBstl57mOzx9xlU9n85RGrDQg= -sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.22/go.mod h1:LEScyzhFmoF5pso/YSeBstl57mOzx9xlU9n85RGrDQg= -sigs.k8s.io/structured-merge-diff/v4 v4.0.1/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= -sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= -sigs.k8s.io/structured-merge-diff/v4 v4.0.3/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw= -sigs.k8s.io/structured-merge-diff/v4 v4.1.2/go.mod h1:j/nl6xW8vLS49O8YvXW1ocPhZawJtm+Yrr7PPRQ0Vg4= -sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= -sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc= diff --git a/internal/conf/conf.go b/internal/conf/conf.go index 075c2b06..4e1b513f 100644 --- a/internal/conf/conf.go +++ b/internal/conf/conf.go @@ -128,8 +128,8 @@ func setupSetting(suite []string, noDefault bool) error { } CacheSetting.CientSideCacheExpire *= time.Second - EventManagerSetting.TickWaitTime *= time.Second - MetricManagerSetting.TickWaitTime *= time.Second + EventManagerSetting.MaxIdleTime *= time.Second + MetricManagerSetting.MaxIdleTime *= time.Second JWTSetting.Expire *= time.Second SimpleCacheIndexSetting.CheckTickDuration *= time.Second SimpleCacheIndexSetting.ExpireTickDuration *= time.Second diff --git a/internal/conf/config.yaml b/internal/conf/config.yaml index 42231d87..4d9c0185 100644 --- a/internal/conf/config.yaml +++ b/internal/conf/config.yaml @@ -22,16 +22,16 @@ Cache: MessagesExpire: 60 # 消息列表过期时间,单位秒, 默认60s EventManager: # 事件管理器的配置参数 MinWorker: 64 # 最小后台工作者, 设置范围[5, ++], 默认64 + MaxTempWorker: -1 # 最大临时工作者, -1为无限制, 默认-1 MaxEventBuf: 128 # 最大log缓存条数, 设置范围[10, ++], 默认128 MaxTempEventBuf: 256 # 最大log缓存条数, 设置范围[10, ++], 默认256 - MaxTickCount: 60 # 最大的循环周期, 设置范围[60, ++], 默认60 - TickWaitTime: 1 # 一个周期的等待时间,单位:秒 默认1s + MaxIdleTime: 60 # 临时工作者最大空闲等待时间,单位:秒 默认60 MetricManager: # 指标监控管理器的配置参数 MinWorker: 32 # 最小后台工作者, 设置范围[5, ++], 默认32 + MaxTempWorker: -1 # 最大临时工作者, -1为无限制, 默认-1 MaxEventBuf: 128 # 最大log缓存条数, 设置范围[10, ++], 默认128 MaxTempEventBuf: 256 # 最大log缓存条数, 设置范围[10, ++], 默认256 - MaxTickCount: 60 # 最大的循环周期, 设置范围[60, ++], 默认60 - TickWaitTime: 1 # 一个周期的等待时间,单位:秒 默认1s + MaxIdleTime: 60 # 临时工作者最大空闲等待时间,单位:秒 默认60 JobManager: # Cron Job理器的配置参数 MaxOnlineInterval: "@every 5m" # 更新最大在线人数,默认每5分钟更新一次 UpdateMetricsInterval: "@every 5m" # 更新Prometheus指标,默认每5分钟更新一次 @@ -250,7 +250,7 @@ Redis: ConnWriteTimeout: 60 # 连接写超时时间 多少秒 默认 60秒 WebProfile: UseFriendship: true # 前端是否使用好友体系 - EnableTrendsBar: true # 广场页面是否开启动态条栏功能 + EnableTrendsBar: false # 广场页面是否开启动态条栏功能 EnableWallet: false # 是否开启钱包功能 AllowTweetAttachment: true # 是否允许推文附件 AllowTweetAttachmentPrice: true # 是否允许推文付费附件 diff --git a/internal/conf/db_gorm.go b/internal/conf/db_gorm.go index eeff6236..66095f22 100644 --- a/internal/conf/db_gorm.go +++ b/internal/conf/db_gorm.go @@ -5,6 +5,7 @@ package conf import ( + "log" "sync" "time" @@ -27,13 +28,13 @@ func MustGormDB() *gorm.DB { _onceGorm.Do(func() { var err error if _gormdb, err = newGormDB(); err != nil { - logrus.Fatalf("new gorm db failed: %s", err) + log.Fatalf("new gorm db failed: %s", err) } }) return _gormdb } -func newGormDB() (*gorm.DB, error) { +func newGormDB() (db *gorm.DB, err error) { newLogger := logger.New( logrus.StandardLogger(), // io writer(日志输出的目标,前缀和日志包含的内容) logger.Config{ @@ -58,15 +59,9 @@ func newGormDB() (*gorm.DB, error) { SetMaxIdleConns(MysqlSetting.MaxIdleConns). SetMaxOpenConns(MysqlSetting.MaxOpenConns) - var ( - db *gorm.DB - err error - ) if cfg.If("MySQL") { logrus.Debugln("use MySQL as db") - if db, err = gorm.Open(mysql.Open(MysqlSetting.Dsn()), config); err == nil { - db.Use(plugin) - } + db, err = gorm.Open(mysql.Open(MysqlSetting.Dsn()), config) } else if cfg.If("Postgres") { logrus.Debugln("use PostgreSQL as db") db, err = gorm.Open(postgres.Open(PostgresSetting.Dsn()), config) @@ -75,10 +70,10 @@ func newGormDB() (*gorm.DB, error) { db, err = gormOpenSqlite3(config) } else { logrus.Debugln("use default of MySQL as db") - if db, err = gorm.Open(mysql.Open(MysqlSetting.Dsn()), config); err == nil { - db.Use(plugin) - } + db, err = gorm.Open(mysql.Open(MysqlSetting.Dsn()), config) } - - return db, err + if err == nil { + err = db.Use(plugin) + } + return } diff --git a/internal/conf/logger_observe.go b/internal/conf/logger_observe.go index dc83a83e..af09a736 100644 --- a/internal/conf/logger_observe.go +++ b/internal/conf/logger_observe.go @@ -56,8 +56,7 @@ func newObserveLogHook() *observeLogHook { MinWorker: s.MinWorker, MaxRequestBuf: s.MaxLogBuffer, MaxRequestTempBuf: 100, - MaxTickCount: 60, - TickWaitTime: time.Second, + MaxIdleTime: 60 * time.Second, } return &observeLogHook{ client: obx.NewClient(obc, acc, func(req *http.Request, resp *http.Response, err error) { diff --git a/internal/conf/setting.go b/internal/conf/setting.go index fdd776c9..c995edaa 100644 --- a/internal/conf/setting.go +++ b/internal/conf/setting.go @@ -11,7 +11,7 @@ import ( "strings" "time" - "github.com/pyroscope-io/client/pyroscope" + pyroscope "github.com/grafana/pyroscope-go" "github.com/sirupsen/logrus" "github.com/spf13/viper" "gorm.io/gorm/logger" @@ -115,18 +115,18 @@ type cacheConf struct { type eventManagerConf struct { MinWorker int + MaxTempWorker int MaxEventBuf int MaxTempEventBuf int - MaxTickCount int - TickWaitTime time.Duration + MaxIdleTime time.Duration } type metricManagerConf struct { MinWorker int + MaxTempWorker int MaxEventBuf int MaxTempEventBuf int - MaxTickCount int - TickWaitTime time.Duration + MaxIdleTime time.Duration } type jobManagerConf struct { diff --git a/internal/core/cache.go b/internal/core/cache.go index bff7ca5c..f2fa5d3f 100644 --- a/internal/core/cache.go +++ b/internal/core/cache.go @@ -116,3 +116,8 @@ type WebCache interface { ExistUnreadMsgCountResp(uid int64) bool PutHistoryMaxOnline(newScore int) (int, error) } + +type MetricCache interface { + SetEventTempWorkerCount(name string, count int32) + GetEventTempWorkerCount(name string) int32 +} diff --git a/internal/core/cs/topics.go b/internal/core/cs/topics.go index c7819fc6..193d34da 100644 --- a/internal/core/cs/topics.go +++ b/internal/core/cs/topics.go @@ -9,6 +9,7 @@ const ( TagTypeHot TagType = "hot" TagTypeNew TagType = "new" TagTypeFollow TagType = "follow" + TagTypePin TagType = "pin" TagTypeHotExtral TagType = "hot_extral" ) @@ -40,6 +41,7 @@ type TagItem struct { QuoteNum int64 `json:"quote_num"` IsFollowing int8 `json:"is_following"` IsTop int8 `json:"is_top"` + IsPin int8 `json:"is_pin"` } func (t *TagInfo) Format() *TagItem { @@ -51,5 +53,6 @@ func (t *TagInfo) Format() *TagItem { QuoteNum: t.QuoteNum, IsFollowing: 0, IsTop: 0, + IsPin: 0, } } diff --git a/internal/core/topics.go b/internal/core/topics.go index cc3f12cf..e53bf5d7 100644 --- a/internal/core/topics.go +++ b/internal/core/topics.go @@ -16,10 +16,11 @@ type TopicService interface { TagsByKeyword(keyword string) (cs.TagInfoList, error) GetHotTags(userId int64, limit int, offset int) (cs.TagList, error) GetNewestTags(userId int64, limit int, offset int) (cs.TagList, error) - GetFollowTags(userId int64, limit int, offset int) (cs.TagList, error) + GetFollowTags(userId int64, isPin bool, limit int, offset int) (cs.TagList, error) FollowTopic(userId int64, topicId int64) error UnfollowTopic(userId int64, topicId int64) error StickTopic(userId int64, topicId int64) (int8, error) + PinTopic(userId int64, topicId int64) (int8, error) } // TopicServantA 话题服务(版本A) diff --git a/internal/dao/jinzhu/comments.go b/internal/dao/jinzhu/comments.go index d4b2671c..c30fda69 100644 --- a/internal/dao/jinzhu/comments.go +++ b/internal/dao/jinzhu/comments.go @@ -148,7 +148,7 @@ func (s *commentSrv) GetCommentRepliesByID(ids []int64) ([]*ms.CommentReplyForma return repliesFormated, nil } -func (s *commentManageSrv) HighlightComment(userId, commentId int64) (res int8, err error) { +func (s *commentManageSrv) HighlightComment(userId, commentId int64) (isEssence int8, err error) { post := &dbr.Post{} comment := &dbr.Comment{} db := s.db.Model(comment) @@ -161,8 +161,12 @@ func (s *commentManageSrv) HighlightComment(userId, commentId int64) (res int8, if post.UserID != userId { return 0, cs.ErrNoPermission } - comment.IsEssence = 1 - comment.IsEssence - return comment.IsEssence, db.Save(comment).Error + isEssence = 1 - comment.IsEssence + err = s.db.Model(comment).UpdateColumns(map[string]any{ + "is_essence": isEssence, + "modified_on": time.Now().Unix(), + }).Where("id=?", commentId).Error + return } func (s *commentManageSrv) DeleteComment(comment *ms.Comment) (err error) { diff --git a/internal/dao/jinzhu/dbr/topic.go b/internal/dao/jinzhu/dbr/topic.go index 45cabfef..e9d698c0 100644 --- a/internal/dao/jinzhu/dbr/topic.go +++ b/internal/dao/jinzhu/dbr/topic.go @@ -25,6 +25,7 @@ type TopicUser struct { Remark string `json:"-"` QuoteNum int64 `json:"quote_num"` IsTop int8 `json:"is_top"` + IsPin int8 `json:"is_pin"` ReserveA string `json:"-"` ReserveB string `json:"-"` } diff --git a/internal/dao/jinzhu/topics.go b/internal/dao/jinzhu/topics.go index aedca3f3..639f32d4 100644 --- a/internal/dao/jinzhu/topics.go +++ b/internal/dao/jinzhu/topics.go @@ -33,6 +33,7 @@ type topicSrvA struct { type topicInfo struct { TopicId int64 IsTop int8 + IsPin int8 } func newTopicService(db *gorm.DB) core.TopicService { @@ -110,17 +111,18 @@ func (s *topicSrv) GetNewestTags(userId int64, limit int, offset int) (cs.TagLis return s.tagsFormatA(userId, tags) } -func (s *topicSrv) GetFollowTags(userId int64, limit int, offset int) (cs.TagList, error) { +func (s *topicSrv) GetFollowTags(userId int64, isPin bool, limit int, offset int) (cs.TagList, error) { if userId < 0 { return nil, nil } userTopics := []*topicInfo{} - err := s.db.Model(&dbr.TopicUser{}). - Where("user_id=?", userId). - Order("is_top DESC"). - Limit(limit). - Offset(offset). - Find(&userTopics).Error + db := s.db.Model(&dbr.TopicUser{}).Order("is_top DESC").Limit(limit).Offset(offset) + if isPin { + db = db.Where("user_id=? AND is_pin=1", userId) + } else { + db = db.Where("user_id=?", userId) + } + err := db.Find(&userTopics).Error if err != nil { return nil, err } @@ -207,7 +209,7 @@ func (s *topicSrv) tagsFormatA(userId int64, tags cs.TagList) (cs.TagList, error } for _, tag := range tags { if info, exist := userTopicsMap[tag.ID]; exist { - tag.IsFollowing, tag.IsTop = 1, info.IsTop + tag.IsFollowing, tag.IsTop, tag.IsPin = 1, info.IsTop, info.IsPin } } } @@ -238,7 +240,7 @@ func (s *topicSrv) tagsFormatB(userTopicsMap map[int64]*topicInfo, tags cs.TagIn if len(userTopicsMap) > 0 { for _, tag := range tagList { if info, exist := userTopicsMap[tag.ID]; exist { - tag.IsFollowing, tag.IsTop = 1, info.IsTop + tag.IsFollowing, tag.IsTop, tag.IsPin = 1, info.IsTop, info.IsPin } } } @@ -409,3 +411,27 @@ func (s *topicSrv) StickTopic(userId int64, topicId int64) (status int8, err err db.Commit() return } + +func (s *topicSrv) PinTopic(userId int64, topicId int64) (status int8, err error) { + db := s.db.Begin() + defer db.Rollback() + + m := &dbr.TopicUser{} + err = db.Model(m). + Where("user_id=? and topic_id=?", userId, topicId). + UpdateColumn("is_pin", gorm.Expr("1-is_pin")).Error + if err != nil { + return + } + status = -1 + err = db.Model(m).Where("user_id=? and topic_id=?", userId, topicId).Select("is_pin").Scan(&status).Error + if err != nil { + return + } + if status < 0 { + return -1, errors.New("topic not exist") + } + + db.Commit() + return +} diff --git a/internal/events/events.go b/internal/events/events.go index 69a976ea..e35fa77f 100644 --- a/internal/events/events.go +++ b/internal/events/events.go @@ -11,6 +11,7 @@ import ( "github.com/alimy/tryst/pool" "github.com/robfig/cron/v3" "github.com/rocboss/paopao-ce/internal/conf" + "github.com/rocboss/paopao-ce/internal/metrics/statistics" "github.com/sirupsen/logrus" ) @@ -89,21 +90,24 @@ func initEventManager() { var opts []pool.Option s := conf.EventManagerSetting if s.MinWorker > 5 { - opts = append(opts, pool.MinWorkerOpt(s.MinWorker)) + opts = append(opts, pool.WithMinWorker(s.MinWorker)) } else { - opts = append(opts, pool.MinWorkerOpt(5)) + opts = append(opts, pool.WithMinWorker(5)) } if s.MaxEventBuf > 10 { - opts = append(opts, pool.MaxRequestBufOpt(s.MaxEventBuf)) + opts = append(opts, pool.WithMaxRequestBuf(s.MaxEventBuf)) } else { - opts = append(opts, pool.MaxRequestBufOpt(10)) + opts = append(opts, pool.WithMaxRequestBuf(10)) } if s.MaxTempEventBuf > 10 { - opts = append(opts, pool.MaxRequestTempBufOpt(s.MaxTempEventBuf)) + opts = append(opts, pool.WithMaxRequestTempBuf(s.MaxTempEventBuf)) } else { - opts = append(opts, pool.MaxRequestTempBufOpt(10)) + opts = append(opts, pool.WithMaxRequestTempBuf(10)) } - opts = append(opts, pool.MaxTickCountOpt(s.MaxTickCount), pool.TickWaitTimeOpt(s.TickWaitTime)) + if cfg.If("Metrics") { + opts = append(opts, pool.WithWorkerHook(NewEventWorkerHook("default", statistics.NewMetricCache()))) + } + opts = append(opts, pool.WithMaxIdelTime(s.MaxIdleTime), pool.WithMaxTempWorker(s.MaxTempWorker)) _defaultEventManager = NewEventManager(func(req Event, err error) { if err != nil { logrus.Errorf("handle event[%s] occurs error: %s", req.Name(), err) diff --git a/internal/events/events_tryst.go b/internal/events/events_tryst.go index 0aaac020..b08a4978 100644 --- a/internal/events/events_tryst.go +++ b/internal/events/events_tryst.go @@ -7,6 +7,7 @@ package events import ( "github.com/alimy/tryst/event" "github.com/alimy/tryst/pool" + "github.com/rocboss/paopao-ce/internal/core" ) type Event = event.Event @@ -17,6 +18,11 @@ type EventManager interface { OnEvent(event Event) } +type simpleWorkerHook struct { + name string + cache core.MetricCache +} + type simpleEventManager struct { em event.EventManager } @@ -33,8 +39,23 @@ func (s *simpleEventManager) OnEvent(event Event) { s.em.OnEvent(event) } +func (h *simpleWorkerHook) OnJoin(count int32) { + h.cache.SetEventTempWorkerCount(h.name, count) +} + +func (h *simpleWorkerHook) OnLeave(count int32) { + h.cache.SetEventTempWorkerCount(h.name, count) +} + func NewEventManager(fn pool.RespFn[Event], opts ...pool.Option) EventManager { return &simpleEventManager{ em: event.NewEventManager(fn, opts...), } } + +func NewEventWorkerHook(name string, mc core.MetricCache) pool.WorkerHook { + return &simpleWorkerHook{ + name: name, + cache: mc, + } +} diff --git a/internal/metrics/metrics.go b/internal/metrics/metrics.go index ffe7d12a..439d8540 100644 --- a/internal/metrics/metrics.go +++ b/internal/metrics/metrics.go @@ -49,23 +49,23 @@ func Initial() { func initMetricManager() { var opts []pool.Option - s := conf.EventManagerSetting + s := conf.MetricManagerSetting if s.MinWorker > 5 { - opts = append(opts, pool.MinWorkerOpt(s.MinWorker)) + opts = append(opts, pool.WithMinWorker(s.MinWorker)) } else { - opts = append(opts, pool.MinWorkerOpt(5)) + opts = append(opts, pool.WithMinWorker(5)) } if s.MaxEventBuf > 10 { - opts = append(opts, pool.MaxRequestBufOpt(s.MaxEventBuf)) + opts = append(opts, pool.WithMaxRequestBuf(s.MaxEventBuf)) } else { - opts = append(opts, pool.MaxRequestBufOpt(10)) + opts = append(opts, pool.WithMaxRequestBuf(10)) } if s.MaxTempEventBuf > 10 { - opts = append(opts, pool.MaxRequestTempBufOpt(s.MaxTempEventBuf)) + opts = append(opts, pool.WithMaxRequestTempBuf(s.MaxTempEventBuf)) } else { - opts = append(opts, pool.MaxRequestTempBufOpt(10)) + opts = append(opts, pool.WithMaxRequestTempBuf(10)) } - opts = append(opts, pool.MaxTickCountOpt(s.MaxTickCount), pool.TickWaitTimeOpt(s.TickWaitTime)) + opts = append(opts, pool.WithMaxIdelTime(s.MaxIdleTime), pool.WithMaxTempWorker(s.MaxTempWorker)) _defaultMetricManager = event.NewEventManager(func(req Metric, err error) { if err != nil { logrus.Errorf("handle event[%s] occurs error: %s", req.Name(), err) diff --git a/internal/metrics/prometheus/metrics.go b/internal/metrics/prometheus/metrics.go index d7c073b1..34ed99b3 100644 --- a/internal/metrics/prometheus/metrics.go +++ b/internal/metrics/prometheus/metrics.go @@ -13,8 +13,10 @@ import ( type metrics struct { siteInfo *prometheus.GaugeVec + runtime *prometheus.GaugeVec ds core.DataService wc core.WebCache + mc core.MetricCache } func (m *metrics) updateSiteInfo() { @@ -31,13 +33,21 @@ func (m *metrics) updateSiteInfo() { } } +func (m *metrics) updateRuntime() { + m.runtime.With(prometheus.Labels{"name": "default"}).Set(float64(m.mc.GetEventTempWorkerCount("default"))) +} + func (m *metrics) onUpdate() { logrus.Debugf("update promethues metrics job running") m.updateSiteInfo() + m.updateRuntime() } -func newMetrics(reg prometheus.Registerer, ds core.DataService, wc core.WebCache) *metrics { +func newMetrics(reg prometheus.Registerer, ds core.DataService, wc core.WebCache, mc core.MetricCache) *metrics { m := &metrics{ + ds: ds, + wc: wc, + mc: mc, siteInfo: prometheus.NewGaugeVec( prometheus.GaugeOpts{ Namespace: "paopao", @@ -49,9 +59,18 @@ func newMetrics(reg prometheus.Registerer, ds core.DataService, wc core.WebCache // metric name "name", }), - ds: ds, - wc: wc, + runtime: prometheus.NewGaugeVec( + prometheus.GaugeOpts{ + Namespace: "runtime", + Subsystem: "event_manager", + Name: "temp_worker_count", + Help: "runtime's event manager temp worker count info", + }, + []string{ + // metric name + "name", + }), } - reg.MustRegister(m.siteInfo) + reg.MustRegister(m.siteInfo, m.runtime) return m } diff --git a/internal/metrics/prometheus/prometheus.go b/internal/metrics/prometheus/prometheus.go index f9764464..e93565cf 100644 --- a/internal/metrics/prometheus/prometheus.go +++ b/internal/metrics/prometheus/prometheus.go @@ -27,7 +27,7 @@ func scheduleJobs(metrics *metrics) { logrus.Debug("shedule prometheus metrics update jobs complete") } -func NewHandler(ds core.DataService, wc core.WebCache) http.Handler { +func NewHandler(ds core.DataService, wc core.WebCache, mc core.MetricCache) http.Handler { // Create non-global registry. registry := prometheus.NewRegistry() // Add go runtime metrics and process collectors. @@ -35,7 +35,7 @@ func NewHandler(ds core.DataService, wc core.WebCache) http.Handler { collectors.NewGoCollector(), collectors.NewProcessCollector(collectors.ProcessCollectorOpts{}), ) - metrics := newMetrics(registry, ds, wc) + metrics := newMetrics(registry, ds, wc, mc) scheduleJobs(metrics) return promhttp.HandlerFor(registry, promhttp.HandlerOpts{EnableOpenMetrics: true}) } diff --git a/internal/metrics/statistics/cache.go b/internal/metrics/statistics/cache.go new file mode 100644 index 00000000..bec47c39 --- /dev/null +++ b/internal/metrics/statistics/cache.go @@ -0,0 +1,38 @@ +// Copyright 2023 ROC. All rights reserved. +// Use of this source code is governed by a MIT style +// license that can be found in the LICENSE file. + +package statistics + +import ( + "sync" + + "github.com/rocboss/paopao-ce/internal/core" +) + +var ( + _metricCache core.MetricCache + _onceMetricCache sync.Once +) + +type metricCache struct { + eventTempWorkerCount map[string]int32 +} + +func (m *metricCache) SetEventTempWorkerCount(name string, count int32) { + // 直接赋值,不需要加锁,因为这仅仅是一个统计信息 + m.eventTempWorkerCount[name] = count +} + +func (m *metricCache) GetEventTempWorkerCount(name string) int32 { + return m.eventTempWorkerCount[name] +} + +func NewMetricCache() core.MetricCache { + _onceMetricCache.Do(func() { + _metricCache = &metricCache{ + eventTempWorkerCount: make(map[string]int32), + } + }) + return _metricCache +} diff --git a/internal/model/web/loose.go b/internal/model/web/loose.go index edeec03b..691bfdf0 100644 --- a/internal/model/web/loose.go +++ b/internal/model/web/loose.go @@ -20,6 +20,7 @@ const ( TagTypeHot = cs.TagTypeHot TagTypeNew = cs.TagTypeNew TagTypeFollow = cs.TagTypeFollow + TagTypePin = cs.TagTypePin TagTypeHotExtral = cs.TagTypeHotExtral ) diff --git a/internal/model/web/priv.go b/internal/model/web/priv.go index 239799f6..cbe38d00 100644 --- a/internal/model/web/priv.go +++ b/internal/model/web/priv.go @@ -207,6 +207,15 @@ type StickTopicResp struct { StickStatus int8 `json:"top_status"` } +type PinTopicReq struct { + SimpleInfo `json:"-" binding:"-"` + TopicId int64 `json:"topic_id" binding:"required"` +} + +type PinTopicResp struct { + PinStatus int8 `json:"pin_status"` +} + type FollowTopicReq struct { SimpleInfo `json:"-" binding:"-"` TopicId int64 `json:"topic_id" binding:"required"` diff --git a/internal/model/web/utils.go b/internal/model/web/utils.go index 06436d72..e1b5d983 100644 --- a/internal/model/web/utils.go +++ b/internal/model/web/utils.go @@ -24,6 +24,8 @@ func fileCheck(uploadType string, size int64) mir.Error { func getFileExt(s string) (string, mir.Error) { switch s { + case "image/webp": + return ".webp", nil case "image/png": return ".png", nil case "image/jpg": @@ -42,6 +44,6 @@ func getFileExt(s string) (string, mir.Error) { "application/x-zip-compressed": return ".zip", nil default: - return "", ErrFileInvalidExt.WithDetails("仅允许 png/jpg/gif/mp4/mov/zip 类型") + return "", ErrFileInvalidExt.WithDetails("仅允许 webp/png/jpg/gif/mp4/mov/zip 类型") } } diff --git a/internal/model/web/xerror.go b/internal/model/web/xerror.go index 0d22a9ea..d67fd519 100644 --- a/internal/model/web/xerror.go +++ b/internal/model/web/xerror.go @@ -95,6 +95,7 @@ var ( ErrFollowTopicFailed = xerror.NewError(90001, "关注话题失败") ErrUnfollowTopicFailed = xerror.NewError(90002, "取消关注话题失败") ErrStickTopicFailed = xerror.NewError(90003, "更行话题置顶状态失败") + ErrPinTopicFailed = xerror.NewError(90005, "更行话题钉住状态失败") ErrThumbsUpTweetComment = xerror.NewError(90101, "评论点赞失败") ErrThumbsDownTweetComment = xerror.NewError(90102, "评论点踩失败") ErrThumbsUpTweetReply = xerror.NewError(90103, "评论回复点赞失败") diff --git a/internal/servants/base/base.go b/internal/servants/base/base.go index 4edf5e03..d031e344 100644 --- a/internal/servants/base/base.go +++ b/internal/servants/base/base.go @@ -29,7 +29,8 @@ import ( ) type BaseServant struct { - bindAny func(c *gin.Context, obj any) mir.Error + bindAny func(c *gin.Context, obj any) mir.Error + bindJson func(c *gin.Context, obj any) mir.Error } type DaoServant struct { @@ -158,6 +159,10 @@ func (s *BaseServant) Bind(c *gin.Context, obj any) mir.Error { return s.bindAny(c, obj) } +func (s *BaseServant) BindJson(c *gin.Context, obj any) mir.Error { + return s.bindJson(c, obj) +} + func (s *BaseServant) Render(c *gin.Context, data any, err mir.Error) { if err == nil { c.JSON(http.StatusOK, &joint.JsonResp{ @@ -420,9 +425,17 @@ func NewBindAnyFn() func(c *gin.Context, obj any) mir.Error { return bindAny } +func NewBindJsonFn() func(c *gin.Context, obj any) mir.Error { + if conf.UseSentryGin() { + return bindAnySentry + } + return bindAny +} + func NewBaseServant() *BaseServant { return &BaseServant{ - bindAny: NewBindAnyFn(), + bindAny: NewBindAnyFn(), + bindJson: NewBindJsonFn(), } } diff --git a/internal/servants/servants.go b/internal/servants/servants.go index 39d26d42..5d56b7e5 100644 --- a/internal/servants/servants.go +++ b/internal/servants/servants.go @@ -7,8 +7,8 @@ package servants import ( "net/http" + "connectrpc.com/connect" "github.com/alimy/tryst/cfg" - "github.com/bufbuild/connect-go" "github.com/gin-gonic/gin" "github.com/rocboss/paopao-ce/internal/servants/admin" "github.com/rocboss/paopao-ce/internal/servants/bot" diff --git a/internal/servants/triplet/triplet.go b/internal/servants/triplet/triplet.go index bfc77475..2f698bbc 100644 --- a/internal/servants/triplet/triplet.go +++ b/internal/servants/triplet/triplet.go @@ -7,7 +7,7 @@ package triplet import ( "net/http" - "github.com/bufbuild/connect-go" + "connectrpc.com/connect" api "github.com/rocboss/paopao-ce/auto/connect/core/v1/corev1connect" ) diff --git a/internal/servants/web/loose.go b/internal/servants/web/loose.go index 3fe3517f..67add729 100644 --- a/internal/servants/web/loose.go +++ b/internal/servants/web/loose.go @@ -384,7 +384,9 @@ func (s *looseSrv) TopicList(req *web.TopicListReq) (*web.TopicListResp, mir.Err case web.TagTypeNew: tags, err = s.Ds.GetNewestTags(req.Uid, num, 0) case web.TagTypeFollow: - tags, err = s.Ds.GetFollowTags(req.Uid, num, 0) + tags, err = s.Ds.GetFollowTags(req.Uid, false, num, 0) + case web.TagTypePin: + tags, err = s.Ds.GetFollowTags(req.Uid, true, num, 0) case web.TagTypeHotExtral: extralNum := req.ExtralNum if extralNum <= 0 { @@ -392,7 +394,7 @@ func (s *looseSrv) TopicList(req *web.TopicListReq) (*web.TopicListResp, mir.Err } tags, err = s.Ds.GetHotTags(req.Uid, num, 0) if err == nil { - extralTags, err = s.Ds.GetFollowTags(req.Uid, extralNum, 0) + extralTags, err = s.Ds.GetFollowTags(req.Uid, false, extralNum, 0) } default: // TODO: return good error diff --git a/internal/servants/web/priv.go b/internal/servants/web/priv.go index 875a48bf..492f9428 100644 --- a/internal/servants/web/priv.go +++ b/internal/servants/web/priv.go @@ -6,6 +6,7 @@ package web import ( "image" + "io" "strings" "time" @@ -124,13 +125,28 @@ func (s *privSrv) StickTopic(req *web.StickTopicReq) (*web.StickTopicResp, mir.E }, nil } +func (s *privSrv) PinTopic(req *web.PinTopicReq) (*web.PinTopicResp, mir.Error) { + status, err := s.Ds.PinTopic(req.Uid, req.TopicId) + if err != nil { + logrus.Errorf("user(%d) pin topic(%d) failed: %s", req.Uid, req.TopicId, err) + return nil, web.ErrPinTopicFailed + } + return &web.PinTopicResp{ + PinStatus: status, + }, nil +} + func (s *privSrv) UploadAttachment(req *web.UploadAttachmentReq) (*web.UploadAttachmentResp, mir.Error) { defer req.File.Close() // 生成随机路径 randomPath := uuid.Must(uuid.NewV4()).String() ossSavePath := req.UploadType + "/" + generatePath(randomPath[:8]) + "/" + randomPath[9:] + req.FileExt - objectUrl, err := s.oss.PutObject(ossSavePath, req.File, req.FileSize, req.ContentType, false) + // NOTE: 注意这里将req.File Wrap到一个io.Reader的实例对象中是为了避免下游接口去主动调Close,req.File本身是实现了 + // io.Closer接口的,有的下游接口会断言传参是否实现了io.Closer接口,如果实现了会主动去调,我们这里因为下文中可能还要继续 + // 使用req.File所以应避免下游Close,否则会出现潜在的bug,比如这里的场景就是传一个超大的图片(>10MB)可能就会触发bug了。 + data := io.NopCloser(req.File) + objectUrl, err := s.oss.PutObject(ossSavePath, data, req.FileSize, req.ContentType, false) if err != nil { logrus.Errorf("oss.putObject err: %s", err) return nil, web.ErrFileUploadFailed diff --git a/internal/service/connect_server.go b/internal/service/connect_server.go index b5a19b6a..f4578aee 100644 --- a/internal/service/connect_server.go +++ b/internal/service/connect_server.go @@ -8,7 +8,7 @@ import ( "context" "net/http" - "github.com/bufbuild/connect-go" + "connectrpc.com/connect" hx "github.com/rocboss/paopao-ce/pkg/http" ) diff --git a/internal/service/connect_service.go b/internal/service/connect_service.go index 82059f58..525755fe 100644 --- a/internal/service/connect_service.go +++ b/internal/service/connect_service.go @@ -7,7 +7,7 @@ package service import ( "net/http" - "github.com/bufbuild/connect-go" + "connectrpc.com/connect" ) type baseConnectService struct { diff --git a/internal/service/metrics.go b/internal/service/metrics.go index d83a5fd4..14ffbfed 100644 --- a/internal/service/metrics.go +++ b/internal/service/metrics.go @@ -14,6 +14,7 @@ import ( "github.com/rocboss/paopao-ce/internal/dao" "github.com/rocboss/paopao-ce/internal/dao/cache" "github.com/rocboss/paopao-ce/internal/metrics/prometheus" + "github.com/rocboss/paopao-ce/internal/metrics/statistics" ) var ( @@ -44,9 +45,9 @@ func (s *metricsService) String() string { func newMetricsService() Service { addr := conf.MetricsServerSetting.HttpIp + ":" + conf.MetricsServerSetting.HttpPort server := httpServers.from(addr, func() *httpServer { - ds, wc := dao.DataService(), cache.NewWebCache() + ds, wc, mc := dao.DataService(), cache.NewWebCache(), statistics.NewMetricCache() mux := http.NewServeMux() - mux.Handle("/metrics", prometheus.NewHandler(ds, wc)) + mux.Handle("/metrics", prometheus.NewHandler(ds, wc, mc)) return &httpServer{ baseServer: newBaseServe(), server: &http.Server{ diff --git a/mirc/web/v1/friendship.go b/mirc/web/v1/friendship.go index b04f9622..95ba3002 100644 --- a/mirc/web/v1/friendship.go +++ b/mirc/web/v1/friendship.go @@ -16,16 +16,16 @@ type Friendship struct { Group `mir:"v1"` // RequestingFriend 请求添加朋友 - RequestingFriend func(Post, web.RequestingFriendReq) `mir:"/friend/requesting"` + RequestingFriend func(Post, web.RequestingFriendReq) `mir:"/friend/requesting" binding:"json"` // AddFriend 同意添加好友 - AddFriend func(Post, web.AddFriendReq) `mir:"/friend/add"` + AddFriend func(Post, web.AddFriendReq) `mir:"/friend/add" binding:"json"` // RejectFriend 拒绝添加好友 - RejectFriend func(Post, web.RejectFriendReq) `mir:"/friend/reject"` + RejectFriend func(Post, web.RejectFriendReq) `mir:"/friend/reject" binding:"json"` // DeleteFriend 删除好友 - DeleteFriend func(Post, web.DeleteFriendReq) `mir:"/friend/delete"` + DeleteFriend func(Post, web.DeleteFriendReq) `mir:"/friend/delete" binding:"json"` // GetContacts 获取好友列表 GetContacts func(Get, web.GetContactsReq) web.GetContactsResp `mir:"/user/contacts"` diff --git a/mirc/web/v1/priv.go b/mirc/web/v1/priv.go index 414fb55d..17f8c7a5 100644 --- a/mirc/web/v1/priv.go +++ b/mirc/web/v1/priv.go @@ -75,9 +75,12 @@ type Priv struct { // ThumbsDownTweetReply 点踩评论回复 ThumbsDownTweetReply func(Post, web.TweetReplyThumbsReq) `mir:"/tweet/reply/thumbsdown"` - // StickTopic 置顶动态 + // StickTopic 置顶话题 StickTopic func(Post, web.StickTopicReq) web.StickTopicResp `mir:"/topic/stick"` + // PinTopic 钉住话题 + PinTopic func(Post, web.PinTopicReq) web.PinTopicResp `mir:"/topic/pin"` + // FollowTopic 关注话题 FollowTopic func(Post, web.FollowTopicReq) `mir:"/topic/follow"` diff --git a/pkg/app/jwt.go b/pkg/app/jwt.go index 75a43f7a..3625bab7 100644 --- a/pkg/app/jwt.go +++ b/pkg/app/jwt.go @@ -55,8 +55,7 @@ func ParseToken(token string) (res *Claims, err error) { func IssuerFrom(data string) string { contents := make([]byte, 0, len(conf.JWTSetting.Issuer)+len(data)) - copy(contents, []byte(conf.JWTSetting.Issuer)) - contents = append(contents, []byte(data)...) + contents = append(append(contents, []byte(conf.JWTSetting.Issuer)...), []byte(data)...) res := md5.Sum(contents) return hex.EncodeToString(res[:]) } diff --git a/pkg/debug/pyroscope_embed.go b/pkg/debug/pyroscope_embed.go index 73db8870..fc387ba2 100644 --- a/pkg/debug/pyroscope_embed.go +++ b/pkg/debug/pyroscope_embed.go @@ -11,7 +11,7 @@ import ( "os" "github.com/alimy/tryst/cfg" - "github.com/pyroscope-io/client/pyroscope" + pyroscope "github.com/grafana/pyroscope-go" "github.com/rocboss/paopao-ce/internal/conf" "github.com/sirupsen/logrus" ) diff --git a/pkg/http/client.go b/pkg/http/client.go index d77c1d14..150b23b1 100644 --- a/pkg/http/client.go +++ b/pkg/http/client.go @@ -34,8 +34,7 @@ type AsyncClientConf struct { MinWorker int MaxRequestBuf int MaxRequestTempBuf int - MaxTickCount int - TickWaitTime time.Duration + MaxIdleTime time.Duration } type wormClient struct { @@ -64,11 +63,10 @@ func NewAsyncClient(client *http.Client, conf *AsyncClientConf) AsyncClient { pool: gp.NewGoroutinePool(func(req *http.Request) (*http.Response, error) { return client.Do(req) }, - gp.MinWorkerOpt(minWorker), - gp.MaxRequestBufOpt(maxRequestBuf), - gp.MaxRequestTempBufOpt(maxRequestTempBuf), - gp.MaxTickCountOpt(conf.MaxTickCount), - gp.TickWaitTimeOpt(conf.TickWaitTime), + gp.WithMinWorker(minWorker), + gp.WithMaxRequestBuf(maxRequestBuf), + gp.WithMaxRequestTempBuf(maxRequestTempBuf), + gp.WithMaxIdelTime(conf.MaxIdleTime), ), } } diff --git a/pkg/types/bitmap_roaring.go b/pkg/types/bitmap_roaring.go new file mode 100644 index 00000000..d620d2fa --- /dev/null +++ b/pkg/types/bitmap_roaring.go @@ -0,0 +1,157 @@ +// Copyright 2023 ROC. All rights reserved. +// Use of this source code is governed by a MIT style +// license that can be found in the LICENSE file. + +package types + +import ( + "github.com/RoaringBitmap/roaring" + "github.com/RoaringBitmap/roaring/roaring64" + "github.com/alimy/tryst/types" +) + +type roaringBitmap struct { + Map *roaring.Bitmap +} + +type roaring64Bitmap struct { + Map *roaring64.Bitmap +} + +func (m *roaringBitmap) MarshalBinary() ([]byte, error) { + if m == nil { + return []byte{}, nil + } + return m.Map.MarshalBinary() +} + +func (m *roaringBitmap) UnmarshalBinary(data []byte) (res *roaringBitmap, err error) { + res = &roaringBitmap{ + Map: roaring.New(), + } + err = res.Map.UnmarshalBinary(data) + return +} + +func (m *roaring64Bitmap) MarshalBinary() ([]byte, error) { + if m == nil { + return []byte{}, nil + } + return m.Map.MarshalBinary() +} + +func (m *roaring64Bitmap) UnmarshalBinary(data []byte) (res *roaring64Bitmap, err error) { + res = &roaring64Bitmap{ + Map: roaring64.New(), + } + err = res.Map.UnmarshalBinary(data) + return +} + +// Bitmap alias type of types.Binary[*roaringBitmap] +type Bitmap = types.Binary[*roaringBitmap] + +// NullBitmap alias type of types.NullBinary[*roaringBitmap] +type NullBitmap = types.NullBinary[*roaringBitmap] + +// Bitmap64 alias type of types.Binary[*roaring64Bitmap] +type Bitmap64 = types.Binary[*roaring64Bitmap] + +// NullBitmap64 alias type of types.NullBinary[*roaring64Bitmap] +type NullBitmap64 = types.NullBinary[*roaring64Bitmap] + +// NewBitmap create a Bitmap instance +func NewBitmap() (res *Bitmap) { + return &types.Binary[*roaringBitmap]{ + Data: &roaringBitmap{ + Map: roaring.New(), + }, + } +} + +// NewNullBitmap create a NullBitmap instance +func NewNullBitmap() *NullBitmap { + return &types.NullBinary[*roaringBitmap]{ + Data: &roaringBitmap{ + Map: roaring.New(), + }, + } +} + +// NewBitmap64 create a Bitmap64 instance +func NewBitmap64() *Bitmap64 { + return &types.Binary[*roaring64Bitmap]{ + Data: &roaring64Bitmap{ + Map: roaring64.New(), + }, + } +} + +// NewNullBitmap64 create a NullBitmap64 instance +func NewNullBitmap64() *NullBitmap64 { + return &types.NullBinary[*roaring64Bitmap]{ + Data: &roaring64Bitmap{ + Map: roaring64.New(), + }, + } +} + +// MustBitmap create a Bitmap instance +func MustBitmap(data ...[]byte) (res *Bitmap) { + res = &types.Binary[*roaringBitmap]{ + Data: &roaringBitmap{ + Map: roaring.New(), + }, + } + if len(data) > 0 && len(data[0]) > 0 { + if err := res.Data.Map.UnmarshalBinary(data[0]); err != nil { + panic(err) + } + } + return +} + +// MustNullBitmap create a NullBitmap instance +func MustNullBitmap(data ...[]byte) (res *NullBitmap) { + res = &types.NullBinary[*roaringBitmap]{ + Data: &roaringBitmap{ + Map: roaring.New(), + }, + } + if len(data) > 0 && len(data[0]) > 0 { + if err := res.Data.Map.UnmarshalBinary(data[0]); err != nil { + panic(err) + } + } + return +} + +// MustBitmap64 create a Bitmap64 instance +func MustBitmap64(data ...[]byte) (res *Bitmap64) { + res = &types.Binary[*roaring64Bitmap]{ + Data: &roaring64Bitmap{ + Map: roaring64.New(), + }, + } + if len(data) > 0 && len(data[0]) > 0 { + if err := res.Data.Map.UnmarshalBinary(data[0]); err != nil { + panic(err) + } + } + return +} + +// MustNullBitmap64 create a NullBitmap64 instance +func MustNullBitmap64(data ...[]byte) (res *NullBitmap64) { + res = &types.NullBinary[*roaring64Bitmap]{ + Data: &roaring64Bitmap{ + Map: roaring64.New(), + }, + } + if len(data) > 0 && len(data[0]) > 0 { + if err := res.Data.Map.UnmarshalBinary(data[0]); err != nil { + panic(err) + } + } + return +} diff --git a/pkg/types/bitmap_roaring_test.go b/pkg/types/bitmap_roaring_test.go new file mode 100644 index 00000000..e045914e --- /dev/null +++ b/pkg/types/bitmap_roaring_test.go @@ -0,0 +1,36 @@ +// Copyright 2023 ROC. All rights reserved. +// Use of this source code is governed by a MIT style +// license that can be found in the LICENSE file. + +package types_test + +import ( + . "github.com/onsi/ginkgo/v2" + . "github.com/onsi/gomega" + + "github.com/rocboss/paopao-ce/pkg/types" +) + +var _ = Describe("Bitmap", Ordered, func() { + It("sql scaner for Bitmap", func() { + bitmap := types.NewBitmap() + bitmap.Data.Map.Add(128) + value, err := bitmap.Value() + Expect(err).To(BeNil()) + + var bm types.Bitmap + bm.Scan(value) + Expect(bm.Data.Map.Contains(128)).To(BeTrue()) + }) + + It("sql scaner for Bitmap64", func() { + bitmap := types.NewBitmap64() + bitmap.Data.Map.Add(128) + value, err := bitmap.Value() + Expect(err).To(BeNil()) + + var bm types.Bitmap64 + bm.Scan(value) + Expect(bm.Data.Map.Contains(128)).To(BeTrue()) + }) +}) diff --git a/pkg/types/io.go b/pkg/types/io.go new file mode 100644 index 00000000..c662e45e --- /dev/null +++ b/pkg/types/io.go @@ -0,0 +1,24 @@ +// Copyright 2024 ROC. All rights reserved. +// Use of this source code is governed by a MIT style +// license that can be found in the LICENSE file. + +package types + +import ( + "io" +) + +type readerWrap struct { + r io.Reader +} + +func (rw *readerWrap) Read(p []byte) (n int, err error) { + return rw.r.Read(p) +} + +// PureReader wrap a pure io.Reader object +func PureReader(r io.Reader) io.Reader { + return &readerWrap{ + r: r, + } +} diff --git a/pkg/types/password.go b/pkg/types/password.go new file mode 100644 index 00000000..1caf7aaf --- /dev/null +++ b/pkg/types/password.go @@ -0,0 +1,32 @@ +// Copyright 2024 ROC. All rights reserved. +// Use of this source code is governed by a MIT style +// license that can be found in the LICENSE file. + +package types + +import ( + "golang.org/x/crypto/bcrypt" +) + +type PasswordProvider interface { + Generate(password []byte) ([]byte, error) + Compare(hashedPassword, password []byte) error +} + +func NewBcryptPasswordProvider(cost int) PasswordProvider { + return &bcryptPasswordProvider{ + cost: cost, + } +} + +type bcryptPasswordProvider struct { + cost int +} + +func (p *bcryptPasswordProvider) Generate(password []byte) ([]byte, error) { + return bcrypt.GenerateFromPassword(password, p.cost) +} + +func (p *bcryptPasswordProvider) Compare(hashedPassword, password []byte) error { + return bcrypt.CompareHashAndPassword(hashedPassword, password) +} diff --git a/pkg/version/version.go b/pkg/version/version.go index 86491239..c10934f8 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -9,7 +9,7 @@ import ( ) const ( - series = "v0.5" + series = "v0.6-dev" ) var ( diff --git a/scripts/docker/Dockerfile.allinone-runner b/scripts/docker/Dockerfile.allinone-runner new file mode 100644 index 00000000..4bf07e40 --- /dev/null +++ b/scripts/docker/Dockerfile.allinone-runner @@ -0,0 +1,37 @@ +# syntax=docker/dockerfile:1 +FROM getmeili/meilisearch:v1.5 as meilisearch + +FROM redis:7.2-alpine3.18 +ENV TZ=Asia/Shanghai +RUN apk update && apk add --no-cache ca-certificates && update-ca-certificates +RUN apk update --quiet \ + && apk -q --no-cache --no-progress add \ + ca-certificates \ + libgcc \ + curl \ + s6 \ + && update-ca-certificates + +WORKDIR /app +COPY ./docker ./docker + +# add meilisearch and meilitool to the `/bin` so you can run it from anywhere +# and it's easy to find. +COPY --from=meilisearch /bin/meilisearch /bin/meilisearch +COPY --from=meilisearch /bin/meilitool /bin/meilitool +# To stay compatible with the older version of the container (pre v0.27.0) we're +# going to symlink the meilisearch binary in the path to `/meilisearch` +RUN ln -s /bin/meilisearch /meilisearch +ENV MEILI_HTTP_ADDR 0.0.0.0:7700 +ENV MEILI_SERVER_PROVIDER docker +ENV MEILI_DB_PATH=/app/meili_data +ENV MEILI_MASTER_KEY=paopao-meilisearch + +RUN ./docker/build/finalize.sh + +# Configure Docker Container +VOLUME ["/app/meili_data", "/app/custom"] +EXPOSE 7700/tcp 6379 8008 +HEALTHCHECK --interval=5s --timeout=3s --retries=3 CMD ps -ef | grep paopao || exit 1 +ENTRYPOINT ["/app/docker/start.sh"] +CMD ["/bin/s6-svscan", "/app/docker/s6/"] diff --git a/scripts/docker/Dockerfile-backend-builder b/scripts/docker/Dockerfile.backend-builder similarity index 59% rename from scripts/docker/Dockerfile-backend-builder rename to scripts/docker/Dockerfile.backend-builder index d6858ab1..1b7e6a70 100644 --- a/scripts/docker/Dockerfile-backend-builder +++ b/scripts/docker/Dockerfile.backend-builder @@ -1,4 +1,5 @@ -FROM golang:1.21-alpine +# syntax=docker/dockerfile:1 +FROM golang:1.21-alpine3.18 RUN apk --no-cache --no-progress add --virtual \ build-deps \ build-base \ diff --git a/scripts/docker/Dockerfile-backend-runner b/scripts/docker/Dockerfile.backend-runner similarity index 80% rename from scripts/docker/Dockerfile-backend-runner rename to scripts/docker/Dockerfile.backend-runner index cba2776e..836b4eaa 100644 --- a/scripts/docker/Dockerfile-backend-runner +++ b/scripts/docker/Dockerfile.backend-runner @@ -1,3 +1,4 @@ +# syntax=docker/dockerfile:1 FROM alpine:3.18 ENV TZ=Asia/Shanghai RUN apk update && apk add --no-cache ca-certificates && update-ca-certificates diff --git a/scripts/docker/README.md b/scripts/docker/README.md index 4e83a1df..4bdf9bd2 100644 --- a/scripts/docker/README.md +++ b/scripts/docker/README.md @@ -1,6 +1,7 @@ ### Dockerfile builer pre-build images ```sh -docker build -t bitbus/paopao-ce-backend-builder:latest -f Dockerfile-backend-builder . -docker build -t bitbus/paopao-ce-backend-runner:latest -f Dockerfile-backend-runner . +docker buildx build -t bitbus/paopao-ce-backend-builder:latest -f Dockerfile.backend-builder . +docker buildx build -t bitbus/paopao-ce-backend-runner:latest -f Dockerfile.backend-runner . +cd ../../ && docker buildx build -t bitbus/paopao-ce-allinone-runner:latest -f scripts/docker/Dockerfile.allinone-runner . ``` \ No newline at end of file diff --git a/scripts/migration/mysql/0015_topic_user_pin.down.sql b/scripts/migration/mysql/0015_topic_user_pin.down.sql new file mode 100644 index 00000000..cc9449ae --- /dev/null +++ b/scripts/migration/mysql/0015_topic_user_pin.down.sql @@ -0,0 +1,2 @@ +ALTER TABLE `p_topic_user` DROP COLUMN `is_pin`; +DROP INDEX IF EXISTS `idx_topic_user_uid_ispin`; diff --git a/scripts/migration/mysql/0015_topic_user_pin.up.sql b/scripts/migration/mysql/0015_topic_user_pin.up.sql new file mode 100644 index 00000000..4e00cb95 --- /dev/null +++ b/scripts/migration/mysql/0015_topic_user_pin.up.sql @@ -0,0 +1,2 @@ +ALTER TABLE `p_topic_user` ADD COLUMN `is_pin` TINYINT NOT NULL DEFAULT 0 COMMENT '是否钉住 0 为未钉住、1 为已钉住'; +CREATE INDEX `idx_topic_user_uid_ispin` ON `p_topic_user` (`user_id`, `is_pin`) USING BTREE; diff --git a/scripts/migration/postgres/0014_topic_user_pin.down.sql b/scripts/migration/postgres/0014_topic_user_pin.down.sql new file mode 100644 index 00000000..cae040f2 --- /dev/null +++ b/scripts/migration/postgres/0014_topic_user_pin.down.sql @@ -0,0 +1,2 @@ +ALTER TABLE p_topic_user DROP COLUMN is_pin; +DROP INDEX IF EXISTS idx_topic_user_uid_ispin; diff --git a/scripts/migration/postgres/0014_topic_user_pin.up.sql b/scripts/migration/postgres/0014_topic_user_pin.up.sql new file mode 100644 index 00000000..5dc8cea1 --- /dev/null +++ b/scripts/migration/postgres/0014_topic_user_pin.up.sql @@ -0,0 +1,2 @@ +ALTER TABLE p_topic_user ADD COLUMN is_pin SMALLINT NOT NULL DEFAULT 0; -- 是否钉住 0 为未钉住、1 为已钉住 +CREATE INDEX idx_topic_user_uid_ispin ON p_topic_user USING btree ( user_id, is_pin ); diff --git a/scripts/migration/sqlite3/0008_content_type_alter.up.sql b/scripts/migration/sqlite3/0008_content_type_alter.up.sql index ba4db9e1..1059dc9d 100644 --- a/scripts/migration/sqlite3/0008_content_type_alter.up.sql +++ b/scripts/migration/sqlite3/0008_content_type_alter.up.sql @@ -1,7 +1,5 @@ PRAGMA foreign_keys=off; -BEGIN TRANSACTION; - ALTER TABLE p_post_content RENAME TO _p_post_content; ALTER TABLE p_comment_content RENAME TO _p_comment_content; @@ -53,46 +51,6 @@ CREATE TABLE p_comment_reply PRIMARY KEY ("id") ); --- ---------------------------- --- Indexes structure for table p_post_content --- ---------------------------- -CREATE INDEX "idx_post_content_post_id" -ON "p_post_content" ( - "post_id" ASC -); -CREATE INDEX "idx_post_content_user_id" -ON "p_post_content" ( - "user_id" ASC -); - --- ---------------------------- --- Indexes structure for table p_comment_reply --- ---------------------------- -CREATE INDEX "idx_comment_reply_comment_id" -ON "p_comment_reply" ( - "comment_id" ASC -); - --- ---------------------------- --- Indexes structure for table p_comment_content --- ---------------------------- -CREATE INDEX "idx_comment_content_comment_id" -ON "p_comment_content" ( - "comment_id" ASC -); -CREATE INDEX "idx_comment_content_sort" -ON "p_comment_content" ( - "sort" ASC -); -CREATE INDEX "idx_comment_content_type" -ON "p_comment_content" ( - "type" ASC -); -CREATE INDEX "idx_comment_content_user_id" -ON "p_comment_content" ( - "user_id" ASC -); - INSERT INTO p_post_content (id, post_id, user_id, content, `type`, sort, created_on, modified_on, deleted_on, is_del) SELECT id, post_id, user_id, content, `type`, sort, created_on, modified_on, deleted_on, is_del FROM _p_post_content; @@ -112,10 +70,12 @@ DROP TABLE _p_comment_reply; -- ---------------------------- -- Indexes structure for table p_post_content -- ---------------------------- +DROP INDEX IF EXISTS "idx_post_content_post_id"; CREATE INDEX "idx_post_content_post_id" ON "p_post_content" ( "post_id" ASC ); +DROP INDEX IF EXISTS "idx_post_content_user_id"; CREATE INDEX "idx_post_content_user_id" ON "p_post_content" ( "user_id" ASC @@ -124,6 +84,7 @@ ON "p_post_content" ( -- ---------------------------- -- Indexes structure for table p_comment_reply -- ---------------------------- +DROP INDEX IF EXISTS "idx_comment_reply_comment_id"; CREATE INDEX "idx_comment_reply_comment_id" ON "p_comment_reply" ( "comment_id" ASC @@ -132,23 +93,25 @@ ON "p_comment_reply" ( -- ---------------------------- -- Indexes structure for table p_comment_content -- ---------------------------- +DROP INDEX IF EXISTS "idx_comment_content_comment_id"; CREATE INDEX "idx_comment_content_comment_id" ON "p_comment_content" ( "comment_id" ASC ); +DROP INDEX IF EXISTS "idx_comment_content_sort"; CREATE INDEX "idx_comment_content_sort" ON "p_comment_content" ( "sort" ASC ); +DROP INDEX IF EXISTS "idx_comment_content_type"; CREATE INDEX "idx_comment_content_type" ON "p_comment_content" ( "type" ASC ); +DROP INDEX IF EXISTS "idx_comment_content_user_id"; CREATE INDEX "idx_comment_content_user_id" ON "p_comment_content" ( "user_id" ASC ); -COMMIT; - PRAGMA foreign_keys=on; diff --git a/scripts/migration/sqlite3/0015_topic_user_pin.down.sql b/scripts/migration/sqlite3/0015_topic_user_pin.down.sql new file mode 100644 index 00000000..dfc21870 --- /dev/null +++ b/scripts/migration/sqlite3/0015_topic_user_pin.down.sql @@ -0,0 +1,2 @@ +ALTER TABLE "p_topic_user" DROP COLUMN "is_pin"; +DROP INDEX IF EXISTS "idx_topic_user_uid_ispin"; diff --git a/scripts/migration/sqlite3/0015_topic_user_pin.up.sql b/scripts/migration/sqlite3/0015_topic_user_pin.up.sql new file mode 100644 index 00000000..a085ec08 --- /dev/null +++ b/scripts/migration/sqlite3/0015_topic_user_pin.up.sql @@ -0,0 +1,6 @@ +ALTER TABLE "p_topic_user" ADD COLUMN "is_pin" integer NOT NULL DEFAULT 0; +CREATE INDEX "main"."idx_topic_user_uid_ispin" +ON "p_topic_user" ( + "user_id" ASC, + "is_pin" ASC +); diff --git a/scripts/paopao-mysql.sql b/scripts/paopao-mysql.sql index fddeaaac..3e47c691 100644 --- a/scripts/paopao-mysql.sql +++ b/scripts/paopao-mysql.sql @@ -324,6 +324,7 @@ CREATE TABLE `p_topic_user` ( `remark` VARCHAR ( 512 ) COMMENT '备注', `quote_num` BIGINT COMMENT '引用数', `is_top` TINYINT NOT NULL DEFAULT '0' COMMENT '是否置顶 0 为未置顶、1 为已置顶', + `is_pin` TINYINT NOT NULL DEFAULT '0' COMMENT '是否钉住 0 为未钉住、1 为已钉住', `created_on` BIGINT NOT NULL DEFAULT '0' COMMENT '创建时间', `modified_on` BIGINT NOT NULL DEFAULT '0' COMMENT '修改时间', `deleted_on` BIGINT NOT NULL DEFAULT '0' COMMENT '删除时间', @@ -331,7 +332,8 @@ CREATE TABLE `p_topic_user` ( `reserve_a` VARCHAR ( 255 ) COMMENT '保留字段a', `reserve_b` VARCHAR ( 255 ) COMMENT '保留字段b', PRIMARY KEY ( `id` ) USING BTREE, - UNIQUE KEY `idx_topic_user_uid_tid` ( `topic_id`, `user_id` ) USING BTREE + UNIQUE KEY `idx_topic_user_uid_tid` ( `topic_id`, `user_id` ) USING BTREE, + KEY `idx_topic_user_uid_ispin` ( `user_id`, `is_pin`) USING BTREE ) ENGINE = INNODB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '用户话题'; -- ---------------------------- diff --git a/scripts/paopao-postgres.sql b/scripts/paopao-postgres.sql index 276abdde..274c1fe1 100644 --- a/scripts/paopao-postgres.sql +++ b/scripts/paopao-postgres.sql @@ -265,6 +265,7 @@ CREATE TABLE p_topic_user ( remark VARCHAR ( 512 ),-- 备注 quote_num BIGINT,-- 引用数 is_top SMALLINT NOT NULL DEFAULT 0,-- 是否置顶 0 为未置顶、1 为已置顶 + is_pin SMALLINT NOT NULL DEFAULT 0,-- 是否钉住 0 为未钉住、1 为已钉住 created_on BIGINT NOT NULL DEFAULT 0,-- 创建时间 modified_on BIGINT NOT NULL DEFAULT 0,-- 修改时间 deleted_on BIGINT NOT NULL DEFAULT 0,-- 删除时间 @@ -273,6 +274,7 @@ CREATE TABLE p_topic_user ( reserve_b VARCHAR ( 255 ) -- 保留字段b ); CREATE UNIQUE INDEX idx_topic_user_uid_tid ON p_topic_user USING btree ( topic_id, user_id ); +CREATE INDEX idx_topic_user_uid_ispin ON p_topic_user USING btree ( user_id, is_pin ); CREATE SEQUENCE IF NOT EXISTS user_id_seq AS BIGINT MINVALUE 100058 NO MAXVALUE; DROP TABLE IF EXISTS p_user; diff --git a/scripts/paopao-sqlite3.sql b/scripts/paopao-sqlite3.sql index 32fbd9e2..43ab63df 100644 --- a/scripts/paopao-sqlite3.sql +++ b/scripts/paopao-sqlite3.sql @@ -341,6 +341,7 @@ CREATE TABLE "p_topic_user" ( "remark" text ( 512 ),-- 备注 "quote_num" integer,-- 引用数 "is_top" integer NOT NULL DEFAULT 0,-- 是否置顶 0 为未置顶、1 为已置顶 + "is_pin" integer NOT NULL DEFAULT 0,-- 是否钉住 0 为未钉住、1 为已钉住 "created_on" integer NOT NULL DEFAULT 0,-- 创建时间 "modified_on" integer NOT NULL DEFAULT 0,-- 修改时间 "deleted_on" integer NOT NULL DEFAULT 0,-- 删除时间 @@ -680,6 +681,11 @@ ON "p_topic_user" ( "topic_id", "user_id" ); +CREATE INDEX "main"."idx_topic_user_uid_ispin" +ON "p_topic_user" ( + "user_id" ASC, + "is_pin" ASC +); -- ---------------------------- -- Indexes structure for table p_user diff --git a/web/.env b/web/.env index e3ffe2c3..f4229aa0 100644 --- a/web/.env +++ b/web/.env @@ -7,7 +7,7 @@ VITE_USE_WEB_PROFILE=true # 是否使用后端web服务提供的WebPro # 模块开启 VITE_ENABLE_ANOUNCEMENT=false VITE_ENABLE_WALLET=false -VITE_ENABLE_TRENDS_BAR=true +VITE_ENABLE_TRENDS_BAR=false # 功能开启 VITE_ALLOW_TWEET_ATTACHMENT=true @@ -37,6 +37,6 @@ VITE_COPYRIGHT_RIGHT_LINK="https://www.paopao.info" # 图片推文参数 VITE_DEFAULT_TWEET_IMAGE_404="https://paopao-assets.oss-cn-shanghai.aliyuncs.com/public/404.png" # AliOSS 图片thumbnail参数 -VITE_TWEET_IMAGE_THUMBNAIL="?x-oss-process=image/resize,m_fill,w_300,h_300,limit_0/auto-orient,1/format,png" +VITE_TWEET_IMAGE_THUMBNAIL="?x-oss-process=image/resize,m_fill,w_300,h_300,limit_0/auto-orient,1/format,webp" # MinIOn 图片thumbnail参数 # VITE_TWEET_IMAGE_THUMBNAIL="?x-oss-process=image/resize,m_fill,w_300,h_300,limit_0/auto-orient,1/format,png" diff --git a/web/dist/assets/404-3870dbb4.js b/web/dist/assets/404-3870dbb4.js deleted file mode 100644 index 6e762d8d..00000000 --- a/web/dist/assets/404-3870dbb4.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as s}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{u as i}from"./vue-router-e5a2430e.js";import{G as a,e as c,a2 as u}from"./naive-ui-eecf2ec3.js";import{d as l,f as d,k as t,w as o,e as f,A as x}from"./@vue-a481fc63.js";import{_ as g}from"./index-1e276b8f.js";import"./vuex-44de225f.js";import"./vooks-6d99783e.js";import"./evtd-b614532e.js";import"./@vicons-f0266f88.js";import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./@css-render-7124a1a5.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */const v=l({__name:"404",setup(h){const e=i(),_=()=>{e.push({path:"/"})};return(k,w)=>{const n=s,p=c,r=u,m=a;return f(),d("div",null,[t(n,{title:"404"}),t(m,{class:"main-content-wrap wrap404",bordered:""},{default:o(()=>[t(r,{status:"404",title:"404 资源不存在",description:"再看看其他的吧"},{footer:o(()=>[t(p,{onClick:_},{default:o(()=>[x("回主页")]),_:1})]),_:1})]),_:1})])}}});const O=g(v,[["__scopeId","data-v-e62daa85"]]);export{O as default}; diff --git a/web/dist/assets/404-020b2afd.css b/web/dist/assets/404-BDKIy91-.css similarity index 100% rename from web/dist/assets/404-020b2afd.css rename to web/dist/assets/404-BDKIy91-.css diff --git a/web/dist/assets/404-jFEq1ucs.js b/web/dist/assets/404-jFEq1ucs.js new file mode 100644 index 00000000..17a092b4 --- /dev/null +++ b/web/dist/assets/404-jFEq1ucs.js @@ -0,0 +1 @@ +import{_ as i}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{u as s}from"./vue-router-zwGLnBy5.js";import{G as a,e as c,a2 as u}from"./naive-ui-DNcWoFGl.js";import{d as l,f as d,k as t,w as o,e as f,A as x}from"./@vue-CQsYufSu.js";import{_ as g}from"./index-v3l9hw1O.js";import"./vuex-DNAxYlmG.js";import"./vooks-BQzJqMzq.js";import"./evtd-CI_DDEu_.js";import"./@vicons-C3A8jsfr.js";import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./@css-render-CQdyXCYJ.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */const h=l({__name:"404",setup(k){const n=s(),e=()=>{n.push({path:"/"})};return(w,v)=>{const r=i,p=c,_=u,m=a;return f(),d("div",null,[t(r,{title:"404"}),t(m,{class:"main-content-wrap wrap404",bordered:""},{default:o(()=>[t(_,{status:"404",title:"404 资源不存在",description:"再看看其他的吧"},{footer:o(()=>[t(p,{onClick:e},{default:o(()=>[x("回主页")]),_:1})]),_:1})]),_:1})])}}}),O=g(h,[["__scopeId","data-v-e62daa85"]]);export{O as default}; diff --git a/web/dist/assets/@babel-725317a4.js b/web/dist/assets/@babel-Cpj98o6Y.js similarity index 100% rename from web/dist/assets/@babel-725317a4.js rename to web/dist/assets/@babel-Cpj98o6Y.js diff --git a/web/dist/assets/@css-render-7124a1a5.js b/web/dist/assets/@css-render-7124a1a5.js deleted file mode 100644 index 60115763..00000000 --- a/web/dist/assets/@css-render-7124a1a5.js +++ /dev/null @@ -1,3 +0,0 @@ -import{i as d}from"./@vue-a481fc63.js";function C(i){let r=".",s="__",m="--",f;if(i){let e=i.blockPrefix;e&&(r=e),e=i.elementPrefix,e&&(s=e),e=i.modifierPrefix,e&&(m=e)}const b={install(e){f=e.c;const l=e.context;l.bem={},l.bem.b=null,l.bem.els=null}};function y(e){let l,n;return{before(t){l=t.bem.b,n=t.bem.els,t.bem.els=null},after(t){t.bem.b=l,t.bem.els=n},$({context:t,props:u}){return e=typeof e=="string"?e:e({context:t,props:u}),t.bem.b=e,`${(u==null?void 0:u.bPrefix)||r}${t.bem.b}`}}}function v(e){let l;return{before(n){l=n.bem.els},after(n){n.bem.els=l},$({context:n,props:t}){return e=typeof e=="string"?e:e({context:n,props:t}),n.bem.els=e.split(",").map(u=>u.trim()),n.bem.els.map(u=>`${(t==null?void 0:t.bPrefix)||r}${n.bem.b}${s}${u}`).join(", ")}}}function P(e){return{$({context:l,props:n}){e=typeof e=="string"?e:e({context:l,props:n});const t=e.split(",").map(o=>o.trim());function u(o){return t.map(x=>`&${(n==null?void 0:n.bPrefix)||r}${l.bem.b}${o!==void 0?`${s}${o}`:""}${m}${x}`).join(", ")}const c=l.bem.els;return c!==null?u(c[0]):u()}}}function _(e){return{$({context:l,props:n}){e=typeof e=="string"?e:e({context:l,props:n});const t=l.bem.els;return`&:not(${(n==null?void 0:n.bPrefix)||r}${l.bem.b}${t!==null&&t.length>0?`${s}${t[0]}`:""}${m}${e})`}}}return Object.assign(b,{cB:(...e)=>f(y(e[0]),e[1],e[2]),cE:(...e)=>f(v(e[0]),e[1],e[2]),cM:(...e)=>f(P(e[0]),e[1],e[2]),cNotM:(...e)=>f(_(e[0]),e[1],e[2])}),b}const $=Symbol("@css-render/vue3-ssr");function M(i,r){return``}function S(i,r){const s=d($,null);if(s===null){console.error("[css-render/vue3-ssr]: no ssr context found.");return}const{styles:m,ids:f}=s;f.has(i)||m!==null&&(f.add(i),m.push(M(i,r)))}const j=typeof document<"u";function N(){if(j)return;const i=d($,null);if(i!==null)return{adapter:S,context:i}}export{C as p,N as u}; diff --git a/web/dist/assets/@css-render-CQdyXCYJ.js b/web/dist/assets/@css-render-CQdyXCYJ.js new file mode 100644 index 00000000..8bebfd50 --- /dev/null +++ b/web/dist/assets/@css-render-CQdyXCYJ.js @@ -0,0 +1,3 @@ +import{i as d}from"./@vue-CQsYufSu.js";function C(i){let r=".",f="__",o="--",s;if(i){let e=i.blockPrefix;e&&(r=e),e=i.elementPrefix,e&&(f=e),e=i.modifierPrefix,e&&(o=e)}const b={install(e){s=e.c;const l=e.context;l.bem={},l.bem.b=null,l.bem.els=null}};function v(e){let l,n;return{before(t){l=t.bem.b,n=t.bem.els,t.bem.els=null},after(t){t.bem.b=l,t.bem.els=n},$({context:t,props:u}){return e=typeof e=="string"?e:e({context:t,props:u}),t.bem.b=e,`${(u==null?void 0:u.bPrefix)||r}${t.bem.b}`}}}function y(e){let l;return{before(n){l=n.bem.els},after(n){n.bem.els=l},$({context:n,props:t}){return e=typeof e=="string"?e:e({context:n,props:t}),n.bem.els=e.split(",").map(u=>u.trim()),n.bem.els.map(u=>`${(t==null?void 0:t.bPrefix)||r}${n.bem.b}${f}${u}`).join(", ")}}}function P(e){return{$({context:l,props:n}){e=typeof e=="string"?e:e({context:l,props:n});const t=e.split(",").map(m=>m.trim());function u(m){return t.map(x=>`&${(n==null?void 0:n.bPrefix)||r}${l.bem.b}${m!==void 0?`${f}${m}`:""}${o}${x}`).join(", ")}const c=l.bem.els;return c!==null?u(c[0]):u()}}}function _(e){return{$({context:l,props:n}){e=typeof e=="string"?e:e({context:l,props:n});const t=l.bem.els;return`&:not(${(n==null?void 0:n.bPrefix)||r}${l.bem.b}${t!==null&&t.length>0?`${f}${t[0]}`:""}${o}${e})`}}}return Object.assign(b,{cB:(...e)=>s(v(e[0]),e[1],e[2]),cE:(...e)=>s(y(e[0]),e[1],e[2]),cM:(...e)=>s(P(e[0]),e[1],e[2]),cNotM:(...e)=>s(_(e[0]),e[1],e[2])}),b}const $=Symbol("@css-render/vue3-ssr");function M(i,r){return``}function S(i,r){const f=d($,null);if(f===null){console.error("[css-render/vue3-ssr]: no ssr context found.");return}const{styles:o,ids:s}=f;s.has(i)||o!==null&&(s.add(i),o.push(M(i,r)))}const j=typeof document<"u";function N(){if(j)return;const i=d($,null);if(i!==null)return{adapter:S,context:i}}export{C as p,N as u}; diff --git a/web/dist/assets/@emotion-8a8e73f6.js b/web/dist/assets/@emotion-WldOFDRm.js similarity index 100% rename from web/dist/assets/@emotion-8a8e73f6.js rename to web/dist/assets/@emotion-WldOFDRm.js diff --git a/web/dist/assets/@juggle-41516555.js b/web/dist/assets/@juggle-C8OzoCMD.js similarity index 100% rename from web/dist/assets/@juggle-41516555.js rename to web/dist/assets/@juggle-C8OzoCMD.js diff --git a/web/dist/assets/@opentiny-0f942bd4.css b/web/dist/assets/@opentiny-B9LeG2Mi.css similarity index 58% rename from web/dist/assets/@opentiny-0f942bd4.css rename to web/dist/assets/@opentiny-B9LeG2Mi.css index d40f7ac8..ee284fd4 100644 --- a/web/dist/assets/@opentiny-0f942bd4.css +++ b/web/dist/assets/@opentiny-B9LeG2Mi.css @@ -1 +1 @@ -.tiny-icon-success{fill:#5cb300}.tiny-icon-error{fill:#f23030}.tiny-icon-warning-triangle{fill:#f80}.tiny-icon-prompt{fill:#1476ff}.tiny-icon-text-type{fill:#9185f0}[class*=tiny-]{-webkit-box-sizing:border-box;box-sizing:border-box}[class*=tiny-] :after,[class*=tiny-] :before{-webkit-box-sizing:border-box;box-sizing:border-box}[class*=tiny-] a{cursor:pointer;background-image:none;text-decoration:none;outline:0}[class*=tiny-] a:active,[class*=tiny-] a:focus,[class*=tiny-] a:hover{outline:0;text-decoration:none}[class*=tiny-] dd,[class*=tiny-] dl,[class*=tiny-] dt,[class*=tiny-] li,[class*=tiny-] ol,[class*=tiny-] td,[class*=tiny-] th,[class*=tiny-] ul{margin:0;padding:0}[class*=tiny-] ol,[class*=tiny-] ul{list-style:none}[class*=tiny-] audio,[class*=tiny-] canvas,[class*=tiny-] video{display:inline-block}[class*=tiny-] audio:not([controls]){display:none;height:0}[class*=tiny-] mark{background:#ff0;color:#000}[class*=tiny-] pre{white-space:pre-wrap}[class*=tiny-] sub,[class*=tiny-] sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}[class*=tiny-] sup{top:-.5em}[class*=tiny-] sub{bottom:-.25em}[class*=tiny-] fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}[class*=tiny-] legend{border:0;padding:0}[class*=tiny-] input::-ms-clear,[class*=tiny-] input::-ms-reveal{display:none}[class*=tiny-] button::-moz-focus-inner,[class*=tiny-] input::-moz-focus-inner{border:0;padding:0}[class*=tiny-] textarea{overflow:auto;vertical-align:top}[class*=tiny-] table{border-collapse:collapse;border-spacing:0}[class*=tiny-] .tiny-hide{display:none}[class*=tiny-] .popper__arrow,[class*=tiny-] .popper__arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}@media (min-width:768px){[class*=tiny-] ::-webkit-scrollbar{width:var(--ti-common-scrollbar-width);height:var(--ti-common-scrollbar-height)}[class*=tiny-] ::-webkit-scrollbar-track-piece{background:var(--ti-common-scrollbar-track-piece-bg-color)}[class*=tiny-] ::-webkit-scrollbar-thumb{background:var(--ti-common-scrollbar-thumb-bg-color);border-radius:var(--ti-common-scrollbar-thumb-border-radius)}[class*=tiny-] ::-webkit-scrollbar-thumb:hover{background:var(--ti-common-scrollbar-thumb-hover-bg-color)}[class*=tiny-] ::-webkit-scrollbar-thumb:active{background:var(--ti-common-scrollbar-thumb-active-bg-color)}[class*=tiny-] .tiny-scrollbar::-webkit-scrollbar{width:8px;height:8px}[class*=tiny-] .tiny-scrollbar::-webkit-scrollbar-track-piece{background:0 0;border:0}[class*=tiny-] .tiny-scrollbar::-webkit-scrollbar-thumb{background:#bfbfbf;border-radius:4px}[class*=tiny-] .tiny-scrollbar::-webkit-scrollbar-thumb:hover{background:#999}[class*=tiny-] .tiny-scrollbar::-webkit-scrollbar-thumb:active{background:#999}[class*=tiny-] .tiny-min-scrollbar::-webkit-scrollbar{width:4px;height:4px}[class*=tiny-] .tiny-min-scrollbar::-webkit-scrollbar-track-piece{background:0 0;border:0}[class*=tiny-] .tiny-min-scrollbar::-webkit-scrollbar-thumb{background:#bfbfbf;border-radius:2px}[class*=tiny-] .tiny-min-scrollbar::-webkit-scrollbar-thumb:hover{background:#999}[class*=tiny-] .tiny-min-scrollbar::-webkit-scrollbar-thumb:active{background:#999}}:root{--ti-base-color-white:#fff;--ti-base-color-transparent:transparent;--ti-base-color-brand-6:#5e7ce0;--ti-base-color-brand-8:#344899;--ti-base-color-brand-7:#526ecc;--ti-base-color-brand-5:#7693f5;--ti-base-color-brand-4:#96adfa;--ti-base-color-brand-3:#beccfa;--ti-base-color-brand-2:#e9edfa;--ti-base-color-brand-1:#f2f5fc;--ti-base-color-common-9:#181818;--ti-base-color-common-8:#282b33;--ti-base-color-common-7:#252b3a;--ti-base-color-common-6:#464c59;--ti-base-color-common-5:#575d6c;--ti-base-color-common-4:#5c6173;--ti-base-color-common-3:#8a8e99;--ti-base-color-common-2:#adb0b8;--ti-base-color-common-1:#dfe1e6;--ti-base-color-bg-9:#b12220;--ti-base-color-bg-8:#c7000b;--ti-base-color-bg-7:#d64a52;--ti-base-color-bg-6:#eef0f5;--ti-base-color-bg-5:#f5f5f6;--ti-base-color-bg-4:#fafafa;--ti-base-color-bg-3:#ffffff;--ti-base-color-bg-2:#ffffff;--ti-base-color-bg-1:#ffffff;--ti-base-color-error-4:#de504e;--ti-base-color-error-3:#f66f6a;--ti-base-color-error-2:#ffbcba;--ti-base-color-error-1:#ffeeed;--ti-base-color-success-4:#3ac295;--ti-base-color-success-3:#50d4ab;--ti-base-color-success-2:#acf2dc;--ti-base-color-success-1:#edfff9;--ti-base-color-warn-5:#e37d29;--ti-base-color-warn-4:#fa9841;--ti-base-color-warn-3:#fac20a;--ti-base-color-warn-2:#ffd0a6;--ti-base-color-warn-1:#fff3e8;--ti-base-color-prompt-4:var(--ti-base-color-brand-7);--ti-base-color-prompt-3:var(--ti-base-color-brand-6);--ti-base-color-prompt-2:var(--ti-base-color-brand-3);--ti-base-color-prompt-1:#ebf6ff;--ti-base-color-prompt-icon-from:#7769e8;--ti-base-color-prompt-icon-to:#58bbff;--ti-base-color-icon-info:#6cbfff;--ti-base-color-data-3:#a6dd82;--ti-base-color-data-4:#f3689a;--ti-base-color-data-5:#a97af8;--ti-common-color-transparent:var(--ti-base-color-transparent);--ti-common-color-light:#fff;--ti-common-color-dark:#000;--ti-common-color-success:var(--ti-base-color-success-3);--ti-common-color-text-success:var(--ti-base-color-success-4);--ti-common-color-success-bg:var(--ti-base-color-success-1);--ti-common-color-success-border:var(--ti-base-color-success-2);--ti-common-color-error:var(--ti-base-color-error-3);--ti-common-color-error-text:var(--ti-base-color-error-4);--ti-common-color-error-bg:var(--ti-base-color-error-1);--ti-common-color-error-border:var(--ti-base-color-error-3);--ti-common-color-error-border-secondary:var(--ti-base-color-error-2);--ti-common-color-info:var(--ti-base-color-common-7);--ti-common-color-info-text:var(--ti-base-color-common-7);--ti-common-color-info-bg:rgba(51, 51, 51, .06);--ti-common-color-info-border:#d3d4d6;--ti-common-color-warn:var(--ti-base-color-warn-4);--ti-common-color-warn-text:var(--ti-base-color-warn-5);--ti-common-color-warn-bg:var(--ti-base-color-warn-1);--ti-common-color-warn-border:var(--ti-base-color-warn-2);--ti-common-color-warn-secondary:var(--ti-base-color-warn-3);--ti-common-color-prompt:var(--ti-base-color-prompt-3);--ti-common-color-prompt-text:var(--ti-base-color-prompt-4);--ti-common-color-prompt-bg:var(--ti-base-color-prompt-1);--ti-common-color-prompt-border:var(--ti-base-color-prompt-2);--ti-common-color-prompt-icon-from:var(--ti-base-color-prompt-icon-from);--ti-common-color-prompt-icon-to:var(--ti-base-color-prompt-icon-to);--ti-common-color-primary-normal:var(--ti-base-color-brand-6);--ti-common-color-primary-hover:var(--ti-base-color-brand-5);--ti-common-color-primary-active:var(--ti-base-color-brand-5);--ti-common-color-primary-disabled:#a0cfff;--ti-common-color-primary-disabled-bgcolor:var(--ti-common-color-bg-disabled);--ti-common-color-primary-disabled-border:var(--ti-common-color-line-disabled);--ti-common-color-primary-disabled-text:var(--ti-common-color-text-disabled);--ti-common-color-primary-plain-disabled-bg-color:rgba(191, 191, 191, .1);--ti-common-color-success-normal:var(--ti-common-color-success);--ti-common-color-success-hover:var(--ti-common-color-success-border);--ti-common-color-success-active:var(--ti-common-color-success-border);--ti-common-color-success-disabled:#a6c3b9;--ti-common-color-success-disabled-bgcolor:var(--ti-common-color-bg-disabled);--ti-common-color-success-disabled-border:var(--ti-common-color-line-disabled);--ti-common-color-success-disabled-text:var(--ti-common-color-text-disabled);--ti-common-color-success-plain-disabled-bg-color:rgba(166, 195, 185, .1);--ti-common-color-warning-normal:var(--ti-common-color-warn);--ti-common-color-warning-hover:var(--ti-common-color-warn-secondary);--ti-common-color-warning-active:var(--ti-common-color-warn-secondary);--ti-common-color-warning-disabled:#d3c6a2;--ti-common-color-warning-disabled-bgcolor:var(--ti-common-color-bg-disabled);--ti-common-color-warning-disabled-border:var(--ti-common-color-line-disabled);--ti-common-color-warning-disabled-text:var(--ti-common-color-text-disabled);--ti-common-color-warning-plain-disabled-bg-color:rgba(211, 198, 162, .1);--ti-common-color-danger-normal:var(--ti-common-bg-primary);--ti-common-color-danger-hover:var(--ti-common-bg-primary-hover);--ti-common-color-danger-active:var(--ti-common-bg-primary-active);--ti-common-color-danger-disabled:#d8bab5;--ti-common-color-danger-disabled-bgcolor:var(--ti-common-color-bg-disabled);--ti-common-color-danger-disabled-border:var(--ti-common-color-line-disabled);--ti-common-color-danger-disabled-text:var(--ti-common-color-text-disabled);--ti-common-color-danger-plain-disabled-bg-color:rgba(216, 186, 181, .1);--ti-common-color-info-normal:var(--ti-base-color-common-7);--ti-common-color-info-hover:var(--ti-base-color-common-4);--ti-common-color-info-active:var(--ti-base-color-common-4);--ti-common-color-info-disabled:#bfbfbf;--ti-common-color-info-disabled-bgcolor:var(--ti-common-color-bg-disabled);--ti-common-color-info-disabled-border:var(--ti-common-color-line-disabled);--ti-common-color-info-disabled-text:var(--ti-common-color-text-disabled);--ti-common-color-info-plain-disabled-bg-color:rgba(191, 191, 191, .1);--ti-common-color-text-primary:var(--ti-base-color-common-7);--ti-common-color-text-secondary:var(--ti-base-color-common-5);--ti-common-color-text-weaken:var(--ti-base-color-common-3);--ti-common-color-text-disabled:var(--ti-base-color-common-2);--ti-common-color-text-darkbg:var(--ti-base-color-common-2);--ti-common-color-text-darkbg-disabled:var(--ti-base-color-common-5);--ti-common-color-text-link:var(--ti-base-color-brand-7);--ti-common-color-text-link-hover:var(--ti-base-color-brand-8);--ti-common-color-text-link-darkbg:var(--ti-base-color-brand-4);--ti-common-color-text-link-darkbg-hover:var(--ti-base-color-brand-3);--ti-common-color-text-highlight:var(--ti-base-color-brand-7);--ti-common-color-text-white:var(--ti-base-color-white);--ti-common-color-text-gray:var(--ti-base-color-white);--ti-common-color-text-gray-disabled:var(--ti-base-color-common-4);--ti-common-color-text-important:var(--ti-base-color-error-4);--ti-common-color-placeholder:var(--ti-base-color-common-2);--ti-common-color-selected-text-color:var(--ti-common-color-light);--ti-common-color-icon-normal:var(--ti-base-color-common-5);--ti-common-color-icon-hover:var(--ti-base-color-brand-6);--ti-common-color-icon-active:var(--ti-base-color-brand-6);--ti-common-color-icon-disabled:var(--ti-base-color-common-2);--ti-common-color-icon-white:var(--ti-base-color-white);--ti-common-color-icon-graybg-normal:var(--ti-base-color-common-2);--ti-common-color-icon-graybg-hover:var(--ti-base-color-brand-6);--ti-common-color-icon-graybg-active:var(--ti-base-color-brand-6);--ti-common-color-icon-graybg-disabled:var(--ti-base-color-common-1);--ti-common-color-icon-darkbg-normal:var(--ti-base-color-common-2);--ti-common-color-icon-darkbg-hover:var(--ti-base-color-brand-5);--ti-common-color-icon-darkbg-active:var(--ti-base-color-brand-5);--ti-common-color-icon-darkbg-disabled:var(--ti-base-color-common-5);--ti-common-color-icon-info:var(--ti-base-color-icon-info);--ti-common-color-bg-normal:var(--ti-base-color-bg-6);--ti-common-color-bg-emphasize:var(--ti-base-color-brand-6);--ti-common-color-bg-disabled:var(--ti-base-color-bg-5);--ti-common-color-bg-hover:var(--ti-base-color-brand-8);--ti-common-color-bg-gray:var(--ti-base-color-bg-4);--ti-common-color-bg-secondary:var(--ti-base-color-common-2);--ti-common-bg-primary:var(--ti-base-color-bg-8);--ti-common-bg-primary-hover:var(--ti-base-color-bg-7);--ti-common-bg-primary-active:var(--ti-base-color-bg-9);--ti-common-bg-minor:var(--ti-base-color-bg-2);--ti-common-bg-minor-hover:var(--ti-base-color-bg-1);--ti-common-bg-minor-active:var(--ti-base-color-bg-3);--ti-common-color-bg-white-normal:var(--ti-base-color-white);--ti-common-color-bg-white-emphasize:var(--ti-base-color-brand-1);--ti-common-color-bg-light-normal:var(--ti-base-color-brand-2);--ti-common-color-bg-light-emphasize:var(--ti-base-color-brand-3);--ti-common-color-bg-dark-normal:var(--ti-base-color-common-6);--ti-common-color-bg-dark-emphasize:var(--ti-base-color-common-4);--ti-common-color-bg-dark-active:var(--ti-common-color-bg-normal);--ti-common-color-bg-dark-deep:var(--ti-base-color-common-6);--ti-common-color-bg-dark-disabled:var(--ti-base-color-common-1);--ti-common-color-bg-navigation:var(--ti-base-color-common-8);--ti-common-color-bg-dark-select:var(--ti-base-color-common-9);--ti-common-color-selected-background:var(--ti-base-color-brand-6);--ti-common-color-hover-background:var(--ti-base-color-brand-1);--ti-common-color-data-1:var(--ti-base-color-success-3);--ti-common-color-data-2:var(--ti-base-color-icon-info);--ti-common-color-data-3:var(--ti-base-color-data-3);--ti-common-color-data-4:var(--ti-base-color-data-4);--ti-common-color-data-5:var(--ti-base-color-data-5);--ti-common-color-data-6:var(--ti-base-color-warn-3);--ti-common-color-data-7:var(--ti-base-color-warn-4);--ti-common-color-data-8:var(--ti-base-color-error-3);--ti-common-line-height-number:1.5;--ti-common-line-height-base:12px;--ti-common-line-height-1:14px;--ti-common-line-height-2:16px;--ti-common-line-height-3:18px;--ti-common-line-height-4:20px;--ti-common-line-height-5:24px;--ti-common-line-height-6:32px;--ti-common-line-height-7:36px;--ti-common-space-base:4px;--ti-common-space-2x:calc(var(--ti-common-space-base) * 2);--ti-common-space-3x:calc(var(--ti-common-space-base) * 3);--ti-common-space-4x:calc(var(--ti-common-space-base) * 4);--ti-common-space-5x:calc(var(--ti-common-space-base) * 5);--ti-common-space-6x:calc(var(--ti-common-space-base) * 6);--ti-common-space-8x:calc(var(--ti-common-space-base) * 8);--ti-common-space-10x:calc(var(--ti-common-space-base) * 10);--ti-common-space-0:0px;--ti-common-space-1:1px;--ti-common-space-6:6px;--ti-common-space-10:10px;--ti-common-dropdown-gap:2px;--ti-common-shadow-none:none;--ti-common-shadow-1-up:0 -1px 4px 0 rgba(0, 0, 0, .1);--ti-common-shadow-1-down:0 1px 4px 0 rgba(0, 0, 0, .1);--ti-common-shadow-1-left:-1px 0px 4px 0 rgba(0, 0, 0, .1);--ti-common-shadow-1-right:1px 0px 4px 0 rgba(0, 0, 0, .1);--ti-common-shadow-2-up:0 -2px 8px 0 rgba(0, 0, 0, .2);--ti-common-shadow-2-down:0 2px 8px 0 rgba(0, 0, 0, .2);--ti-common-shadow-2-left:-2px 0 8px 0 rgba(238, 10, 10, .2);--ti-common-shadow-2-right:2px 0 8px 0 rgba(252, 5, 5, .2);--ti-common-shadow-3-up:0 -4px 16px 0 rgba(0, 0, 0, .2);--ti-common-shadow-3-down:0 4px 16px 0 rgba(0, 0, 0, .2);--ti-common-shadow-3-left:-4px 0 16px 0 rgba(0, 0, 0, .2);--ti-common-shadow-3-right:4px 0 16px 0 rgba(0, 0, 0, .2);--ti-common-shadow-4-up:0 -8px 40px 0 rgba(0, 0, 0, .2);--ti-common-shadow-4-down:0 8px 40px 0 rgba(0, 0, 0, .2);--ti-common-shadow-4-left:-8px 0 40px 0 rgba(0, 0, 0, .2);--ti-common-shadow-4-right:8px 0 40px 0 rgba(0, 0, 0, .2);--ti-common-shadow-error:0 1px 3px 0 rgba(199, 54, 54, .25);--ti-common-shadow-warn:0 1px 3px 0 rgba(204, 100, 20, .25);--ti-common-shadow-prompt:0 1px 3px 0 rgba(70, 94, 184, .25);--ti-common-shadow-success:0 1px 3px 0 rgba(39, 176, 128, .25);--ti-common-font-family:"Helvetica","Arial","PingFangSC-Regular","Hiragino Sans GB","Microsoft YaHei","微软雅黑","Microsoft JhengHei";--ti-common-font-size-base:12px;--ti-common-font-size-1:14px;--ti-common-font-size-2:16px;--ti-common-font-size-3:18px;--ti-common-font-size-4:20px;--ti-common-font-size-5:24px;--ti-common-font-size-6:32px;--ti-common-font-size-7:36px;--ti-common-font-weight-1:100;--ti-common-font-weight-2:200;--ti-common-font-weight-3:300;--ti-common-font-weight-4:normal;--ti-common-font-weight-5:500;--ti-common-font-weight-6:600;--ti-common-font-weight-7:bold;--ti-common-font-weight-8:800;--ti-common-font-weight-9:900;--ti-common-font-weight-bold:700;--ti-common-color-line-normal:var(--ti-base-color-common-2);--ti-common-color-line-hover:var(--ti-base-color-common-5);--ti-common-color-line-active:var(--ti-base-color-brand-6);--ti-common-color-line-disabled:var(--ti-base-color-common-1);--ti-common-color-line-dividing:var(--ti-base-color-common-1);--ti-common-color-dash-line-normal:var(--ti-base-color-common-5);--ti-common-color-dash-line-hover:var(--ti-base-color-brand-7);--ti-common-color-border:var(--ti-base-color-common-2);--ti-common-color-border-hover:var(--ti-base-color-common-5);--ti-common-border-weight-normal:1px;--ti-common-border-weight-1:2px;--ti-common-border-weight-2:3px;--ti-common-border-style-dashed:dashed;--ti-common-border-style-dotted:dotted;--ti-common-border-style-solid:solid;--ti-common-border-radius-normal:2px;--ti-common-border-radius-0:0px;--ti-common-border-radius-1:4px;--ti-common-border-radius-2:8px;--ti-common-border-radius-3:50%;--ti-common-size-base:4px;--ti-common-size-2x:calc(var(--ti-common-size-base) * 2);--ti-common-size-3x:calc(var(--ti-common-size-base) * 3);--ti-common-size-4x:calc(var(--ti-common-size-base) * 4);--ti-common-size-5x:calc(var(--ti-common-size-base) * 5);--ti-common-size-6x:calc(var(--ti-common-size-base) * 6);--ti-common-size-7x:calc(var(--ti-common-size-base) * 7);--ti-common-size-8x:calc(var(--ti-common-size-base) * 8);--ti-common-size-9x:calc(var(--ti-common-size-base) * 9);--ti-common-size-10x:calc(var(--ti-common-size-base) * 10);--ti-common-size-11x:calc(var(--ti-common-size-base) * 11);--ti-common-size-12x:calc(var(--ti-common-size-base) * 12);--ti-common-size-13x:calc(var(--ti-common-size-base) * 13);--ti-common-size-14x:calc(var(--ti-common-size-base) * 14);--ti-common-size-15x:calc(var(--ti-common-size-base) * 15);--ti-common-size-16x:calc(var(--ti-common-size-base) * 16);--ti-common-size-17x:calc(var(--ti-common-size-base) * 17);--ti-common-size-18x:calc(var(--ti-common-size-base) * 18);--ti-common-size-19x:calc(var(--ti-common-size-base) * 19);--ti-common-size-20x:calc(var(--ti-common-size-base) * 20);--ti-common-size-21x:calc(var(--ti-common-size-base) * 21);--ti-common-size-22x:calc(var(--ti-common-size-base) * 22);--ti-common-size-23x:calc(var(--ti-common-size-base) * 23);--ti-common-size-24x:calc(var(--ti-common-size-base) * 24);--ti-common-size-25x:calc(var(--ti-common-size-base) * 25);--ti-common-size-26x:calc(var(--ti-common-size-base) * 26);--ti-common-size-27x:calc(var(--ti-common-size-base) * 27);--ti-common-size-28x:calc(var(--ti-common-size-base) * 28);--ti-common-size-29x:calc(var(--ti-common-size-base) * 29);--ti-common-size-30x:calc(var(--ti-common-size-base) * 30);--ti-common-size-31x:calc(var(--ti-common-size-base) * 31);--ti-common-size-32x:calc(var(--ti-common-size-base) * 32);--ti-common-size-33x:calc(var(--ti-common-size-base) * 33);--ti-common-size-34x:calc(var(--ti-common-size-base) * 34);--ti-common-size-35x:calc(var(--ti-common-size-base) * 35);--ti-common-size-36x:calc(var(--ti-common-size-base) * 36);--ti-common-size-37x:calc(var(--ti-common-size-base) * 37);--ti-common-size-38x:calc(var(--ti-common-size-base) * 38);--ti-common-size-39x:calc(var(--ti-common-size-base) * 39);--ti-common-size-40x:calc(var(--ti-common-size-base) * 40);--ti-common-size-41x:calc(var(--ti-common-size-base) * 41);--ti-common-size-42x:calc(var(--ti-common-size-base) * 42);--ti-common-size-43x:calc(var(--ti-common-size-base) * 43);--ti-common-size-44x:calc(var(--ti-common-size-base) * 44);--ti-common-size-45x:calc(var(--ti-common-size-base) * 45);--ti-common-size-46x:calc(var(--ti-common-size-base) * 46);--ti-common-size-47x:calc(var(--ti-common-size-base) * 47);--ti-common-size-48x:calc(var(--ti-common-size-base) * 48);--ti-common-size-49x:calc(var(--ti-common-size-base) * 49);--ti-common-size-50x:calc(var(--ti-common-size-base) * 50);--ti-common-size-0:0px;--ti-common-size-auto:auto;--ti-common-size-width-large:var(--ti-common-size-33x);--ti-common-size-width-medium:var(--ti-common-size-30x);--ti-common-size-width-normal:var(--ti-common-size-20x);--ti-common-size-height-large:var(--ti-common-size-12x);--ti-common-size-height-medium:var(--ti-common-size-10x);--ti-common-size-height-small:var(--ti-common-size-8x);--ti-common-size-height-normal:var(--ti-common-size-7x);--ti-common-size-height-mini:var(--ti-common-size-6x);--ti-common-scrollbar-width:4px;--ti-common-scrollbar-height:4px;--ti-common-scrollbar-track-piece-bg-color:var(--ti-base-color-bg-4);--ti-common-scrollbar-thumb-bg-color:#bfbfbf;--ti-common-scrollbar-thumb-border-radius:6px;--ti-common-scrollbar-thumb-hover-bg-color:#999999;--ti-common-scrollbar-thumb-active-bg-color:#999999}:root{--ti-errortips-box-bg-color:var(--ti-common-color-light);--ti-errortips-body-text-color:#5a5e66;--ti-errortips-body-font-size:var(--ti-common-font-size-1);--ti-errortips-body-code-font-size:100px;--ti-errortips-body-code-text-color:#9ac7ef;--ti-errortips-body-content-font-size:var(--ti-common-font-size-2);--ti-errortips-body-bottom-font-weight:var(--ti-common-font-weight-8);--ti-errortips-sso-box-bg-color:var(--ti-common-color-light);--ti-errortips-sso-body-text-color:#5a5e66;--ti-errortips-sso-body-font-size:var(--ti-common-font-size-1);--ti-errortips-not-sso-bg-color:#dcdfe4;--ti-errortips-not-sso-body-bg-color:#f4f5f9;--ti-errortips-not-sso-body-border-color:#d4d5d7;--ti-errortips-not-sso-body-title-border-color:#b6babf;--ti-errortips-not-sso-body-title-font-size:var(--ti-common-font-size-4);--ti-errortips-not-sso-body-login-font-size:var(--ti-common-font-size-2);--ti-errortips-not-sso-body-text-color:#5a5e66;--ti-errortips-not-sso-body-input-border-color:var(--ti-base-color-bg-5);--ti-errortips-not-sso-body-input-border-radius:var(--ti-common-border-radius-normal);--ti-errortips-not-sso-body-placeholder-text-color:var(--ti-common-color-placeholder);--ti-errortips-not-sso-body-input-hover-text-color:var(--ti-common-color-placeholder);--ti-errortips-not-sso-body-input-focus-text-color:var(--ti-common-color-border);--ti-errortips-not-sso-body-input-danger-border-color:var(--ti-base-color-bg-8);--ti-errortips-not-sso-body-button-text-color:var(--ti-common-color-light);--ti-errortips-not-sso-body-button-bg-color:var(--ti-base-color-brand-6);--ti-errortips-not-sso-body-button-border-radius:var(--ti-common-border-radius-normal);--ti-errortips-not-sso-body-button-hover-bg-color:var(--ti-base-color-brand-5);--ti-errortips-not-sso-body-errmessage-text-color:#f00}.tiny-popup__wrapper{z-index:2147483647!important;background:rgba(0,0,0,.5);position:fixed;top:0;right:0;bottom:0;left:0;overflow:auto;margin:0}.tiny-popup__wrapper .tiny-errortips__box{position:absolute;width:var(--ti-errortips-width);min-height:var(--ti-errortips-min-height);max-height:var(--ti-errortips-max-height);top:0;left:0;right:0;bottom:0;margin:auto;overflow:hidden;background:var(--ti-errortips-box-bg-color);border:1px solid transparent;-webkit-box-shadow:2px 2px 2px 0 rgba(0,0,0,.2);box-shadow:2px 2px 2px #0003;text-align:center;overflow-y:auto}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body{height:100%;text-align:initial;padding:20px;color:var(--ti-errortips-body-text-color);font-size:var(--ti-errortips-body-font-size);display:table;margin:auto}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips{text-align:center;display:table-cell;vertical-align:middle}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips .error-code{font-size:var(--ti-errortips-body-code-font-size);color:var(--ti-errortips-body-code-text-color);margin:0 auto -45px;text-shadow:0 2px 0 #fff,-2px 0 0 #fff,2px 0 0 #fff}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips .error-img{width:260px;height:180px;margin:0 auto;background:url(/assets/errortips-bg-e8a5d5c7.png) no-repeat}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips .error-content{font-size:var(--ti-errortips-body-content-font-size);margin:24px 0;font-weight:700}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips .error-bottom a{font-weight:var(--ti-errortips-body-bottom-font-weight);cursor:pointer}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips .error-bottom span{padding-right:15px}.tiny-popup__wrapper .tiny-sso__box{position:absolute;background:var(--ti-errortips-sso-box-bg-color);border:1px solid transparent;-webkit-box-shadow:2px 2px 2px 0 rgba(0,0,0,.2);box-shadow:2px 2px 2px #0003;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.tiny-popup__wrapper .tiny-sso__box .tiny-sso__body{text-align:initial;padding:20px;color:var(--ti-errortips-sso-body-text-color);line-height:32px;font-size:var(--ti-errortips-sso-body-font-size)}.tiny-popup__wrapper .tiny-sso__box .tiny-sso__body .tiny-sso__body-iframe{width:350px;height:350px;overflow:hidden}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.tiny-popup__wrapper .tiny-sso__box .tiny-sso__body .tiny-sso__body-iframe{height:460px}}@supports (-ms-ime-align:auto){.tiny-popup__wrapper .tiny-sso__box .tiny-sso__body .tiny-sso__body-iframe{height:460px}}.tiny-popup__wrapper.login-not-sso{background:var(--ti-errortips-not-sso-bg-color);background-size:cover}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box{width:100%;height:100%;overflow:hidden}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body{width:650px;height:400px;background:var(--ti-errortips-not-sso-body-bg-color);position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center;border:1px solid var(--ti-errortips-not-sso-body-border-color);-webkit-box-shadow:0 2px 4px #989a9e;box-shadow:0 2px 4px #989a9e}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .title{background:-webkit-gradient(linear,left top,left bottom,from(#ecedf1),to(#dadde2));background:linear-gradient(to bottom,#ecedf1,#dadde2);border-bottom:1px solid var(--ti-errortips-not-sso-body-title-border-color);padding:16px 20px;font-size:var(--ti-errortips-not-sso-body-title-font-size)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login{width:100%;border-collapse:collapse;border-spacing:0;font-size:var(--ti-errortips-not-sso-body-login-font-size);margin-top:28px}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item{height:60px;line-height:60px}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.label{width:30%;text-align:right;color:var(--ti-errortips-not-sso-body-text-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell{width:70%;text-align:left;padding-left:12px}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell input{border:1px solid var(--ti-errortips-not-sso-body-input-border-color);border-radius:var(--ti-errortips-not-sso-body-input-border-radius);outline:0;width:75%;height:40px;line-height:40px;padding:0 8px;background:0 0;color:var(--ti-errortips-not-sso-body-text-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell input::-webkit-input-placeholder{color:var(--ti-errortips-not-sso-body-placeholder-text-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell input:hover{border-color:var(--ti-errortips-not-sso-body-placeholder-text-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell input:focus::-webkit-input-placeholder{color:var(--ti-errortips-not-sso-body-input-focus-text-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell input.text-danger{border-color:var(--ti-errortips-not-sso-body-input-danger-border-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell button{width:75%;height:40px;line-height:40px;padding:0 24px;text-align:center;color:var(--ti-errortips-not-sso-body-button-text-color);background-color:var(--ti-errortips-not-sso-body-button-bg-color);border:none;border-radius:var(--ti-errortips-not-sso-body-button-border-radius);-webkit-transition:.3s;transition:.3s;outline:0}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell button:hover{background-color:var(--ti-errortips-not-sso-body-button-hover-bg-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell .errmessage{color:var(--ti-errortips-not-sso-body-errmessage-text-color);line-height:20px}.tiny-svg{width:1em;height:1em;vertical-align:middle;overflow:hidden;display:inline-block}.tiny-slide-bar{--ti-slider-progress-box-border-color:var(--ti-common-color-light);--ti-slider-progress-box-hover-border-color:rgba(153, 153, 153, .7);--ti-slider-progress-box-arrow-normal-text-color:#f2f2f2;--ti-slider-progress-box-arrow-hover-text-color:#808080;--ti-slider-progress-box-middleline-border-color:#ebebeb;--ti-slider-progress-box-middleline-icon-color:#ebebeb;padding:0 32px;position:relative}.tiny-slide-bar>.tiny-svg{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:2em;cursor:pointer;fill:var(--ti-slider-progress-box-arrow-normal-text-color)}.tiny-slide-bar>.tiny-svg:hover{fill:var(--ti-slider-progress-box-arrow-hover-text-color)}.tiny-slide-bar>.tiny-svg.tiny-disabled,.tiny-slide-bar>.tiny-svg.tiny-disabled:hover{background:0 0;fill:#fff;cursor:default}.tiny-slide-bar>.icon-chevron-left{left:0}.tiny-slide-bar>.icon-chevron-right{right:0}.tiny-slide-bar li li div{margin:15px 0;font-size:var(--ti-common-font-size-base);color:#4e5e67}.tiny-slide-bar li li div:nth-child(2){border-bottom:1px solid var(--ti-slider-progress-box-middleline-border-color)}.tiny-slide-bar li li div svg{float:right;margin:-6px 0 0;background:#fff;fill:var(--ti-slider-progress-box-middleline-icon-color)}.tiny-slide-bar .tiny-slide-bar__content{width:100%;min-height:170px;position:relative;overflow:hidden}.tiny-slide-bar .tiny-slide-bar__list{position:absolute;min-height:170px;display:-webkit-box;display:-ms-flexbox;display:flex}.tiny-slide-bar .tiny-slide-bar__list>li{width:23%;padding:20px;float:left;margin-left:2%;position:relative;border:5px solid var(--ti-slider-progress-box-border-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tiny-slide-bar .tiny-slide-bar__list>li:first-child{margin-left:0}.tiny-slide-bar .tiny-slide-bar__list>li:hover{border-color:var(--ti-slider-progress-box-hover-border-color)}.tiny-slide-bar .tiny-slide-bar__list>li>.icon-chevron-down{position:absolute;top:98.8%;left:50%;margin-left:-10px;font-size:2em;width:22px;display:none!important}.tiny-slide-bar .tiny-slide-bar__list>li>.icon-chevron-down:before{content:"";position:absolute;width:20px;height:20px;border-right:5px solid var(--ti-slider-progress-box-hover-border-color);border-bottom:5px solid var(--ti-slider-progress-box-hover-border-color);-webkit-transform:rotate(45deg);transform:rotate(45deg);background:#fff;top:-5px}.tiny-slide-bar .tiny-slide-bar__list>li>ul{width:100%;list-style:none}.tiny-slide-bar .tiny-slide-bar__list>li.tiny-slide-bar__select{border-color:var(--ti-slider-progress-box-hover-border-color)}.tiny-slide-bar .tiny-slide-bar__list>li.tiny-slide-bar__select>.icon-chevron-down{display:block!important}.tiny-slide-bar .tiny-slide-bar__list>li.tiny-slide-bar__select li .tiny-icon{color:var(--ti-slider-progress-box-hover-border-color)}.tiny-slide-bar .tiny-slide-bar__list>li.tiny-slide-bar__select li:nth-child(2){border-bottom:1px solid var(--ti-slider-progress-box-hover-border-color)} +.tiny-icon-success{fill:#5cb300}.tiny-icon-error{fill:#f23030}.tiny-icon-warning-triangle{fill:#f80}.tiny-icon-prompt{fill:#1476ff}.tiny-icon-text-type{fill:#9185f0}[class*=tiny-]{-webkit-box-sizing:border-box;box-sizing:border-box}[class*=tiny-] :after,[class*=tiny-] :before{-webkit-box-sizing:border-box;box-sizing:border-box}[class*=tiny-] a{cursor:pointer;background-image:none;text-decoration:none;outline:0}[class*=tiny-] a:active,[class*=tiny-] a:focus,[class*=tiny-] a:hover{outline:0;text-decoration:none}[class*=tiny-] dd,[class*=tiny-] dl,[class*=tiny-] dt,[class*=tiny-] li,[class*=tiny-] ol,[class*=tiny-] td,[class*=tiny-] th,[class*=tiny-] ul{margin:0;padding:0}[class*=tiny-] ol,[class*=tiny-] ul{list-style:none}[class*=tiny-] audio,[class*=tiny-] canvas,[class*=tiny-] video{display:inline-block}[class*=tiny-] audio:not([controls]){display:none;height:0}[class*=tiny-] mark{background:#ff0;color:#000}[class*=tiny-] pre{white-space:pre-wrap}[class*=tiny-] sub,[class*=tiny-] sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}[class*=tiny-] sup{top:-.5em}[class*=tiny-] sub{bottom:-.25em}[class*=tiny-] fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}[class*=tiny-] legend{border:0;padding:0}[class*=tiny-] input::-ms-clear,[class*=tiny-] input::-ms-reveal{display:none}[class*=tiny-] button::-moz-focus-inner,[class*=tiny-] input::-moz-focus-inner{border:0;padding:0}[class*=tiny-] textarea{overflow:auto;vertical-align:top}[class*=tiny-] table{border-collapse:collapse;border-spacing:0}[class*=tiny-] .tiny-hide{display:none}[class*=tiny-] .popper__arrow,[class*=tiny-] .popper__arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}@media (min-width:768px){[class*=tiny-] ::-webkit-scrollbar{width:var(--ti-common-scrollbar-width);height:var(--ti-common-scrollbar-height)}[class*=tiny-] ::-webkit-scrollbar-track-piece{background:var(--ti-common-scrollbar-track-piece-bg-color)}[class*=tiny-] ::-webkit-scrollbar-thumb{background:var(--ti-common-scrollbar-thumb-bg-color);border-radius:var(--ti-common-scrollbar-thumb-border-radius)}[class*=tiny-] ::-webkit-scrollbar-thumb:hover{background:var(--ti-common-scrollbar-thumb-hover-bg-color)}[class*=tiny-] ::-webkit-scrollbar-thumb:active{background:var(--ti-common-scrollbar-thumb-active-bg-color)}[class*=tiny-] .tiny-scrollbar::-webkit-scrollbar{width:8px;height:8px}[class*=tiny-] .tiny-scrollbar::-webkit-scrollbar-track-piece{background:0 0;border:0}[class*=tiny-] .tiny-scrollbar::-webkit-scrollbar-thumb{background:#bfbfbf;border-radius:4px}[class*=tiny-] .tiny-scrollbar::-webkit-scrollbar-thumb:hover{background:#999}[class*=tiny-] .tiny-scrollbar::-webkit-scrollbar-thumb:active{background:#999}[class*=tiny-] .tiny-min-scrollbar::-webkit-scrollbar{width:4px;height:4px}[class*=tiny-] .tiny-min-scrollbar::-webkit-scrollbar-track-piece{background:0 0;border:0}[class*=tiny-] .tiny-min-scrollbar::-webkit-scrollbar-thumb{background:#bfbfbf;border-radius:2px}[class*=tiny-] .tiny-min-scrollbar::-webkit-scrollbar-thumb:hover{background:#999}[class*=tiny-] .tiny-min-scrollbar::-webkit-scrollbar-thumb:active{background:#999}}:root{--ti-base-color-white:#fff;--ti-base-color-transparent:transparent;--ti-base-color-brand-6:#5e7ce0;--ti-base-color-brand-8:#344899;--ti-base-color-brand-7:#526ecc;--ti-base-color-brand-5:#7693f5;--ti-base-color-brand-4:#96adfa;--ti-base-color-brand-3:#beccfa;--ti-base-color-brand-2:#e9edfa;--ti-base-color-brand-1:#f2f5fc;--ti-base-color-common-9:#181818;--ti-base-color-common-8:#282b33;--ti-base-color-common-7:#252b3a;--ti-base-color-common-6:#464c59;--ti-base-color-common-5:#575d6c;--ti-base-color-common-4:#5c6173;--ti-base-color-common-3:#8a8e99;--ti-base-color-common-2:#adb0b8;--ti-base-color-common-1:#dfe1e6;--ti-base-color-bg-9:#b12220;--ti-base-color-bg-8:#c7000b;--ti-base-color-bg-7:#d64a52;--ti-base-color-bg-6:#eef0f5;--ti-base-color-bg-5:#f5f5f6;--ti-base-color-bg-4:#fafafa;--ti-base-color-bg-3:#ffffff;--ti-base-color-bg-2:#ffffff;--ti-base-color-bg-1:#ffffff;--ti-base-color-error-4:#de504e;--ti-base-color-error-3:#f66f6a;--ti-base-color-error-2:#ffbcba;--ti-base-color-error-1:#ffeeed;--ti-base-color-success-4:#3ac295;--ti-base-color-success-3:#50d4ab;--ti-base-color-success-2:#acf2dc;--ti-base-color-success-1:#edfff9;--ti-base-color-warn-5:#e37d29;--ti-base-color-warn-4:#fa9841;--ti-base-color-warn-3:#fac20a;--ti-base-color-warn-2:#ffd0a6;--ti-base-color-warn-1:#fff3e8;--ti-base-color-prompt-4:var(--ti-base-color-brand-7);--ti-base-color-prompt-3:var(--ti-base-color-brand-6);--ti-base-color-prompt-2:var(--ti-base-color-brand-3);--ti-base-color-prompt-1:#ebf6ff;--ti-base-color-prompt-icon-from:#7769e8;--ti-base-color-prompt-icon-to:#58bbff;--ti-base-color-icon-info:#6cbfff;--ti-base-color-data-3:#a6dd82;--ti-base-color-data-4:#f3689a;--ti-base-color-data-5:#a97af8;--ti-common-color-transparent:var(--ti-base-color-transparent);--ti-common-color-light:#fff;--ti-common-color-dark:#000;--ti-common-color-success:var(--ti-base-color-success-3);--ti-common-color-text-success:var(--ti-base-color-success-4);--ti-common-color-success-bg:var(--ti-base-color-success-1);--ti-common-color-success-border:var(--ti-base-color-success-2);--ti-common-color-error:var(--ti-base-color-error-3);--ti-common-color-error-text:var(--ti-base-color-error-4);--ti-common-color-error-bg:var(--ti-base-color-error-1);--ti-common-color-error-border:var(--ti-base-color-error-3);--ti-common-color-error-border-secondary:var(--ti-base-color-error-2);--ti-common-color-info:var(--ti-base-color-common-7);--ti-common-color-info-text:var(--ti-base-color-common-7);--ti-common-color-info-bg:rgba(51, 51, 51, .06);--ti-common-color-info-border:#d3d4d6;--ti-common-color-warn:var(--ti-base-color-warn-4);--ti-common-color-warn-text:var(--ti-base-color-warn-5);--ti-common-color-warn-bg:var(--ti-base-color-warn-1);--ti-common-color-warn-border:var(--ti-base-color-warn-2);--ti-common-color-warn-secondary:var(--ti-base-color-warn-3);--ti-common-color-prompt:var(--ti-base-color-prompt-3);--ti-common-color-prompt-text:var(--ti-base-color-prompt-4);--ti-common-color-prompt-bg:var(--ti-base-color-prompt-1);--ti-common-color-prompt-border:var(--ti-base-color-prompt-2);--ti-common-color-prompt-icon-from:var(--ti-base-color-prompt-icon-from);--ti-common-color-prompt-icon-to:var(--ti-base-color-prompt-icon-to);--ti-common-color-primary-normal:var(--ti-base-color-brand-6);--ti-common-color-primary-hover:var(--ti-base-color-brand-5);--ti-common-color-primary-active:var(--ti-base-color-brand-5);--ti-common-color-primary-disabled:#a0cfff;--ti-common-color-primary-disabled-bgcolor:var(--ti-common-color-bg-disabled);--ti-common-color-primary-disabled-border:var(--ti-common-color-line-disabled);--ti-common-color-primary-disabled-text:var(--ti-common-color-text-disabled);--ti-common-color-primary-plain-disabled-bg-color:rgba(191, 191, 191, .1);--ti-common-color-success-normal:var(--ti-common-color-success);--ti-common-color-success-hover:var(--ti-common-color-success-border);--ti-common-color-success-active:var(--ti-common-color-success-border);--ti-common-color-success-disabled:#a6c3b9;--ti-common-color-success-disabled-bgcolor:var(--ti-common-color-bg-disabled);--ti-common-color-success-disabled-border:var(--ti-common-color-line-disabled);--ti-common-color-success-disabled-text:var(--ti-common-color-text-disabled);--ti-common-color-success-plain-disabled-bg-color:rgba(166, 195, 185, .1);--ti-common-color-warning-normal:var(--ti-common-color-warn);--ti-common-color-warning-hover:var(--ti-common-color-warn-secondary);--ti-common-color-warning-active:var(--ti-common-color-warn-secondary);--ti-common-color-warning-disabled:#d3c6a2;--ti-common-color-warning-disabled-bgcolor:var(--ti-common-color-bg-disabled);--ti-common-color-warning-disabled-border:var(--ti-common-color-line-disabled);--ti-common-color-warning-disabled-text:var(--ti-common-color-text-disabled);--ti-common-color-warning-plain-disabled-bg-color:rgba(211, 198, 162, .1);--ti-common-color-danger-normal:var(--ti-common-bg-primary);--ti-common-color-danger-hover:var(--ti-common-bg-primary-hover);--ti-common-color-danger-active:var(--ti-common-bg-primary-active);--ti-common-color-danger-disabled:#d8bab5;--ti-common-color-danger-disabled-bgcolor:var(--ti-common-color-bg-disabled);--ti-common-color-danger-disabled-border:var(--ti-common-color-line-disabled);--ti-common-color-danger-disabled-text:var(--ti-common-color-text-disabled);--ti-common-color-danger-plain-disabled-bg-color:rgba(216, 186, 181, .1);--ti-common-color-info-normal:var(--ti-base-color-common-7);--ti-common-color-info-hover:var(--ti-base-color-common-4);--ti-common-color-info-active:var(--ti-base-color-common-4);--ti-common-color-info-disabled:#bfbfbf;--ti-common-color-info-disabled-bgcolor:var(--ti-common-color-bg-disabled);--ti-common-color-info-disabled-border:var(--ti-common-color-line-disabled);--ti-common-color-info-disabled-text:var(--ti-common-color-text-disabled);--ti-common-color-info-plain-disabled-bg-color:rgba(191, 191, 191, .1);--ti-common-color-text-primary:var(--ti-base-color-common-7);--ti-common-color-text-secondary:var(--ti-base-color-common-5);--ti-common-color-text-weaken:var(--ti-base-color-common-3);--ti-common-color-text-disabled:var(--ti-base-color-common-2);--ti-common-color-text-darkbg:var(--ti-base-color-common-2);--ti-common-color-text-darkbg-disabled:var(--ti-base-color-common-5);--ti-common-color-text-link:var(--ti-base-color-brand-7);--ti-common-color-text-link-hover:var(--ti-base-color-brand-8);--ti-common-color-text-link-darkbg:var(--ti-base-color-brand-4);--ti-common-color-text-link-darkbg-hover:var(--ti-base-color-brand-3);--ti-common-color-text-highlight:var(--ti-base-color-brand-7);--ti-common-color-text-white:var(--ti-base-color-white);--ti-common-color-text-gray:var(--ti-base-color-white);--ti-common-color-text-gray-disabled:var(--ti-base-color-common-4);--ti-common-color-text-important:var(--ti-base-color-error-4);--ti-common-color-placeholder:var(--ti-base-color-common-2);--ti-common-color-selected-text-color:var(--ti-common-color-light);--ti-common-color-icon-normal:var(--ti-base-color-common-5);--ti-common-color-icon-hover:var(--ti-base-color-brand-6);--ti-common-color-icon-active:var(--ti-base-color-brand-6);--ti-common-color-icon-disabled:var(--ti-base-color-common-2);--ti-common-color-icon-white:var(--ti-base-color-white);--ti-common-color-icon-graybg-normal:var(--ti-base-color-common-2);--ti-common-color-icon-graybg-hover:var(--ti-base-color-brand-6);--ti-common-color-icon-graybg-active:var(--ti-base-color-brand-6);--ti-common-color-icon-graybg-disabled:var(--ti-base-color-common-1);--ti-common-color-icon-darkbg-normal:var(--ti-base-color-common-2);--ti-common-color-icon-darkbg-hover:var(--ti-base-color-brand-5);--ti-common-color-icon-darkbg-active:var(--ti-base-color-brand-5);--ti-common-color-icon-darkbg-disabled:var(--ti-base-color-common-5);--ti-common-color-icon-info:var(--ti-base-color-icon-info);--ti-common-color-bg-normal:var(--ti-base-color-bg-6);--ti-common-color-bg-emphasize:var(--ti-base-color-brand-6);--ti-common-color-bg-disabled:var(--ti-base-color-bg-5);--ti-common-color-bg-hover:var(--ti-base-color-brand-8);--ti-common-color-bg-gray:var(--ti-base-color-bg-4);--ti-common-color-bg-secondary:var(--ti-base-color-common-2);--ti-common-bg-primary:var(--ti-base-color-bg-8);--ti-common-bg-primary-hover:var(--ti-base-color-bg-7);--ti-common-bg-primary-active:var(--ti-base-color-bg-9);--ti-common-bg-minor:var(--ti-base-color-bg-2);--ti-common-bg-minor-hover:var(--ti-base-color-bg-1);--ti-common-bg-minor-active:var(--ti-base-color-bg-3);--ti-common-color-bg-white-normal:var(--ti-base-color-white);--ti-common-color-bg-white-emphasize:var(--ti-base-color-brand-1);--ti-common-color-bg-light-normal:var(--ti-base-color-brand-2);--ti-common-color-bg-light-emphasize:var(--ti-base-color-brand-3);--ti-common-color-bg-dark-normal:var(--ti-base-color-common-6);--ti-common-color-bg-dark-emphasize:var(--ti-base-color-common-4);--ti-common-color-bg-dark-active:var(--ti-common-color-bg-normal);--ti-common-color-bg-dark-deep:var(--ti-base-color-common-6);--ti-common-color-bg-dark-disabled:var(--ti-base-color-common-1);--ti-common-color-bg-navigation:var(--ti-base-color-common-8);--ti-common-color-bg-dark-select:var(--ti-base-color-common-9);--ti-common-color-selected-background:var(--ti-base-color-brand-6);--ti-common-color-hover-background:var(--ti-base-color-brand-1);--ti-common-color-data-1:var(--ti-base-color-success-3);--ti-common-color-data-2:var(--ti-base-color-icon-info);--ti-common-color-data-3:var(--ti-base-color-data-3);--ti-common-color-data-4:var(--ti-base-color-data-4);--ti-common-color-data-5:var(--ti-base-color-data-5);--ti-common-color-data-6:var(--ti-base-color-warn-3);--ti-common-color-data-7:var(--ti-base-color-warn-4);--ti-common-color-data-8:var(--ti-base-color-error-3);--ti-common-line-height-number:1.5;--ti-common-line-height-base:12px;--ti-common-line-height-1:14px;--ti-common-line-height-2:16px;--ti-common-line-height-3:18px;--ti-common-line-height-4:20px;--ti-common-line-height-5:24px;--ti-common-line-height-6:32px;--ti-common-line-height-7:36px;--ti-common-space-base:4px;--ti-common-space-2x:calc(var(--ti-common-space-base) * 2);--ti-common-space-3x:calc(var(--ti-common-space-base) * 3);--ti-common-space-4x:calc(var(--ti-common-space-base) * 4);--ti-common-space-5x:calc(var(--ti-common-space-base) * 5);--ti-common-space-6x:calc(var(--ti-common-space-base) * 6);--ti-common-space-8x:calc(var(--ti-common-space-base) * 8);--ti-common-space-10x:calc(var(--ti-common-space-base) * 10);--ti-common-space-0:0px;--ti-common-space-1:1px;--ti-common-space-6:6px;--ti-common-space-10:10px;--ti-common-dropdown-gap:2px;--ti-common-shadow-none:none;--ti-common-shadow-1-up:0 -1px 4px 0 rgba(0, 0, 0, .1);--ti-common-shadow-1-down:0 1px 4px 0 rgba(0, 0, 0, .1);--ti-common-shadow-1-left:-1px 0px 4px 0 rgba(0, 0, 0, .1);--ti-common-shadow-1-right:1px 0px 4px 0 rgba(0, 0, 0, .1);--ti-common-shadow-2-up:0 -2px 8px 0 rgba(0, 0, 0, .2);--ti-common-shadow-2-down:0 2px 8px 0 rgba(0, 0, 0, .2);--ti-common-shadow-2-left:-2px 0 8px 0 rgba(238, 10, 10, .2);--ti-common-shadow-2-right:2px 0 8px 0 rgba(252, 5, 5, .2);--ti-common-shadow-3-up:0 -4px 16px 0 rgba(0, 0, 0, .2);--ti-common-shadow-3-down:0 4px 16px 0 rgba(0, 0, 0, .2);--ti-common-shadow-3-left:-4px 0 16px 0 rgba(0, 0, 0, .2);--ti-common-shadow-3-right:4px 0 16px 0 rgba(0, 0, 0, .2);--ti-common-shadow-4-up:0 -8px 40px 0 rgba(0, 0, 0, .2);--ti-common-shadow-4-down:0 8px 40px 0 rgba(0, 0, 0, .2);--ti-common-shadow-4-left:-8px 0 40px 0 rgba(0, 0, 0, .2);--ti-common-shadow-4-right:8px 0 40px 0 rgba(0, 0, 0, .2);--ti-common-shadow-error:0 1px 3px 0 rgba(199, 54, 54, .25);--ti-common-shadow-warn:0 1px 3px 0 rgba(204, 100, 20, .25);--ti-common-shadow-prompt:0 1px 3px 0 rgba(70, 94, 184, .25);--ti-common-shadow-success:0 1px 3px 0 rgba(39, 176, 128, .25);--ti-common-font-family:"Helvetica","Arial","PingFangSC-Regular","Hiragino Sans GB","Microsoft YaHei","微软雅黑","Microsoft JhengHei";--ti-common-font-size-base:12px;--ti-common-font-size-1:14px;--ti-common-font-size-2:16px;--ti-common-font-size-3:18px;--ti-common-font-size-4:20px;--ti-common-font-size-5:24px;--ti-common-font-size-6:32px;--ti-common-font-size-7:36px;--ti-common-font-weight-1:100;--ti-common-font-weight-2:200;--ti-common-font-weight-3:300;--ti-common-font-weight-4:normal;--ti-common-font-weight-5:500;--ti-common-font-weight-6:600;--ti-common-font-weight-7:bold;--ti-common-font-weight-8:800;--ti-common-font-weight-9:900;--ti-common-font-weight-bold:700;--ti-common-color-line-normal:var(--ti-base-color-common-2);--ti-common-color-line-hover:var(--ti-base-color-common-5);--ti-common-color-line-active:var(--ti-base-color-brand-6);--ti-common-color-line-disabled:var(--ti-base-color-common-1);--ti-common-color-line-dividing:var(--ti-base-color-common-1);--ti-common-color-dash-line-normal:var(--ti-base-color-common-5);--ti-common-color-dash-line-hover:var(--ti-base-color-brand-7);--ti-common-color-border:var(--ti-base-color-common-2);--ti-common-color-border-hover:var(--ti-base-color-common-5);--ti-common-border-weight-normal:1px;--ti-common-border-weight-1:2px;--ti-common-border-weight-2:3px;--ti-common-border-style-dashed:dashed;--ti-common-border-style-dotted:dotted;--ti-common-border-style-solid:solid;--ti-common-border-radius-normal:2px;--ti-common-border-radius-0:0px;--ti-common-border-radius-1:4px;--ti-common-border-radius-2:8px;--ti-common-border-radius-3:50%;--ti-common-size-base:4px;--ti-common-size-2x:calc(var(--ti-common-size-base) * 2);--ti-common-size-3x:calc(var(--ti-common-size-base) * 3);--ti-common-size-4x:calc(var(--ti-common-size-base) * 4);--ti-common-size-5x:calc(var(--ti-common-size-base) * 5);--ti-common-size-6x:calc(var(--ti-common-size-base) * 6);--ti-common-size-7x:calc(var(--ti-common-size-base) * 7);--ti-common-size-8x:calc(var(--ti-common-size-base) * 8);--ti-common-size-9x:calc(var(--ti-common-size-base) * 9);--ti-common-size-10x:calc(var(--ti-common-size-base) * 10);--ti-common-size-11x:calc(var(--ti-common-size-base) * 11);--ti-common-size-12x:calc(var(--ti-common-size-base) * 12);--ti-common-size-13x:calc(var(--ti-common-size-base) * 13);--ti-common-size-14x:calc(var(--ti-common-size-base) * 14);--ti-common-size-15x:calc(var(--ti-common-size-base) * 15);--ti-common-size-16x:calc(var(--ti-common-size-base) * 16);--ti-common-size-17x:calc(var(--ti-common-size-base) * 17);--ti-common-size-18x:calc(var(--ti-common-size-base) * 18);--ti-common-size-19x:calc(var(--ti-common-size-base) * 19);--ti-common-size-20x:calc(var(--ti-common-size-base) * 20);--ti-common-size-21x:calc(var(--ti-common-size-base) * 21);--ti-common-size-22x:calc(var(--ti-common-size-base) * 22);--ti-common-size-23x:calc(var(--ti-common-size-base) * 23);--ti-common-size-24x:calc(var(--ti-common-size-base) * 24);--ti-common-size-25x:calc(var(--ti-common-size-base) * 25);--ti-common-size-26x:calc(var(--ti-common-size-base) * 26);--ti-common-size-27x:calc(var(--ti-common-size-base) * 27);--ti-common-size-28x:calc(var(--ti-common-size-base) * 28);--ti-common-size-29x:calc(var(--ti-common-size-base) * 29);--ti-common-size-30x:calc(var(--ti-common-size-base) * 30);--ti-common-size-31x:calc(var(--ti-common-size-base) * 31);--ti-common-size-32x:calc(var(--ti-common-size-base) * 32);--ti-common-size-33x:calc(var(--ti-common-size-base) * 33);--ti-common-size-34x:calc(var(--ti-common-size-base) * 34);--ti-common-size-35x:calc(var(--ti-common-size-base) * 35);--ti-common-size-36x:calc(var(--ti-common-size-base) * 36);--ti-common-size-37x:calc(var(--ti-common-size-base) * 37);--ti-common-size-38x:calc(var(--ti-common-size-base) * 38);--ti-common-size-39x:calc(var(--ti-common-size-base) * 39);--ti-common-size-40x:calc(var(--ti-common-size-base) * 40);--ti-common-size-41x:calc(var(--ti-common-size-base) * 41);--ti-common-size-42x:calc(var(--ti-common-size-base) * 42);--ti-common-size-43x:calc(var(--ti-common-size-base) * 43);--ti-common-size-44x:calc(var(--ti-common-size-base) * 44);--ti-common-size-45x:calc(var(--ti-common-size-base) * 45);--ti-common-size-46x:calc(var(--ti-common-size-base) * 46);--ti-common-size-47x:calc(var(--ti-common-size-base) * 47);--ti-common-size-48x:calc(var(--ti-common-size-base) * 48);--ti-common-size-49x:calc(var(--ti-common-size-base) * 49);--ti-common-size-50x:calc(var(--ti-common-size-base) * 50);--ti-common-size-0:0px;--ti-common-size-auto:auto;--ti-common-size-width-large:var(--ti-common-size-33x);--ti-common-size-width-medium:var(--ti-common-size-30x);--ti-common-size-width-normal:var(--ti-common-size-20x);--ti-common-size-height-large:var(--ti-common-size-12x);--ti-common-size-height-medium:var(--ti-common-size-10x);--ti-common-size-height-small:var(--ti-common-size-8x);--ti-common-size-height-normal:var(--ti-common-size-7x);--ti-common-size-height-mini:var(--ti-common-size-6x);--ti-common-scrollbar-width:4px;--ti-common-scrollbar-height:4px;--ti-common-scrollbar-track-piece-bg-color:var(--ti-base-color-bg-4);--ti-common-scrollbar-thumb-bg-color:#bfbfbf;--ti-common-scrollbar-thumb-border-radius:6px;--ti-common-scrollbar-thumb-hover-bg-color:#999999;--ti-common-scrollbar-thumb-active-bg-color:#999999}.fade-in-linear-enter-active,.fade-in-linear-leave-active{-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.fade-in-linear-enter,.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.fade-in-enter-active,.fade-in-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.fade-in-enter,.fade-in-enter-from,.fade-in-leave-to{opacity:0}.zoom-in-center-enter-active,.zoom-in-center-leave-active{-webkit-transition:all .3s cubic-bezier(.55,0,.1,1);transition:all .3s cubic-bezier(.55,0,.1,1)}.zoom-in-center-enter,.zoom-in-center-enter-from,.zoom-in-center-leave-to{opacity:0;-webkit-transform:scaleX(0);transform:scaleX(0)}.zoom-in-top-enter-active,.zoom-in-top-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:center top;transform-origin:center top}.zoom-in-top-enter,.zoom-in-top-enter-from,.zoom-in-top-leave-to{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.zoom-in-bottom-enter-active,.zoom-in-bottom-leave-active{opacity:1;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:center bottom;transform-origin:center bottom}.zoom-in-bottom-enter,.zoom-in-bottom-enter-from,.zoom-in-bottom-leave-to{opacity:0;-webkit-transform:scaleY(0);transform:scaleY(0)}.zoom-in-left-enter-active,.zoom-in-left-leave-active{opacity:1;-webkit-transform:scale(1,1);transform:scale(1);-webkit-transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1),-webkit-transform .3s cubic-bezier(.23,1,.32,1);-webkit-transform-origin:top left;transform-origin:top left}.zoom-in-left-enter,.zoom-in-left-enter-from,.zoom-in-left-leave-to{opacity:0;-webkit-transform:scale(.45,.45);transform:scale(.45)}.list-enter-active,.list-leave-active{-webkit-transition:all 1s;transition:all 1s}.list-enter,.list-enter-from,.list-leave-to{opacity:0;-webkit-transform:translateY(-30px);transform:translateY(-30px)}.opacity-transition{-webkit-transition:opacity .3s cubic-bezier(.55,0,.1,1);transition:opacity .3s cubic-bezier(.55,0,.1,1)}.collapse-transition{-webkit-transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out;transition:.3s height ease-in-out,.3s padding-top ease-in-out,.3s padding-bottom ease-in-out}.horizontal-collapse-transition{-webkit-transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out;transition:.3s width ease-in-out,.3s padding-left ease-in-out,.3s padding-right ease-in-out}:root{--ti-errortips-box-bg-color:var(--ti-common-color-light, #fff);--ti-errortips-body-text-color:#5a5e66;--ti-errortips-body-font-size:var(--ti-common-font-size-1, 14px);--ti-errortips-body-code-font-size:100px;--ti-errortips-body-code-text-color:#9ac7ef;--ti-errortips-body-content-font-size:var(--ti-common-font-size-2, 16px);--ti-errortips-body-bottom-font-weight:var(--ti-common-font-weight-8, 800);--ti-errortips-sso-box-bg-color:var(--ti-common-color-light, #fff);--ti-errortips-sso-body-text-color:#5a5e66;--ti-errortips-sso-body-font-size:var(--ti-common-font-size-1, 14px);--ti-errortips-not-sso-bg-color:#dcdfe4;--ti-errortips-not-sso-body-bg-color:#f4f5f9;--ti-errortips-not-sso-body-border-color:#d4d5d7;--ti-errortips-not-sso-body-title-border-color:#b6babf;--ti-errortips-not-sso-body-title-font-size:var(--ti-common-font-size-4, 20px);--ti-errortips-not-sso-body-login-font-size:var(--ti-common-font-size-2, 16px);--ti-errortips-not-sso-body-text-color:#5a5e66;--ti-errortips-not-sso-body-input-border-color:var(--ti-base-color-bg-5, #f5f5f6);--ti-errortips-not-sso-body-input-border-radius:var(--ti-common-border-radius-normal, 2px);--ti-errortips-not-sso-body-placeholder-text-color:var(--ti-common-color-placeholder, #adb0b8);--ti-errortips-not-sso-body-input-hover-text-color:var(--ti-common-color-placeholder, #adb0b8);--ti-errortips-not-sso-body-input-focus-text-color:var(--ti-common-color-border, #adb0b8);--ti-errortips-not-sso-body-input-danger-border-color:var(--ti-base-color-bg-8, #c7000b);--ti-errortips-not-sso-body-button-text-color:var(--ti-common-color-light, #fff);--ti-errortips-not-sso-body-button-bg-color:var(--ti-base-color-brand-6, #5e7ce0);--ti-errortips-not-sso-body-button-border-radius:var(--ti-common-border-radius-normal, 2px);--ti-errortips-not-sso-body-button-hover-bg-color:var(--ti-base-color-brand-5, #7693f5);--ti-errortips-not-sso-body-errmessage-text-color:#f00}.tiny-popup__wrapper{z-index:2147483647!important;background:#00000080;position:fixed;top:0;right:0;bottom:0;left:0;overflow:auto;margin:0}.tiny-popup__wrapper .tiny-errortips__box{position:absolute;width:var(--ti-errortips-width);min-height:var(--ti-errortips-min-height);max-height:var(--ti-errortips-max-height);top:0;left:0;right:0;bottom:0;margin:auto;overflow:hidden;background:var(--ti-errortips-box-bg-color);border:1px solid transparent;-webkit-box-shadow:2px 2px 2px 0 rgba(0,0,0,.2);box-shadow:2px 2px 2px #0003;text-align:center;overflow-y:auto}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body{height:100%;text-align:initial;padding:20px;color:var(--ti-errortips-body-text-color);font-size:var(--ti-errortips-body-font-size);display:table;margin:auto}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips{text-align:center;display:table-cell;vertical-align:middle}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips .error-code{font-size:var(--ti-errortips-body-code-font-size);color:var(--ti-errortips-body-code-text-color);margin:0 auto -45px;text-shadow:0 2px 0 #fff,-2px 0 0 #fff,2px 0 0 #fff}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips .error-img{width:260px;height:180px;margin:0 auto;background:url(/assets/errortips-bg-DB72-mLU.png) no-repeat}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips .error-content{font-size:var(--ti-errortips-body-content-font-size);margin:24px 0;font-weight:700}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips .error-bottom a{font-weight:var(--ti-errortips-body-bottom-font-weight);cursor:pointer}.tiny-popup__wrapper .tiny-errortips__box .tiny-errortips__body .errortips .error-bottom span{padding-right:15px}.tiny-popup__wrapper .tiny-sso__box{position:absolute;background:var(--ti-errortips-sso-box-bg-color);border:1px solid transparent;-webkit-box-shadow:2px 2px 2px 0 rgba(0,0,0,.2);box-shadow:2px 2px 2px #0003;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.tiny-popup__wrapper .tiny-sso__box .tiny-sso__body{text-align:initial;padding:20px;color:var(--ti-errortips-sso-body-text-color);line-height:32px;font-size:var(--ti-errortips-sso-body-font-size)}.tiny-popup__wrapper .tiny-sso__box .tiny-sso__body .tiny-sso__body-iframe{width:350px;height:350px;overflow:hidden}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.tiny-popup__wrapper .tiny-sso__box .tiny-sso__body .tiny-sso__body-iframe{height:460px}}@supports (-ms-ime-align:auto){.tiny-popup__wrapper .tiny-sso__box .tiny-sso__body .tiny-sso__body-iframe{height:460px}}.tiny-popup__wrapper.login-not-sso{background:var(--ti-errortips-not-sso-bg-color);background-size:cover}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box{width:100%;height:100%;overflow:hidden}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body{width:650px;height:400px;background:var(--ti-errortips-not-sso-body-bg-color);position:absolute;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center;border:1px solid var(--ti-errortips-not-sso-body-border-color);-webkit-box-shadow:0 2px 4px #989a9e;box-shadow:0 2px 4px #989a9e}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .title{background:-webkit-gradient(linear,left top,left bottom,from(#ecedf1),to(#dadde2));background:linear-gradient(to bottom,#ecedf1,#dadde2);border-bottom:1px solid var(--ti-errortips-not-sso-body-title-border-color);padding:16px 20px;font-size:var(--ti-errortips-not-sso-body-title-font-size)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login{width:100%;border-collapse:collapse;border-spacing:0;font-size:var(--ti-errortips-not-sso-body-login-font-size);margin-top:28px}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item{height:60px;line-height:60px}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.label{width:30%;text-align:right;color:var(--ti-errortips-not-sso-body-text-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell{width:70%;text-align:left;padding-left:12px}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell input{border:1px solid var(--ti-errortips-not-sso-body-input-border-color);border-radius:var(--ti-errortips-not-sso-body-input-border-radius);outline:0;width:75%;height:40px;line-height:40px;padding:0 8px;background:0 0;color:var(--ti-errortips-not-sso-body-text-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell input::-webkit-input-placeholder{color:var(--ti-errortips-not-sso-body-placeholder-text-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell input:hover{border-color:var(--ti-errortips-not-sso-body-placeholder-text-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell input:focus::-webkit-input-placeholder{color:var(--ti-errortips-not-sso-body-input-focus-text-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell input.text-danger{border-color:var(--ti-errortips-not-sso-body-input-danger-border-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell button{width:75%;height:40px;line-height:40px;padding:0 24px;text-align:center;color:var(--ti-errortips-not-sso-body-button-text-color);background-color:var(--ti-errortips-not-sso-body-button-bg-color);border:none;border-radius:var(--ti-errortips-not-sso-body-button-border-radius);-webkit-transition:.3s;transition:.3s;outline:0}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell button:hover{background-color:var(--ti-errortips-not-sso-body-button-hover-bg-color)}.tiny-popup__wrapper.login-not-sso .tiny-not-sso__box .tiny-not-sso__body .tbl-login .form-item td.cell .errmessage{color:var(--ti-errortips-not-sso-body-errmessage-text-color);line-height:20px}.tiny-svg{width:1em;height:1em;vertical-align:middle;overflow:hidden;display:inline-block}.tiny-slide-bar{--ti-slider-progress-box-border-color:var(--ti-common-color-light, #fff);--ti-slider-progress-box-hover-border-color:rgba(153, 153, 153, .7);--ti-slider-progress-box-arrow-normal-text-color:#f2f2f2;--ti-slider-progress-box-arrow-hover-text-color:#808080;--ti-slider-progress-box-middleline-border-color:#ebebeb;--ti-slider-progress-box-middleline-icon-color:#ebebeb;padding:0 32px;position:relative}.tiny-slide-bar>.tiny-svg{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);font-size:2em;cursor:pointer;fill:var(--ti-slider-progress-box-arrow-normal-text-color)}.tiny-slide-bar>.tiny-svg:hover{fill:var(--ti-slider-progress-box-arrow-hover-text-color)}.tiny-slide-bar>.tiny-svg.tiny-disabled,.tiny-slide-bar>.tiny-svg.tiny-disabled:hover{background:0 0;fill:#fff;cursor:default}.tiny-slide-bar>.icon-chevron-left{left:0}.tiny-slide-bar>.icon-chevron-right{right:0}.tiny-slide-bar li li div{margin:15px 0;font-size:var(--ti-common-font-size-base);color:#4e5e67}.tiny-slide-bar li li div:nth-child(2){border-bottom:1px solid var(--ti-slider-progress-box-middleline-border-color)}.tiny-slide-bar li li div svg{float:right;margin:-6px 0 0;background:#fff;fill:var(--ti-slider-progress-box-middleline-icon-color)}.tiny-slide-bar .tiny-slide-bar__content{width:100%;min-height:170px;position:relative;overflow:hidden}.tiny-slide-bar .tiny-slide-bar__list{position:absolute;min-height:170px;display:-webkit-box;display:-ms-flexbox;display:flex}.tiny-slide-bar .tiny-slide-bar__list>li{width:23%;padding:20px;float:left;margin-left:2%;position:relative;border:5px solid var(--ti-slider-progress-box-border-color);-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.tiny-slide-bar .tiny-slide-bar__list>li:first-child{margin-left:0}.tiny-slide-bar .tiny-slide-bar__list>li:hover{border-color:var(--ti-slider-progress-box-hover-border-color)}.tiny-slide-bar .tiny-slide-bar__list>li>.icon-chevron-down{position:absolute;top:98.8%;left:50%;margin-left:-10px;font-size:2em;width:22px;display:none!important}.tiny-slide-bar .tiny-slide-bar__list>li>.icon-chevron-down:before{content:"";position:absolute;width:20px;height:20px;border-right:5px solid var(--ti-slider-progress-box-hover-border-color);border-bottom:5px solid var(--ti-slider-progress-box-hover-border-color);-webkit-transform:rotate(45deg);transform:rotate(45deg);background:#fff;top:-5px}.tiny-slide-bar .tiny-slide-bar__list>li>ul{width:100%;list-style:none}.tiny-slide-bar .tiny-slide-bar__list>li.tiny-slide-bar__select{border-color:var(--ti-slider-progress-box-hover-border-color)}.tiny-slide-bar .tiny-slide-bar__list>li.tiny-slide-bar__select>.icon-chevron-down{display:block!important}.tiny-slide-bar .tiny-slide-bar__list>li.tiny-slide-bar__select li .tiny-icon{color:var(--ti-slider-progress-box-hover-border-color)}.tiny-slide-bar .tiny-slide-bar__list>li.tiny-slide-bar__select li:nth-child(2){border-bottom:1px solid var(--ti-slider-progress-box-hover-border-color)} diff --git a/web/dist/assets/@opentiny-BMB0hRxY.js b/web/dist/assets/@opentiny-BMB0hRxY.js new file mode 100644 index 00000000..12fdcc1b --- /dev/null +++ b/web/dist/assets/@opentiny-BMB0hRxY.js @@ -0,0 +1,2 @@ +import{h as it}from"./vue-C5uo8kQw.js";import{d as ar,c as sr,a as lr,h as cr,i as xe,p as dr,g as W,o as ur,b as pr,n as kt,m as fr,e as j,f as ae,j as E,r as ke,k as he,l as Ne,w as De,q as at,s as st,t as lt,F as mr,u as gr,v as hr,x as ct,T as vr,y as br}from"./@vue-CQsYufSu.js";const Nt=Object.prototype.toString,We=Object.prototype.hasOwnProperty,yr=Object.getPrototypeOf,Dt=We.toString,wr=Dt.call(Object),Sr={"[object Error]":"error","[object Object]":"object","[object RegExp]":"regExp","[object Date]":"date","[object Array]":"array","[object Function]":"function","[object String]":"string","[object Number]":"number","[object Boolean]":"boolean"},K=e=>e==null,be=e=>K(e)?String(e):Sr[Nt.call(e)]||"object",dt=e=>be(e)==="object",$=e=>{if(!e||Nt.call(e)!=="[object Object]")return!1;const t=yr(e);if(!t)return!0;const r=We.call(t,"constructor")&&t.constructor;return typeof r=="function"&&Dt.call(r)===wr},He=e=>typeof e=="number"&&isFinite(e),ut=e=>e-parseFloat(e)>=0,ye=e=>be(e)==="date",pt=(e,t)=>{if(typeof t=="function"){for(const r in e)if(We.call(e,r)&&t(r,e[r])===!1)break}};let Z;const Ae=(e,t,r)=>{if(!e||!$(e)||!t||typeof t!="string")return;const n=t.split(".");let i=e;const o=n.length;if(o>1){const s=r?1:0;for(let a=s;a{if(!e||!$(e)||!t||typeof t!="string")return e;const i=t.split("."),o=e;let s=i.length,a=i[0];if(s>1){s--;let l=o,c,d;for(let u=0;u{const i=(s,a,l,c,d)=>{const u=c.indexOf(l)===0,p=c.split(l),m=p[1]&&p[1].indexOf(".")===0;l===c||u&&m?l!==c&&pt(Ae(s,l),b=>(i(s,a,`${l}.${b}`,c),!0)):t&&!t.includes(l)&&ft(a,l,Ae(s,l),d)},o=(s,a,l,c)=>{const d={};return c?pt(s,u=>a.forEach(p=>i(s,d,u,p,l))):a.forEach(u=>ft(d,u,Ae(s,u),l)),d};return $(e)?Array.isArray(t)?o(e,t,r,n):Z(r!==!1,{},e):e},Tr=e=>Array.isArray(e)?e.map(t=>xr(t)):e,Mr=(e,t,r,n,i)=>{let o;if(r&&n&&($(n)||(o=Array.isArray(n))))if(o)o=!1,e[t]=Tr(n);else{const s=i&&$(i)?i:{};e[t]=Z(r,s,n)}else if(n!==void 0)try{e[t]=n}catch{}};Z=function(...e){const t=e.length;let r=e[0]||{},n=1,i=!1;for(be(r)==="boolean"&&(i=r,r=e[n]||{},n++),!dt(r)&&be(r)!=="function"&&(r={});n{let e=8;return document.addEventListener&&window.performance&&(e=9,window.atob&&window.matchMedia&&(e=10,!window.attachEvent&&!document.all&&(e=11))),e},kr=e=>{e.chrome&&~navigator.userAgent.indexOf("Edg")?(e.name="edge",e.edge=!0,delete e.chrome):!document.documentMode&&window.StyleMedia&&(e.name="edge",e.edge=!0)},At=typeof window<"u"&&typeof document<"u"&&window.document===document;(()=>{const e={name:void 0,version:void 0,isDoc:typeof document<"u",isMobile:!1,isPC:!0,isNode:typeof window>"u"};if(At){const t=/(Android|webOS|iPhone|iPad|iPod|SymbianOS|BlackBerry|Windows Phone)/.test(navigator.userAgent);e.isMobile=t,e.isPC=!t;let r;if(window.chrome&&(window.chrome.webstore||/^Google\b/.test(window.navigator.vendor))?(e.name="chrome",e.chrome=!0,r=navigator.userAgent.match(/chrome\/(\d+)/i),e.version=!!r&&!!r[1]&&parseInt(r[1],10),r=void 0):document.all||document.documentMode?(e.name="ie",e.version=Cr(),e.ie=!0):typeof window.InstallTrigger<"u"?(e.name="firefox",e.firefox=!0):Object.prototype.toString.call(window.HTMLElement).indexOf("Constructor")>0?(e.name="safari",e.safari=!0):(window.opr&&window.opr.addons||window.opera)&&(e.name="opera",e.opera=!0),kr(e),!~["ie","chrome"].indexOf(e.name)){const n=e.name+"/(\\d+)";r=navigator.userAgent.match(new RegExp(n,"i")),e.version=!!r&&!!r[1]&&parseInt(r[1],10),r=void 0}if(e.isDoc){const n=document.body||document.documentElement;["webkit","khtml","moz","ms","o"].forEach(i=>{e["-"+i]=!!n[i+"MatchesSelector"]})}}return e})();const se=At?window.BigInt:global.BigInt;function ze(){return typeof se=="function"}function re(e){let t=e.toString().trim(),r=t.startsWith("-");r&&(t=t.slice(1)),t=t.replace(/(\.\d*[^0])0*$/,"$1").replace(/\.0*$/,"").replace(/^0+/,""),t.startsWith(".")&&(t="0".concat(t));let n=t||"0",i=n.split("."),o=i[0]||"0",s=i[1]||"0";o==="0"&&s==="0"&&(r=!1);let a=r?"-":"";return{negative:r,negativeStr:a,trimStr:n,integerStr:o,decimalStr:s,fullStr:"".concat(a).concat(n)}}function Ge(e){let t=String(e);return!isNaN(Number(t))&&~t.indexOf("e")}function Et(e){return typeof e=="number"?!isNaN(e):e?/^\s*-?\d+(\.\d+)?\s*$/.test(e)||/^\s*-?\d+\.\s*$/.test(e)||/^\s*-?\.\d+\s*$/.test(e):!1}function Fe(e){let t=String(e);if(Ge(e)){let r=Number(t.slice(t.indexOf("e-")+2)),n=t.match(/\.(\d+)/);return n!=null&&n[1]&&(r+=n[1].length),r}return~t.indexOf(".")&&Et(t)?t.length-t.indexOf(".")-1:0}function Pt(e){let t=String(e);if(Ge(e)){if(e>Number.MAX_SAFE_INTEGER)return String(ze()?se(e).toString():Number.MAX_SAFE_INTEGER);if(e{const s=o.replace(/^0+/,"")||"0";return n(`return BigInt(${s})`)()};if(Et(r)){const o=re(r);this.negative=o.negative;const s=o.trimStr.split(".");this.integer=s[0].includes("e")?s[0]:se(s[0]);const a=s[1]||"0";this.decimal=i(a),this.decimalLen=a.length}else this.nan=!0}getDecimalStr(){return this.decimal.toString().padStart(this.decimalLen,"0")}getIntegerStr(){return this.integer.toString()}getMark(){return this.negative?"-":""}alignDecimal(t){const r=`${this.getMark()}${this.getIntegerStr()}${this.getDecimalStr().padEnd(t,"0")}`;return se(r)}add(t){if(this.isInvalidate())return new ne(t);const r=new ne(t);if(r.isInvalidate())return this;const n=Math.max(this.getDecimalStr().length,r.getDecimalStr().length),i=r.alignDecimal(n),s=`${this.alignDecimal(n)+i}`,{negativeStr:a,trimStr:l}=re(s),c=`${a}${l.padStart(n+1,"0")}`;return Ve(`${c.slice(0,-n)}.${c.slice(-n)}`)}negate(){const t=new ne(this.toString());return t.negative=!t.negative,t}isNaN(){return this.nan}isEmpty(){return this.empty}isInvalidate(){return this.isEmpty()||this.isNaN()}lessEquals(t){return this.add(t.negate().toString()).toNumber()<=0}equals(t){return this.toString()===(t&&t.toString())}toNumber(){return this.isNaN()?NaN:Number(this.toString())}toString(t=!0){return t?this.isInvalidate()?"":re(`${this.getMark()}${this.getIntegerStr()}.${this.getDecimalStr()}`).fullStr:this.origin}}class _{constructor(t=""){if(!t&&t!==0||!String(t).trim()){this.empty=!0;return}this.origin="",this.number=void 0,this.empty=void 0,this.origin=String(t),this.number=Number(t)}negate(){return new _(-this.toNumber())}add(t){if(this.isInvalidate())return new _(t);const r=Number(t);if(isNaN(r))return this;const n=this.number+r;if(nNumber.MAX_SAFE_INTEGER)return new _(Number.MAX_SAFE_INTEGER);const i=Math.max(Fe(r),Fe(this.number));return new _(n.toFixed(i))}isNaN(){return isNaN(this.number)}isEmpty(){return this.empty}isInvalidate(){return this.isEmpty()||this.isNaN()}equals(t){return this.toNumber()===(t&&t.toNumber())}lessEquals(t){return this.add(t.negate().toString()).toNumber()<=0}toNumber(){return this.number}toString(t=!0){return t?this.isInvalidate()?"":Pt(this.number):this.origin}}$t=function(e){Re.CLS=ze()?ne:typeof e=="function"?e:_};function It(e,t,r=5){if(e==="")return"";const n=".",{negativeStr:i,integerStr:o,decimalStr:s}=re(e),a=`${n}${s}`,l=`${i}${o}`;if(t>=0){const c=Number(s[t]);if(c>=r&&r!==0){const d=Ve(`${o}${n}${s}`).add(`0.${gt("",t,!0)}${10-c}`);return It(i+d.toString(),t,0)}return t===0?l:`${l}${n}${gt(s,t,!0).slice(0,t)}`}return a===".0"?l:`${l}${a}`}const Dr=(e,{secondaryGroupSize:t=3,groupSize:r=0,groupSeparator:n=","})=>{const i=/^-\d+/.test(e);let o=i?e.slice(1):e;const s=t||r;if(r&&o.length>r){let a=o.slice(0,0-r);const l=o.slice(0-r);a=a.replace(new RegExp(`\\B(?=(\\d{${s}})+(?!\\d))`,"g"),n),o=`${a}${n}${l}`}return`${i?"-":""}${o}`},mt=e=>{const t=[];for(let r=0;r{const n=new RegExp(`\\B(?=(\\d{${t}})+(?!\\d))`,"g");return mt(mt(e).replace(n,r))},Er=(e,t={})=>{const{fraction:r,rounding:n,prefix:i="",decimalSeparator:o=".",suffix:s=""}=t;let a=Ve(e);if(a.isNaN()||!a.toString())return e;a=It(a.toString(),r,n),t.zeroize===!1&&a.match(/\./)&&(a=a.replace(/\.?0+$/g,""));const l=a.toString().split(".").slice(0,2).map((c,d)=>d?Ar(c,t):Dr(c,t)).join(o);return`${i}${l}${s}`},Pr=(e,t={})=>{const{prefix:r="",suffix:n="",decimalSeparator:i="."}=t;let o=e;return typeof e=="string"&&(o=e.replace(new RegExp(`^${r}(.+)${n}$`),(s,a)=>a).split(i).map(s=>s.replace(/[^\d]/g,"")).join(".")),Number(o)};function $r(e){let t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}const Ir=/\B([A-Z])/g,zr=$r(e=>e.replace(Ir,"-$1").toLowerCase()),gt=(e,t,r,n="0")=>{if(typeof e=="string"&&typeof n=="string"&&He(t)){let i=e.length-t;if(i>0)return r?e.substr(0,t):e.substr(i,t);{const o=[];for(i=Math.abs(i)/n.length;i>0;i--)o.push(n);const s=o.join("");return r?e+s:s+e}}},zt=[31,28,31,30,31,30,31,31,30,31,30,31],Fr=new RegExp("^(\\d{4})(/|-)(((0)?[1-9])|(1[0-2]))((/|-)(((0)?[1-9])|([1-2][0-9])|(3[0-1])))?( ((0)?[0-9]|1[0-9]|20|21|22|23):([0-5]?[0-9])((:([0-5]?[0-9]))?(.([0-9]{1,6}))?)?)?$"),Rr=new RegExp("^(((0)?[1-9])|(1[0-2]))(/|-)(((0)?[1-9])|([1-2][0-9])|(3[0-1]))?(/|-)?(\\d{4})( ((0)?[0-9]|1[0-9]|20|21|22|23):([0-5]?[0-9])((:([0-5]?[0-9]))?(.([0-9]{1,6}))?)?)?$"),Or=new RegExp("^(\\d{4})-(((0)?[1-9])|(1[0-2]))-(((0)?[1-9])|([1-2][0-9])|(3[0-1]))T(((0)?[0-9]|1[0-9]|20|21|22|23):([0-5]?[0-9])((:([0-5]?[0-9]))?(.([0-9]{1,6}))?)?)?(Z|([+-])((0)?[0-9]|1[0-9]|20|21|22|23):?([0-5]?[0-9]))$"),O={YEAR:9999,MONTH:11,DATE:31,HOUR:23,MINUTE:59,SECOND:59,MILLISECOND:999},Lr="-12:00,-11:00,-10:00,-09:30,-08:00,-07:00,-06:00,-05:00,-04:30,-04:00,-03:30,-02:00,-01:00",_r="-00:00,+00:00,+01:00,+02:00,+03:00,+03:30,+04:00,+04:30,+05:00,+05:30,+05:45,+06:00",jr="+06:30,+07:00,+08:00,+09:00,+10:00,+10:30,+11:00,+11:30,+12:00,+12:45,+13:00,+14:00",Ur=[].concat(Lr.split(","),_r.split(","),jr.split(",")),Ft=e=>e%400===0||e%4===0&&e%100!==0,Ye=({year:e,month:t,date:r,hours:n,minutes:i,seconds:o,milliseconds:s})=>{let a=zt[t];if(Ft(e)&&t===1&&(a+=1),r<=a)return new Date(e,t,r,n,i,o,s)},Br=e=>{if(e.length===23){const t=Number(e[1]),r=e[3]-1,n=Number(e[9]||1),i=e[15]||0,o=e[17]||0,s=e[20]||0,a=e[22]||0;return Ye({date:n,year:t,hours:i,month:r,seconds:s,minutes:o,milliseconds:a})}},Wr=e=>{if(e.length===22){const t=Number(e[12]),r=e[1]-1,n=Number(e[6]||1),i=e[14]||0,o=e[16]||0,s=e[19]||0,a=e[21]||0;return Ye({year:t,month:r,date:n,hours:i,minutes:o,seconds:s,milliseconds:a})}},Hr=e=>{if(e.length!==25)return;const t=Number(e[1]),r=e[2]-1,n=Number(e[6]),i=new Date(t,r,n).getTimezoneOffset(),o=e[12]||0,s=e[14]||0,a=e[17]||0,l=e[19]||0;let c=e[20];const d=e[21],u=e[22]||0,p=e[24]||0;let m=zt[r],b,g;if(Ft(t)&&r===1&&(m+=1),n<=m){if(c==="Z")b=o-i/60,g=s;else{if(c.includes(":")||(c=c.substr(0,3)+":"+c.substr(3)),!Ur.includes(c))return;b=d==="+"?o-u-i/60:Number(o)+Number(u)-i/60,g=d==="+"?s-p:Number(s)+Number(p)}return new Date(t,r,n,b,g,a,l)}},Ee=[[Fr,Br],[Rr,Wr],[Or,Hr]],Gr=e=>{for(let t=0,r=Ee.length;t0)return Ee[t][1](n)}},Vr=(e,t,r)=>{if(r)switch(r){case"yyyy":case"yy":e[0]=t;break;case"M":case"MM":e[1]=t-1;break;case"d":case"dd":e[2]=t;break;case"h":case"hh":e[3]=t;break;case"m":case"mm":e[4]=t;break;case"s":case"ss":e[5]=t;break;case"S":case"SS":case"SSS":e[6]=t;break}},Yr=(e,t)=>{const r=[0,-1,0,0,0,0];if(e.length!==t.length)return r;let n=0,i=0;for(let o=0,s=e.length;oisNaN(e)||er,qr=({year:e,month:t,date:r,hours:n,minutes:i,seconds:o,milliseconds:s})=>L(e,0,O.YEAR)||L(t,0,O.MONTH)||L(r,0,O.DATE)||L(n,0,O.HOUR)||L(i,0,O.MINUTE)||L(o,0,O.SECOND)||L(s,0,O.MILLISECOND),Zr=(e,t)=>{if(typeof t=="string"){const r=Yr(e,t),n=Number(r[0]),i=Number(r[1]),o=Number(r[2]||1),s=Number(r[3]||0),a=Number(r[4]||0),l=Number(r[5]||0),c=Number(r[6]||0);return qr({year:n,month:i,date:o,hours:s,minutes:a,seconds:l,milliseconds:c})?void 0:Ye({year:n,date:o,month:i,minutes:a,hours:s,milliseconds:c,seconds:l})}else return Gr(e)},Oe=(e,t,r)=>{let n;if(He(e)?n=new Date(e):typeof e=="string"&&(n=Zr(e,t)),r){const i=r&&Oe(r)||new Date(1,1,1,0,0,0);return n&&n{if(!ye(e)||!ut(t)||!ut(r))return;const n=-t*60,i=-r*60,o=e.getTime()+n*6e4;return new Date(o-i*6e4)},Jr="date,datetime,time,time-select,week,month,year,years,yearrange,daterange,monthrange,timerange,datetimerange,dates",de={Day:"day",Date:"date",Dates:"dates",Year:"year",Years:"years",YearRange:"yearrange",PanelYearNum:12,Month:"month",Week:"week",Normal:"normal",Today:"today",PreMonth:"pre-month",NextMonth:"next-month",YearI18n:"ui.datepicker.year",List:[38,40,37,39],YearObj:{38:-4,40:4,37:-1,39:1},WeekObj:{38:-1,40:1,37:-1,39:1},DayObj:{38:-7,40:7,37:-1,39:1},Aviailable:"available",Default:"default",Current:"current",InRange:"in-range",StartDate:"start-date",EndDate:"end-date",Selected:"selected",Disabled:"disabled",Range:"range",fullMonths:"January,February,March,April,May,June,July,August,September,October,November,December".split(","),fullWeeks:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],MonhtList:["jan","feb","mar","apr","may","jun","jul","aug","sep","oct","nov","dec"],Weeks:["sun","mon","tue","wed","thu","fri","sat"],PlacementMap:{left:"bottom-start",center:"bottom",right:"bottom-end"},TriggerTypes:Jr.split(","),DateFormats:{year:"yyyy",years:"yyyy",yearrange:"yyyy",month:"yyyy-MM",time:"HH:mm:ss",week:"yyyywWW",date:"yyyy-MM-dd",timerange:"HH:mm:ss",monthrange:"yyyy-MM",daterange:"yyyy-MM-dd",datetime:"yyyy-MM-dd HH:mm:ss",datetimerange:"yyyy-MM-dd HH:mm:ss"},Time:"time",TimeRange:"timerange",IconTime:"icon-time",IconDate:"icon-Calendar",DateRange:"daterange",DateTimeRange:"datetimerange",MonthRange:"monthrange",TimeSelect:"time-select",TimesTamp:"timestamp",DateTime:"datetime",SelectbaleRange:"selectableRange",Start:"09:00",End:"18:00",Step:"00:30",CompareOne:"-1:-1",CompareHundred:"100:100",selClass:".selected",queryClass:".tiny-picker-panel__content",disableClass:".time-select-item:not(.disabled)",defaultClass:".default",Qurtyli:"li",MappingKeyCode:{40:1,38:-1},DatePicker:"DatePicker",TimePicker:"TimePicker"},P={},qe=["\\d\\d?","\\d{3}","\\d{4}"],I=qe[0],Xr=qe[1],Qr=qe[2],Q="[^\\s]+",Rt=/\[([^]*?)\]/gm,ht=()=>{},en={shortDate:"M/D/yy",mediumDate:"MMM d, yyyy",longDate:"MMMM d, yyyy",fullDate:"dddd, MMMM d, yyyy",default:"ddd MMM dd yyyy HH:mm:ss",shortTime:"HH:mm",mediumTime:"HH:mm:ss",longTime:"HH:mm:ss.SSS"},Ot=(e,t)=>{let r=[];for(let n=0,i=e.length;n(t,r,n)=>{const i=n[e].indexOf(r.charAt(0).toUpperCase()+r.substr(1).toLowerCase());~i&&(t.month=i)},N=(e,t)=>{for(e=String(e),t=t||2;e.lengthe.replace(/[|\\{()[^$+*?.-]/g,"\\$&"),Lt=/d{1,4}|M{1,4}|yy(?:yy)?|S{1,3}|Do|ZZ|([HhMsDm])\1?|[aA]|"[^"]*"|'[^']*'/g,_t=de.fullWeeks,jt=de.fullMonths,rn=Ot(jt,3),nn=Ot(_t,3),on=["th","st","nd","rd"];P.i18n={dayNames:_t,monthNames:jt,dayNamesShort:nn,monthNamesShort:rn,amPm:["am","pm"],doFn:e=>e+on[e%10>3?0:(e-e%10!==10)*e%10]};const bt={D:e=>e.getDay(),DD:e=>N(e.getDay()),Do:(e,t)=>t.doFn(e.getDate()),d:e=>e.getDate(),dd:e=>N(e.getDate()),ddd:(e,t)=>t.dayNamesShort[e.getDay()],dddd:(e,t)=>t.dayNames[e.getDay()],M:e=>e.getMonth()+1,MM:e=>N(e.getMonth()+1),MMM:(e,t)=>t.monthNamesShort[e.getMonth()],MMMM:(e,t)=>t.monthNames[e.getMonth()],yy:e=>N(String(e.getFullYear()),4).substr(2),yyyy:e=>N(e.getFullYear(),4),h:e=>e.getHours()%12||12,hh:e=>N(e.getHours()%12||12),H:e=>e.getHours(),HH:e=>N(e.getHours()),m:e=>e.getMinutes(),mm:e=>N(e.getMinutes()),s:e=>e.getSeconds(),ss:e=>N(e.getSeconds()),S:e=>Math.round(e.getMilliseconds()/100),SS:e=>N(Math.round(e.getMilliseconds()/10),2),SSS:e=>N(e.getMilliseconds(),3),a:(e,t)=>e.getHours()<12?t.amPm[0]:t.amPm[1],A:(e,t)=>e.getHours()<12?t.amPm[0].toUpperCase():t.amPm[1].toUpperCase(),ZZ:e=>{const t=e.getTimezoneOffset();return(t>0?"-":"+")+N(Math.floor(Math.abs(t)/60)*100+Math.abs(t)%60,4)}},F={d:[I,(e,t)=>{e.day=t}],Do:[I+Q,(e,t)=>{e.day=parseInt(t,10)}],M:[I,(e,t)=>{e.month=t-1}],yy:[I,(e,t)=>{const n=Number(String(new Date().getFullYear()).substr(0,2));e.year=String(t>68?n-1:n)+t}],h:[I,(e,t)=>{e.hour=t}],m:[I,(e,t)=>{e.minute=t}],s:[I,(e,t)=>{e.second=t}],yyyy:[Qr,(e,t)=>{e.year=t}],S:["\\d",(e,t)=>{e.millisecond=t*100}],SS:["\\d{2}",(e,t)=>{e.millisecond=t*10}],SSS:[Xr,(e,t)=>{e.millisecond=t}],D:[I,ht],ddd:[Q,ht],MMM:[Q,vt("monthNamesShort")],MMMM:[Q,vt("monthNames")],a:[Q,(e,t,r)=>{const n=t.toLowerCase();n===r.amPm[0]?e.isPm=!1:n===r.amPm[1]&&(e.isPm=!0)}],ZZ:["[^\\s]*?[\\+\\-]\\d\\d:?\\d\\d|[^\\s]*?Z",(e,t)=>{let r=String(t).match(/([+-]|\d\d)/gi),n;r&&(n=Number(r[1]*60)+parseInt(r[2],10),e.timezoneOffset=r[0]==="+"?n:-n)}]},an=["A","DD","dd","mm","hh","MM","ss","hh","H","HH"];P.masks=en;F.dddd=F.ddd;an.forEach(e=>{e==="MM"?F[e]=F[e.substr(0,1)]:F[e]=F[e.substr(0,1).toLowerCase()]});P.format=(e,t,r)=>{const n=r||P.i18n;if(typeof e=="number"&&(e=new Date(e)),!ye(e)||isNaN(e.getTime()))throw new Error("Invalid Date in fecha.format");t=P.masks[t]||t||P.masks.default;let i=[];return t=t.replace(Rt,(o,s)=>(i.push(s),"@@@")),t=t.replace(Lt,o=>o in bt?bt[o](e,n):o.slice(1,o.length-1)),t.replace(/@@@/g,()=>i.shift())};const sn=(e,t)=>{let r=[],n=tn(e).replace(Lt,i=>{if(F[i]){const o=F[i];return t.push(o[1]),"("+o[0]+")"}return i});return n=n.replace(/@@@/g,()=>r.shift()),n},ln=e=>{let t;const r=new Date;if(K(e.timezoneOffset)){const{year:n,month:i,day:o,hour:s,minute:a,second:l,millisecond:c}=e;t=new Date(n||r.getFullYear(),i||0,o||1,s||0,a||0,l||0,c||0)}else{e.minute=Number(e.minute||0)-Number(e.timezoneOffset);const{year:n,month:i,day:o,hour:s,minute:a,second:l,millisecond:c}=e;t=new Date(Date.UTC(n||r.getFullYear(),i||0,o||1,s||0,a||0,l||0,c||0))}return t};P.parse=(e,t,r)=>{const n=r||P.i18n;if(typeof t!="string")throw new TypeError("Invalid format in fecha.parse");if(t=P.masks[t]||t,e.length>1e3)return null;let i={},o=[];t=t.replace(Rt,(l,c)=>"@@@");const s=sn(t,o),a=e.match(new RegExp(s,"i"));if(!a)return null;for(let l=1,c=a.length;l({dayNamesShort:yt.map(t=>e(`ui.datepicker.weeks.${t}`)),dayNames:yt.map(t=>e(`ui.datepicker.weeks.${t}`)),monthNamesShort:wt.map(t=>e(`ui.datepicker.months.${t}`)),monthNames:wt.map((t,r)=>e(`ui.datepicker.month${r+1}`)),amPm:["am","pm"]}),pn=function(e){return!(K(e)||isNaN(new Date(e).getTime())||Array.isArray(e))},fn=e=>pn(e)?new Date(e):null,mn=(e,t,r)=>(e=fn(e),e?cn.format(e,t||dn,un(r)):"");function q(){return q=Object.assign?Object.assign.bind():function(e){for(var t=1;t1?t-1:0),n=1;n=-12&&t<=12?t:r};function wn(e){return function(t){var r=q({},yn(t),{NumberFormat:bn(t.NumberFormat),DbTimezone:Pe(t.DbTimezone),Timezone:Pe(t.Timezone)}),n={getFormatConfig:function(){return r},setFormatConfig:function(o){Object.assign(r,o)},getNumberFormat:function(){return r.NumberFormat},getDateFormat:function(){return{DateTimeFormat:r.DateTimeFormat,TimeFormat:r.TimeFormat,Timezone:r.Timezone,DateFormat:r.DateFormat,DbTimezone:r.DbTimezone}},formatDate:function(o,s){if(K(o))return o;var a=ye(o)?o:Oe(o),l=r.DbTimezone,c=o.match&&o.match(Yt),d=s===!1||arguments[2]===!1;return c&&(l=Pe(o),a=Oe(o.replace("T"," ").slice(0,-5))),d||(a=this.getDateWithNewTimezone(a,l,r.Timezone)),ye(a)?mn(a,s||r.DateFormat,e):null},formatNumber:function(o,s){return Er(o,q({},r.NumberFormat,s))},recoverNumber:function(o,s){return Pr(o,q({},r.NumberFormat,s))},getDateWithNewTimezone:function(o,s,a){return s=s===0?s:s||r.DbTimezone,a=a===0?a:a||r.Timezone,Kr(o,s,a)}};return n}}R.use;var Le=R.t;R.i18n;R.initI18n;R.extend;R.zhCN;R.enUS;var Sn=R.language,xn=wn(Le);q({},Vt,{language:Sn,globalization:xn});var qt={};function ce(){return ce=Object.assign?Object.assign.bind():function(e){for(var t=1;t"u"&&Object.defineProperty(t,"$emitter",{get:function(){return r}})},Pn=function(t){var r=function(i,o,s,a){var l=i.subTree&&i.subTree.children||i.children;Array.isArray(l)&&l.forEach(function(c){var d=c.type&&c.type.componentName,u=c.component;d===o?(u.emit(s,a),u.$emitter&&u.$emitter.emit(s,a)):r(c,o,s,a)})};return{dispatch:function(i,o,s){for(var a=t.parent||t.root,l=a.type&&a.type.componentName;a&&(!l||l!==i);)a=a.parent,a&&(l=a.type&&a.type.componentName);if(a){var c,d;(c=a).emit.apply(c,[o].concat(s)),a.$emitter&&(d=a.$emitter).emit.apply(d,[o].concat(s))}},broadcast:function(i,o,s){r(t,i,o,s)}}},we=function(t){if(t&&t.parent)return t.parent.type.name==="AsyncComponentWrapper"&&t.parent.parent?t.parent.parent:t.parent},$n=function(t){return function(r){var n=we(t),i=0,o=function(a){return{level:i,vm:B({},a),el:a.vnode.el,options:a.type}};if(typeof r!="function")return n?o(n):{};for(i++;n&&!r(o(n));)n=we(n),i++}},In=function(t){return function(r){if(typeof r!="function")return Xt(t.subTree);var n=1,i=function o(s){if(s){var a=s.children||s.dynamicChildren,l=n++;if(Array.isArray(a)){if(a.some(function(c){return c.component&&r({level:l,vm:B({},c.component),el:c.el,options:c.type,isLevel1:!0})}))return;a.forEach(function(c){return o(c)})}}};i(t.subTree)}},zn=/^on[A-Z]/,Fn=function(t){var r={},n={};for(var i in t){var o=t[i];if(zn.test(i)&&typeof o=="function"){n[zr(i.substr(2))]=o;continue}r[i]=o}return{$attrs:r,$listeners:n}},Xt=function(t){var r=[];if(r.refs={},t){var n=t.dynamicChildren||t.children;Array.isArray(n)?n.forEach(function(i){if(i.component){var o=B({},i.component);r.push(o),i.props.ref&&(r.refs[i.props.ref]=o)}}):t.component&&r.push(B({},t.component))}return r},$e=function(t,r,n,i){var o=function(l){if(typeof i=="function"&&i(l))return 1;Object.defineProperty(t,l,{configurable:!0,enumerable:!0,get:function(){return r[n][l]},set:function(d){return r[n][l]=d}})};for(var s in r[n])o(s);return t},St=function(t){return t.indexOf("_")===0},Qt=function(t,r){return $e(t,r,"setupState",null),$e(t,r,"props",St),$e(t,r,"ctx",St),t},B=function e(t,r,n){n===void 0&&(n=null);var i=Fn(r.attrs),o=i.$attrs,s=i.$listeners,a=r.$emitter;a||(Jt(r),a=r.$emitter);var l=function(){for(var u=arguments.length,p=new Array(u),m=0;m"u"&&we(o),S=C?B({},C):o.parent?B({},o.parent):null,T=function(D){var V,Y=D.name,v=D.value,pe=C?C.ctx:o==null||(V=o.parent)==null?void 0:V.ctx;pe[Y]=v,S[Y]=v},M=function(D){Object.defineProperties(w,D),Object.defineProperties(o==null?void 0:o.ctx,D)},ue=function(D){S&&Object.defineProperties(S,D)};return ur(function(){return Qt(w,o)}),pr(function(){return Rn(o,h)}),{framework:"vue3",vm:w,emit:x,emitter:Zt,route:l,router:c,dispatch:p,broadcast:m,parentHandler:b,childrenHandler:g,i18n:d,refs:h,slots:o==null?void 0:o.slots,scopedSlots:o==null?void 0:o.slots,attrs:t.attrs,parent:S,nextTick:kt,constants:o==null?void 0:o.props._constants,mode:r,isPCMode:r==="pc",isMobileMode:r==="mobile",service:s==null?void 0:s.$service,getService:function(){return s==null?void 0:s.$getService(w)},setParentAttribute:T,defineInstanceProperties:M,defineParentInstanceProperties:ue}},Xe=ar,er=function(t){var r=[];return Object.keys(t).forEach(function(n){return t[n]&&r.push(n)}),r.join(" ")},Ln=function(t){var r=[];return t.forEach(function(n){typeof n=="string"?r.push(n):typeof n=="object"&&r.push(er(n))}),r.join(" ")},_n=function(t){if(!t||Array.isArray(t)&&!t.length)return"";var r=[];return t.forEach(function(n){n&&(typeof n=="string"?r.push(n):Array.isArray(n)?r.push(Ln(n)):typeof n=="object"&&r.push(er(n)))}),r.join(" ")};function jn(){for(var e=0,t,r,n="";ee&&(t=0,n=r,r=new Map)}return{get:function(s){var a=r.get(s);if(a!==void 0)return a;if((a=n.get(s))!==void 0)return i(s,a),a},set:function(s,a){r.has(s)?r.set(s,a):i(s,a)}}}var nr="!";function Yn(e){var t=e.separator||":",r=t.length===1,n=t[0],i=t.length;return function(s){for(var a=[],l=0,c=0,d,u=0;uc?d-c:void 0;return{modifiers:a,hasImportantModifier:b,baseClassName:g,maybePostfixModifierPosition:w}}}function qn(e){if(e.length<=1)return e;var t=[],r=[];return e.forEach(function(n){var i=n[0]==="[";i?(t.push.apply(t,r.sort().concat([n])),r=[]):r.push(n)}),t.push.apply(t,r.sort()),t}function Zn(e){return ce({cache:Vn(e.cacheSize),splitModifiers:Yn(e)},Un(e))}var Kn=/\s+/;function Jn(e,t){var r=t.splitModifiers,n=t.getClassGroupId,i=t.getConflictingClassGroupIds,o=new Set;return e.trim().split(Kn).map(function(s){var a=r(s),l=a.modifiers,c=a.hasImportantModifier,d=a.baseClassName,u=a.maybePostfixModifierPosition,p=n(u?d.substring(0,u):d),m=!!u;if(!p){if(!u)return{isTailwindClass:!1,originalClassName:s};if(p=n(d),!p)return{isTailwindClass:!1,originalClassName:s};m=!1}var b=qn(l).join(":"),g=c?b+nr:b;return{isTailwindClass:!0,modifierId:g,classGroupId:p,originalClassName:s,hasPostfixModifier:m}}).reverse().filter(function(s){if(!s.isTailwindClass)return!0;var a=s.modifierId,l=s.classGroupId,c=s.hasPostfixModifier,d=a+l;return o.has(d)?!1:(o.add(d),i(l,c).forEach(function(u){return o.add(a+u)}),!0)}).reverse().map(function(s){return s.originalClassName}).join(" ")}function Xn(){for(var e=arguments.length,t=new Array(e),r=0;r{let n=!1;if(typeof e=="function"&&typeof t=="string"){const i=document.createEvent("HTMLEvents");i.initEvent(t,!1,!0),i.preventDefault=()=>{n=!0},r.unshift(i),r.unshift(t),e.apply(null,r)}return!n},Co=({api:e,props:t,vm:r,state:n})=>()=>{n.leftLength>=0||(n.leftLength=n.leftLength+(n.blockWidth+n.blockMargin)*t.wheelBlocks,r.$refs.insider.style.left=n.leftLength+"px",e.changeState())},ko=({api:e,props:t,vm:r,state:n})=>()=>{n.blockWrapper({item:r,index:n})=>{Mo(e,"before-click")&&(t.currentIndex=n,e("click",r,n))},Do=({state:e})=>()=>{const t=e.blockWrapper;e.showLeft=!(parseInt(e.leftLength,10)>=0),e.showRight=t<=Math.abs(e.leftLength)+e.wrapperWidth},Ao=({api:e,state:t})=>r=>{r.wheelDelta>=0?t.leftLength<0&&e.leftClick():t.blockWrapper>Math.abs(t.leftLength)+t.wrapperWidth&&e.rightClick()},Eo=({props:e,state:t,vm:r})=>()=>{t.wrapperWidth=r.$refs.wrapper.offsetWidth,t.blockWidth=parseInt((1-(e.initBlocks-1)*.02)/e.initBlocks*t.wrapperWidth,10),t.blockMargin=parseInt(t.wrapperWidth*.02,10),t.blockWrapper=e.modelValue.length*t.blockWidth+(e.modelValue.length-1)*t.blockMargin},Po=["state","mouseEvent","rightClick","leftClick","blockClick"],$o=(e,{onMounted:t,reactive:r},{vm:n,parent:i,emit:o})=>{const s={},a=r({leftLength:0,blockWidth:0,blockMargin:0,showLeft:!1,showRight:!1,blockWrapper:0,wrapperWidth:0,currentIndex:-1,offsetWidth:0});return Object.assign(s,{state:a,blockClick:No({emit:o,state:a}),changeState:Do({props:e,state:a}),changeSize:Eo({props:e,vm:n,state:a}),leftClick:Co({api:s,props:e,vm:n,state:a}),mouseEvent:Ao({api:s,props:e,vm:n,state:a}),rightClick:ko({api:s,parent:i,props:e,vm:n,state:a})}),t(s.changeSize),s};var Io={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24","xml:space":"preserve"},zo=E("path",{class:"chevron-left_svg__st0",d:"M17 21c-.2 0-.5-.1-.6-.2l-9.9-8c-.4-.2-.5-.5-.5-.8 0-.3.1-.6.4-.8l9.9-7.9c.4-.4 1.1-.3 1.4.2.4.4.3 1.1-.2 1.4L8.7 12l8.9 7.2c.4.4.5 1 .2 1.4-.3.3-.5.4-.8.4z"},null,-1),Fo=[zo];function Ro(e,t){return j(),ae("svg",Io,[].concat(Fo))}var Oo={render:Ro},Lo=function(){return tt({name:"IconChevronLeft",component:Oo})()},_o={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24","xml:space":"preserve"},jo=E("path",{class:"chevron-right_svg__st0",d:"M7 21c.2 0 .5-.1.6-.2l9.9-8c.2-.2.4-.5.4-.8 0-.3-.1-.6-.4-.8L7.6 3.3c-.4-.4-1.1-.3-1.4.2-.4.4-.3 1.1.2 1.4l8.9 7.2-8.9 7.2c-.4.4-.5 1-.2 1.4.2.2.5.3.8.3z"},null,-1),Uo=[jo];function Bo(e,t){return j(),ae("svg",_o,[].concat(Uo))}var Wo={render:Bo},Ho=function(){return tt({name:"IconChevronRight",component:Wo})()},Go={viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg"},Vo=E("path",{d:"M8 1a7 7 0 1 1 0 14A7 7 0 0 1 8 1Zm0 1a6 6 0 1 0 0 12A6 6 0 0 0 8 2Z"},null,-1),Yo=E("path",{d:"M3.757 12.243a6 6 0 1 0 8.486-8.486 6 6 0 0 0-8.486 8.486Z",fill:"#FFF"},null,-1),qo=[Vo,Yo];function Zo(e,t){return j(),ae("svg",Go,[].concat(qo))}var Ko={render:Zo},Jo=function(){return tt({name:"IconRadio",component:Ko})()};function Xo(e,t){var r=typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r)return(r=r.call(e)).next.bind(r);if(Array.isArray(e)||(r=Qo(e))||t&&e&&typeof e.length=="number"){r&&(e=r);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Qo(e,t){if(e){if(typeof e=="string")return Ct(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Ct(e,t)}}function Ct(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);re==null||e==="undefined",ge=e=>Z(e)?String(e):Nr[It.call(e)]||"object",ut=e=>ge(e)==="object",$=e=>{if(!e||It.call(e)!=="[object Object]")return!1;const t=Mr(e);if(!t)return!0;const r=He.call(t,"constructor")&&t.constructor;return typeof r=="function"&&Et.call(r)===Cr},Ve=e=>typeof e=="number"&&isFinite(e),pt=e=>e-parseFloat(e)>=0,he=e=>ge(e)==="date",ft=(e,t)=>{if(typeof t=="function"){for(const r in e)if(He.call(e,r)&&t(r,e[r])===!1)break}};let q;const ke=(e,t,r)=>{if(!e||!$(e)||!t||typeof t!="string")return;t=t.split(".");let n=e;const a=t.length;if(a>1){const o=r?1:0;for(let i=o;i{if(!e||!$(e)||!t||typeof t!="string")return e;t=t.split(".");const a=e;let o=t.length,i=t[0];if(o>1){o--;let l=a,s,c;for(let d=0;d{const a=(i,l,s,c,d)=>{const u=c.indexOf(s)===0,p=c.split(s),f=p[1]&&p[1].indexOf(".")===0;s===c||u&&f?s!==c&&ft(ke(i,s),g=>{a(i,l,`${s}.${g}`,c)}):t.includes(s)||mt(l,s,ke(i,s),d)},o=(i,l,s,c)=>{const d={};return c?ft(i,u=>l.forEach(p=>a(i,d,u,p,s))):l.forEach(u=>mt(d,u,ke(i,u),s)),d};return $(e)?Array.isArray(t)?o(e,t,r,n):q(r!==!1,{},e):e},Dr=e=>Array.isArray(e)?e.map(t=>kr(t)):e,Ar=(e,t,r,n,a)=>{let o;if(r&&n&&($(n)||(o=Array.isArray(n))))if(o)o=!1,e[t]=Dr(n);else{const i=a&&$(a)?a:{};e[t]=q(r,i,n)}else if(n!==void 0)try{e[t]=n}catch{}};q=function(){const e=arguments,t=e.length;let r=e[0]||{},n=1,a=!1;for(ge(r)==="boolean"&&(a=r,r=e[n]||{},n++),!ut(r)&&ge(r)!=="function"&&(r={}),n===t&&(r=this,n--);n{let e=8;return document.addEventListener&&window.performance&&(e=9,window.atob&&window.matchMedia&&(e=10,!window.attachEvent&&!document.all&&(e=11))),e},Ir=e=>{e.chrome&&~navigator.userAgent.indexOf("Edg")?(e.name="edge",e.edge=!0,delete e.chrome):!document.documentMode&&window.StyleMedia&&(e.name="edge",e.edge=!0)},Rt=typeof window<"u"&&typeof document<"u"&&window.document===document;(()=>{const e={name:void 0,version:void 0,isDoc:typeof document<"u",isMobile:!1,isPC:!0,isNode:typeof window>"u"};if(Rt){const t=/(Android|webOS|iPhone|iPad|iPod|SymbianOS|BlackBerry|Windows Phone)/.test(navigator.userAgent);e.isMobile=t,e.isPC=!t;let r;if(window.chrome&&(window.chrome.webstore||/^Google\b/.test(window.navigator.vendor))?(e.name="chrome",e.chrome=!0,r=navigator.userAgent.match(/chrome\/(\d+)/i),e.version=!!r&&!!r[1]&&parseInt(r[1],10),r=void 0):document.all||document.documentMode?(e.name="ie",e.version=$r(),e.ie=!0):typeof window.InstallTrigger<"u"?(e.name="firefox",e.firefox=!0):Object.prototype.toString.call(window.HTMLElement).indexOf("Constructor")>0?(e.name="safari",e.safari=!0):(window.opr&&window.opr.addons||window.opera)&&(e.name="opera",e.opera=!0),Ir(e),!~["ie","chrome"].indexOf(e.name)){const n=e.name+"/(\\d+)";r=navigator.userAgent.match(new RegExp(n,"i")),e.version=!!r&&!!r[1]&&parseInt(r[1],10),r=void 0}if(e.isDoc){const n=document.body||document.documentElement;["webkit","khtml","moz","ms","o"].forEach(a=>{e["-"+a]=!!n[a+"MatchesSelector"]})}}return e})();const ie=Rt?window.BigInt:global.BigInt;function Re(){return typeof ie=="function"}function te(e){let t=e.toString().trim(),r=t.startsWith("-");r&&(t=t.slice(1)),t=t.replace(/(\.\d*[^0])0*$/,"$1").replace(/\.0*$/,"").replace(/^0+/,""),t.startsWith(".")&&(t="0".concat(t));let n=t||"0",a=n.split("."),o=a[0]||"0",i=a[1]||"0";o==="0"&&i==="0"&&(r=!1);let l=r?"-":"";return{negative:r,negativeStr:l,trimStr:n,integerStr:o,decimalStr:i,fullStr:"".concat(l).concat(n)}}function Ge(e){let t=String(e);return!isNaN(Number(t))&&~t.indexOf("e")}function Pt(e){return typeof e=="number"?!isNaN(e):e?/^\s*-?\d+(\.\d+)?\s*$/.test(e)||/^\s*-?\d+\.\s*$/.test(e)||/^\s*-?\.\d+\s*$/.test(e):!1}function Pe(e){let t=String(e);if(Ge(e)){let r=Number(t.slice(t.indexOf("e-")+2)),n=t.match(/\.(\d+)/);return n!=null&&n[1]&&(r+=n[1].length),r}return~t.indexOf(".")&&Pt(t)?t.length-t.indexOf(".")-1:0}function Ft(e){let t=String(e);if(Ge(e)){if(e>Number.MAX_SAFE_INTEGER)return String(Re()?ie(e).toString():Number.MAX_SAFE_INTEGER);if(e{const i=o.replace(/^0+/,"")||"0";return n(`return BigInt(${i})`)()};if(Pt(r)){const o=te(r);this.negative=o.negative;const i=o.trimStr.split(".");this.integer=ie(i[0]);const l=i[1]||"0";this.decimal=a(l),this.decimalLen=l.length}else this.nan=!0}getDecimalStr(){return this.decimal.toString().padStart(this.decimalLen,"0")}getIntegerStr(){return this.integer.toString()}getMark(){return this.negative?"-":""}alignDecimal(t){const r=`${this.getMark()}${this.getIntegerStr()}${this.getDecimalStr().padEnd(t,"0")}`;return ie(r)}add(t){if(this.isInvalidate())return new re(t);const r=new re(t);if(r.isInvalidate())return this;const n=Math.max(this.getDecimalStr().length,r.getDecimalStr().length),a=r.alignDecimal(n),i=`${this.alignDecimal(n)+a}`,{negativeStr:l,trimStr:s}=te(i),c=`${l}${s.padStart(n+1,"0")}`;return Ye(`${c.slice(0,-n)}.${c.slice(-n)}`)}negate(){const t=new re(this.toString());return t.negative=!t.negative,t}isNaN(){return this.nan}isEmpty(){return this.empty}isInvalidate(){return this.isEmpty()||this.isNaN()}lessEquals(t){return this.add(t.negate().toString()).toNumber()<=0}equals(t){return this.toString()===(t&&t.toString())}toNumber(){return this.isNaN()?NaN:Number(this.toString())}toString(t=!0){return t?this.isInvalidate()?"":te(`${this.getMark()}${this.getIntegerStr()}.${this.getDecimalStr()}`).fullStr:this.origin}}class W{constructor(t=""){if(!t&&t!==0||!String(t).trim()){this.empty=!0;return}this.origin="",this.number=void 0,this.empty=void 0,this.origin=String(t),this.number=Number(t)}negate(){return new W(-this.toNumber())}add(t){if(this.isInvalidate())return new W(t);const r=Number(t);if(isNaN(r))return this;const n=this.number+r;if(nNumber.MAX_SAFE_INTEGER)return new W(Number.MAX_SAFE_INTEGER);const a=Math.max(Pe(r),Pe(this.number));return new W(n.toFixed(a))}isNaN(){return isNaN(this.number)}isEmpty(){return this.empty}isInvalidate(){return this.isEmpty()||this.isNaN()}equals(t){return this.toNumber()===(t&&t.toNumber())}lessEquals(t){return this.add(t.negate().toString()).toNumber()<=0}toNumber(){return this.number}toString(t=!0){return t?this.isInvalidate()?"":Ft(this.number):this.origin}}zt=function(e){Fe.CLS=Re()?re:typeof e=="function"?e:W};function Ot(e,t,r=5){if(e==="")return"";const n=".",{negativeStr:a,integerStr:o,decimalStr:i}=te(e),l=`${n}${i}`,s=`${a}${o}`;if(t>=0){const c=Number(i[t]);if(c>=r&&r!==0){const d=Ye(`${o}${n}${i}`).add(`0.${bt("",t,!0)}${10-c}`);return Ot(a+d.toString(),t,0)}return t===0?s:`${s}${n}${bt(i,t,!0).slice(0,t)}`}return l===".0"?s:`${s}${l}`}const Rr=(e,{secondaryGroupSize:t=3,groupSize:r=0,groupSeparator:n=","})=>{const a=/^-\d+/.test(e);let o=a?e.slice(1):e;const i=t||r;if(r&&o.length>r){let l=o.slice(0,0-r);const s=o.slice(0-r);l=l.replace(new RegExp(`\\B(?=(\\d{${i}})+(?!\\d))`,"g"),n),o=`${l}${n}${s}`}return`${a?"-":""}${o}`},gt=e=>{const t=[];for(let r=0;r{const n=new RegExp(`\\B(?=(\\d{${t}})+(?!\\d))`,"g");return gt(gt(e).replace(n,r))},Fr=(e,t={})=>{const{fraction:r,rounding:n,prefix:a="",decimalSeparator:o=".",suffix:i=""}=t;let l=Ye(e);if(l.isNaN()||!l.toString())return e;l=Ot(l.toString(),r,n),t.zeroize===!1&&l.match(/\./)&&(l=l.replace(/\.?0+$/g,""));const s=l.toString().split(".").slice(0,2).map((c,d)=>d?Pr(c,t):Rr(c,t)).join(o);return`${a}${s}${i}`},zr=(e,t={})=>{const{prefix:r="",suffix:n="",decimalSeparator:a="."}=t;let o=e;return typeof e=="string"&&(o=e.replace(new RegExp(`^${r}(.+)${n}$`),(i,l)=>l).split(a).map(i=>i.replace(/[^\d]/g,"")).join(".")),Number(o)};let qe=function(){return typeof window>"u"?global:window},Lt=function(){return!(typeof window>"u")},Or=qe(),Lr="tcirzywvqlkjhgfbZQG_FLOWHSUBDNIMYREVKCAJxp57XP043891T62-modnaesu",_t=Lr.split("").reverse().join(""),R,P,_r=function(e){return new Uint8Array(new ArrayBuffer(e))},ht=function(e){return Or.crypto.getRandomValues(e)},jt=function(e){!R||R.lengthR.length&&(ht(R),P=0),P+=e},jr=function(e){e===void 0&&(e=21),jt(e-=0);let t="";for(let r=P-e;r{yt[t]=rn(e,t)}),yt};nn(tn);let on=Jr;function an(e){let t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}const ln=/\B([A-Z])/g,sn=an(e=>e.replace(ln,"-$1").toLowerCase()),bt=(e,t,r,n="0")=>{if(typeof e=="string"&&typeof n=="string"&&Ve(t)){let a=e.length-t;if(a>0)return r?e.substr(0,t):e.substr(a,t);{const o=[];for(a=Math.abs(a)/n.length;a>0;a--)o.push(n);const i=o.join("");return r?e+i:i+e}}};on.random;const Bt=[31,28,31,30,31,30,31,31,30,31,30,31],cn=new RegExp("^(\\d{4})(/|-)(((0)?[1-9])|(1[0-2]))((/|-)(((0)?[1-9])|([1-2][0-9])|(3[0-1])))?( ((0)?[0-9]|1[0-9]|20|21|22|23):([0-5]?[0-9])((:([0-5]?[0-9]))?(.([0-9]{1,6}))?)?)?$"),dn=new RegExp("^(((0)?[1-9])|(1[0-2]))(/|-)(((0)?[1-9])|([1-2][0-9])|(3[0-1]))?(/|-)?(\\d{4})( ((0)?[0-9]|1[0-9]|20|21|22|23):([0-5]?[0-9])((:([0-5]?[0-9]))?(.([0-9]{1,6}))?)?)?$"),un=new RegExp("^(\\d{4})-(((0)?[1-9])|(1[0-2]))-(((0)?[1-9])|([1-2][0-9])|(3[0-1]))T(((0)?[0-9]|1[0-9]|20|21|22|23):([0-5]?[0-9])((:([0-5]?[0-9]))?(.([0-9]{1,6}))?)?)?(Z|([+-])((0)?[0-9]|1[0-9]|20|21|22|23):?([0-5]?[0-9]))$"),j={YEAR:9999,MONTH:11,DATE:31,HOUR:23,MINUTE:59,SECOND:59,MILLISECOND:999},pn="-12:00,-11:00,-10:00,-09:30,-08:00,-07:00,-06:00,-05:00,-04:30,-04:00,-03:30,-02:00,-01:00",fn="-00:00,+00:00,+01:00,+02:00,+03:00,+03:30,+04:00,+04:30,+05:00,+05:30,+05:45,+06:00",mn="+06:30,+07:00,+08:00,+09:00,+10:00,+10:30,+11:00,+11:30,+12:00,+12:45,+13:00,+14:00",gn=[].concat(pn.split(","),fn.split(","),mn.split(",")),Ut=e=>e%400===0||e%4===0&&e%100!==0,Ze=({year:e,month:t,date:r,hours:n,minutes:a,seconds:o,milliseconds:i})=>{let l=Bt[t];if(Ut(e)&&t===1&&(l+=1),r<=l)return new Date(e,t,r,n,a,o,i)},hn=e=>{if(e.length===23){const t=Number(e[1]),r=e[3]-1,n=Number(e[9]||1),a=e[15]||0,o=e[17]||0,i=e[20]||0,l=e[22]||0;return Ze({date:n,year:t,hours:a,month:r,seconds:i,minutes:o,milliseconds:l})}},vn=e=>{if(e.length===22){const t=Number(e[12]),r=e[1]-1,n=Number(e[6]||1),a=e[14]||0,o=e[16]||0,i=e[19]||0,l=e[21]||0;return Ze({year:t,month:r,date:n,hours:a,minutes:o,seconds:i,milliseconds:l})}},yn=e=>{if(e.length!==25)return;const t=Number(e[1]),r=e[2]-1,n=Number(e[6]),a=new Date(t,r,n).getTimezoneOffset(),o=e[12]||0,i=e[14]||0,l=e[17]||0,s=e[19]||0;let c=e[20];const d=e[21],u=e[22]||0,p=e[24]||0;let f=Bt[r],g,v;if(Ut(t)&&r===1&&(f+=1),n<=f){if(c==="Z")g=o-a/60,v=i;else{if(c.includes(":")||(c=c.substr(0,3)+":"+c.substr(3)),!gn.includes(c))return;g=d==="+"?o-u-a/60:Number(o)+Number(u)-a/60,v=d==="+"?i-p:Number(i)+Number(p)}return new Date(t,r,n,g,v,l,s)}},De=[[cn,hn],[dn,vn],[un,yn]],bn=e=>{for(let t=0,r=De.length;t0)return De[t][1](n)}},wn=(e,t,r)=>{if(r)switch(r){case"yyyy":case"yy":e[0]=t;break;case"M":case"MM":e[1]=t-1;break;case"d":case"dd":e[2]=t;break;case"h":case"hh":e[3]=t;break;case"m":case"mm":e[4]=t;break;case"s":case"ss":e[5]=t;break;case"S":case"SS":case"SSS":e[6]=t;break}},xn=(e,t)=>{const r=[0,-1,0,0,0,0];if(e.length!==t.length)return r;let n=0,a=0;for(let o=0,i=e.length;oisNaN(e)||er,Sn=({year:e,month:t,date:r,hours:n,minutes:a,seconds:o,milliseconds:i})=>B(e,0,j.YEAR)||B(t,0,j.MONTH)||B(r,0,j.DATE)||B(n,0,j.HOUR)||B(a,0,j.MINUTE)||B(o,0,j.SECOND)||B(i,0,j.MILLISECOND),Tn=(e,t)=>{if(typeof t=="string"){const r=xn(e,t),n=Number(r[0]),a=Number(r[1]),o=Number(r[2]||1),i=Number(r[3]||0),l=Number(r[4]||0),s=Number(r[5]||0),c=Number(r[6]||0);return Sn({year:n,month:a,date:o,hours:i,minutes:l,seconds:s,milliseconds:c})?void 0:Ze({year:n,date:o,month:a,minutes:l,hours:i,milliseconds:c,seconds:s})}else return bn(e)},Le=(e,t,r)=>{let n;if(Ve(e)?n=new Date(e):typeof e=="string"&&(n=Tn(e,t)),r){const a=r&&Le(r)||new Date(1,1,1,0,0,0);return n&&n{if(!he(e)||!pt(t)||!pt(r))return;const n=-t*60,a=-r*60,o=e.getTime()+n*6e4;return new Date(o-a*6e4)},Cn="date,datetime,time,time-select,week,month,year,years,yearrange,daterange,monthrange,timerange,datetimerange,dates",se={Day:"day",Date:"date",Dates:"dates",Year:"year",Years:"years",YearRange:"yearrange",PanelYearNum:12,Month:"month",Week:"week",Normal:"normal",Today:"today",PreMonth:"pre-month",NextMonth:"next-month",YearI18n:"ui.datepicker.year",List:[38,40,37,39],YearObj:{38:-4,40:4,37:-1,39:1},WeekObj:{38:-1,40:1,37:-1,39:1},DayObj:{38:-7,40:7,37:-1,39:1},Aviailable:"available",Default:"default",Current:"current",InRange:"in-range",StartDate:"start-date",EndDate:"end-date",Selected:"selected",Disabled:"disabled",Range:"range",fullMonths:"January,February,March,April,May,June,July,August,September,October,November,December".split(","),fullWeeks:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],MonhtList:["jan","feb","mar","apr","may","jun","jul","aug","sep","oct","nov","dec"],Weeks:["sun","mon","tue","wed","thu","fri","sat"],PlacementMap:{left:"bottom-start",center:"bottom",right:"bottom-end"},TriggerTypes:Cn.split(","),DateFormats:{year:"yyyy",years:"yyyy",yearrange:"yyyy",month:"yyyy-MM",time:"HH:mm:ss",week:"yyyywWW",date:"yyyy-MM-dd",timerange:"HH:mm:ss",monthrange:"yyyy-MM",daterange:"yyyy-MM-dd",datetime:"yyyy-MM-dd HH:mm:ss",datetimerange:"yyyy-MM-dd HH:mm:ss"},Time:"time",TimeRange:"timerange",IconTime:"icon-time",IconDate:"icon-Calendar",DateRange:"daterange",DateTimeRange:"datetimerange",MonthRange:"monthrange",TimeSelect:"time-select",TimesTamp:"timestamp",DateTime:"datetime",SelectbaleRange:"selectableRange",Start:"09:00",End:"18:00",Step:"00:30",CompareOne:"-1:-1",CompareHundred:"100:100",selClass:".selected",queryClass:".tiny-picker-panel__content",disableClass:".time-select-item:not(.disabled)",defaultClass:".default",Qurtyli:"li",MappingKeyCode:{40:1,38:-1},DatePicker:"DatePicker",TimePicker:"TimePicker"},A={},Ke=["\\d\\d?","\\d{3}","\\d{4}"],I=Ke[0],Nn=Ke[1],kn=Ke[2],Q="[^\\s]+",Wt=/\[([^]*?)\]/gm,wt=()=>{},Dn={shortDate:"M/D/yy",mediumDate:"MMM d, yyyy",longDate:"MMMM d, yyyy",fullDate:"dddd, MMMM d, yyyy",default:"ddd MMM dd yyyy HH:mm:ss",shortTime:"HH:mm",mediumTime:"HH:mm:ss",longTime:"HH:mm:ss.SSS"},Ht=(e,t)=>{let r=[];for(let n=0,a=e.length;n(t,r,n)=>{const a=n[e].indexOf(r.charAt(0).toUpperCase()+r.substr(1).toLowerCase());~a&&(t.month=a)},M=(e,t)=>{for(e=String(e),t=t||2;e.lengthe.replace(/[|\\{()[^$+*?.-]/g,"\\$&"),Vt=/d{1,4}|M{1,4}|yy(?:yy)?|S{1,3}|Do|ZZ|([HhMsDm])\1?|[aA]|"[^"]*"|'[^']*'/g,Gt=se.fullWeeks,Yt=se.fullMonths,$n=Ht(Yt,3),In=Ht(Gt,3),En=["th","st","nd","rd"];A.i18n={dayNames:Gt,monthNames:Yt,dayNamesShort:In,monthNamesShort:$n,amPm:["am","pm"],doFn:e=>e+En[e%10>3?0:(e-e%10!==10)*e%10]};const St={D:e=>e.getDay(),DD:e=>M(e.getDay()),Do:(e,t)=>t.doFn(e.getDate()),d:e=>e.getDate(),dd:e=>M(e.getDate()),ddd:(e,t)=>t.dayNamesShort[e.getDay()],dddd:(e,t)=>t.dayNames[e.getDay()],M:e=>e.getMonth()+1,MM:e=>M(e.getMonth()+1),MMM:(e,t)=>t.monthNamesShort[e.getMonth()],MMMM:(e,t)=>t.monthNames[e.getMonth()],yy:e=>M(String(e.getFullYear()),4).substr(2),yyyy:e=>M(e.getFullYear(),4),h:e=>e.getHours()%12||12,hh:e=>M(e.getHours()%12||12),H:e=>e.getHours(),HH:e=>M(e.getHours()),m:e=>e.getMinutes(),mm:e=>M(e.getMinutes()),s:e=>e.getSeconds(),ss:e=>M(e.getSeconds()),S:e=>Math.round(e.getMilliseconds()/100),SS:e=>M(Math.round(e.getMilliseconds()/10),2),SSS:e=>M(e.getMilliseconds(),3),a:(e,t)=>e.getHours()<12?t.amPm[0]:t.amPm[1],A:(e,t)=>e.getHours()<12?t.amPm[0].toUpperCase():t.amPm[1].toUpperCase(),ZZ:e=>{const t=e.getTimezoneOffset();return(t>0?"-":"+")+M(Math.floor(Math.abs(t)/60)*100+Math.abs(t)%60,4)}},F={d:[I,(e,t)=>{e.day=t}],Do:[I+Q,(e,t)=>{e.day=parseInt(t,10)}],M:[I,(e,t)=>{e.month=t-1}],yy:[I,(e,t)=>{const n=Number(String(new Date().getFullYear()).substr(0,2));e.year=String(t>68?n-1:n)+t}],h:[I,(e,t)=>{e.hour=t}],m:[I,(e,t)=>{e.minute=t}],s:[I,(e,t)=>{e.second=t}],yyyy:[kn,(e,t)=>{e.year=t}],S:["\\d",(e,t)=>{e.millisecond=t*100}],SS:["\\d{2}",(e,t)=>{e.millisecond=t*10}],SSS:[Nn,(e,t)=>{e.millisecond=t}],D:[I,wt],ddd:[Q,wt],MMM:[Q,xt("monthNamesShort")],MMMM:[Q,xt("monthNames")],a:[Q,(e,t,r)=>{const n=t.toLowerCase();n===r.amPm[0]?e.isPm=!1:n===r.amPm[1]&&(e.isPm=!0)}],ZZ:["[^\\s]*?[\\+\\-]\\d\\d:?\\d\\d|[^\\s]*?Z",(e,t)=>{let r=String(t).match(/([+-]|\d\d)/gi),n;r&&(n=Number(r[1]*60)+parseInt(r[2],10),e.timezoneOffset=r[0]==="+"?n:-n)}]},Rn=["A","DD","dd","mm","hh","MM","ss","hh","H","HH"];A.masks=Dn;F.dddd=F.ddd;Rn.forEach(e=>{e==="MM"?F[e]=F[e.substr(0,1)]:F[e]=F[e.substr(0,1).toLowerCase()]});A.format=(e,t,r)=>{const n=r||A.i18n;if(typeof e=="number"&&(e=new Date(e)),!he(e)||isNaN(e.getTime()))throw new Error("Invalid Date in fecha.format");t=A.masks[t]||t||A.masks.default;let a=[];return t=t.replace(Wt,(o,i)=>(a.push(i),"@@@")),t=t.replace(Vt,o=>o in St?St[o](e,n):o.slice(1,o.length-1)),t.replace(/@@@/g,()=>a.shift())};const Pn=(e,t)=>{let r=[],n=An(e).replace(Vt,a=>{if(F[a]){const o=F[a];return t.push(o[1]),"("+o[0]+")"}return a});return n=n.replace(/@@@/g,()=>r.shift()),n},Fn=e=>{let t;const r=new Date;if(Z(e.timezoneOffset)){const{year:n,month:a,day:o,hour:i,minute:l,second:s,millisecond:c}=e;t=new Date(n||r.getFullYear(),a||0,o||1,i||0,l||0,s||0,c||0)}else{e.minute=Number(e.minute||0)-Number(e.timezoneOffset);const{year:n,month:a,day:o,hour:i,minute:l,second:s,millisecond:c}=e;t=new Date(Date.UTC(n||r.getFullYear(),a||0,o||1,i||0,l||0,s||0,c||0))}return t};A.parse=(e,t,r)=>{const n=r||A.i18n;if(typeof t!="string")throw new TypeError("Invalid format in fecha.parse");if(t=A.masks[t]||t,e.length>1e3)return null;let a={},o=[];t=t.replace(Wt,(s,c)=>"@@@");const i=Pn(t,o),l=e.match(new RegExp(i,"i"));if(!l)return null;for(let s=1,c=l.length;s({dayNamesShort:Tt.map(t=>e(`ui.datepicker.weeks.${t}`)),dayNames:Tt.map(t=>e(`ui.datepicker.weeks.${t}`)),monthNamesShort:Mt.map(t=>e(`ui.datepicker.months.${t}`)),monthNames:Mt.map((t,r)=>e(`ui.datepicker.month${r+1}`)),amPm:["am","pm"]}),_n=function(e){return!(Z(e)||isNaN(new Date(e).getTime())||Array.isArray(e))},jn=e=>_n(e)?new Date(e):null,Bn=(e,t,r)=>(e=jn(e),e?zn.format(e,t||On,Ln(r)):"");function Y(){return Y=Object.assign?Object.assign.bind():function(e){for(var t=1;t1?t-1:0),n=1;n=-12&&t<=12?t:r};function Yn(e){return function(t){var r=Y({},Gn(t),{NumberFormat:Vn(t.NumberFormat),DbTimezone:Ae(t.DbTimezone),Timezone:Ae(t.Timezone)}),n={getFormatConfig:function(){return r},setFormatConfig:function(o){Object.assign(r,o)},getNumberFormat:function(){return r.NumberFormat},getDateFormat:function(){return{DateTimeFormat:r.DateTimeFormat,TimeFormat:r.TimeFormat,Timezone:r.Timezone,DateFormat:r.DateFormat,DbTimezone:r.DbTimezone}},formatDate:function(o,i){if(Z(o))return o;var l=he(o)?o:Le(o),s=r.DbTimezone,c=o.match&&o.match(er),d=i===!1||arguments[2]===!1;return c&&(s=Ae(o),l=Le(o.replace("T"," ").slice(0,-5))),d||(l=this.getDateWithNewTimezone(l,s,r.Timezone)),he(l)?Bn(l,i||r.DateFormat,e):null},formatNumber:function(o,i){return Fr(o,Y({},r.NumberFormat,i))},recoverNumber:function(o,i){return zr(o,Y({},r.NumberFormat,i))},getDateWithNewTimezone:function(o,i,l){return i=i===0?i:i||r.DbTimezone,l=l===0?l:l||r.Timezone,Mn(o,i,l)}};return n}}z.use;var _e=z.t;z.i18n;z.initI18n;z.extend;z.zhCN;z.enUS;var qn=z.language,Zn=Yn(_e);Y({},Qt,{language:qn,globalization:Zn});function ve(){return ve=Object.assign?Object.assign.bind():function(e){for(var t=1;t"u"&&Object.defineProperty(t,"$emitter",{get:function(){return r}})},oo=function(t){var r=function(a,o,i,l){var s=a.subTree&&a.subTree.children||a.children;Array.isArray(s)&&s.forEach(function(c){var d=c.type&&c.type.componentName,u=c.component;d===o?(u.emit(i,l),u.$emitter&&u.$emitter.emit(i,l)):r(c,o,i,l)})};return{dispatch:function(a,o,i){for(var l=t.parent||t.root,s=l.type&&l.type.componentName;l&&(!s||s!==a);)l=l.parent,l&&(s=l.type&&l.type.componentName);if(l){var c,d;(c=l).emit.apply(c,[o].concat(i)),l.$emitter&&(d=l.$emitter).emit.apply(d,[o].concat(i))}},broadcast:function(a,o,i){r(t,a,o,i)}}},ye=function(t){if(t&&t.parent)return t.parent.type.name==="AsyncComponentWrapper"&&t.parent.parent?t.parent.parent:t.parent},ao=function(t){return function(r){var n=ye(t),a=0,o=function(l){return{level:a,vm:V({},l),el:l.vnode.el,options:l.type}};if(typeof r!="function")return n?o(n):{};for(a++;n&&!r(o(n));)n=ye(n),a++}},io=function(t){return function(r){if(typeof r!="function")return or(t.subTree);var n=1,a=function o(i){if(i){var l=i.children||i.dynamicChildren,s=n++;if(Array.isArray(l)){if(l.some(function(c){return c.component&&r({level:s,vm:V({},c.component),el:c.el,options:c.type,isLevel1:!0})}))return;l.forEach(function(c){return o(c)})}}};a(t.subTree)}},lo=/^on[A-Z]/,so=function(t){var r={},n={};for(var a in t){var o=t[a];if(lo.test(a)&&typeof o=="function"){n[sn(a.substr(2))]=o;continue}r[a]=o}return{$attrs:r,$listeners:n}},or=function(t){var r=[];if(r.refs={},t){var n=t.dynamicChildren||t.children;Array.isArray(n)?n.forEach(function(a){if(a.component){var o=V({},a.component);r.push(o),a.props.ref&&(r.refs[a.props.ref]=o)}}):t.component&&r.push(V({},t.component))}return r},$e=function(t,r,n,a){var o=function(s){if(typeof a=="function"&&a(s))return 1;Object.defineProperty(t,s,{configurable:!0,enumerable:!0,get:function(){return r[n][s]},set:function(d){return r[n][s]=d}})};for(var i in r[n])o(i);return t},Ct=function(t){return t.indexOf("_")===0},ar=function(t,r){return $e(t,r,"setupState",null),$e(t,r,"props",Ct),$e(t,r,"ctx",Ct),t},V=function e(t,r,n){n===void 0&&(n=null);var a=so(r.attrs),o=a.$attrs,i=a.$listeners,l=r.$emitter;l||(nr(r),l=r.$emitter);var s=function(){for(var u=arguments.length,p=new Array(u),f=0;f"u"&&ye(o),w=y?V({},y):o.parent?V({},o.parent):null,ce=function(C){var K,J=C.name,_=C.value,pe=y?y.ctx:o==null||(K=o.parent)==null?void 0:K.ctx;pe[J]=_,w[J]=_},de=function(C){Object.defineProperties(m,C),Object.defineProperties(o==null?void 0:o.ctx,C)},ue=function(C){w&&Object.defineProperties(w,C)};return hr(function(){return ar(m,o)}),vr(function(){return co(o,T)}),{framework:"vue3",vm:m,emit:x,emitter:tr,route:s,router:c,dispatch:p,broadcast:f,parentHandler:g,childrenHandler:v,i18n:d,refs:T,slots:o==null?void 0:o.slots,scopedSlots:o==null?void 0:o.slots,attrs:t.attrs,parent:w,nextTick:$t,constants:o==null?void 0:o.props._constants,mode:r,isPCMode:r==="pc",isMobileMode:r==="mobile",service:i==null?void 0:i.$service,getService:function(){return i==null?void 0:i.$getService(m)},setParentAttribute:ce,defineInstanceProperties:de,defineParentInstanceProperties:ue}},et=ur,ir=function(t){var r=[];return Object.keys(t).forEach(function(n){return t[n]&&r.push(n)}),r.join(" ")},po=function(t){var r=[];return t.forEach(function(n){typeof n=="string"?r.push(n):typeof n=="object"&&r.push(ir(n))}),r.join(" ")},fo=function(t){if(!t||Array.isArray(t)&&!t.length)return"";var r=[];return t.forEach(function(n){n&&(typeof n=="string"?r.push(n):Array.isArray(n)?r.push(po(n)):typeof n=="object"&&r.push(ir(n)))}),r.join(" ")};function mo(){for(var e=0,t,r,n="";ee&&(t=0,n=r,r=new Map)}return{get:function(i){var l=r.get(i);if(l!==void 0)return l;if((l=n.get(i))!==void 0)return a(i,l),l},set:function(i,l){r.has(i)?r.set(i,l):a(i,l)}}}var tt="-";function ho(e){var t=yo(e);function r(a){var o=a.split(tt);return o[0]===""&&o.length!==1&&o.shift(),sr(o,t)||vo(a)}function n(a){return e.conflictingClassGroups[a]||[]}return{getClassGroupId:r,getConflictingClassGroupIds:n}}function sr(e,t){var r;if(e.length===0)return t.classGroupId;var n=e[0],a=t.nextPart.get(n),o=a?sr(e.slice(1),a):void 0;if(o)return o;if(t.validators.length!==0){var i=e.join(tt);return(r=t.validators.find(function(l){var s=l.validator;return s(i)}))==null?void 0:r.classGroupId}}var Nt=/^\[(.+)\]$/;function vo(e){if(Nt.test(e)){var t=Nt.exec(e)[1],r=t==null?void 0:t.substring(0,t.indexOf(":"));if(r)return"arbitrary.."+r}}function yo(e){var t=e.theme,r=e.prefix,n={nextPart:new Map,validators:[]},a=wo(Object.entries(e.classGroups),r);return a.forEach(function(o){var i=o[0],l=o[1];Be(l,n,i,t)}),n}function Be(e,t,r,n){e.forEach(function(a){if(typeof a=="string"){var o=a===""?t:kt(t,a);o.classGroupId=r;return}if(typeof a=="function"){if(bo(a)){Be(a(n),t,r,n);return}t.validators.push({validator:a,classGroupId:r});return}Object.entries(a).forEach(function(i){var l=i[0],s=i[1];Be(s,kt(t,l),r,n)})})}function kt(e,t){var r=e;return t.split(tt).forEach(function(n){r.nextPart.has(n)||r.nextPart.set(n,{nextPart:new Map,validators:[]}),r=r.nextPart.get(n)}),r}function bo(e){return e.isThemeGetter}function wo(e,t){return t?e.map(function(r){var n=r[0],a=r[1],o=a.map(function(i){return typeof i=="string"?t+i:typeof i=="object"?Object.fromEntries(Object.entries(i).map(function(l){var s=l[0],c=l[1];return[t+s,c]})):i});return[n,o]}):e}var cr="!";function xo(e){var t=e.separator||":";return function(n){for(var a=0,o=[],i=0,l=0;l{let n=!1;if(typeof e=="function"&&typeof t=="string"){const a=document.createEvent("HTMLEvents");a.initEvent(t,!1,!0),a.preventDefault=()=>{n=!0},r.unshift(a),r.unshift(t),e.apply(null,r)}return!n},Yo=({api:e,props:t,refs:r,state:n})=>()=>{n.leftLength>=0||(n.leftLength=n.leftLength+(n.blockWidth+n.blockMargin)*t.wheelBlocks,r.insider.style.left=n.leftLength+"px",e.changeState())},qo=({api:e,props:t,refs:r,state:n})=>()=>{n.blockWrapper({item:r,index:n})=>{Go(e,"before-click")&&(t.currentIndex=n,e("click",r,n))},Ko=({state:e})=>()=>{const t=e.blockWrapper;e.showLeft=!(parseInt(e.leftLength,10)>=0),e.showRight=t<=Math.abs(e.leftLength)+e.wrapperWidth},Jo=({api:e,state:t})=>r=>{r.wheelDelta>=0?t.leftLength<0&&e.leftClick():t.blockWrapper>Math.abs(t.leftLength)+t.wrapperWidth&&e.rightClick()},Xo=({props:e,state:t,refs:r})=>()=>{t.wrapperWidth=r.wrapper.offsetWidth,t.blockWidth=parseInt((1-(e.initBlocks-1)*.02)/e.initBlocks*t.wrapperWidth,10),t.blockMargin=parseInt(t.wrapperWidth*.02,10),t.blockWrapper=e.modelValue.length*t.blockWidth+(e.modelValue.length-1)*t.blockMargin},Qo=["state","mouseEvent","rightClick","leftClick","blockClick"],ea=(e,{onMounted:t,reactive:r},{refs:n,parent:a,emit:o})=>{const i={},l=r({leftLength:0,blockWidth:0,blockMargin:0,showLeft:!1,showRight:!1,blockWrapper:0,wrapperWidth:0,currentIndex:-1,offsetWidth:0});return Object.assign(i,{state:l,blockClick:Zo({emit:o,state:l}),changeState:Ko({props:e,state:l}),changeSize:Xo({props:e,refs:n,state:l}),leftClick:Yo({api:i,props:e,refs:n,state:l}),mouseEvent:Jo({api:i,props:e,refs:n,state:l}),rightClick:qo({api:i,parent:a,props:e,refs:n,state:l})}),t(i.changeSize),i};var ta={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24","xml:space":"preserve"},ra=D("path",{class:"chevron-left_svg__st0",d:"M17 21c-.2 0-.5-.1-.6-.2l-9.9-8c-.4-.2-.5-.5-.5-.8 0-.3.1-.6.4-.8l9.9-7.9c.4-.4 1.1-.3 1.4.2.4.4.3 1.1-.2 1.4L8.7 12l8.9 7.2c.4.4.5 1 .2 1.4-.3.3-.5.4-.8.4z"},null,-1),na=[ra];function oa(e,t){return H(),ae("svg",ta,na)}var aa={render:oa},ia=function(){return nt({name:"IconChevronLeft",component:aa})()},la={xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24","xml:space":"preserve"},sa=D("path",{class:"chevron-right_svg__st0",d:"M7 21c.2 0 .5-.1.6-.2l9.9-8c.2-.2.4-.5.4-.8 0-.3-.1-.6-.4-.8L7.6 3.3c-.4-.4-1.1-.3-1.4.2-.4.4-.3 1.1.2 1.4l8.9 7.2-8.9 7.2c-.4.4-.5 1-.2 1.4.2.2.5.3.8.3z"},null,-1),ca=[sa];function da(e,t){return H(),ae("svg",la,ca)}var ua={render:da},pa=function(){return nt({name:"IconChevronRight",component:ua})()},fa={viewBox:"0 0 16 16",xmlns:"http://www.w3.org/2000/svg"},ma=D("path",{d:"M8 1a7 7 0 1 1 0 14A7 7 0 0 1 8 1Zm0 1a6 6 0 1 0 0 12A6 6 0 0 0 8 2Z"},null,-1),ga=D("path",{d:"M3.757 12.243a6 6 0 1 0 8.486-8.486 6 6 0 0 0-8.486 8.486Z",fill:"#FFF"},null,-1),ha=[ma,ga];function va(e,t){return H(),ae("svg",fa,ha)}var ya={render:va},ba=function(){return nt({name:"IconRadio",component:ya})()};function wa(e,t){var r=typeof Symbol<"u"&&e[Symbol.iterator]||e["@@iterator"];if(r)return(r=r.call(e)).next.bind(r);if(Array.isArray(e)||(r=xa(e))||t&&e&&typeof e.length=="number"){r&&(e=r);var n=0;return function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function xa(e,t){if(e){if(typeof e=="string")return At(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);if(r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set")return Array.from(e);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return At(e,t)}}function At(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r',5),mt=[gt],q1=o({name:"EyeOffOutline",render:function(s,l){return n(),e("svg",xt,mt)}}),vt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},$t=t("path",{d:"M255.66 112c-77.94 0-157.89 45.11-220.83 135.33a16 16 0 0 0-.27 17.77C82.92 340.8 161.8 400 255.66 400c92.84 0 173.34-59.38 221.79-135.25a16.14 16.14 0 0 0 0-17.47C428.89 172.28 347.8 112 255.66 112z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),ft=t("circle",{cx:"256",cy:"256",r:"80",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Ct=[$t,ft],W1=o({name:"EyeOutline",render:function(s,l){return n(),e("svg",vt,Ct)}}),Mt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},jt=t("path",{d:"M112 320c0-93 124-165 96-272c66 0 192 96 192 272a144 144 0 0 1-288 0z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Ot=t("path",{d:"M320 368c0 57.71-32 80-64 80s-64-22.29-64-80s40-86 32-128c42 0 96 70.29 96 128z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),zt=[jt,Ot],N1=o({name:"FlameOutline",render:function(s,l){return n(),e("svg",Mt,zt)}}),Bt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Lt=t("path",{d:"M256 448a32 32 0 0 1-18-5.57c-78.59-53.35-112.62-89.93-131.39-112.8c-40-48.75-59.15-98.8-58.61-153C48.63 114.52 98.46 64 159.08 64c44.08 0 74.61 24.83 92.39 45.51a6 6 0 0 0 9.06 0C278.31 88.81 308.84 64 352.92 64c60.62 0 110.45 50.52 111.08 112.64c.54 54.21-18.63 104.26-58.61 153c-18.77 22.87-52.8 59.45-131.39 112.8a32 32 0 0 1-18 5.56z",fill:"currentColor"},null,-1),Ht=[Lt],G1=o({name:"Heart",render:function(s,l){return n(),e("svg",Bt,Ht)}}),Vt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},yt=t("path",{d:"M352.92 80C288 80 256 144 256 144s-32-64-96.92-64c-52.76 0-94.54 44.14-95.08 96.81c-1.1 109.33 86.73 187.08 183 252.42a16 16 0 0 0 18 0c96.26-65.34 184.09-143.09 183-252.42c-.54-52.67-42.32-96.81-95.08-96.81z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),At=[yt],J1=o({name:"HeartOutline",render:function(s,l){return n(),e("svg",Vt,At)}}),bt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},St=t("path",{d:"M80 212v236a16 16 0 0 0 16 16h96V328a24 24 0 0 1 24-24h80a24 24 0 0 1 24 24v136h96a16 16 0 0 0 16-16V212",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Tt=t("path",{d:"M480 256L266.89 52c-5-5.28-16.69-5.34-21.78 0L32 256",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Dt=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M400 179V64h-48v69"},null,-1),Pt=[St,Tt,Dt],K1=o({name:"HomeOutline",render:function(s,l){return n(),e("svg",bt,Pt)}}),Et={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},It=t("rect",{x:"48",y:"80",width:"416",height:"352",rx:"48",ry:"48",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"32"},null,-1),Rt=t("circle",{cx:"336",cy:"176",r:"32",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Ut=t("path",{d:"M304 335.79l-90.66-90.49a32 32 0 0 0-43.87-1.3L48 352",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Ft=t("path",{d:"M224 432l123.34-123.34a32 32 0 0 1 43.11-2L464 368",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),qt=[It,Rt,Ut,Ft],Q1=o({name:"ImageOutline",render:function(s,l){return n(),e("svg",Et,qt)}}),Wt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Nt=t("path",{d:"M434.8 137.65l-149.36-68.1c-16.19-7.4-42.69-7.4-58.88 0L77.3 137.65c-17.6 8-17.6 21.09 0 29.09l148 67.5c16.89 7.7 44.69 7.7 61.58 0l148-67.5c17.52-8 17.52-21.1-.08-29.09z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Gt=t("path",{d:"M160 308.52l-82.7 37.11c-17.6 8-17.6 21.1 0 29.1l148 67.5c16.89 7.69 44.69 7.69 61.58 0l148-67.5c17.6-8 17.6-21.1 0-29.1l-79.94-38.47",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Jt=t("path",{d:"M160 204.48l-82.8 37.16c-17.6 8-17.6 21.1 0 29.1l148 67.49c16.89 7.7 44.69 7.7 61.58 0l148-67.49c17.7-8 17.7-21.1.1-29.1L352 204.48",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Kt=[Nt,Gt,Jt],X1=o({name:"LayersOutline",render:function(s,l){return n(),e("svg",Wt,Kt)}}),Qt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Xt=t("path",{d:"M321.89 171.42C233 114 141 155.22 56 65.22c-19.8-21-8.3 235.5 98.1 332.7c77.79 71 197.9 63.08 238.4-5.92s18.28-163.17-70.61-220.58z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Yt=t("path",{d:"M173 253c86 81 175 129 292 147",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Zt=[Xt,Yt],Y1=o({name:"LeafOutline",render:function(s,l){return n(),e("svg",Qt,Zt)}}),to={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},oo=t("path",{d:"M208 352h-64a96 96 0 0 1 0-192h64",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"36"},null,-1),no=t("path",{d:"M304 160h64a96 96 0 0 1 0 192h-64",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"36"},null,-1),eo=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"36",d:"M163.29 256h187.42"},null,-1),ro=[oo,no,eo],Z1=o({name:"LinkOutline",render:function(s,l){return n(),e("svg",to,ro)}}),so={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},lo=t("path",{d:"M336 208v-95a80 80 0 0 0-160 0v95",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),io=t("rect",{x:"96",y:"208",width:"320",height:"272",rx:"48",ry:"48",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),co=[lo,io],te=o({name:"LockClosedOutline",render:function(s,l){return n(),e("svg",so,co)}}),ho={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},ao=t("path",{d:"M336 112a80 80 0 0 0-160 0v96",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),wo=t("rect",{x:"96",y:"208",width:"320",height:"272",rx:"48",ry:"48",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),uo=[ao,wo],oe=o({name:"LockOpenOutline",render:function(s,l){return n(),e("svg",ho,uo)}}),ko={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},_o=t("path",{d:"M304 336v40a40 40 0 0 1-40 40H104a40 40 0 0 1-40-40V136a40 40 0 0 1 40-40h152c22.09 0 48 17.91 48 40v40",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),po=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M368 336l80-80l-80-80"},null,-1),xo=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M176 256h256"},null,-1),go=[_o,po,xo],ne=o({name:"LogOutOutline",render:function(s,l){return n(),e("svg",ko,go)}}),mo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},vo=t("path",{d:"M102.41 32C62.38 32 32 64.12 32 103.78v304.45C32 447.86 64.38 480 104.41 480h303.2c40 0 72.39-32.14 72.39-71.77v-3.11c-1.35-.56-115.47-48.57-174.5-76.7c-39.82 48.57-91.18 78-144.5 78c-90.18 0-120.8-78.22-78.1-129.72c9.31-11.22 25.15-21.94 49.73-28c38.45-9.36 99.64 5.85 157 24.61a309.41 309.41 0 0 0 25.46-61.67H138.34V194h91.13v-31.83H119.09v-17.75h110.38V99s0-7.65 7.82-7.65h44.55v53H391v17.75H281.84V194h89.08a359.41 359.41 0 0 1-37.72 94.43c27 9.69 49.31 18.88 67.39 24.89c60.32 20 77.23 22.45 79.41 22.7V103.78C480 64.12 447.6 32 407.61 32h-305.2zM152 274.73q-5.81.06-11.67.63c-11.3 1.13-32.5 6.07-44.09 16.23c-34.74 30-13.94 84.93 56.37 84.93c40.87 0 81.71-25.9 113.79-67.37c-41.36-20-77-34.85-114.4-34.42z",fill:"currentColor"},null,-1),$o=[vo],ee=o({name:"LogoAlipay",render:function(s,l){return n(),e("svg",mo,$o)}}),fo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Co=i('',6),Mo=[Co],re=o({name:"MegaphoneOutline",render:function(s,l){return n(),e("svg",fo,Mo)}}),jo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Oo=i('',9),zo=[Oo],se=o({name:"OptionsOutline",render:function(s,l){return n(),e("svg",jo,zo)}}),Bo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Lo=t("path",{d:"M53.12 199.94l400-151.39a8 8 0 0 1 10.33 10.33l-151.39 400a8 8 0 0 1-15-.34l-67.4-166.09a16 16 0 0 0-10.11-10.11L53.46 215a8 8 0 0 1-.34-15.06z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Ho=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M460 52L227 285"},null,-1),Vo=[Lo,Ho],le=o({name:"PaperPlaneOutline",render:function(s,l){return n(),e("svg",Bo,Vo)}}),yo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Ao=t("path",{d:"M402 168c-2.93 40.67-33.1 72-66 72s-63.12-31.32-66-72c-3-42.31 26.37-72 66-72s69 30.46 66 72z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),bo=t("path",{d:"M336 304c-65.17 0-127.84 32.37-143.54 95.41c-2.08 8.34 3.15 16.59 11.72 16.59h263.65c8.57 0 13.77-8.25 11.72-16.59C463.85 335.36 401.18 304 336 304z",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),So=t("path",{d:"M200 185.94c-2.34 32.48-26.72 58.06-53 58.06s-50.7-25.57-53-58.06C91.61 152.15 115.34 128 147 128s55.39 24.77 53 57.94z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),To=t("path",{d:"M206 306c-18.05-8.27-37.93-11.45-59-11.45c-52 0-102.1 25.85-114.65 76.2c-1.65 6.66 2.53 13.25 9.37 13.25H154",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Do=[Ao,bo,So,To],ie=o({name:"PeopleOutline",render:function(s,l){return n(),e("svg",yo,Do)}}),Po={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Eo=t("path",{d:"M376 144c-3.92 52.87-44 96-88 96s-84.15-43.12-88-96c-4-55 35-96 88-96s92 42 88 96z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Io=t("path",{d:"M288 304c-87 0-175.3 48-191.64 138.6c-2 10.92 4.21 21.4 15.65 21.4H464c11.44 0 17.62-10.48 15.65-21.4C463.3 352 375 304 288 304z",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Ro=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M88 176v112"},null,-1),Uo=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M144 232H32"},null,-1),Fo=[Eo,Io,Ro,Uo],ce=o({name:"PersonAddOutline",render:function(s,l){return n(),e("svg",Po,Fo)}}),qo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Wo=t("path",{d:"M344 144c-3.92 52.87-44 96-88 96s-84.15-43.12-88-96c-4-55 35-96 88-96s92 42 88 96z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),No=t("path",{d:"M256 304c-87 0-175.3 48-191.64 138.6C62.39 453.52 68.57 464 80 464h352c11.44 0 17.62-10.48 15.65-21.4C431.3 352 343 304 256 304z",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Go=[Wo,No],he=o({name:"PersonOutline",render:function(s,l){return n(),e("svg",qo,Go)}}),Jo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Ko=t("path",{d:"M376 144c-3.92 52.87-44 96-88 96s-84.15-43.12-88-96c-4-55 35-96 88-96s92 42 88 96z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Qo=t("path",{d:"M288 304c-87 0-175.3 48-191.64 138.6c-2 10.92 4.21 21.4 15.65 21.4H464c11.44 0 17.62-10.48 15.65-21.4C463.3 352 375 304 288 304z",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Xo=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M144 232H32"},null,-1),Yo=[Ko,Qo,Xo],de=o({name:"PersonRemoveOutline",render:function(s,l){return n(),e("svg",Jo,Yo)}}),Zo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},tn=t("path",{d:"M336 336h40a40 40 0 0 0 40-40V88a40 40 0 0 0-40-40H136a40 40 0 0 0-40 40v208a40 40 0 0 0 40 40h40",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),on=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M176 240l80-80l80 80"},null,-1),nn=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M256 464V176"},null,-1),en=[tn,on,nn],ae=o({name:"PushOutline",render:function(s,l){return n(),e("svg",Zo,en)}}),rn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},sn=t("path",{d:"M456.69 421.39L362.6 327.3a173.81 173.81 0 0 0 34.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 0 0 327.3 362.6l94.09 94.09a25 25 0 0 0 35.3-35.3zM97.92 222.72a124.8 124.8 0 1 1 124.8 124.8a124.95 124.95 0 0 1-124.8-124.8z",fill:"currentColor"},null,-1),ln=[sn],we=o({name:"Search",render:function(s,l){return n(),e("svg",rn,ln)}}),cn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},hn=t("path",{d:"M262.29 192.31a64 64 0 1 0 57.4 57.4a64.13 64.13 0 0 0-57.4-57.4zM416.39 256a154.34 154.34 0 0 1-1.53 20.79l45.21 35.46a10.81 10.81 0 0 1 2.45 13.75l-42.77 74a10.81 10.81 0 0 1-13.14 4.59l-44.9-18.08a16.11 16.11 0 0 0-15.17 1.75A164.48 164.48 0 0 1 325 400.8a15.94 15.94 0 0 0-8.82 12.14l-6.73 47.89a11.08 11.08 0 0 1-10.68 9.17h-85.54a11.11 11.11 0 0 1-10.69-8.87l-6.72-47.82a16.07 16.07 0 0 0-9-12.22a155.3 155.3 0 0 1-21.46-12.57a16 16 0 0 0-15.11-1.71l-44.89 18.07a10.81 10.81 0 0 1-13.14-4.58l-42.77-74a10.8 10.8 0 0 1 2.45-13.75l38.21-30a16.05 16.05 0 0 0 6-14.08c-.36-4.17-.58-8.33-.58-12.5s.21-8.27.58-12.35a16 16 0 0 0-6.07-13.94l-38.19-30A10.81 10.81 0 0 1 49.48 186l42.77-74a10.81 10.81 0 0 1 13.14-4.59l44.9 18.08a16.11 16.11 0 0 0 15.17-1.75A164.48 164.48 0 0 1 187 111.2a15.94 15.94 0 0 0 8.82-12.14l6.73-47.89A11.08 11.08 0 0 1 213.23 42h85.54a11.11 11.11 0 0 1 10.69 8.87l6.72 47.82a16.07 16.07 0 0 0 9 12.22a155.3 155.3 0 0 1 21.46 12.57a16 16 0 0 0 15.11 1.71l44.89-18.07a10.81 10.81 0 0 1 13.14 4.58l42.77 74a10.8 10.8 0 0 1-2.45 13.75l-38.21 30a16.05 16.05 0 0 0-6.05 14.08c.33 4.14.55 8.3.55 12.47z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),dn=[hn],ue=o({name:"SettingsOutline",render:function(s,l){return n(),e("svg",cn,dn)}}),an={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},wn=t("path",{d:"M336 192h40a40 40 0 0 1 40 40v192a40 40 0 0 1-40 40H136a40 40 0 0 1-40-40V232a40 40 0 0 1 40-40h40",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),un=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M336 128l-80-80l-80 80"},null,-1),kn=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M256 321V48"},null,-1),_n=[wn,un,kn],ke=o({name:"ShareOutline",render:function(s,l){return n(),e("svg",an,_n)}}),pn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},xn=i('',5),gn=[xn],_e=o({name:"ShareSocialOutline",render:function(s,l){return n(),e("svg",pn,gn)}}),mn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},vn=i('',6),$n=[vn],pe=o({name:"TrashOutline",render:function(s,l){return n(),e("svg",mn,$n)}}),fn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Cn=t("path",{d:"M374.79 308.78L457.5 367a16 16 0 0 0 22.5-14.62V159.62A16 16 0 0 0 457.5 145l-82.71 58.22A16 16 0 0 0 368 216.3v79.4a16 16 0 0 0 6.79 13.08z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Mn=t("path",{d:"M268 384H84a52.15 52.15 0 0 1-52-52V180a52.15 52.15 0 0 1 52-52h184.48A51.68 51.68 0 0 1 320 179.52V332a52.15 52.15 0 0 1-52 52z",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),jn=[Cn,Mn],xe=o({name:"VideocamOutline",render:function(s,l){return n(),e("svg",fn,jn)}}),On={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},zn=i('',5),Bn=[zn],ge=o({name:"WalkOutline",render:function(s,l){return n(),e("svg",On,Bn)}}),Ln={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Hn=t("rect",{x:"48",y:"144",width:"416",height:"288",rx:"48",ry:"48",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"32"},null,-1),Vn=t("path",{d:"M411.36 144v-30A50 50 0 0 0 352 64.9L88.64 109.85A50 50 0 0 0 48 159v49",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"32"},null,-1),yn=t("path",{d:"M368 320a32 32 0 1 1 32-32a32 32 0 0 1-32 32z",fill:"currentColor"},null,-1),An=[Hn,Vn,yn],me=o({name:"WalletOutline",render:function(s,l){return n(),e("svg",Ln,An)}}),bn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Sn=i('',1),Tn=[Sn],ve=o({name:"ArrowBarDown",render:function(s,l){return n(),e("svg",bn,Tn)}}),Dn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Pn=i('',1),En=[Pn],$e=o({name:"ArrowBarToUp",render:function(s,l){return n(),e("svg",Dn,En)}}),In={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Rn=t("g",{fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},[t("path",{d:"M9 7H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2v-3"}),t("path",{d:"M9 15h3l8.5-8.5a1.5 1.5 0 0 0-3-3L9 12v3"}),t("path",{d:"M16 5l3 3"})],-1),Un=[Rn],fe=o({name:"Edit",render:function(s,l){return n(),e("svg",In,Un)}}),Fn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},qn=i('',1),Wn=[qn],Ce=o({name:"Hash",render:function(s,l){return n(),e("svg",Fn,Wn)}}),Nn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Gn=i('',1),Jn=[Gn],Me=o({name:"Trash",render:function(s,l){return n(),e("svg",Nn,Jn)}}),Kn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Qn=t("path",{d:"M14.71 6.71a.996.996 0 0 0-1.41 0L8.71 11.3a.996.996 0 0 0 0 1.41l4.59 4.59a.996.996 0 1 0 1.41-1.41L10.83 12l3.88-3.88c.39-.39.38-1.03 0-1.41z",fill:"currentColor"},null,-1),Xn=[Qn],je=o({name:"ChevronLeftRound",render:function(s,l){return n(),e("svg",Kn,Xn)}}),Yn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Zn=t("path",{d:"M9.37 5.51A7.35 7.35 0 0 0 9.1 7.5c0 4.08 3.32 7.4 7.4 7.4c.68 0 1.35-.09 1.99-.27A7.014 7.014 0 0 1 12 19c-3.86 0-7-3.14-7-7c0-2.93 1.81-5.45 4.37-6.49zM12 3a9 9 0 1 0 9 9c0-.46-.04-.92-.1-1.36a5.389 5.389 0 0 1-4.4 2.26a5.403 5.403 0 0 1-3.14-9.8c-.44-.06-.9-.1-1.36-.1z",fill:"currentColor"},null,-1),t1=[Zn],Oe=o({name:"DarkModeOutlined",render:function(s,l){return n(),e("svg",Yn,t1)}}),o1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},n1=t("path",{d:"M2 17c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm0-5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm0-5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1z",fill:"currentColor"},null,-1),e1=[n1],ze=o({name:"DehazeRound",render:function(s,l){return n(),e("svg",o1,e1)}}),r1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},s1=t("path",{d:"M12 9c1.65 0 3 1.35 3 3s-1.35 3-3 3s-3-1.35-3-3s1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5s5-2.24 5-5s-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58a.996.996 0 0 0-1.41 0a.996.996 0 0 0 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41L5.99 4.58zm12.37 12.37a.996.996 0 0 0-1.41 0a.996.996 0 0 0 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0a.996.996 0 0 0 0-1.41l-1.06-1.06zm1.06-10.96a.996.996 0 0 0 0-1.41a.996.996 0 0 0-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06zM7.05 18.36a.996.996 0 0 0 0-1.41a.996.996 0 0 0-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06z",fill:"currentColor"},null,-1),l1=[s1],Be=o({name:"LightModeOutlined",render:function(s,l){return n(),e("svg",r1,l1)}}),i1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},c1=t("path",{d:"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2z",fill:"currentColor"},null,-1),h1=[c1],Le=o({name:"MoreHorizFilled",render:function(s,l){return n(),e("svg",i1,h1)}}),d1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},a1=t("path",{d:"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2s-2 .9-2 2s.9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2z",fill:"currentColor"},null,-1),w1=[a1],He=o({name:"MoreVertOutlined",render:function(s,l){return n(),e("svg",d1,w1)}}),u1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},k1=t("path",{d:"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57l-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z",fill:"currentColor"},null,-1),_1=[k1],Ve=o({name:"ThumbDownOutlined",render:function(s,l){return n(),e("svg",u1,_1)}}),p1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},x1=t("path",{opacity:".3",d:"M3 12v2h9l-1.34 5.34L15 15V5H6z",fill:"currentColor"},null,-1),g1=t("path",{d:"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57l-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z",fill:"currentColor"},null,-1),m1=[x1,g1],ye=o({name:"ThumbDownTwotone",render:function(s,l){return n(),e("svg",p1,m1)}}),v1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},$1=t("path",{d:"M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57l.03-.32c0-.41-.17-.79-.44-1.06L14.17 1L7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z",fill:"currentColor"},null,-1),f1=[$1],Ae=o({name:"ThumbUpOutlined",render:function(s,l){return n(),e("svg",v1,f1)}}),C1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},M1=t("path",{opacity:".3",d:"M21 12v-2h-9l1.34-5.34L9 9v10h9z",fill:"currentColor"},null,-1),j1=t("path",{d:"M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57l.03-.32c0-.41-.17-.79-.44-1.06L14.17 1L7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z",fill:"currentColor"},null,-1),O1=[M1,j1],be=o({name:"ThumbUpTwotone",render:function(s,l){return n(),e("svg",C1,O1)}});export{Z1 as $,L1 as A,A1 as B,T1 as C,He as D,W1 as E,N1 as F,F1 as G,K1 as H,Q1 as I,de as J,D1 as K,Y1 as L,re as M,ke as N,E1 as O,ie as P,I1 as Q,ce as R,we as S,Me as T,P1 as U,xe as V,me as W,S1 as X,se as Y,X1 as Z,B1 as _,ue as a,R1 as a0,ee as a1,fe as a2,ze as a3,je as a4,Be as a5,Oe as a6,Ce as b,ne as c,U1 as d,Ae as e,be as f,Ve as g,ye as h,$e as i,ve as j,Le as k,J1 as l,G1 as m,b1 as n,y1 as o,V1 as p,_e as q,le as r,ge as s,H1 as t,pe as u,te as v,oe as w,ae as x,q1 as y,he as z}; +import{d as o,e as n,f as e,j as t,z as i}from"./@vue-CQsYufSu.js";const c={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},h=t("path",{d:"M320 254.27c-4.5 51-40.12 80-80.55 80s-67.34-35.82-63.45-80s37.12-80 77.55-80s70.33 36 66.45 80z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),d=t("path",{d:"M319.77 415.77c-28.56 12-47.28 14.5-79.28 14.5c-97.2 0-169-78.8-160.49-176s94.31-176 191.51-176C381 78.27 441.19 150 432.73 246c-6.31 71.67-52.11 92.32-76.09 88.07c-22.56-4-41.18-24.42-37.74-63.5l8.48-96.25",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),a=[h,d],B1=o({name:"AtOutline",render:function(s,l){return n(),e("svg",c,a)}}),w={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},u=t("path",{d:"M216.08 192v143.85a40.08 40.08 0 0 0 80.15 0l.13-188.55a67.94 67.94 0 1 0-135.87 0v189.82a95.51 95.51 0 1 0 191 0V159.74",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-miterlimit":"10","stroke-width":"32"},null,-1),k=[u],L1=o({name:"AttachOutline",render:function(s,l){return n(),e("svg",w,k)}}),_={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},p=t("circle",{fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32",cx:"256",cy:"56",r:"40"},null,-1),x=t("path",{fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32",d:"M199.3 295.62h0l-30.4 172.2a24 24 0 0 0 19.5 27.8a23.76 23.76 0 0 0 27.6-19.5l21-119.9v.2s5.2-32.5 17.5-32.5h3.1c12.5 0 17.5 32.5 17.5 32.5v-.1l21 119.9a23.92 23.92 0 1 0 47.1-8.4l-30.4-172.2l-4.9-29.7c-2.9-18.1-4.2-47.6.5-59.7c4-10.4 14.13-14.2 23.2-14.2H424a24 24 0 0 0 0-48H88a24 24 0 0 0 0 48h92.5c9.23 0 19.2 3.8 23.2 14.2c4.7 12.1 3.4 41.6.5 59.7z"},null,-1),g=[p,x],H1=o({name:"BodyOutline",render:function(s,l){return n(),e("svg",_,g)}}),m={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},v=t("path",{d:"M400 480a16 16 0 0 1-10.63-4L256 357.41L122.63 476A16 16 0 0 1 96 464V96a64.07 64.07 0 0 1 64-64h192a64.07 64.07 0 0 1 64 64v368a16 16 0 0 1-16 16z",fill:"currentColor"},null,-1),$=[v],V1=o({name:"Bookmark",render:function(s,l){return n(),e("svg",m,$)}}),f={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},C=t("path",{d:"M352 48H160a48 48 0 0 0-48 48v368l144-128l144 128V96a48 48 0 0 0-48-48z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),M=[C],y1=o({name:"BookmarkOutline",render:function(s,l){return n(),e("svg",f,M)}}),j={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},O=t("path",{d:"M128 80V64a48.14 48.14 0 0 1 48-48h224a48.14 48.14 0 0 1 48 48v368l-80-64",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"32"},null,-1),z=t("path",{d:"M320 96H112a48.14 48.14 0 0 0-48 48v352l152-128l152 128V144a48.14 48.14 0 0 0-48-48z",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"32"},null,-1),B=[O,z],A1=o({name:"BookmarksOutline",render:function(s,l){return n(),e("svg",j,B)}}),L={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},H=t("path",{d:"M408 64H104a56.16 56.16 0 0 0-56 56v192a56.16 56.16 0 0 0 56 56h40v80l93.72-78.14a8 8 0 0 1 5.13-1.86H408a56.16 56.16 0 0 0 56-56V120a56.16 56.16 0 0 0-56-56z",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"32"},null,-1),V=[H],b1=o({name:"ChatboxOutline",render:function(s,l){return n(),e("svg",L,V)}}),y={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},A=t("path",{d:"M87.48 380c1.2-4.38-1.43-10.47-3.94-14.86a42.63 42.63 0 0 0-2.54-3.8a199.81 199.81 0 0 1-33-110C47.64 139.09 140.72 48 255.82 48C356.2 48 440 117.54 459.57 209.85a199 199 0 0 1 4.43 41.64c0 112.41-89.49 204.93-204.59 204.93c-18.31 0-43-4.6-56.47-8.37s-26.92-8.77-30.39-10.11a31.14 31.14 0 0 0-11.13-2.07a30.7 30.7 0 0 0-12.08 2.43L81.5 462.78a15.92 15.92 0 0 1-4.66 1.22a9.61 9.61 0 0 1-9.58-9.74a15.85 15.85 0 0 1 .6-3.29z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-miterlimit":"10","stroke-width":"32"},null,-1),b=t("circle",{cx:"160",cy:"256",r:"32",fill:"currentColor"},null,-1),S=t("circle",{cx:"256",cy:"256",r:"32",fill:"currentColor"},null,-1),T=t("circle",{cx:"352",cy:"256",r:"32",fill:"currentColor"},null,-1),D=[A,b,S,T],S1=o({name:"ChatbubbleEllipsesOutline",render:function(s,l){return n(),e("svg",y,D)}}),P={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},E=t("path",{d:"M431 320.6c-1-3.6 1.2-8.6 3.3-12.2a33.68 33.68 0 0 1 2.1-3.1A162 162 0 0 0 464 215c.3-92.2-77.5-167-173.7-167c-83.9 0-153.9 57.1-170.3 132.9a160.7 160.7 0 0 0-3.7 34.2c0 92.3 74.8 169.1 171 169.1c15.3 0 35.9-4.6 47.2-7.7s22.5-7.2 25.4-8.3a26.44 26.44 0 0 1 9.3-1.7a26 26 0 0 1 10.1 2l56.7 20.1a13.52 13.52 0 0 0 3.9 1a8 8 0 0 0 8-8a12.85 12.85 0 0 0-.5-2.7z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-miterlimit":"10","stroke-width":"32"},null,-1),I=t("path",{d:"M66.46 232a146.23 146.23 0 0 0 6.39 152.67c2.31 3.49 3.61 6.19 3.21 8s-11.93 61.87-11.93 61.87a8 8 0 0 0 2.71 7.68A8.17 8.17 0 0 0 72 464a7.26 7.26 0 0 0 2.91-.6l56.21-22a15.7 15.7 0 0 1 12 .2c18.94 7.38 39.88 12 60.83 12A159.21 159.21 0 0 0 284 432.11",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-miterlimit":"10","stroke-width":"32"},null,-1),R=[E,I],T1=o({name:"ChatbubblesOutline",render:function(s,l){return n(),e("svg",P,R)}}),U={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},F=t("path",{d:"M256 48C141.31 48 48 141.31 48 256s93.31 208 208 208s208-93.31 208-208S370.69 48 256 48zm108.25 138.29l-134.4 160a16 16 0 0 1-12 5.71h-.27a16 16 0 0 1-11.89-5.3l-57.6-64a16 16 0 1 1 23.78-21.4l45.29 50.32l122.59-145.91a16 16 0 0 1 24.5 20.58z",fill:"currentColor"},null,-1),q=[F],D1=o({name:"CheckmarkCircle",render:function(s,l){return n(),e("svg",U,q)}}),W={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},N=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M464 128L240 384l-96-96"},null,-1),G=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M144 384l-96-96"},null,-1),J=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M368 128L232 284"},null,-1),K=[N,G,J],P1=o({name:"CheckmarkDoneOutline",render:function(s,l){return n(),e("svg",W,K)}}),Q={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},X=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M416 128L192 384l-96-96"},null,-1),Y=[X],E1=o({name:"CheckmarkOutline",render:function(s,l){return n(),e("svg",Q,Y)}}),Z={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},tt=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M368 368L144 144"},null,-1),ot=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M368 144L144 368"},null,-1),nt=[tt,ot],I1=o({name:"CloseOutline",render:function(s,l){return n(),e("svg",Z,nt)}}),et={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},rt=t("path",{d:"M320 336h76c55 0 100-21.21 100-75.6s-53-73.47-96-75.6C391.11 99.74 329 48 256 48c-69 0-113.44 45.79-128 91.2c-60 5.7-112 35.88-112 98.4S70 336 136 336h56",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),st=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M192 400.1l64 63.9l64-63.9"},null,-1),lt=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M256 224v224.03"},null,-1),it=[rt,st,lt],R1=o({name:"CloudDownloadOutline",render:function(s,l){return n(),e("svg",et,it)}}),ct={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},ht=t("path",{d:"M448 256c0-106-86-192-192-192S64 150 64 256s86 192 192 192s192-86 192-192z",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),dt=t("path",{d:"M350.67 150.93l-117.2 46.88a64 64 0 0 0-35.66 35.66l-46.88 117.2a8 8 0 0 0 10.4 10.4l117.2-46.88a64 64 0 0 0 35.66-35.66l46.88-117.2a8 8 0 0 0-10.4-10.4zM256 280a24 24 0 1 1 24-24a24 24 0 0 1-24 24z",fill:"currentColor"},null,-1),at=[ht,dt],U1=o({name:"CompassOutline",render:function(s,l){return n(),e("svg",ct,at)}}),wt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},ut=t("path",{d:"M448 341.37V170.61A32 32 0 0 0 432.11 143l-152-88.46a47.94 47.94 0 0 0-48.24 0L79.89 143A32 32 0 0 0 64 170.61v170.76A32 32 0 0 0 79.89 369l152 88.46a48 48 0 0 0 48.24 0l152-88.46A32 32 0 0 0 448 341.37z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),kt=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M69 153.99l187 110l187-110"},null,-1),_t=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M256 463.99v-200"},null,-1),pt=[ut,kt,_t],F1=o({name:"CubeOutline",render:function(s,l){return n(),e("svg",wt,pt)}}),xt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},gt=i('',5),mt=[gt],q1=o({name:"EyeOffOutline",render:function(s,l){return n(),e("svg",xt,mt)}}),vt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},$t=t("path",{d:"M255.66 112c-77.94 0-157.89 45.11-220.83 135.33a16 16 0 0 0-.27 17.77C82.92 340.8 161.8 400 255.66 400c92.84 0 173.34-59.38 221.79-135.25a16.14 16.14 0 0 0 0-17.47C428.89 172.28 347.8 112 255.66 112z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),ft=t("circle",{cx:"256",cy:"256",r:"80",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Ct=[$t,ft],W1=o({name:"EyeOutline",render:function(s,l){return n(),e("svg",vt,Ct)}}),Mt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},jt=t("path",{d:"M112 320c0-93 124-165 96-272c66 0 192 96 192 272a144 144 0 0 1-288 0z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Ot=t("path",{d:"M320 368c0 57.71-32 80-64 80s-64-22.29-64-80s40-86 32-128c42 0 96 70.29 96 128z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),zt=[jt,Ot],N1=o({name:"FlameOutline",render:function(s,l){return n(),e("svg",Mt,zt)}}),Bt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Lt=t("path",{d:"M256 448a32 32 0 0 1-18-5.57c-78.59-53.35-112.62-89.93-131.39-112.8c-40-48.75-59.15-98.8-58.61-153C48.63 114.52 98.46 64 159.08 64c44.08 0 74.61 24.83 92.39 45.51a6 6 0 0 0 9.06 0C278.31 88.81 308.84 64 352.92 64c60.62 0 110.45 50.52 111.08 112.64c.54 54.21-18.63 104.26-58.61 153c-18.77 22.87-52.8 59.45-131.39 112.8a32 32 0 0 1-18 5.56z",fill:"currentColor"},null,-1),Ht=[Lt],G1=o({name:"Heart",render:function(s,l){return n(),e("svg",Bt,Ht)}}),Vt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},yt=t("path",{d:"M352.92 80C288 80 256 144 256 144s-32-64-96.92-64c-52.76 0-94.54 44.14-95.08 96.81c-1.1 109.33 86.73 187.08 183 252.42a16 16 0 0 0 18 0c96.26-65.34 184.09-143.09 183-252.42c-.54-52.67-42.32-96.81-95.08-96.81z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),At=[yt],J1=o({name:"HeartOutline",render:function(s,l){return n(),e("svg",Vt,At)}}),bt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},St=t("path",{d:"M80 212v236a16 16 0 0 0 16 16h96V328a24 24 0 0 1 24-24h80a24 24 0 0 1 24 24v136h96a16 16 0 0 0 16-16V212",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Tt=t("path",{d:"M480 256L266.89 52c-5-5.28-16.69-5.34-21.78 0L32 256",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Dt=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M400 179V64h-48v69"},null,-1),Pt=[St,Tt,Dt],K1=o({name:"HomeOutline",render:function(s,l){return n(),e("svg",bt,Pt)}}),Et={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},It=t("rect",{x:"48",y:"80",width:"416",height:"352",rx:"48",ry:"48",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"32"},null,-1),Rt=t("circle",{cx:"336",cy:"176",r:"32",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Ut=t("path",{d:"M304 335.79l-90.66-90.49a32 32 0 0 0-43.87-1.3L48 352",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Ft=t("path",{d:"M224 432l123.34-123.34a32 32 0 0 1 43.11-2L464 368",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),qt=[It,Rt,Ut,Ft],Q1=o({name:"ImageOutline",render:function(s,l){return n(),e("svg",Et,qt)}}),Wt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Nt=t("path",{d:"M434.8 137.65l-149.36-68.1c-16.19-7.4-42.69-7.4-58.88 0L77.3 137.65c-17.6 8-17.6 21.09 0 29.09l148 67.5c16.89 7.7 44.69 7.7 61.58 0l148-67.5c17.52-8 17.52-21.1-.08-29.09z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Gt=t("path",{d:"M160 308.52l-82.7 37.11c-17.6 8-17.6 21.1 0 29.1l148 67.5c16.89 7.69 44.69 7.69 61.58 0l148-67.5c17.6-8 17.6-21.1 0-29.1l-79.94-38.47",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Jt=t("path",{d:"M160 204.48l-82.8 37.16c-17.6 8-17.6 21.1 0 29.1l148 67.49c16.89 7.7 44.69 7.7 61.58 0l148-67.49c17.7-8 17.7-21.1.1-29.1L352 204.48",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Kt=[Nt,Gt,Jt],X1=o({name:"LayersOutline",render:function(s,l){return n(),e("svg",Wt,Kt)}}),Qt={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Xt=t("path",{d:"M321.89 171.42C233 114 141 155.22 56 65.22c-19.8-21-8.3 235.5 98.1 332.7c77.79 71 197.9 63.08 238.4-5.92s18.28-163.17-70.61-220.58z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Yt=t("path",{d:"M173 253c86 81 175 129 292 147",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Zt=[Xt,Yt],Y1=o({name:"LeafOutline",render:function(s,l){return n(),e("svg",Qt,Zt)}}),to={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},oo=t("path",{d:"M208 352h-64a96 96 0 0 1 0-192h64",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"36"},null,-1),no=t("path",{d:"M304 160h64a96 96 0 0 1 0 192h-64",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"36"},null,-1),eo=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"36",d:"M163.29 256h187.42"},null,-1),ro=[oo,no,eo],Z1=o({name:"LinkOutline",render:function(s,l){return n(),e("svg",to,ro)}}),so={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},lo=t("path",{d:"M336 208v-95a80 80 0 0 0-160 0v95",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),io=t("rect",{x:"96",y:"208",width:"320",height:"272",rx:"48",ry:"48",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),co=[lo,io],te=o({name:"LockClosedOutline",render:function(s,l){return n(),e("svg",so,co)}}),ho={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},ao=t("path",{d:"M336 112a80 80 0 0 0-160 0v96",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),wo=t("rect",{x:"96",y:"208",width:"320",height:"272",rx:"48",ry:"48",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),uo=[ao,wo],oe=o({name:"LockOpenOutline",render:function(s,l){return n(),e("svg",ho,uo)}}),ko={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},_o=t("path",{d:"M304 336v40a40 40 0 0 1-40 40H104a40 40 0 0 1-40-40V136a40 40 0 0 1 40-40h152c22.09 0 48 17.91 48 40v40",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),po=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M368 336l80-80l-80-80"},null,-1),xo=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M176 256h256"},null,-1),go=[_o,po,xo],ne=o({name:"LogOutOutline",render:function(s,l){return n(),e("svg",ko,go)}}),mo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},vo=t("path",{d:"M102.41 32C62.38 32 32 64.12 32 103.78v304.45C32 447.86 64.38 480 104.41 480h303.2c40 0 72.39-32.14 72.39-71.77v-3.11c-1.35-.56-115.47-48.57-174.5-76.7c-39.82 48.57-91.18 78-144.5 78c-90.18 0-120.8-78.22-78.1-129.72c9.31-11.22 25.15-21.94 49.73-28c38.45-9.36 99.64 5.85 157 24.61a309.41 309.41 0 0 0 25.46-61.67H138.34V194h91.13v-31.83H119.09v-17.75h110.38V99s0-7.65 7.82-7.65h44.55v53H391v17.75H281.84V194h89.08a359.41 359.41 0 0 1-37.72 94.43c27 9.69 49.31 18.88 67.39 24.89c60.32 20 77.23 22.45 79.41 22.7V103.78C480 64.12 447.6 32 407.61 32h-305.2zM152 274.73q-5.81.06-11.67.63c-11.3 1.13-32.5 6.07-44.09 16.23c-34.74 30-13.94 84.93 56.37 84.93c40.87 0 81.71-25.9 113.79-67.37c-41.36-20-77-34.85-114.4-34.42z",fill:"currentColor"},null,-1),$o=[vo],ee=o({name:"LogoAlipay",render:function(s,l){return n(),e("svg",mo,$o)}}),fo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Co=i('',6),Mo=[Co],re=o({name:"MegaphoneOutline",render:function(s,l){return n(),e("svg",fo,Mo)}}),jo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Oo=i('',9),zo=[Oo],se=o({name:"OptionsOutline",render:function(s,l){return n(),e("svg",jo,zo)}}),Bo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Lo=t("path",{d:"M53.12 199.94l400-151.39a8 8 0 0 1 10.33 10.33l-151.39 400a8 8 0 0 1-15-.34l-67.4-166.09a16 16 0 0 0-10.11-10.11L53.46 215a8 8 0 0 1-.34-15.06z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Ho=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M460 52L227 285"},null,-1),Vo=[Lo,Ho],le=o({name:"PaperPlaneOutline",render:function(s,l){return n(),e("svg",Bo,Vo)}}),yo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Ao=t("path",{d:"M402 168c-2.93 40.67-33.1 72-66 72s-63.12-31.32-66-72c-3-42.31 26.37-72 66-72s69 30.46 66 72z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),bo=t("path",{d:"M336 304c-65.17 0-127.84 32.37-143.54 95.41c-2.08 8.34 3.15 16.59 11.72 16.59h263.65c8.57 0 13.77-8.25 11.72-16.59C463.85 335.36 401.18 304 336 304z",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),So=t("path",{d:"M200 185.94c-2.34 32.48-26.72 58.06-53 58.06s-50.7-25.57-53-58.06C91.61 152.15 115.34 128 147 128s55.39 24.77 53 57.94z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),To=t("path",{d:"M206 306c-18.05-8.27-37.93-11.45-59-11.45c-52 0-102.1 25.85-114.65 76.2c-1.65 6.66 2.53 13.25 9.37 13.25H154",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Do=[Ao,bo,So,To],ie=o({name:"PeopleOutline",render:function(s,l){return n(),e("svg",yo,Do)}}),Po={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Eo=t("path",{d:"M376 144c-3.92 52.87-44 96-88 96s-84.15-43.12-88-96c-4-55 35-96 88-96s92 42 88 96z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Io=t("path",{d:"M288 304c-87 0-175.3 48-191.64 138.6c-2 10.92 4.21 21.4 15.65 21.4H464c11.44 0 17.62-10.48 15.65-21.4C463.3 352 375 304 288 304z",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Ro=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M88 176v112"},null,-1),Uo=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M144 232H32"},null,-1),Fo=[Eo,Io,Ro,Uo],ce=o({name:"PersonAddOutline",render:function(s,l){return n(),e("svg",Po,Fo)}}),qo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Wo=t("path",{d:"M344 144c-3.92 52.87-44 96-88 96s-84.15-43.12-88-96c-4-55 35-96 88-96s92 42 88 96z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),No=t("path",{d:"M256 304c-87 0-175.3 48-191.64 138.6C62.39 453.52 68.57 464 80 464h352c11.44 0 17.62-10.48 15.65-21.4C431.3 352 343 304 256 304z",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Go=[Wo,No],he=o({name:"PersonOutline",render:function(s,l){return n(),e("svg",qo,Go)}}),Jo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Ko=t("path",{d:"M376 144c-3.92 52.87-44 96-88 96s-84.15-43.12-88-96c-4-55 35-96 88-96s92 42 88 96z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Qo=t("path",{d:"M288 304c-87 0-175.3 48-191.64 138.6c-2 10.92 4.21 21.4 15.65 21.4H464c11.44 0 17.62-10.48 15.65-21.4C463.3 352 375 304 288 304z",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),Xo=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M144 232H32"},null,-1),Yo=[Ko,Qo,Xo],de=o({name:"PersonRemoveOutline",render:function(s,l){return n(),e("svg",Jo,Yo)}}),Zo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},tn=t("path",{d:"M336 336h40a40 40 0 0 0 40-40V88a40 40 0 0 0-40-40H136a40 40 0 0 0-40 40v208a40 40 0 0 0 40 40h40",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),on=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M176 240l80-80l80 80"},null,-1),nn=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M256 464V176"},null,-1),en=[tn,on,nn],ae=o({name:"PushOutline",render:function(s,l){return n(),e("svg",Zo,en)}}),rn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},sn=t("path",{d:"M456.69 421.39L362.6 327.3a173.81 173.81 0 0 0 34.84-104.58C397.44 126.38 319.06 48 222.72 48S48 126.38 48 222.72s78.38 174.72 174.72 174.72A173.81 173.81 0 0 0 327.3 362.6l94.09 94.09a25 25 0 0 0 35.3-35.3zM97.92 222.72a124.8 124.8 0 1 1 124.8 124.8a124.95 124.95 0 0 1-124.8-124.8z",fill:"currentColor"},null,-1),ln=[sn],we=o({name:"Search",render:function(s,l){return n(),e("svg",rn,ln)}}),cn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},hn=t("path",{d:"M262.29 192.31a64 64 0 1 0 57.4 57.4a64.13 64.13 0 0 0-57.4-57.4zM416.39 256a154.34 154.34 0 0 1-1.53 20.79l45.21 35.46a10.81 10.81 0 0 1 2.45 13.75l-42.77 74a10.81 10.81 0 0 1-13.14 4.59l-44.9-18.08a16.11 16.11 0 0 0-15.17 1.75A164.48 164.48 0 0 1 325 400.8a15.94 15.94 0 0 0-8.82 12.14l-6.73 47.89a11.08 11.08 0 0 1-10.68 9.17h-85.54a11.11 11.11 0 0 1-10.69-8.87l-6.72-47.82a16.07 16.07 0 0 0-9-12.22a155.3 155.3 0 0 1-21.46-12.57a16 16 0 0 0-15.11-1.71l-44.89 18.07a10.81 10.81 0 0 1-13.14-4.58l-42.77-74a10.8 10.8 0 0 1 2.45-13.75l38.21-30a16.05 16.05 0 0 0 6-14.08c-.36-4.17-.58-8.33-.58-12.5s.21-8.27.58-12.35a16 16 0 0 0-6.07-13.94l-38.19-30A10.81 10.81 0 0 1 49.48 186l42.77-74a10.81 10.81 0 0 1 13.14-4.59l44.9 18.08a16.11 16.11 0 0 0 15.17-1.75A164.48 164.48 0 0 1 187 111.2a15.94 15.94 0 0 0 8.82-12.14l6.73-47.89A11.08 11.08 0 0 1 213.23 42h85.54a11.11 11.11 0 0 1 10.69 8.87l6.72 47.82a16.07 16.07 0 0 0 9 12.22a155.3 155.3 0 0 1 21.46 12.57a16 16 0 0 0 15.11 1.71l44.89-18.07a10.81 10.81 0 0 1 13.14 4.58l42.77 74a10.8 10.8 0 0 1-2.45 13.75l-38.21 30a16.05 16.05 0 0 0-6.05 14.08c.33 4.14.55 8.3.55 12.47z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),dn=[hn],ue=o({name:"SettingsOutline",render:function(s,l){return n(),e("svg",cn,dn)}}),an={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},wn=t("path",{d:"M336 192h40a40 40 0 0 1 40 40v192a40 40 0 0 1-40 40H136a40 40 0 0 1-40-40V232a40 40 0 0 1 40-40h40",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),un=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M336 128l-80-80l-80 80"},null,-1),kn=t("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32",d:"M256 321V48"},null,-1),_n=[wn,un,kn],ke=o({name:"ShareOutline",render:function(s,l){return n(),e("svg",an,_n)}}),pn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},xn=i('',5),gn=[xn],_e=o({name:"ShareSocialOutline",render:function(s,l){return n(),e("svg",pn,gn)}}),mn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},vn=i('',6),$n=[vn],pe=o({name:"TrashOutline",render:function(s,l){return n(),e("svg",mn,$n)}}),fn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Cn=t("path",{d:"M374.79 308.78L457.5 367a16 16 0 0 0 22.5-14.62V159.62A16 16 0 0 0 457.5 145l-82.71 58.22A16 16 0 0 0 368 216.3v79.4a16 16 0 0 0 6.79 13.08z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"},null,-1),Mn=t("path",{d:"M268 384H84a52.15 52.15 0 0 1-52-52V180a52.15 52.15 0 0 1 52-52h184.48A51.68 51.68 0 0 1 320 179.52V332a52.15 52.15 0 0 1-52 52z",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"},null,-1),jn=[Cn,Mn],xe=o({name:"VideocamOutline",render:function(s,l){return n(),e("svg",fn,jn)}}),On={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},zn=i('',5),Bn=[zn],ge=o({name:"WalkOutline",render:function(s,l){return n(),e("svg",On,Bn)}}),Ln={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 512 512"},Hn=t("rect",{x:"48",y:"144",width:"416",height:"288",rx:"48",ry:"48",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"32"},null,-1),Vn=t("path",{d:"M411.36 144v-30A50 50 0 0 0 352 64.9L88.64 109.85A50 50 0 0 0 48 159v49",fill:"none",stroke:"currentColor","stroke-linejoin":"round","stroke-width":"32"},null,-1),yn=t("path",{d:"M368 320a32 32 0 1 1 32-32a32 32 0 0 1-32 32z",fill:"currentColor"},null,-1),An=[Hn,Vn,yn],me=o({name:"WalletOutline",render:function(s,l){return n(),e("svg",Ln,An)}}),bn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Sn=i('',1),Tn=[Sn],ve=o({name:"ArrowBarDown",render:function(s,l){return n(),e("svg",bn,Tn)}}),Dn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Pn=i('',1),En=[Pn],$e=o({name:"ArrowBarToUp",render:function(s,l){return n(),e("svg",Dn,En)}}),In={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Rn=t("g",{fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round"},[t("path",{d:"M9 7H6a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2-2v-3"}),t("path",{d:"M9 15h3l8.5-8.5a1.5 1.5 0 0 0-3-3L9 12v3"}),t("path",{d:"M16 5l3 3"})],-1),Un=[Rn],fe=o({name:"Edit",render:function(s,l){return n(),e("svg",In,Un)}}),Fn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},qn=i('',1),Wn=[qn],Ce=o({name:"Hash",render:function(s,l){return n(),e("svg",Fn,Wn)}}),Nn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Gn=i('',1),Jn=[Gn],Me=o({name:"Trash",render:function(s,l){return n(),e("svg",Nn,Jn)}}),Kn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Qn=t("path",{d:"M14.71 6.71a.996.996 0 0 0-1.41 0L8.71 11.3a.996.996 0 0 0 0 1.41l4.59 4.59a.996.996 0 1 0 1.41-1.41L10.83 12l3.88-3.88c.39-.39.38-1.03 0-1.41z",fill:"currentColor"},null,-1),Xn=[Qn],je=o({name:"ChevronLeftRound",render:function(s,l){return n(),e("svg",Kn,Xn)}}),Yn={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},Zn=t("path",{d:"M9.37 5.51A7.35 7.35 0 0 0 9.1 7.5c0 4.08 3.32 7.4 7.4 7.4c.68 0 1.35-.09 1.99-.27A7.014 7.014 0 0 1 12 19c-3.86 0-7-3.14-7-7c0-2.93 1.81-5.45 4.37-6.49zM12 3a9 9 0 1 0 9 9c0-.46-.04-.92-.1-1.36a5.389 5.389 0 0 1-4.4 2.26a5.403 5.403 0 0 1-3.14-9.8c-.44-.06-.9-.1-1.36-.1z",fill:"currentColor"},null,-1),t1=[Zn],Oe=o({name:"DarkModeOutlined",render:function(s,l){return n(),e("svg",Yn,t1)}}),o1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},n1=t("path",{d:"M2 17c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm0-5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1zm0-5c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1z",fill:"currentColor"},null,-1),e1=[n1],ze=o({name:"DehazeRound",render:function(s,l){return n(),e("svg",o1,e1)}}),r1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},s1=t("path",{d:"M12 9c1.65 0 3 1.35 3 3s-1.35 3-3 3s-3-1.35-3-3s1.35-3 3-3m0-2c-2.76 0-5 2.24-5 5s2.24 5 5 5s5-2.24 5-5s-2.24-5-5-5zM2 13h2c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1zm18 0h2c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1s.45 1 1 1zM11 2v2c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1zm0 18v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1s-1 .45-1 1zM5.99 4.58a.996.996 0 0 0-1.41 0a.996.996 0 0 0 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0s.39-1.03 0-1.41L5.99 4.58zm12.37 12.37a.996.996 0 0 0-1.41 0a.996.996 0 0 0 0 1.41l1.06 1.06c.39.39 1.03.39 1.41 0a.996.996 0 0 0 0-1.41l-1.06-1.06zm1.06-10.96a.996.996 0 0 0 0-1.41a.996.996 0 0 0-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06zM7.05 18.36a.996.996 0 0 0 0-1.41a.996.996 0 0 0-1.41 0l-1.06 1.06c-.39.39-.39 1.03 0 1.41s1.03.39 1.41 0l1.06-1.06z",fill:"currentColor"},null,-1),l1=[s1],Be=o({name:"LightModeOutlined",render:function(s,l){return n(),e("svg",r1,l1)}}),i1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},c1=t("path",{d:"M6 10c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2z",fill:"currentColor"},null,-1),h1=[c1],Le=o({name:"MoreHorizFilled",render:function(s,l){return n(),e("svg",i1,h1)}}),d1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},a1=t("path",{d:"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2s-2 .9-2 2s.9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2s2-.9 2-2s-.9-2-2-2z",fill:"currentColor"},null,-1),w1=[a1],He=o({name:"MoreVertOutlined",render:function(s,l){return n(),e("svg",d1,w1)}}),u1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},k1=t("path",{d:"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57l-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z",fill:"currentColor"},null,-1),_1=[k1],Ve=o({name:"ThumbDownOutlined",render:function(s,l){return n(),e("svg",u1,_1)}}),p1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},x1=t("path",{opacity:".3",d:"M3 12v2h9l-1.34 5.34L15 15V5H6z",fill:"currentColor"},null,-1),g1=t("path",{d:"M15 3H6c-.83 0-1.54.5-1.84 1.22l-3.02 7.05c-.09.23-.14.47-.14.73v2c0 1.1.9 2 2 2h6.31l-.95 4.57l-.03.32c0 .41.17.79.44 1.06L9.83 23l6.59-6.59c.36-.36.58-.86.58-1.41V5c0-1.1-.9-2-2-2zm0 12l-4.34 4.34L12 14H3v-2l3-7h9v10zm4-12h4v12h-4z",fill:"currentColor"},null,-1),m1=[x1,g1],ye=o({name:"ThumbDownTwotone",render:function(s,l){return n(),e("svg",p1,m1)}}),v1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},$1=t("path",{d:"M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57l.03-.32c0-.41-.17-.79-.44-1.06L14.17 1L7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z",fill:"currentColor"},null,-1),f1=[$1],Ae=o({name:"ThumbUpOutlined",render:function(s,l){return n(),e("svg",v1,f1)}}),C1={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink",viewBox:"0 0 24 24"},M1=t("path",{opacity:".3",d:"M21 12v-2h-9l1.34-5.34L9 9v10h9z",fill:"currentColor"},null,-1),j1=t("path",{d:"M9 21h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2h-6.31l.95-4.57l.03-.32c0-.41-.17-.79-.44-1.06L14.17 1L7.58 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2zM9 9l4.34-4.34L12 10h9v2l-3 7H9V9zM1 9h4v12H1z",fill:"currentColor"},null,-1),O1=[M1,j1],be=o({name:"ThumbUpTwotone",render:function(s,l){return n(),e("svg",C1,O1)}});export{Z1 as $,L1 as A,A1 as B,T1 as C,He as D,W1 as E,N1 as F,F1 as G,K1 as H,Q1 as I,de as J,D1 as K,Y1 as L,re as M,ke as N,E1 as O,ie as P,I1 as Q,ce as R,we as S,Me as T,P1 as U,xe as V,me as W,S1 as X,se as Y,X1 as Z,B1 as _,ue as a,R1 as a0,ee as a1,fe as a2,ze as a3,je as a4,Oe as a5,Be as a6,Ce as b,ne as c,U1 as d,Ae as e,be as f,Ve as g,ye as h,$e as i,ve as j,Le as k,J1 as l,G1 as m,b1 as n,y1 as o,V1 as p,_e as q,le as r,ge as s,H1 as t,pe as u,te as v,oe as w,ae as x,q1 as y,he as z}; diff --git a/web/dist/assets/@vue-CQsYufSu.js b/web/dist/assets/@vue-CQsYufSu.js new file mode 100644 index 00000000..3232176d --- /dev/null +++ b/web/dist/assets/@vue-CQsYufSu.js @@ -0,0 +1,17 @@ +/** +* @vue/shared v3.4.21 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function kn(e,t){const n=new Set(e.split(","));return t?s=>n.has(s.toLowerCase()):s=>n.has(s)}const z={},Et=[],me=()=>{},Ho=()=>!1,tn=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&(e.charCodeAt(2)>122||e.charCodeAt(2)<97),Ms=e=>e.startsWith("onUpdate:"),re=Object.assign,Fs=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},Vo=Object.prototype.hasOwnProperty,X=(e,t)=>Vo.call(e,t),H=Array.isArray,Ct=e=>Ft(e)==="[object Map]",ht=e=>Ft(e)==="[object Set]",ar=e=>Ft(e)==="[object Date]",ko=e=>Ft(e)==="[object RegExp]",K=e=>typeof e=="function",ie=e=>typeof e=="string",ze=e=>typeof e=="symbol",ee=e=>e!==null&&typeof e=="object",Hs=e=>(ee(e)||K(e))&&K(e.then)&&K(e.catch),ei=Object.prototype.toString,Ft=e=>ei.call(e),Do=e=>Ft(e).slice(8,-1),ti=e=>Ft(e)==="[object Object]",Vs=e=>ie(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,Tt=kn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Dn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Uo=/-(\w)/g,be=Dn(e=>e.replace(Uo,(t,n)=>n?n.toUpperCase():"")),Bo=/\B([A-Z])/g,xe=Dn(e=>e.replace(Bo,"-$1").toLowerCase()),Un=Dn(e=>e.charAt(0).toUpperCase()+e.slice(1)),En=Dn(e=>e?`on${Un(e)}`:""),Pe=(e,t)=>!Object.is(e,t),vt=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},Gt=e=>{const t=parseFloat(e);return isNaN(t)?e:t},On=e=>{const t=ie(e)?Number(e):NaN;return isNaN(t)?e:t};let dr;const ni=()=>dr||(dr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),$o="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console,Error",Ko=kn($o);function Bn(e){if(H(e)){const t={};for(let n=0;n{if(n){const s=n.split(Wo);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function $n(e){let t="";if(ie(e))t=e;else if(H(e))for(let n=0;nZe(n,t))}const Ff=e=>ie(e)?e:e==null?"":H(e)||ee(e)&&(e.toString===ei||!K(e.toString))?JSON.stringify(e,ri,2):String(e),ri=(e,t)=>t&&t.__v_isRef?ri(e,t.value):Ct(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r],i)=>(n[ss(s,i)+" =>"]=r,n),{})}:ht(t)?{[`Set(${t.size})`]:[...t.values()].map(n=>ss(n))}:ze(t)?ss(t):ee(t)&&!H(t)&&!ti(t)?String(t):t,ss=(e,t="")=>{var n;return ze(e)?`Symbol(${(n=e.description)!=null?n:t})`:e};/** +* @vue/reactivity v3.4.21 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/let Te;class ii{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=Te,!t&&Te&&(this.index=(Te.scopes||(Te.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=Te;try{return Te=this,t()}finally{Te=n}}}on(){Te=this}off(){Te=this.parent}stop(t){if(this._active){let n,s;for(n=0,s=this.effects.length;n=4))break}this._dirtyLevel===1&&(this._dirtyLevel=0),gt()}return this._dirtyLevel>=4}set dirty(t){this._dirtyLevel=t?4:0}run(){if(this._dirtyLevel=0,!this.active)return this.fn();let t=Qe,n=lt;try{return Qe=!0,lt=this,this._runnings++,hr(this),this.fn()}finally{pr(this),this._runnings--,lt=n,Qe=t}}stop(){var t;this.active&&(hr(this),pr(this),(t=this.onStop)==null||t.call(this),this.active=!1)}}function zo(e){return e.value}function hr(e){e._trackId++,e._depsLength=0}function pr(e){if(e.deps.length>e._depsLength){for(let t=e._depsLength;t{n.dirty&&n.run()});t&&(re(n,t),t.scope&&oi(n,t.scope)),(!t||!t.lazy)&&n.run();const s=n.run.bind(n);return s.effect=n,s}function Df(e){e.effect.stop()}let Qe=!0,hs=0;const ci=[];function pt(){ci.push(Qe),Qe=!1}function gt(){const e=ci.pop();Qe=e===void 0?!0:e}function ks(){hs++}function Ds(){for(hs--;!hs&&ps.length;)ps.shift()()}function fi(e,t,n){if(t.get(e)!==e._trackId){t.set(e,e._trackId);const s=e.deps[e._depsLength];s!==t?(s&&li(s,e),e.deps[e._depsLength++]=t):e._depsLength++}}const ps=[];function ui(e,t,n){ks();for(const s of e.keys()){let r;s._dirtyLevel{const n=new Map;return n.cleanup=e,n.computed=t,n},Rn=new WeakMap,ct=Symbol(""),gs=Symbol("");function Ee(e,t,n){if(Qe&<){let s=Rn.get(e);s||Rn.set(e,s=new Map);let r=s.get(n);r||s.set(n,r=ai(()=>s.delete(n))),fi(lt,r)}}function De(e,t,n,s,r,i){const o=Rn.get(e);if(!o)return;let l=[];if(t==="clear")l=[...o.values()];else if(n==="length"&&H(e)){const c=Number(s);o.forEach((u,h)=>{(h==="length"||!ze(h)&&h>=c)&&l.push(u)})}else switch(n!==void 0&&l.push(o.get(n)),t){case"add":H(e)?Vs(n)&&l.push(o.get("length")):(l.push(o.get(ct)),Ct(e)&&l.push(o.get(gs)));break;case"delete":H(e)||(l.push(o.get(ct)),Ct(e)&&l.push(o.get(gs)));break;case"set":Ct(e)&&l.push(o.get(ct));break}ks();for(const c of l)c&&ui(c,4);Ds()}function Zo(e,t){var n;return(n=Rn.get(e))==null?void 0:n.get(t)}const el=kn("__proto__,__v_isRef,__isVue"),di=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(ze)),gr=tl();function tl(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=Q(this);for(let i=0,o=this.length;i{e[t]=function(...n){pt(),ks();const s=Q(this)[t].apply(this,n);return Ds(),gt(),s}}),e}function nl(e){const t=Q(this);return Ee(t,"has",e),t.hasOwnProperty(e)}class hi{constructor(t=!1,n=!1){this._isReadonly=t,this._isShallow=n}get(t,n,s){const r=this._isReadonly,i=this._isShallow;if(n==="__v_isReactive")return!r;if(n==="__v_isReadonly")return r;if(n==="__v_isShallow")return i;if(n==="__v_raw")return s===(r?i?bi:yi:i?mi:_i).get(t)||Object.getPrototypeOf(t)===Object.getPrototypeOf(s)?t:void 0;const o=H(t);if(!r){if(o&&X(gr,n))return Reflect.get(gr,n,s);if(n==="hasOwnProperty")return nl}const l=Reflect.get(t,n,s);return(ze(n)?di.has(n):el(n))||(r||Ee(t,"get",n),i)?l:he(l)?o&&Vs(n)?l:l.value:ee(l)?r?Ei(l):Bs(l):l}}class pi extends hi{constructor(t=!1){super(!1,t)}set(t,n,s,r){let i=t[n];if(!this._isShallow){const c=Pt(i);if(!Pn(s)&&!Pt(s)&&(i=Q(i),s=Q(s)),!H(t)&&he(i)&&!he(s))return c?!1:(i.value=s,!0)}const o=H(t)&&Vs(n)?Number(n)e,jn=e=>Reflect.getPrototypeOf(e);function cn(e,t,n=!1,s=!1){e=e.__v_raw;const r=Q(e),i=Q(t);n||(Pe(t,i)&&Ee(r,"get",t),Ee(r,"get",i));const{has:o}=jn(r),l=s?Us:n?$s:Jt;if(o.call(r,t))return l(e.get(t));if(o.call(r,i))return l(e.get(i));e!==r&&e.get(t)}function fn(e,t=!1){const n=this.__v_raw,s=Q(n),r=Q(e);return t||(Pe(e,r)&&Ee(s,"has",e),Ee(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function un(e,t=!1){return e=e.__v_raw,!t&&Ee(Q(e),"iterate",ct),Reflect.get(e,"size",e)}function _r(e){e=Q(e);const t=Q(this);return jn(t).has.call(t,e)||(t.add(e),De(t,"add",e,e)),this}function mr(e,t){t=Q(t);const n=Q(this),{has:s,get:r}=jn(n);let i=s.call(n,e);i||(e=Q(e),i=s.call(n,e));const o=r.call(n,e);return n.set(e,t),i?Pe(t,o)&&De(n,"set",e,t):De(n,"add",e,t),this}function yr(e){const t=Q(this),{has:n,get:s}=jn(t);let r=n.call(t,e);r||(e=Q(e),r=n.call(t,e)),s&&s.call(t,e);const i=t.delete(e);return r&&De(t,"delete",e,void 0),i}function br(){const e=Q(this),t=e.size!==0,n=e.clear();return t&&De(e,"clear",void 0,void 0),n}function an(e,t){return function(s,r){const i=this,o=i.__v_raw,l=Q(o),c=t?Us:e?$s:Jt;return!e&&Ee(l,"iterate",ct),o.forEach((u,h)=>s.call(r,c(u),c(h),i))}}function dn(e,t,n){return function(...s){const r=this.__v_raw,i=Q(r),o=Ct(i),l=e==="entries"||e===Symbol.iterator&&o,c=e==="keys"&&o,u=r[e](...s),h=n?Us:t?$s:Jt;return!t&&Ee(i,"iterate",c?gs:ct),{next(){const{value:d,done:g}=u.next();return g?{value:d,done:g}:{value:l?[h(d[0]),h(d[1])]:h(d),done:g}},[Symbol.iterator](){return this}}}}function $e(e){return function(...t){return e==="delete"?!1:e==="clear"?void 0:this}}function ll(){const e={get(i){return cn(this,i)},get size(){return un(this)},has:fn,add:_r,set:mr,delete:yr,clear:br,forEach:an(!1,!1)},t={get(i){return cn(this,i,!1,!0)},get size(){return un(this)},has:fn,add:_r,set:mr,delete:yr,clear:br,forEach:an(!1,!0)},n={get(i){return cn(this,i,!0)},get size(){return un(this,!0)},has(i){return fn.call(this,i,!0)},add:$e("add"),set:$e("set"),delete:$e("delete"),clear:$e("clear"),forEach:an(!0,!1)},s={get(i){return cn(this,i,!0,!0)},get size(){return un(this,!0)},has(i){return fn.call(this,i,!0)},add:$e("add"),set:$e("set"),delete:$e("delete"),clear:$e("clear"),forEach:an(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(i=>{e[i]=dn(i,!1,!1),n[i]=dn(i,!0,!1),t[i]=dn(i,!1,!0),s[i]=dn(i,!0,!0)}),[e,n,t,s]}const[cl,fl,ul,al]=ll();function Wn(e,t){const n=t?e?al:ul:e?fl:cl;return(s,r,i)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(X(n,r)&&r in s?n:s,r,i)}const dl={get:Wn(!1,!1)},hl={get:Wn(!1,!0)},pl={get:Wn(!0,!1)},gl={get:Wn(!0,!0)},_i=new WeakMap,mi=new WeakMap,yi=new WeakMap,bi=new WeakMap;function _l(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function ml(e){return e.__v_skip||!Object.isExtensible(e)?0:_l(Do(e))}function Bs(e){return Pt(e)?e:Gn(e,!1,sl,dl,_i)}function yl(e){return Gn(e,!1,il,hl,mi)}function Ei(e){return Gn(e,!0,rl,pl,yi)}function Uf(e){return Gn(e,!0,ol,gl,bi)}function Gn(e,t,n,s,r){if(!ee(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const i=r.get(e);if(i)return i;const o=ml(e);if(o===0)return e;const l=new Proxy(e,o===2?s:n);return r.set(e,l),l}function xt(e){return Pt(e)?xt(e.__v_raw):!!(e&&e.__v_isReactive)}function Pt(e){return!!(e&&e.__v_isReadonly)}function Pn(e){return!!(e&&e.__v_isShallow)}function Ci(e){return xt(e)||Pt(e)}function Q(e){const t=e&&e.__v_raw;return t?Q(t):e}function Ti(e){return Object.isExtensible(e)&&Sn(e,"__v_skip",!0),e}const Jt=e=>ee(e)?Bs(e):e,$s=e=>ee(e)?Ei(e):e;class vi{constructor(t,n,s,r){this.getter=t,this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this.effect=new qt(()=>t(this._value),()=>wt(this,this.effect._dirtyLevel===2?2:3)),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=Q(this);return(!t._cacheable||t.effect.dirty)&&Pe(t._value,t._value=t.effect.run())&&wt(t,4),Ks(t),t.effect._dirtyLevel>=2&&wt(t,2),t._value}set value(t){this._setter(t)}get _dirty(){return this.effect.dirty}set _dirty(t){this.effect.dirty=t}}function bl(e,t,n=!1){let s,r;const i=K(e);return i?(s=e,r=me):(s=e.get,r=e.set),new vi(s,r,i||!r,n)}function Ks(e){var t;Qe&<&&(e=Q(e),fi(lt,(t=e.dep)!=null?t:e.dep=ai(()=>e.dep=void 0,e instanceof vi?e:void 0)))}function wt(e,t=4,n){e=Q(e);const s=e.dep;s&&ui(s,t)}function he(e){return!!(e&&e.__v_isRef===!0)}function Cn(e){return xi(e,!1)}function Bf(e){return xi(e,!0)}function xi(e,t){return he(e)?e:new El(e,t)}class El{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:Q(t),this._value=n?t:Jt(t)}get value(){return Ks(this),this._value}set value(t){const n=this.__v_isShallow||Pn(t)||Pt(t);t=n?t:Q(t),Pe(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:Jt(t),wt(this,4))}}function $f(e){wt(e,4)}function wi(e){return he(e)?e.value:e}function Kf(e){return K(e)?e():wi(e)}const Cl={get:(e,t,n)=>wi(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return he(r)&&!he(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function Ai(e){return xt(e)?e:new Proxy(e,Cl)}class Tl{constructor(t){this.dep=void 0,this.__v_isRef=!0;const{get:n,set:s}=t(()=>Ks(this),()=>wt(this));this._get=n,this._set=s}get value(){return this._get()}set value(t){this._set(t)}}function vl(e){return new Tl(e)}function jf(e){const t=H(e)?new Array(e.length):{};for(const n in e)t[n]=Si(e,n);return t}class xl{constructor(t,n,s){this._object=t,this._key=n,this._defaultValue=s,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return Zo(Q(this._object),this._key)}}class wl{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Wf(e,t,n){return he(e)?e:K(e)?new wl(e):ee(e)&&arguments.length>1?Si(e,t,n):Cn(e)}function Si(e,t,n){const s=e[t];return he(s)?s:new xl(e,t,n)}const Gf={GET:"get",HAS:"has",ITERATE:"iterate"},qf={SET:"set",ADD:"add",DELETE:"delete",CLEAR:"clear"};/** +* @vue/runtime-core v3.4.21 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/function Jf(e,t){}const Yf={SETUP_FUNCTION:0,0:"SETUP_FUNCTION",RENDER_FUNCTION:1,1:"RENDER_FUNCTION",WATCH_GETTER:2,2:"WATCH_GETTER",WATCH_CALLBACK:3,3:"WATCH_CALLBACK",WATCH_CLEANUP:4,4:"WATCH_CLEANUP",NATIVE_EVENT_HANDLER:5,5:"NATIVE_EVENT_HANDLER",COMPONENT_EVENT_HANDLER:6,6:"COMPONENT_EVENT_HANDLER",VNODE_HOOK:7,7:"VNODE_HOOK",DIRECTIVE_HOOK:8,8:"DIRECTIVE_HOOK",TRANSITION_HOOK:9,9:"TRANSITION_HOOK",APP_ERROR_HANDLER:10,10:"APP_ERROR_HANDLER",APP_WARN_HANDLER:11,11:"APP_WARN_HANDLER",FUNCTION_REF:12,12:"FUNCTION_REF",ASYNC_COMPONENT_LOADER:13,13:"ASYNC_COMPONENT_LOADER",SCHEDULER:14,14:"SCHEDULER"},Al={sp:"serverPrefetch hook",bc:"beforeCreate hook",c:"created hook",bm:"beforeMount hook",m:"mounted hook",bu:"beforeUpdate hook",u:"updated",bum:"beforeUnmount hook",um:"unmounted hook",a:"activated hook",da:"deactivated hook",ec:"errorCaptured hook",rtc:"renderTracked hook",rtg:"renderTriggered hook",0:"setup function",1:"render function",2:"watcher getter",3:"watcher callback",4:"watcher cleanup function",5:"native event handler",6:"component event handler",7:"vnode hook",8:"directive hook",9:"transition hook",10:"app errorHandler",11:"app warnHandler",12:"ref function",13:"async component loader",14:"scheduler flush. This is likely a Vue internals bug. Please open an issue at https://github.com/vuejs/core ."};function Xe(e,t,n,s){try{return s?e(...s):e()}catch(r){Ht(r,t,n)}}function Ae(e,t,n,s){if(K(e)){const i=Xe(e,t,n,s);return i&&Hs(i)&&i.catch(o=>{Ht(o,t,n)}),i}const r=[];for(let i=0;i>>1,r=de[s],i=Qt(r);iMe&&de.splice(t,1)}function ms(e){H(e)?At.push(...e):(!Ge||!Ge.includes(e,e.allowRecurse?it+1:it))&&At.push(e),Ri()}function Er(e,t,n=Yt?Me+1:0){for(;nQt(n)-Qt(s));if(At.length=0,Ge){Ge.push(...t);return}for(Ge=t,it=0;ite.id==null?1/0:e.id,Pl=(e,t)=>{const n=Qt(e)-Qt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function Pi(e){_s=!1,Yt=!0,de.sort(Pl);try{for(Me=0;Mebt.emit(r,...i)),hn=[]):typeof window<"u"&&window.HTMLElement&&!((s=(n=window.navigator)==null?void 0:n.userAgent)!=null&&s.includes("jsdom"))?((t.__VUE_DEVTOOLS_HOOK_REPLAY__=t.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(i=>{Ni(i,t)}),setTimeout(()=>{bt||(t.__VUE_DEVTOOLS_HOOK_REPLAY__=null,hn=[])},3e3)):hn=[]}function Nl(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||z;let r=n;const i=t.startsWith("update:"),o=i&&t.slice(7);if(o&&o in s){const h=`${o==="modelValue"?"model":o}Modifiers`,{number:d,trim:g}=s[h]||z;g&&(r=n.map(v=>ie(v)?v.trim():v)),d&&(r=n.map(Gt))}let l,c=s[l=En(t)]||s[l=En(be(t))];!c&&i&&(c=s[l=En(xe(t))]),c&&Ae(c,e,6,r);const u=s[l+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Ae(u,e,6,r)}}function Ii(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const i=e.emits;let o={},l=!1;if(!K(e)){const c=u=>{const h=Ii(u,t,!0);h&&(l=!0,re(o,h))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!i&&!l?(ee(e)&&s.set(e,null),null):(H(i)?i.forEach(c=>o[c]=null):re(o,i),ee(e)&&s.set(e,o),o)}function Jn(e,t){return!e||!tn(t)?!1:(t=t.slice(2).replace(/Once$/,""),X(e,t[0].toLowerCase()+t.slice(1))||X(e,xe(t))||X(e,t))}let le=null,Yn=null;function Xt(e){const t=le;return le=e,Yn=e&&e.type.__scopeId||null,t}function Qf(e){Yn=e}function Xf(){Yn=null}const zf=e=>Li;function Li(e,t=le,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&Mr(-1);const i=Xt(t);let o;try{o=e(...r)}finally{Xt(i),s._d&&Mr(1)}return o};return s._n=!0,s._c=!0,s._d=!0,s}function Tn(e){const{type:t,vnode:n,proxy:s,withProxy:r,props:i,propsOptions:[o],slots:l,attrs:c,emit:u,render:h,renderCache:d,data:g,setupState:v,ctx:O,inheritAttrs:V}=e;let j,G;const S=Xt(e);try{if(n.shapeFlag&4){const _=r||s,y=_;j=ve(h.call(y,_,d,i,v,g,O)),G=c}else{const _=t;j=ve(_.length>1?_(i,{attrs:c,slots:l,emit:u}):_(i,null)),G=t.props?c:Ll(c)}}catch(_){jt.length=0,Ht(_,e,1),j=se(ge)}let p=j;if(G&&V!==!1){const _=Object.keys(G),{shapeFlag:y}=p;_.length&&y&7&&(o&&_.some(Ms)&&(G=Ml(G,o)),p=Ue(p,G))}return n.dirs&&(p=Ue(p),p.dirs=p.dirs?p.dirs.concat(n.dirs):n.dirs),n.transition&&(p.transition=n.transition),j=p,Xt(S),j}function Il(e,t=!0){let n;for(let s=0;s{let t;for(const n in e)(n==="class"||n==="style"||tn(n))&&((t||(t={}))[n]=e[n]);return t},Ml=(e,t)=>{const n={};for(const s in e)(!Ms(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Fl(e,t,n){const{props:s,children:r,component:i}=e,{props:o,children:l,patchFlag:c}=t,u=i.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return s?Cr(s,o,u):!!o;if(c&8){const h=t.dynamicProps;for(let d=0;de.__isSuspense;let ys=0;const Vl={name:"Suspense",__isSuspense:!0,process(e,t,n,s,r,i,o,l,c,u){if(e==null)kl(t,n,s,r,i,o,l,c,u);else{if(i&&i.deps>0&&!e.suspense.isInFallback){t.suspense=e.suspense,t.suspense.vnode=t,t.el=e.el;return}Dl(e,t,n,s,r,o,l,c,u)}},hydrate:Ul,create:Ys,normalize:Bl},nu=Vl;function zt(e,t){const n=e.props&&e.props[t];K(n)&&n()}function kl(e,t,n,s,r,i,o,l,c){const{p:u,o:{createElement:h}}=c,d=h("div"),g=e.suspense=Ys(e,r,s,t,d,n,i,o,l,c);u(null,g.pendingBranch=e.ssContent,d,null,s,g,i,o),g.deps>0?(zt(e,"onPending"),zt(e,"onFallback"),u(null,e.ssFallback,t,n,s,null,i,o),St(g,e.ssFallback)):g.resolve(!1,!0)}function Dl(e,t,n,s,r,i,o,l,{p:c,um:u,o:{createElement:h}}){const d=t.suspense=e.suspense;d.vnode=t,t.el=e.el;const g=t.ssContent,v=t.ssFallback,{activeBranch:O,pendingBranch:V,isInFallback:j,isHydrating:G}=d;if(V)d.pendingBranch=g,Re(g,V)?(c(V,g,d.hiddenContainer,null,r,d,i,o,l),d.deps<=0?d.resolve():j&&(G||(c(O,v,n,s,r,null,i,o,l),St(d,v)))):(d.pendingId=ys++,G?(d.isHydrating=!1,d.activeBranch=V):u(V,r,d),d.deps=0,d.effects.length=0,d.hiddenContainer=h("div"),j?(c(null,g,d.hiddenContainer,null,r,d,i,o,l),d.deps<=0?d.resolve():(c(O,v,n,s,r,null,i,o,l),St(d,v))):O&&Re(g,O)?(c(O,g,n,s,r,d,i,o,l),d.resolve(!0)):(c(null,g,d.hiddenContainer,null,r,d,i,o,l),d.deps<=0&&d.resolve()));else if(O&&Re(g,O))c(O,g,n,s,r,d,i,o,l),St(d,g);else if(zt(t,"onPending"),d.pendingBranch=g,g.shapeFlag&512?d.pendingId=g.component.suspenseId:d.pendingId=ys++,c(null,g,d.hiddenContainer,null,r,d,i,o,l),d.deps<=0)d.resolve();else{const{timeout:S,pendingId:p}=d;S>0?setTimeout(()=>{d.pendingId===p&&d.fallback(v)},S):S===0&&d.fallback(v)}}function Ys(e,t,n,s,r,i,o,l,c,u,h=!1){const{p:d,m:g,um:v,n:O,o:{parentNode:V,remove:j}}=u;let G;const S=$l(e);S&&t!=null&&t.pendingBranch&&(G=t.pendingId,t.deps++);const p=e.props?On(e.props.timeout):void 0,_=i,y={vnode:e,parent:t,parentComponent:n,namespace:o,container:s,hiddenContainer:r,deps:0,pendingId:ys++,timeout:typeof p=="number"?p:-1,activeBranch:null,pendingBranch:null,isInFallback:!h,isHydrating:h,isUnmounted:!1,effects:[],resolve(b=!1,I=!1){const{vnode:x,activeBranch:M,pendingBranch:P,pendingId:$,effects:R,parentComponent:q,container:te}=y;let oe=!1;y.isHydrating?y.isHydrating=!1:b||(oe=M&&P.transition&&P.transition.mode==="out-in",oe&&(M.transition.afterLeave=()=>{$===y.pendingId&&(g(P,te,i===_?O(M):i,0),ms(R))}),M&&(V(M.el)!==y.hiddenContainer&&(i=O(M)),v(M,q,y,!0)),oe||g(P,te,i,0)),St(y,P),y.pendingBranch=null,y.isInFallback=!1;let k=y.parent,J=!1;for(;k;){if(k.pendingBranch){k.effects.push(...R),J=!0;break}k=k.parent}!J&&!oe&&ms(R),y.effects=[],S&&t&&t.pendingBranch&&G===t.pendingId&&(t.deps--,t.deps===0&&!I&&t.resolve()),zt(x,"onResolve")},fallback(b){if(!y.pendingBranch)return;const{vnode:I,activeBranch:x,parentComponent:M,container:P,namespace:$}=y;zt(I,"onFallback");const R=O(x),q=()=>{y.isInFallback&&(d(null,b,P,R,M,null,$,l,c),St(y,b))},te=b.transition&&b.transition.mode==="out-in";te&&(x.transition.afterLeave=q),y.isInFallback=!0,v(x,M,null,!0),te||q()},move(b,I,x){y.activeBranch&&g(y.activeBranch,b,I,x),y.container=b},next(){return y.activeBranch&&O(y.activeBranch)},registerDep(b,I){const x=!!y.pendingBranch;x&&y.deps++;const M=b.vnode.el;b.asyncDep.catch(P=>{Ht(P,b,0)}).then(P=>{if(b.isUnmounted||y.isUnmounted||y.pendingId!==b.suspenseId)return;b.asyncResolved=!0;const{vnode:$}=b;Ss(b,P,!1),M&&($.el=M);const R=!M&&b.subTree.el;I(b,$,V(M||b.subTree.el),M?null:O(b.subTree),y,o,c),R&&j(R),Gs(b,$.el),x&&--y.deps===0&&y.resolve()})},unmount(b,I){y.isUnmounted=!0,y.activeBranch&&v(y.activeBranch,n,b,I),y.pendingBranch&&v(y.pendingBranch,n,b,I)}};return y}function Ul(e,t,n,s,r,i,o,l,c){const u=t.suspense=Ys(t,s,n,e.parentNode,document.createElement("div"),null,r,i,o,l,!0),h=c(e,u.pendingBranch=t.ssContent,n,u,i,o);return u.deps===0&&u.resolve(!1,!0),h}function Bl(e){const{shapeFlag:t,children:n}=e,s=t&32;e.ssContent=vr(s?n.default:n),e.ssFallback=s?vr(n.fallback):se(ge)}function vr(e){let t;if(K(e)){const n=ut&&e._c;n&&(e._d=!1,sr()),e=e(),n&&(e._d=!0,t=ye,no())}return H(e)&&(e=Il(e)),e=ve(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function Hi(e,t){t&&t.pendingBranch?H(e)?t.effects.push(...e):t.effects.push(e):ms(e)}function St(e,t){e.activeBranch=t;const{vnode:n,parentComponent:s}=e;let r=t.el;for(;!r&&t.component;)t=t.component.subTree,r=t.el;n.el=r,s&&s.subTree===n&&(s.vnode.el=r,Gs(s,r))}function $l(e){var t;return((t=e.props)==null?void 0:t.suspensible)!=null&&e.props.suspensible!==!1}const Kl=Symbol.for("v-scx"),jl=()=>xn(Kl);function su(e,t){return nn(e,null,t)}function Wl(e,t){return nn(e,null,{flush:"post"})}function Gl(e,t){return nn(e,null,{flush:"sync"})}const pn={};function vn(e,t,n){return nn(e,t,n)}function nn(e,t,{immediate:n,deep:s,flush:r,once:i,onTrack:o,onTrigger:l}=z){if(t&&i){const b=t;t=(...I)=>{b(...I),y()}}const c=ce,u=b=>s===!0?b:ot(b,s===!1?1:void 0);let h,d=!1,g=!1;if(he(e)?(h=()=>e.value,d=Pn(e)):xt(e)?(h=()=>u(e),d=!0):H(e)?(g=!0,d=e.some(b=>xt(b)||Pn(b)),h=()=>e.map(b=>{if(he(b))return b.value;if(xt(b))return u(b);if(K(b))return Xe(b,c,2)})):K(e)?t?h=()=>Xe(e,c,2):h=()=>(v&&v(),Ae(e,c,3,[O])):h=me,t&&s){const b=h;h=()=>ot(b())}let v,O=b=>{v=p.onStop=()=>{Xe(b,c,4),v=p.onStop=void 0}},V;if(rn)if(O=me,t?n&&Ae(t,c,3,[h(),g?[]:void 0,O]):h(),r==="sync"){const b=jl();V=b.__watcherHandles||(b.__watcherHandles=[])}else return me;let j=g?new Array(e.length).fill(pn):pn;const G=()=>{if(!(!p.active||!p.dirty))if(t){const b=p.run();(s||d||(g?b.some((I,x)=>Pe(I,j[x])):Pe(b,j)))&&(v&&v(),Ae(t,c,3,[b,j===pn?void 0:g&&j[0]===pn?[]:j,O]),j=b)}else p.run()};G.allowRecurse=!!t;let S;r==="sync"?S=G:r==="post"?S=()=>ue(G,c&&c.suspense):(G.pre=!0,c&&(G.id=c.uid),S=()=>qn(G));const p=new qt(h,me,S),_=Xo(),y=()=>{p.stop(),_&&Fs(_.effects,p)};return t?n?G():j=p.run():r==="post"?ue(p.run.bind(p),c&&c.suspense):p.run(),V&&V.push(y),y}function ql(e,t,n){const s=this.proxy,r=ie(e)?e.includes(".")?Vi(s,e):()=>s[e]:e.bind(s,s);let i;K(t)?i=t:(i=t.handler,n=t);const o=dt(this),l=nn(r,i.bind(s),n);return o(),l}function Vi(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r0){if(n>=t)return e;n++}if(s=s||new Set,s.has(e))return e;if(s.add(e),he(e))ot(e.value,t,n,s);else if(H(e))for(let r=0;r{ot(r,t,n,s)});else if(ti(e))for(const r in e)ot(e[r],t,n,s);return e}function ru(e,t){if(le===null)return e;const n=Zn(le)||le.proxy,s=e.dirs||(e.dirs=[]);for(let r=0;r{e.isMounted=!0}),zs(()=>{e.isUnmounting=!0}),e}const we=[Function,Array],Di={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:we,onEnter:we,onAfterEnter:we,onEnterCancelled:we,onBeforeLeave:we,onLeave:we,onAfterLeave:we,onLeaveCancelled:we,onBeforeAppear:we,onAppear:we,onAfterAppear:we,onAppearCancelled:we},Jl={name:"BaseTransition",props:Di,setup(e,{slots:t}){const n=tt(),s=ki();return()=>{const r=t.default&&Qs(t.default(),!0);if(!r||!r.length)return;let i=r[0];if(r.length>1){for(const g of r)if(g.type!==ge){i=g;break}}const o=Q(e),{mode:l}=o;if(s.isLeaving)return rs(i);const c=xr(i);if(!c)return rs(i);const u=Zt(c,o,s,n);Nt(c,u);const h=n.subTree,d=h&&xr(h);if(d&&d.type!==ge&&!Re(c,d)){const g=Zt(d,o,s,n);if(Nt(d,g),l==="out-in")return s.isLeaving=!0,g.afterLeave=()=>{s.isLeaving=!1,n.update.active!==!1&&(n.effect.dirty=!0,n.update())},rs(i);l==="in-out"&&c.type!==ge&&(g.delayLeave=(v,O,V)=>{const j=Ui(s,d);j[String(d.key)]=d,v[qe]=()=>{O(),v[qe]=void 0,delete u.delayedLeave},u.delayedLeave=V})}return i}}},Yl=Jl;function Ui(e,t){const{leavingVNodes:n}=e;let s=n.get(t.type);return s||(s=Object.create(null),n.set(t.type,s)),s}function Zt(e,t,n,s){const{appear:r,mode:i,persisted:o=!1,onBeforeEnter:l,onEnter:c,onAfterEnter:u,onEnterCancelled:h,onBeforeLeave:d,onLeave:g,onAfterLeave:v,onLeaveCancelled:O,onBeforeAppear:V,onAppear:j,onAfterAppear:G,onAppearCancelled:S}=t,p=String(e.key),_=Ui(n,e),y=(x,M)=>{x&&Ae(x,s,9,M)},b=(x,M)=>{const P=M[1];y(x,M),H(x)?x.every($=>$.length<=1)&&P():x.length<=1&&P()},I={mode:i,persisted:o,beforeEnter(x){let M=l;if(!n.isMounted)if(r)M=V||l;else return;x[qe]&&x[qe](!0);const P=_[p];P&&Re(e,P)&&P.el[qe]&&P.el[qe](),y(M,[x])},enter(x){let M=c,P=u,$=h;if(!n.isMounted)if(r)M=j||c,P=G||u,$=S||h;else return;let R=!1;const q=x[gn]=te=>{R||(R=!0,te?y($,[x]):y(P,[x]),I.delayedLeave&&I.delayedLeave(),x[gn]=void 0)};M?b(M,[x,q]):q()},leave(x,M){const P=String(e.key);if(x[gn]&&x[gn](!0),n.isUnmounting)return M();y(d,[x]);let $=!1;const R=x[qe]=q=>{$||($=!0,M(),q?y(O,[x]):y(v,[x]),x[qe]=void 0,_[P]===e&&delete _[P])};_[P]=e,g?b(g,[x,R]):R()},clone(x){return Zt(x,t,n,s)}};return I}function rs(e){if(sn(e))return e=Ue(e),e.children=null,e}function xr(e){return sn(e)?e.children?e.children[0]:void 0:e}function Nt(e,t){e.shapeFlag&6&&e.component?Nt(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Qs(e,t=!1,n){let s=[],r=0;for(let i=0;i1)for(let i=0;i!!e.type.__asyncLoader;/*! #__NO_SIDE_EFFECTS__ */function iu(e){K(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:s,delay:r=200,timeout:i,suspensible:o=!0,onError:l}=e;let c=null,u,h=0;const d=()=>(h++,c=null,g()),g=()=>{let v;return c||(v=c=t().catch(O=>{if(O=O instanceof Error?O:new Error(String(O)),l)return new Promise((V,j)=>{l(O,()=>V(d()),()=>j(O),h+1)});throw O}).then(O=>v!==c&&c?c:(O&&(O.__esModule||O[Symbol.toStringTag]==="Module")&&(O=O.default),u=O,O)))};return Bi({name:"AsyncComponentWrapper",__asyncLoader:g,get __asyncResolved(){return u},setup(){const v=ce;if(u)return()=>is(u,v);const O=S=>{c=null,Ht(S,v,13,!s)};if(o&&v.suspense||rn)return g().then(S=>()=>is(S,v)).catch(S=>(O(S),()=>s?se(s,{error:S}):null));const V=Cn(!1),j=Cn(),G=Cn(!!r);return r&&setTimeout(()=>{G.value=!1},r),i!=null&&setTimeout(()=>{if(!V.value&&!j.value){const S=new Error(`Async component timed out after ${i}ms.`);O(S),j.value=S}},i),g().then(()=>{V.value=!0,v.parent&&sn(v.parent.vnode)&&(v.parent.effect.dirty=!0,qn(v.parent.update))}).catch(S=>{O(S),j.value=S}),()=>{if(V.value&&u)return is(u,v);if(j.value&&s)return se(s,{error:j.value});if(n&&!G.value)return se(n)}}})}function is(e,t){const{ref:n,props:s,children:r,ce:i}=t.vnode,o=se(e,s,r);return o.ref=n,o.ce=i,delete t.vnode.ce,o}const sn=e=>e.type.__isKeepAlive,Ql={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=tt(),s=n.ctx;if(!s.renderer)return()=>{const S=t.default&&t.default();return S&&S.length===1?S[0]:S};const r=new Map,i=new Set;let o=null;const l=n.suspense,{renderer:{p:c,m:u,um:h,o:{createElement:d}}}=s,g=d("div");s.activate=(S,p,_,y,b)=>{const I=S.component;u(S,p,_,0,l),c(I.vnode,S,p,_,I,l,y,S.slotScopeIds,b),ue(()=>{I.isDeactivated=!1,I.a&&vt(I.a);const x=S.props&&S.props.onVnodeMounted;x&&_e(x,I.parent,S)},l)},s.deactivate=S=>{const p=S.component;u(S,g,null,1,l),ue(()=>{p.da&&vt(p.da);const _=S.props&&S.props.onVnodeUnmounted;_&&_e(_,p.parent,S),p.isDeactivated=!0},l)};function v(S){os(S),h(S,n,l,!0)}function O(S){r.forEach((p,_)=>{const y=Rs(p.type);y&&(!S||!S(y))&&V(_)})}function V(S){const p=r.get(S);!o||!Re(p,o)?v(p):o&&os(o),r.delete(S),i.delete(S)}vn(()=>[e.include,e.exclude],([S,p])=>{S&&O(_=>Ut(S,_)),p&&O(_=>!Ut(p,_))},{flush:"post",deep:!0});let j=null;const G=()=>{j!=null&&r.set(j,ls(n.subTree))};return Xn(G),Xs(G),zs(()=>{r.forEach(S=>{const{subTree:p,suspense:_}=n,y=ls(p);if(S.type===y.type&&S.key===y.key){os(y);const b=y.component.da;b&&ue(b,_);return}v(S)})}),()=>{if(j=null,!t.default)return null;const S=t.default(),p=S[0];if(S.length>1)return o=null,S;if(!at(p)||!(p.shapeFlag&4)&&!(p.shapeFlag&128))return o=null,p;let _=ls(p);const y=_.type,b=Rs(ft(_)?_.type.__asyncResolved||{}:y),{include:I,exclude:x,max:M}=e;if(I&&(!b||!Ut(I,b))||x&&b&&Ut(x,b))return o=_,p;const P=_.key==null?y:_.key,$=r.get(P);return _.el&&(_=Ue(_),p.shapeFlag&128&&(p.ssContent=_)),j=P,$?(_.el=$.el,_.component=$.component,_.transition&&Nt(_,_.transition),_.shapeFlag|=512,i.delete(P),i.add(P)):(i.add(P),M&&i.size>parseInt(M,10)&&V(i.values().next().value)),_.shapeFlag|=256,o=_,Fi(p.type)?p:_}}},ou=Ql;function Ut(e,t){return H(e)?e.some(n=>Ut(n,t)):ie(e)?e.split(",").includes(t):ko(e)?e.test(t):!1}function Xl(e,t){$i(e,"a",t)}function zl(e,t){$i(e,"da",t)}function $i(e,t,n=ce){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(Qn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)sn(r.parent.vnode)&&Zl(s,t,n,r),r=r.parent}}function Zl(e,t,n,s){const r=Qn(t,e,s,!0);Zs(()=>{Fs(s[t],r)},n)}function os(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function ls(e){return e.shapeFlag&128?e.ssContent:e}function Qn(e,t,n=ce,s=!1){if(n){const r=n[e]||(n[e]=[]),i=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;pt();const l=dt(n),c=Ae(t,n,e,o);return l(),gt(),c});return s?r.unshift(i):r.push(i),i}}const Be=e=>(t,n=ce)=>(!rn||e==="sp")&&Qn(e,(...s)=>t(...s),n),ec=Be("bm"),Xn=Be("m"),tc=Be("bu"),Xs=Be("u"),zs=Be("bum"),Zs=Be("um"),nc=Be("sp"),sc=Be("rtg"),rc=Be("rtc");function ic(e,t=ce){Qn("ec",e,t)}function lu(e,t,n,s){let r;const i=n&&n[s];if(H(e)||ie(e)){r=new Array(e.length);for(let o=0,l=e.length;ot(o,l,void 0,i&&i[l]));else{const o=Object.keys(e);r=new Array(o.length);for(let l=0,c=o.length;l{const i=s.fn(...r);return i&&(i.key=s.key),i}:s.fn)}return e}function fu(e,t,n={},s,r){if(le.isCE||le.parent&&ft(le.parent)&&le.parent.isCE)return t!=="default"&&(n.name=t),se("slot",n,s&&s());let i=e[t];i&&i._c&&(i._d=!1),sr();const o=i&&Ki(i(n)),l=ro(ae,{key:n.key||o&&o.key||`_${t}`},o||(s?s():[]),o&&e._===1?64:-2);return!r&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),i&&i._c&&(i._d=!0),l}function Ki(e){return e.some(t=>at(t)?!(t.type===ge||t.type===ae&&!Ki(t.children)):!0)?e:null}function uu(e,t){const n={};for(const s in e)n[t&&/[A-Z]/.test(s)?`on:${s}`:En(s)]=e[s];return n}const bs=e=>e?fo(e)?Zn(e)||e.proxy:bs(e.parent):null,$t=re(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>bs(e.parent),$root:e=>bs(e.root),$emit:e=>e.emit,$options:e=>er(e),$forceUpdate:e=>e.f||(e.f=()=>{e.effect.dirty=!0,qn(e.update)}),$nextTick:e=>e.n||(e.n=Ws.bind(e.proxy)),$watch:e=>ql.bind(e)}),cs=(e,t)=>e!==z&&!e.__isScriptSetup&&X(e,t),Es={get({_:e},t){const{ctx:n,setupState:s,data:r,props:i,accessCache:o,type:l,appContext:c}=e;let u;if(t[0]!=="$"){const v=o[t];if(v!==void 0)switch(v){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return i[t]}else{if(cs(s,t))return o[t]=1,s[t];if(r!==z&&X(r,t))return o[t]=2,r[t];if((u=e.propsOptions[0])&&X(u,t))return o[t]=3,i[t];if(n!==z&&X(n,t))return o[t]=4,n[t];Cs&&(o[t]=0)}}const h=$t[t];let d,g;if(h)return t==="$attrs"&&Ee(e,"get",t),h(e);if((d=l.__cssModules)&&(d=d[t]))return d;if(n!==z&&X(n,t))return o[t]=4,n[t];if(g=c.config.globalProperties,X(g,t))return g[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:i}=e;return cs(r,t)?(r[t]=n,!0):s!==z&&X(s,t)?(s[t]=n,!0):X(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(i[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:i}},o){let l;return!!n[o]||e!==z&&X(e,o)||cs(t,o)||(l=i[0])&&X(l,o)||X(s,o)||X($t,o)||X(r.config.globalProperties,o)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:X(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}},oc=re({},Es,{get(e,t){if(t!==Symbol.unscopables)return Es.get(e,t,e)},has(e,t){return t[0]!=="_"&&!Ko(t)}});function au(){return null}function du(){return null}function hu(e){}function pu(e){}function gu(){return null}function _u(){}function mu(e,t){return null}function yu(){return ji().slots}function bu(){return ji().attrs}function ji(){const e=tt();return e.setupContext||(e.setupContext=ho(e))}function en(e){return H(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}function Eu(e,t){const n=en(e);for(const s in t){if(s.startsWith("__skip"))continue;let r=n[s];r?H(r)||K(r)?r=n[s]={type:r,default:t[s]}:r.default=t[s]:r===null&&(r=n[s]={default:t[s]}),r&&t[`__skip_${s}`]&&(r.skipFactory=!0)}return n}function Cu(e,t){return!e||!t?e||t:H(e)&&H(t)?e.concat(t):re({},en(e),en(t))}function Tu(e,t){const n={};for(const s in e)t.includes(s)||Object.defineProperty(n,s,{enumerable:!0,get:()=>e[s]});return n}function vu(e){const t=tt();let n=e();return As(),Hs(n)&&(n=n.catch(s=>{throw dt(t),s})),[n,()=>dt(t)]}let Cs=!0;function lc(e){const t=er(e),n=e.proxy,s=e.ctx;Cs=!1,t.beforeCreate&&wr(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:o,watch:l,provide:c,inject:u,created:h,beforeMount:d,mounted:g,beforeUpdate:v,updated:O,activated:V,deactivated:j,beforeDestroy:G,beforeUnmount:S,destroyed:p,unmounted:_,render:y,renderTracked:b,renderTriggered:I,errorCaptured:x,serverPrefetch:M,expose:P,inheritAttrs:$,components:R,directives:q,filters:te}=t;if(u&&cc(u,s,null),o)for(const J in o){const U=o[J];K(U)&&(s[J]=U.bind(n))}if(r){const J=r.call(n,n);ee(J)&&(e.data=Bs(J))}if(Cs=!0,i)for(const J in i){const U=i[J],Fe=K(U)?U.bind(n,n):K(U.get)?U.get.bind(n,n):me,on=!K(U)&&K(U.set)?U.set.bind(n):me,nt=Vc({get:Fe,set:on});Object.defineProperty(s,J,{enumerable:!0,configurable:!0,get:()=>nt.value,set:Ne=>nt.value=Ne})}if(l)for(const J in l)Wi(l[J],s,n,J);if(c){const J=K(c)?c.call(n):c;Reflect.ownKeys(J).forEach(U=>{pc(U,J[U])})}h&&wr(h,e,"c");function k(J,U){H(U)?U.forEach(Fe=>J(Fe.bind(n))):U&&J(U.bind(n))}if(k(ec,d),k(Xn,g),k(tc,v),k(Xs,O),k(Xl,V),k(zl,j),k(ic,x),k(rc,b),k(sc,I),k(zs,S),k(Zs,_),k(nc,M),H(P))if(P.length){const J=e.exposed||(e.exposed={});P.forEach(U=>{Object.defineProperty(J,U,{get:()=>n[U],set:Fe=>n[U]=Fe})})}else e.exposed||(e.exposed={});y&&e.render===me&&(e.render=y),$!=null&&(e.inheritAttrs=$),R&&(e.components=R),q&&(e.directives=q)}function cc(e,t,n=me){H(e)&&(e=Ts(e));for(const s in e){const r=e[s];let i;ee(r)?"default"in r?i=xn(r.from||s,r.default,!0):i=xn(r.from||s):i=xn(r),he(i)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>i.value,set:o=>i.value=o}):t[s]=i}}function wr(e,t,n){Ae(H(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function Wi(e,t,n,s){const r=s.includes(".")?Vi(n,s):()=>n[s];if(ie(e)){const i=t[e];K(i)&&vn(r,i)}else if(K(e))vn(r,e.bind(n));else if(ee(e))if(H(e))e.forEach(i=>Wi(i,t,n,s));else{const i=K(e.handler)?e.handler.bind(n):t[e.handler];K(i)&&vn(r,i,e)}}function er(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:o}}=e.appContext,l=i.get(t);let c;return l?c=l:!r.length&&!n&&!s?c=t:(c={},r.length&&r.forEach(u=>In(c,u,o,!0)),In(c,t,o)),ee(t)&&i.set(t,c),c}function In(e,t,n,s=!1){const{mixins:r,extends:i}=t;i&&In(e,i,n,!0),r&&r.forEach(o=>In(e,o,n,!0));for(const o in t)if(!(s&&o==="expose")){const l=fc[o]||n&&n[o];e[o]=l?l(e[o],t[o]):t[o]}return e}const fc={data:Ar,props:Sr,emits:Sr,methods:Bt,computed:Bt,beforeCreate:pe,created:pe,beforeMount:pe,mounted:pe,beforeUpdate:pe,updated:pe,beforeDestroy:pe,beforeUnmount:pe,destroyed:pe,unmounted:pe,activated:pe,deactivated:pe,errorCaptured:pe,serverPrefetch:pe,components:Bt,directives:Bt,watch:ac,provide:Ar,inject:uc};function Ar(e,t){return t?e?function(){return re(K(e)?e.call(this,this):e,K(t)?t.call(this,this):t)}:t:e}function uc(e,t){return Bt(Ts(e),Ts(t))}function Ts(e){if(H(e)){const t={};for(let n=0;n1)return n&&K(t)?t.call(s&&s.proxy):t}}function xu(){return!!(ce||le||Ot)}function gc(e,t,n,s=!1){const r={},i={};Sn(i,zn,1),e.propsDefaults=Object.create(null),qi(e,t,r,i);for(const o in e.propsOptions[0])o in r||(r[o]=void 0);n?e.props=s?r:yl(r):e.type.props?e.props=r:e.props=i,e.attrs=i}function _c(e,t,n,s){const{props:r,attrs:i,vnode:{patchFlag:o}}=e,l=Q(r),[c]=e.propsOptions;let u=!1;if((s||o>0)&&!(o&16)){if(o&8){const h=e.vnode.dynamicProps;for(let d=0;d{c=!0;const[g,v]=Ji(d,t,!0);re(o,g),v&&l.push(...v)};!n&&t.mixins.length&&t.mixins.forEach(h),e.extends&&h(e.extends),e.mixins&&e.mixins.forEach(h)}if(!i&&!c)return ee(e)&&s.set(e,Et),Et;if(H(i))for(let h=0;h-1,v[1]=V<0||O-1||X(v,"default"))&&l.push(d)}}}const u=[o,l];return ee(e)&&s.set(e,u),u}function Or(e){return e[0]!=="$"&&!Tt(e)}function Rr(e){return e===null?"null":typeof e=="function"?e.name||"":typeof e=="object"&&e.constructor&&e.constructor.name||""}function Pr(e,t){return Rr(e)===Rr(t)}function Nr(e,t){return H(t)?t.findIndex(n=>Pr(n,e)):K(t)&&Pr(t,e)?0:-1}const Yi=e=>e[0]==="_"||e==="$stable",tr=e=>H(e)?e.map(ve):[ve(e)],mc=(e,t,n)=>{if(t._n)return t;const s=Li((...r)=>tr(t(...r)),n);return s._c=!1,s},Qi=(e,t,n)=>{const s=e._ctx;for(const r in e){if(Yi(r))continue;const i=e[r];if(K(i))t[r]=mc(r,i,s);else if(i!=null){const o=tr(i);t[r]=()=>o}}},Xi=(e,t)=>{const n=tr(t);e.slots.default=()=>n},yc=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=Q(t),Sn(t,"_",n)):Qi(t,e.slots={})}else e.slots={},t&&Xi(e,t);Sn(e.slots,zn,1)},bc=(e,t,n)=>{const{vnode:s,slots:r}=e;let i=!0,o=z;if(s.shapeFlag&32){const l=t._;l?n&&l===1?i=!1:(re(r,t),!n&&l===1&&delete r._):(i=!t.$stable,Qi(t,r)),o=t}else t&&(Xi(e,t),o={default:1});if(i)for(const l in r)!Yi(l)&&o[l]==null&&delete r[l]};function Ln(e,t,n,s,r=!1){if(H(e)){e.forEach((g,v)=>Ln(g,t&&(H(t)?t[v]:t),n,s,r));return}if(ft(s)&&!r)return;const i=s.shapeFlag&4?Zn(s.component)||s.component.proxy:s.el,o=r?null:i,{i:l,r:c}=e,u=t&&t.r,h=l.refs===z?l.refs={}:l.refs,d=l.setupState;if(u!=null&&u!==c&&(ie(u)?(h[u]=null,X(d,u)&&(d[u]=null)):he(u)&&(u.value=null)),K(c))Xe(c,l,12,[o,h]);else{const g=ie(c),v=he(c);if(g||v){const O=()=>{if(e.f){const V=g?X(d,c)?d[c]:h[c]:c.value;r?H(V)&&Fs(V,i):H(V)?V.includes(i)||V.push(i):g?(h[c]=[i],X(d,c)&&(d[c]=h[c])):(c.value=[i],e.k&&(h[e.k]=c.value))}else g?(h[c]=o,X(d,c)&&(d[c]=o)):v&&(c.value=o,e.k&&(h[e.k]=o))};o?(O.id=-1,ue(O,n)):O()}}}let Ke=!1;const Ec=e=>e.namespaceURI.includes("svg")&&e.tagName!=="foreignObject",Cc=e=>e.namespaceURI.includes("MathML"),_n=e=>{if(Ec(e))return"svg";if(Cc(e))return"mathml"},mn=e=>e.nodeType===8;function Tc(e){const{mt:t,p:n,o:{patchProp:s,createText:r,nextSibling:i,parentNode:o,remove:l,insert:c,createComment:u}}=e,h=(p,_)=>{if(!_.hasChildNodes()){n(null,p,_),Nn(),_._vnode=p;return}Ke=!1,d(_.firstChild,p,null,null,null),Nn(),_._vnode=p,Ke&&console.error("Hydration completed but contains mismatches.")},d=(p,_,y,b,I,x=!1)=>{const M=mn(p)&&p.data==="[",P=()=>V(p,_,y,b,I,M),{type:$,ref:R,shapeFlag:q,patchFlag:te}=_;let oe=p.nodeType;_.el=p,te===-2&&(x=!1,_.dynamicChildren=null);let k=null;switch($){case It:oe!==3?_.children===""?(c(_.el=r(""),o(p),p),k=p):k=P():(p.data!==_.children&&(Ke=!0,p.data=_.children),k=i(p));break;case ge:S(p)?(k=i(p),G(_.el=p.content.firstChild,p,y)):oe!==8||M?k=P():k=i(p);break;case Rt:if(M&&(p=i(p),oe=p.nodeType),oe===1||oe===3){k=p;const J=!_.children.length;for(let U=0;U<_.staticCount;U++)J&&(_.children+=k.nodeType===1?k.outerHTML:k.data),U===_.staticCount-1&&(_.anchor=k),k=i(k);return M?i(k):k}else P();break;case ae:M?k=O(p,_,y,b,I,x):k=P();break;default:if(q&1)(oe!==1||_.type.toLowerCase()!==p.tagName.toLowerCase())&&!S(p)?k=P():k=g(p,_,y,b,I,x);else if(q&6){_.slotScopeIds=I;const J=o(p);if(M?k=j(p):mn(p)&&p.data==="teleport start"?k=j(p,p.data,"teleport end"):k=i(p),t(_,J,null,y,b,_n(J),x),ft(_)){let U;M?(U=se(ae),U.anchor=k?k.previousSibling:J.lastChild):U=p.nodeType===3?lo(""):se("div"),U.el=p,_.component.subTree=U}}else q&64?oe!==8?k=P():k=_.type.hydrate(p,_,y,b,I,x,e,v):q&128&&(k=_.type.hydrate(p,_,y,b,_n(o(p)),I,x,e,d))}return R!=null&&Ln(R,null,b,_),k},g=(p,_,y,b,I,x)=>{x=x||!!_.dynamicChildren;const{type:M,props:P,patchFlag:$,shapeFlag:R,dirs:q,transition:te}=_,oe=M==="input"||M==="option";if(oe||$!==-1){q&&Le(_,null,y,"created");let k=!1;if(S(p)){k=Zi(b,te)&&y&&y.vnode.props&&y.vnode.props.appear;const U=p.content.firstChild;k&&te.beforeEnter(U),G(U,p,y),_.el=p=U}if(R&16&&!(P&&(P.innerHTML||P.textContent))){let U=v(p.firstChild,_,p,y,b,I,x);for(;U;){Ke=!0;const Fe=U;U=U.nextSibling,l(Fe)}}else R&8&&p.textContent!==_.children&&(Ke=!0,p.textContent=_.children);if(P)if(oe||!x||$&48)for(const U in P)(oe&&(U.endsWith("value")||U==="indeterminate")||tn(U)&&!Tt(U)||U[0]===".")&&s(p,U,null,P[U],void 0,void 0,y);else P.onClick&&s(p,"onClick",null,P.onClick,void 0,void 0,y);let J;(J=P&&P.onVnodeBeforeMount)&&_e(J,y,_),q&&Le(_,null,y,"beforeMount"),((J=P&&P.onVnodeMounted)||q||k)&&Hi(()=>{J&&_e(J,y,_),k&&te.enter(p),q&&Le(_,null,y,"mounted")},b)}return p.nextSibling},v=(p,_,y,b,I,x,M)=>{M=M||!!_.dynamicChildren;const P=_.children,$=P.length;for(let R=0;R<$;R++){const q=M?P[R]:P[R]=ve(P[R]);if(p)p=d(p,q,b,I,x,M);else{if(q.type===It&&!q.children)continue;Ke=!0,n(null,q,y,null,b,I,_n(y),x)}}return p},O=(p,_,y,b,I,x)=>{const{slotScopeIds:M}=_;M&&(I=I?I.concat(M):M);const P=o(p),$=v(i(p),_,P,y,b,I,x);return $&&mn($)&&$.data==="]"?i(_.anchor=$):(Ke=!0,c(_.anchor=u("]"),P,$),$)},V=(p,_,y,b,I,x)=>{if(Ke=!0,_.el=null,x){const $=j(p);for(;;){const R=i(p);if(R&&R!==$)l(R);else break}}const M=i(p),P=o(p);return l(p),n(null,_,P,M,y,b,_n(P),I),M},j=(p,_="[",y="]")=>{let b=0;for(;p;)if(p=i(p),p&&mn(p)&&(p.data===_&&b++,p.data===y)){if(b===0)return i(p);b--}return p},G=(p,_,y)=>{const b=_.parentNode;b&&b.replaceChild(p,_);let I=y;for(;I;)I.vnode.el===_&&(I.vnode.el=I.subTree.el=p),I=I.parent},S=p=>p.nodeType===1&&p.tagName.toLowerCase()==="template";return[h,d]}const ue=Hi;function vc(e){return zi(e)}function xc(e){return zi(e,Tc)}function zi(e,t){const n=ni();n.__VUE__=!0;const{insert:s,remove:r,patchProp:i,createElement:o,createText:l,createComment:c,setText:u,setElementText:h,parentNode:d,nextSibling:g,setScopeId:v=me,insertStaticContent:O}=e,V=(f,a,m,E=null,C=null,A=null,L=void 0,w=null,N=!!a.dynamicChildren)=>{if(f===a)return;f&&!Re(f,a)&&(E=ln(f),Ne(f,C,A,!0),f=null),a.patchFlag===-2&&(N=!1,a.dynamicChildren=null);const{type:T,ref:F,shapeFlag:B}=a;switch(T){case It:j(f,a,m,E);break;case ge:G(f,a,m,E);break;case Rt:f==null&&S(a,m,E,L);break;case ae:R(f,a,m,E,C,A,L,w,N);break;default:B&1?y(f,a,m,E,C,A,L,w,N):B&6?q(f,a,m,E,C,A,L,w,N):(B&64||B&128)&&T.process(f,a,m,E,C,A,L,w,N,_t)}F!=null&&C&&Ln(F,f&&f.ref,A,a||f,!a)},j=(f,a,m,E)=>{if(f==null)s(a.el=l(a.children),m,E);else{const C=a.el=f.el;a.children!==f.children&&u(C,a.children)}},G=(f,a,m,E)=>{f==null?s(a.el=c(a.children||""),m,E):a.el=f.el},S=(f,a,m,E)=>{[f.el,f.anchor]=O(f.children,a,m,E,f.el,f.anchor)},p=({el:f,anchor:a},m,E)=>{let C;for(;f&&f!==a;)C=g(f),s(f,m,E),f=C;s(a,m,E)},_=({el:f,anchor:a})=>{let m;for(;f&&f!==a;)m=g(f),r(f),f=m;r(a)},y=(f,a,m,E,C,A,L,w,N)=>{a.type==="svg"?L="svg":a.type==="math"&&(L="mathml"),f==null?b(a,m,E,C,A,L,w,N):M(f,a,C,A,L,w,N)},b=(f,a,m,E,C,A,L,w)=>{let N,T;const{props:F,shapeFlag:B,transition:D,dirs:W}=f;if(N=f.el=o(f.type,A,F&&F.is,F),B&8?h(N,f.children):B&16&&x(f.children,N,null,E,C,fs(f,A),L,w),W&&Le(f,null,E,"created"),I(N,f,f.scopeId,L,E),F){for(const Z in F)Z!=="value"&&!Tt(Z)&&i(N,Z,null,F[Z],A,f.children,E,C,He);"value"in F&&i(N,"value",null,F.value,A),(T=F.onVnodeBeforeMount)&&_e(T,E,f)}W&&Le(f,null,E,"beforeMount");const Y=Zi(C,D);Y&&D.beforeEnter(N),s(N,a,m),((T=F&&F.onVnodeMounted)||Y||W)&&ue(()=>{T&&_e(T,E,f),Y&&D.enter(N),W&&Le(f,null,E,"mounted")},C)},I=(f,a,m,E,C)=>{if(m&&v(f,m),E)for(let A=0;A{for(let T=N;T{const w=a.el=f.el;let{patchFlag:N,dynamicChildren:T,dirs:F}=a;N|=f.patchFlag&16;const B=f.props||z,D=a.props||z;let W;if(m&&st(m,!1),(W=D.onVnodeBeforeUpdate)&&_e(W,m,a,f),F&&Le(a,f,m,"beforeUpdate"),m&&st(m,!0),T?P(f.dynamicChildren,T,w,m,E,fs(a,C),A):L||U(f,a,w,null,m,E,fs(a,C),A,!1),N>0){if(N&16)$(w,a,B,D,m,E,C);else if(N&2&&B.class!==D.class&&i(w,"class",null,D.class,C),N&4&&i(w,"style",B.style,D.style,C),N&8){const Y=a.dynamicProps;for(let Z=0;Z{W&&_e(W,m,a,f),F&&Le(a,f,m,"updated")},E)},P=(f,a,m,E,C,A,L)=>{for(let w=0;w{if(m!==E){if(m!==z)for(const w in m)!Tt(w)&&!(w in E)&&i(f,w,m[w],null,L,a.children,C,A,He);for(const w in E){if(Tt(w))continue;const N=E[w],T=m[w];N!==T&&w!=="value"&&i(f,w,T,N,L,a.children,C,A,He)}"value"in E&&i(f,"value",m.value,E.value,L)}},R=(f,a,m,E,C,A,L,w,N)=>{const T=a.el=f?f.el:l(""),F=a.anchor=f?f.anchor:l("");let{patchFlag:B,dynamicChildren:D,slotScopeIds:W}=a;W&&(w=w?w.concat(W):W),f==null?(s(T,m,E),s(F,m,E),x(a.children||[],m,F,C,A,L,w,N)):B>0&&B&64&&D&&f.dynamicChildren?(P(f.dynamicChildren,D,m,C,A,L,w),(a.key!=null||C&&a===C.subTree)&&nr(f,a,!0)):U(f,a,m,F,C,A,L,w,N)},q=(f,a,m,E,C,A,L,w,N)=>{a.slotScopeIds=w,f==null?a.shapeFlag&512?C.ctx.activate(a,m,E,L,N):te(a,m,E,C,A,L,N):oe(f,a,N)},te=(f,a,m,E,C,A,L)=>{const w=f.component=co(f,E,C);if(sn(f)&&(w.ctx.renderer=_t),uo(w),w.asyncDep){if(C&&C.registerDep(w,k),!f.el){const N=w.subTree=se(ge);G(null,N,a,m)}}else k(w,f,a,m,C,A,L)},oe=(f,a,m)=>{const E=a.component=f.component;if(Fl(f,a,m))if(E.asyncDep&&!E.asyncResolved){J(E,a,m);return}else E.next=a,Rl(E.update),E.effect.dirty=!0,E.update();else a.el=f.el,E.vnode=a},k=(f,a,m,E,C,A,L)=>{const w=()=>{if(f.isMounted){let{next:F,bu:B,u:D,parent:W,vnode:Y}=f;{const mt=eo(f);if(mt){F&&(F.el=Y.el,J(f,F,L)),mt.asyncDep.then(()=>{f.isUnmounted||w()});return}}let Z=F,ne;st(f,!1),F?(F.el=Y.el,J(f,F,L)):F=Y,B&&vt(B),(ne=F.props&&F.props.onVnodeBeforeUpdate)&&_e(ne,W,F,Y),st(f,!0);const fe=Tn(f),Oe=f.subTree;f.subTree=fe,V(Oe,fe,d(Oe.el),ln(Oe),f,C,A),F.el=fe.el,Z===null&&Gs(f,fe.el),D&&ue(D,C),(ne=F.props&&F.props.onVnodeUpdated)&&ue(()=>_e(ne,W,F,Y),C)}else{let F;const{el:B,props:D}=a,{bm:W,m:Y,parent:Z}=f,ne=ft(a);if(st(f,!1),W&&vt(W),!ne&&(F=D&&D.onVnodeBeforeMount)&&_e(F,Z,a),st(f,!0),B&&ns){const fe=()=>{f.subTree=Tn(f),ns(B,f.subTree,f,C,null)};ne?a.type.__asyncLoader().then(()=>!f.isUnmounted&&fe()):fe()}else{const fe=f.subTree=Tn(f);V(null,fe,m,E,f,C,A),a.el=fe.el}if(Y&&ue(Y,C),!ne&&(F=D&&D.onVnodeMounted)){const fe=a;ue(()=>_e(F,Z,fe),C)}(a.shapeFlag&256||Z&&ft(Z.vnode)&&Z.vnode.shapeFlag&256)&&f.a&&ue(f.a,C),f.isMounted=!0,a=m=E=null}},N=f.effect=new qt(w,me,()=>qn(T),f.scope),T=f.update=()=>{N.dirty&&N.run()};T.id=f.uid,st(f,!0),T()},J=(f,a,m)=>{a.component=f;const E=f.vnode.props;f.vnode=a,f.next=null,_c(f,a.props,E,m),bc(f,a.children,m),pt(),Er(f),gt()},U=(f,a,m,E,C,A,L,w,N=!1)=>{const T=f&&f.children,F=f?f.shapeFlag:0,B=a.children,{patchFlag:D,shapeFlag:W}=a;if(D>0){if(D&128){on(T,B,m,E,C,A,L,w,N);return}else if(D&256){Fe(T,B,m,E,C,A,L,w,N);return}}W&8?(F&16&&He(T,C,A),B!==T&&h(m,B)):F&16?W&16?on(T,B,m,E,C,A,L,w,N):He(T,C,A,!0):(F&8&&h(m,""),W&16&&x(B,m,E,C,A,L,w,N))},Fe=(f,a,m,E,C,A,L,w,N)=>{f=f||Et,a=a||Et;const T=f.length,F=a.length,B=Math.min(T,F);let D;for(D=0;DF?He(f,C,A,!0,!1,B):x(a,m,E,C,A,L,w,N,B)},on=(f,a,m,E,C,A,L,w,N)=>{let T=0;const F=a.length;let B=f.length-1,D=F-1;for(;T<=B&&T<=D;){const W=f[T],Y=a[T]=N?Je(a[T]):ve(a[T]);if(Re(W,Y))V(W,Y,m,null,C,A,L,w,N);else break;T++}for(;T<=B&&T<=D;){const W=f[B],Y=a[D]=N?Je(a[D]):ve(a[D]);if(Re(W,Y))V(W,Y,m,null,C,A,L,w,N);else break;B--,D--}if(T>B){if(T<=D){const W=D+1,Y=WD)for(;T<=B;)Ne(f[T],C,A,!0),T++;else{const W=T,Y=T,Z=new Map;for(T=Y;T<=D;T++){const Ce=a[T]=N?Je(a[T]):ve(a[T]);Ce.key!=null&&Z.set(Ce.key,T)}let ne,fe=0;const Oe=D-Y+1;let mt=!1,cr=0;const Vt=new Array(Oe);for(T=0;T=Oe){Ne(Ce,C,A,!0);continue}let Ie;if(Ce.key!=null)Ie=Z.get(Ce.key);else for(ne=Y;ne<=D;ne++)if(Vt[ne-Y]===0&&Re(Ce,a[ne])){Ie=ne;break}Ie===void 0?Ne(Ce,C,A,!0):(Vt[Ie-Y]=T+1,Ie>=cr?cr=Ie:mt=!0,V(Ce,a[Ie],m,null,C,A,L,w,N),fe++)}const fr=mt?wc(Vt):Et;for(ne=fr.length-1,T=Oe-1;T>=0;T--){const Ce=Y+T,Ie=a[Ce],ur=Ce+1{const{el:A,type:L,transition:w,children:N,shapeFlag:T}=f;if(T&6){nt(f.component.subTree,a,m,E);return}if(T&128){f.suspense.move(a,m,E);return}if(T&64){L.move(f,a,m,_t);return}if(L===ae){s(A,a,m);for(let B=0;Bw.enter(A),C);else{const{leave:B,delayLeave:D,afterLeave:W}=w,Y=()=>s(A,a,m),Z=()=>{B(A,()=>{Y(),W&&W()})};D?D(A,Y,Z):Z()}else s(A,a,m)},Ne=(f,a,m,E=!1,C=!1)=>{const{type:A,props:L,ref:w,children:N,dynamicChildren:T,shapeFlag:F,patchFlag:B,dirs:D}=f;if(w!=null&&Ln(w,null,m,f,!0),F&256){a.ctx.deactivate(f);return}const W=F&1&&D,Y=!ft(f);let Z;if(Y&&(Z=L&&L.onVnodeBeforeUnmount)&&_e(Z,a,f),F&6)Fo(f.component,m,E);else{if(F&128){f.suspense.unmount(m,E);return}W&&Le(f,null,a,"beforeUnmount"),F&64?f.type.remove(f,a,m,C,_t,E):T&&(A!==ae||B>0&&B&64)?He(T,a,m,!1,!0):(A===ae&&B&384||!C&&F&16)&&He(N,a,m),E&&or(f)}(Y&&(Z=L&&L.onVnodeUnmounted)||W)&&ue(()=>{Z&&_e(Z,a,f),W&&Le(f,null,a,"unmounted")},m)},or=f=>{const{type:a,el:m,anchor:E,transition:C}=f;if(a===ae){Mo(m,E);return}if(a===Rt){_(f);return}const A=()=>{r(m),C&&!C.persisted&&C.afterLeave&&C.afterLeave()};if(f.shapeFlag&1&&C&&!C.persisted){const{leave:L,delayLeave:w}=C,N=()=>L(m,A);w?w(f.el,A,N):N()}else A()},Mo=(f,a)=>{let m;for(;f!==a;)m=g(f),r(f),f=m;r(a)},Fo=(f,a,m)=>{const{bum:E,scope:C,update:A,subTree:L,um:w}=f;E&&vt(E),C.stop(),A&&(A.active=!1,Ne(L,f,a,m)),w&&ue(w,a),ue(()=>{f.isUnmounted=!0},a),a&&a.pendingBranch&&!a.isUnmounted&&f.asyncDep&&!f.asyncResolved&&f.suspenseId===a.pendingId&&(a.deps--,a.deps===0&&a.resolve())},He=(f,a,m,E=!1,C=!1,A=0)=>{for(let L=A;Lf.shapeFlag&6?ln(f.component.subTree):f.shapeFlag&128?f.suspense.next():g(f.anchor||f.el);let es=!1;const lr=(f,a,m)=>{f==null?a._vnode&&Ne(a._vnode,null,null,!0):V(a._vnode||null,f,a,null,null,null,m),es||(es=!0,Er(),Nn(),es=!1),a._vnode=f},_t={p:V,um:Ne,m:nt,r:or,mt:te,mc:x,pc:U,pbc:P,n:ln,o:e};let ts,ns;return t&&([ts,ns]=t(_t)),{render:lr,hydrate:ts,createApp:hc(lr,ts)}}function fs({type:e,props:t},n){return n==="svg"&&e==="foreignObject"||n==="mathml"&&e==="annotation-xml"&&t&&t.encoding&&t.encoding.includes("html")?void 0:n}function st({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function Zi(e,t){return(!e||e&&!e.pendingBranch)&&t&&!t.persisted}function nr(e,t,n=!1){const s=e.children,r=t.children;if(H(s)&&H(r))for(let i=0;i>1,e[n[l]]0&&(t[s]=n[i-1]),n[i]=s)}}for(i=n.length,o=n[i-1];i-- >0;)n[i]=o,o=t[o];return n}function eo(e){const t=e.subTree.component;if(t)return t.asyncDep&&!t.asyncResolved?t:eo(t)}const Ac=e=>e.__isTeleport,Kt=e=>e&&(e.disabled||e.disabled===""),Ir=e=>typeof SVGElement<"u"&&e instanceof SVGElement,Lr=e=>typeof MathMLElement=="function"&&e instanceof MathMLElement,xs=(e,t)=>{const n=e&&e.to;return ie(n)?t?t(n):null:n},Sc={name:"Teleport",__isTeleport:!0,process(e,t,n,s,r,i,o,l,c,u){const{mc:h,pc:d,pbc:g,o:{insert:v,querySelector:O,createText:V,createComment:j}}=u,G=Kt(t.props);let{shapeFlag:S,children:p,dynamicChildren:_}=t;if(e==null){const y=t.el=V(""),b=t.anchor=V("");v(y,n,s),v(b,n,s);const I=t.target=xs(t.props,O),x=t.targetAnchor=V("");I&&(v(x,I),o==="svg"||Ir(I)?o="svg":(o==="mathml"||Lr(I))&&(o="mathml"));const M=(P,$)=>{S&16&&h(p,P,$,r,i,o,l,c)};G?M(n,b):I&&M(I,x)}else{t.el=e.el;const y=t.anchor=e.anchor,b=t.target=e.target,I=t.targetAnchor=e.targetAnchor,x=Kt(e.props),M=x?n:b,P=x?y:I;if(o==="svg"||Ir(b)?o="svg":(o==="mathml"||Lr(b))&&(o="mathml"),_?(g(e.dynamicChildren,_,M,r,i,o,l),nr(e,t,!0)):c||d(e,t,M,P,r,i,o,l,!1),G)x?t.props&&e.props&&t.props.to!==e.props.to&&(t.props.to=e.props.to):yn(t,n,y,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const $=t.target=xs(t.props,O);$&&yn(t,$,null,u,0)}else x&&yn(t,b,I,u,1)}to(t)},remove(e,t,n,s,{um:r,o:{remove:i}},o){const{shapeFlag:l,children:c,anchor:u,targetAnchor:h,target:d,props:g}=e;if(d&&i(h),o&&i(u),l&16){const v=o||!Kt(g);for(let O=0;O0?ye||Et:null,no(),ut>0&&ye&&ye.push(e),e}function Au(e,t,n,s,r,i){return so(oo(e,t,n,s,r,i,!0))}function ro(e,t,n,s,r){return so(se(e,t,n,s,r,!0))}function at(e){return e?e.__v_isVNode===!0:!1}function Re(e,t){return e.type===t.type&&e.key===t.key}function Su(e){}const zn="__vInternal",io=({key:e})=>e??null,wn=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?ie(e)||he(e)||K(e)?{i:le,r:e,k:t,f:!!n}:e:null);function oo(e,t=null,n=null,s=0,r=null,i=e===ae?0:1,o=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&io(t),ref:t&&wn(t),scopeId:Yn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:le};return l?(rr(c,n),i&128&&e.normalize(c)):n&&(c.shapeFlag|=ie(n)?8:16),ut>0&&!o&&ye&&(c.patchFlag>0||i&6)&&c.patchFlag!==32&&ye.push(c),c}const se=Rc;function Rc(e,t=null,n=null,s=0,r=null,i=!1){if((!e||e===Mi)&&(e=ge),at(e)){const l=Ue(e,t,!0);return n&&rr(l,n),ut>0&&!i&&ye&&(l.shapeFlag&6?ye[ye.indexOf(e)]=l:ye.push(l)),l.patchFlag|=-2,l}if(Hc(e)&&(e=e.__vccOpts),t){t=Pc(t);let{class:l,style:c}=t;l&&!ie(l)&&(t.class=$n(l)),ee(c)&&(Ci(c)&&!H(c)&&(c=re({},c)),t.style=Bn(c))}const o=ie(e)?1:Fi(e)?128:Ac(e)?64:ee(e)?4:K(e)?2:0;return oo(e,t,n,s,r,o,i,!0)}function Pc(e){return e?Ci(e)||zn in e?re({},e):e:null}function Ue(e,t,n=!1){const{props:s,ref:r,patchFlag:i,children:o}=e,l=t?Nc(s||{},t):s;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&io(l),ref:t&&t.ref?n&&r?H(r)?r.concat(wn(t)):[r,wn(t)]:wn(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==ae?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&Ue(e.ssContent),ssFallback:e.ssFallback&&Ue(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function lo(e=" ",t=0){return se(It,null,e,t)}function Ou(e,t){const n=se(Rt,null,e);return n.staticCount=t,n}function Ru(e="",t=!1){return t?(sr(),ro(ge,null,e)):se(ge,null,e)}function ve(e){return e==null||typeof e=="boolean"?se(ge):H(e)?se(ae,null,e.slice()):typeof e=="object"?Je(e):se(It,null,String(e))}function Je(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:Ue(e)}function rr(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(H(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),rr(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!(zn in t)?t._ctx=le:r===3&&le&&(le.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else K(t)?(t={default:t,_ctx:le},n=32):(t=String(t),s&64?(n=16,t=[lo(t)]):n=8);e.children=t,e.shapeFlag|=n}function Nc(...e){const t={};for(let n=0;nce||le;let Mn,ws;{const e=ni(),t=(n,s)=>{let r;return(r=e[n])||(r=e[n]=[]),r.push(s),i=>{r.length>1?r.forEach(o=>o(i)):r[0](i)}};Mn=t("__VUE_INSTANCE_SETTERS__",n=>ce=n),ws=t("__VUE_SSR_SETTERS__",n=>rn=n)}const dt=e=>{const t=ce;return Mn(e),e.scope.on(),()=>{e.scope.off(),Mn(t)}},As=()=>{ce&&ce.scope.off(),Mn(null)};function fo(e){return e.vnode.shapeFlag&4}let rn=!1;function uo(e,t=!1){t&&ws(t);const{props:n,children:s}=e.vnode,r=fo(e);gc(e,n,r,t),yc(e,s);const i=r?Mc(e,t):void 0;return t&&ws(!1),i}function Mc(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Ti(new Proxy(e.ctx,Es));const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?ho(e):null,i=dt(e);pt();const o=Xe(s,e,0,[e.props,r]);if(gt(),i(),Hs(o)){if(o.then(As,As),t)return o.then(l=>{Ss(e,l,t)}).catch(l=>{Ht(l,e,0)});e.asyncDep=o}else Ss(e,o,t)}else ao(e,t)}function Ss(e,t,n){K(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:ee(t)&&(e.setupState=Ai(t)),ao(e,n)}let Fn,Os;function Pu(e){Fn=e,Os=t=>{t.render._rc&&(t.withProxy=new Proxy(t.ctx,oc))}}const Nu=()=>!Fn;function ao(e,t,n){const s=e.type;if(!e.render){if(!t&&Fn&&!s.render){const r=s.template||er(e).template;if(r){const{isCustomElement:i,compilerOptions:o}=e.appContext.config,{delimiters:l,compilerOptions:c}=s,u=re(re({isCustomElement:i,delimiters:l},o),c);s.render=Fn(r,u)}}e.render=s.render||me,Os&&Os(e)}{const r=dt(e);pt();try{lc(e)}finally{gt(),r()}}}function Fc(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get(t,n){return Ee(e,"get","$attrs"),t[n]}}))}function ho(e){const t=n=>{e.exposed=n||{}};return{get attrs(){return Fc(e)},slots:e.slots,emit:e.emit,expose:t}}function Zn(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(Ai(Ti(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in $t)return $t[n](e)},has(t,n){return n in t||n in $t}}))}function Rs(e,t=!0){return K(e)?e.displayName||e.name:e.name||t&&e.__name}function Hc(e){return K(e)&&"__vccOpts"in e}const Vc=(e,t)=>bl(e,t,rn);function Iu(e,t,n=z){const s=tt(),r=be(t),i=xe(t),o=vl((c,u)=>{let h;return Gl(()=>{const d=e[t];Pe(h,d)&&(h=d,u())}),{get(){return c(),n.get?n.get(h):h},set(d){const g=s.vnode.props;!(g&&(t in g||r in g||i in g)&&(`onUpdate:${t}`in g||`onUpdate:${r}`in g||`onUpdate:${i}`in g))&&Pe(d,h)&&(h=d,u()),s.emit(`update:${t}`,n.set?n.set(d):d)}}}),l=t==="modelValue"?"modelModifiers":`${t}Modifiers`;return o[Symbol.iterator]=()=>{let c=0;return{next(){return c<2?{value:c++?e[l]||{}:o,done:!1}:{done:!0}}}},o}function kc(e,t,n){const s=arguments.length;return s===2?ee(t)&&!H(t)?at(t)?se(e,null,[t]):se(e,t):se(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&at(n)&&(n=[n]),se(e,t,n))}function Lu(){}function Mu(e,t,n,s){const r=n[s];if(r&&Dc(r,e))return r;const i=t();return i.memo=e.slice(),n[s]=i}function Dc(e,t){const n=e.memo;if(n.length!=t.length)return!1;for(let s=0;s0&&ye&&ye.push(e),!0}const Uc="3.4.21",Fu=me,Hu=Al,Vu=bt,ku=Ni,Bc={createComponentInstance:co,setupComponent:uo,renderComponentRoot:Tn,setCurrentRenderingInstance:Xt,isVNode:at,normalizeVNode:ve},Du=Bc,Uu=null,Bu=null,$u=null;/** +* @vue/runtime-dom v3.4.21 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/const $c="http://www.w3.org/2000/svg",Kc="http://www.w3.org/1998/Math/MathML",Ye=typeof document<"u"?document:null,Fr=Ye&&Ye.createElement("template"),jc={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t==="svg"?Ye.createElementNS($c,e):t==="mathml"?Ye.createElementNS(Kc,e):Ye.createElement(e,n?{is:n}:void 0);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>Ye.createTextNode(e),createComment:e=>Ye.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Ye.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,i){const o=n?n.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===i||!(r=r.nextSibling)););else{Fr.innerHTML=s==="svg"?`${e}`:s==="mathml"?`${e}`:e;const l=Fr.content;if(s==="svg"||s==="mathml"){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}},je="transition",kt="animation",Lt=Symbol("_vtc"),po=(e,{slots:t})=>kc(Yl,_o(e),t);po.displayName="Transition";const go={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},Wc=po.props=re({},Di,go),rt=(e,t=[])=>{H(e)?e.forEach(n=>n(...t)):e&&e(...t)},Hr=e=>e?H(e)?e.some(t=>t.length>1):e.length>1:!1;function _o(e){const t={};for(const R in e)R in go||(t[R]=e[R]);if(e.css===!1)return t;const{name:n="v",type:s,duration:r,enterFromClass:i=`${n}-enter-from`,enterActiveClass:o=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:c=i,appearActiveClass:u=o,appearToClass:h=l,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:g=`${n}-leave-active`,leaveToClass:v=`${n}-leave-to`}=e,O=Gc(r),V=O&&O[0],j=O&&O[1],{onBeforeEnter:G,onEnter:S,onEnterCancelled:p,onLeave:_,onLeaveCancelled:y,onBeforeAppear:b=G,onAppear:I=S,onAppearCancelled:x=p}=t,M=(R,q,te)=>{We(R,q?h:l),We(R,q?u:o),te&&te()},P=(R,q)=>{R._isLeaving=!1,We(R,d),We(R,v),We(R,g),q&&q()},$=R=>(q,te)=>{const oe=R?I:S,k=()=>M(q,R,te);rt(oe,[q,k]),Vr(()=>{We(q,R?c:i),Ve(q,R?h:l),Hr(oe)||kr(q,s,V,k)})};return re(t,{onBeforeEnter(R){rt(G,[R]),Ve(R,i),Ve(R,o)},onBeforeAppear(R){rt(b,[R]),Ve(R,c),Ve(R,u)},onEnter:$(!1),onAppear:$(!0),onLeave(R,q){R._isLeaving=!0;const te=()=>P(R,q);Ve(R,d),yo(),Ve(R,g),Vr(()=>{R._isLeaving&&(We(R,d),Ve(R,v),Hr(_)||kr(R,s,j,te))}),rt(_,[R,te])},onEnterCancelled(R){M(R,!1),rt(p,[R])},onAppearCancelled(R){M(R,!0),rt(x,[R])},onLeaveCancelled(R){P(R),rt(y,[R])}})}function Gc(e){if(e==null)return null;if(ee(e))return[us(e.enter),us(e.leave)];{const t=us(e);return[t,t]}}function us(e){return On(e)}function Ve(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e[Lt]||(e[Lt]=new Set)).add(t)}function We(e,t){t.split(/\s+/).forEach(s=>s&&e.classList.remove(s));const n=e[Lt];n&&(n.delete(t),n.size||(e[Lt]=void 0))}function Vr(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let qc=0;function kr(e,t,n,s){const r=e._endId=++qc,i=()=>{r===e._endId&&s()};if(n)return setTimeout(i,n);const{type:o,timeout:l,propCount:c}=mo(e,t);if(!o)return s();const u=o+"end";let h=0;const d=()=>{e.removeEventListener(u,g),i()},g=v=>{v.target===e&&++h>=c&&d()};setTimeout(()=>{h(n[O]||"").split(", "),r=s(`${je}Delay`),i=s(`${je}Duration`),o=Dr(r,i),l=s(`${kt}Delay`),c=s(`${kt}Duration`),u=Dr(l,c);let h=null,d=0,g=0;t===je?o>0&&(h=je,d=o,g=i.length):t===kt?u>0&&(h=kt,d=u,g=c.length):(d=Math.max(o,u),h=d>0?o>u?je:kt:null,g=h?h===je?i.length:c.length:0);const v=h===je&&/\b(transform|all)(,|$)/.test(s(`${je}Property`).toString());return{type:h,timeout:d,propCount:g,hasTransform:v}}function Dr(e,t){for(;e.lengthUr(n)+Ur(e[s])))}function Ur(e){return e==="auto"?0:Number(e.slice(0,-1).replace(",","."))*1e3}function yo(){return document.body.offsetHeight}function Jc(e,t,n){const s=e[Lt];s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}const Hn=Symbol("_vod"),bo=Symbol("_vsh"),Yc={beforeMount(e,{value:t},{transition:n}){e[Hn]=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):Dt(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:s}){!t!=!n&&(s?t?(s.beforeEnter(e),Dt(e,!0),s.enter(e)):s.leave(e,()=>{Dt(e,!1)}):Dt(e,t))},beforeUnmount(e,{value:t}){Dt(e,t)}};function Dt(e,t){e.style.display=t?e[Hn]:"none",e[bo]=!t}function Qc(){Yc.getSSRProps=({value:e})=>{if(!e)return{style:{display:"none"}}}}const Eo=Symbol("");function Ku(e){const t=tt();if(!t)return;const n=t.ut=(r=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach(i=>Ns(i,r))},s=()=>{const r=e(t.proxy);Ps(t.subTree,r),n(r)};Wl(s),Xn(()=>{const r=new MutationObserver(s);r.observe(t.subTree.el.parentNode,{childList:!0}),Zs(()=>r.disconnect())})}function Ps(e,t){if(e.shapeFlag&128){const n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push(()=>{Ps(n.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)Ns(e.el,t);else if(e.type===ae)e.children.forEach(n=>Ps(n,t));else if(e.type===Rt){let{el:n,anchor:s}=e;for(;n&&(Ns(n,t),n!==s);)n=n.nextSibling}}function Ns(e,t){if(e.nodeType===1){const n=e.style;let s="";for(const r in t)n.setProperty(`--${r}`,t[r]),s+=`--${r}: ${t[r]};`;n[Eo]=s}}const Xc=/(^|;)\s*display\s*:/;function zc(e,t,n){const s=e.style,r=ie(n);let i=!1;if(n&&!r){if(t)if(ie(t))for(const o of t.split(";")){const l=o.slice(0,o.indexOf(":")).trim();n[l]==null&&An(s,l,"")}else for(const o in t)n[o]==null&&An(s,o,"");for(const o in n)o==="display"&&(i=!0),An(s,o,n[o])}else if(r){if(t!==n){const o=s[Eo];o&&(n+=";"+o),s.cssText=n,i=Xc.test(n)}}else t&&e.removeAttribute("style");Hn in e&&(e[Hn]=i?s.display:"",e[bo]&&(s.display="none"))}const Br=/\s*!important$/;function An(e,t,n){if(H(n))n.forEach(s=>An(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=Zc(e,t);Br.test(n)?e.setProperty(xe(s),n.replace(Br,""),"important"):e[s]=n}}const $r=["Webkit","Moz","ms"],as={};function Zc(e,t){const n=as[t];if(n)return n;let s=be(t);if(s!=="filter"&&s in e)return as[t]=s;s=Un(s);for(let r=0;r<$r.length;r++){const i=$r[r]+s;if(i in e)return as[t]=i}return t}const Kr="http://www.w3.org/1999/xlink";function ef(e,t,n,s,r){if(s&&t.startsWith("xlink:"))n==null?e.removeAttributeNS(Kr,t.slice(6,t.length)):e.setAttributeNS(Kr,t,n);else{const i=Yo(t);n==null||i&&!si(n)?e.removeAttribute(t):e.setAttribute(t,i?"":n)}}function tf(e,t,n,s,r,i,o){if(t==="innerHTML"||t==="textContent"){s&&o(s,r,i),e[t]=n??"";return}const l=e.tagName;if(t==="value"&&l!=="PROGRESS"&&!l.includes("-")){const u=l==="OPTION"?e.getAttribute("value")||"":e.value,h=n??"";(u!==h||!("_value"in e))&&(e.value=h),n==null&&e.removeAttribute(t),e._value=n;return}let c=!1;if(n===""||n==null){const u=typeof e[t];u==="boolean"?n=si(n):n==null&&u==="string"?(n="",c=!0):u==="number"&&(n=0,c=!0)}try{e[t]=n}catch{}c&&e.removeAttribute(t)}function ke(e,t,n,s){e.addEventListener(t,n,s)}function nf(e,t,n,s){e.removeEventListener(t,n,s)}const jr=Symbol("_vei");function sf(e,t,n,s,r=null){const i=e[jr]||(e[jr]={}),o=i[t];if(s&&o)o.value=s;else{const[l,c]=rf(t);if(s){const u=i[t]=cf(s,r);ke(e,l,u,c)}else o&&(nf(e,l,o,c),i[t]=void 0)}}const Wr=/(?:Once|Passive|Capture)$/;function rf(e){let t;if(Wr.test(e)){t={};let s;for(;s=e.match(Wr);)e=e.slice(0,e.length-s[0].length),t[s[0].toLowerCase()]=!0}return[e[2]===":"?e.slice(3):xe(e.slice(2)),t]}let ds=0;const of=Promise.resolve(),lf=()=>ds||(of.then(()=>ds=0),ds=Date.now());function cf(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;Ae(ff(s,n.value),t,5,[s])};return n.value=e,n.attached=lf(),n}function ff(e,t){if(H(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const Gr=e=>e.charCodeAt(0)===111&&e.charCodeAt(1)===110&&e.charCodeAt(2)>96&&e.charCodeAt(2)<123,uf=(e,t,n,s,r,i,o,l,c)=>{const u=r==="svg";t==="class"?Jc(e,s,u):t==="style"?zc(e,n,s):tn(t)?Ms(t)||sf(e,t,n,s,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):af(e,t,s,u))?tf(e,t,s,i,o,l,c):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),ef(e,t,s,u))};function af(e,t,n,s){if(s)return!!(t==="innerHTML"||t==="textContent"||t in e&&Gr(t)&&K(n));if(t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA")return!1;if(t==="width"||t==="height"){const r=e.tagName;if(r==="IMG"||r==="VIDEO"||r==="CANVAS"||r==="SOURCE")return!1}return Gr(t)&&ie(n)?!1:t in e}/*! #__NO_SIDE_EFFECTS__ */function df(e,t){const n=Bi(e);class s extends ir{constructor(i){super(n,i,t)}}return s.def=n,s}/*! #__NO_SIDE_EFFECTS__ */const ju=e=>df(e,Af),hf=typeof HTMLElement<"u"?HTMLElement:class{};class ir extends hf{constructor(t,n={},s){super(),this._def=t,this._props=n,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this._ob=null,this.shadowRoot&&s?s(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,this._ob&&(this._ob.disconnect(),this._ob=null),Ws(()=>{this._connected||(zr(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let s=0;s{for(const r of s)this._setAttr(r.attributeName)}),this._ob.observe(this,{attributes:!0});const t=(s,r=!1)=>{const{props:i,styles:o}=s;let l;if(i&&!H(i))for(const c in i){const u=i[c];(u===Number||u&&u.type===Number)&&(c in this._props&&(this._props[c]=On(this._props[c])),(l||(l=Object.create(null)))[be(c)]=!0)}this._numberProps=l,r&&this._resolveProps(s),this._applyStyles(o),this._update()},n=this._def.__asyncLoader;n?n().then(s=>t(s,!0)):t(this._def)}_resolveProps(t){const{props:n}=t,s=H(n)?n:Object.keys(n||{});for(const r of Object.keys(this))r[0]!=="_"&&s.includes(r)&&this._setProp(r,this[r],!0,!1);for(const r of s.map(be))Object.defineProperty(this,r,{get(){return this._getProp(r)},set(i){this._setProp(r,i)}})}_setAttr(t){let n=this.getAttribute(t);const s=be(t);this._numberProps&&this._numberProps[s]&&(n=On(n)),this._setProp(s,n,!1)}_getProp(t){return this._props[t]}_setProp(t,n,s=!0,r=!0){n!==this._props[t]&&(this._props[t]=n,r&&this._instance&&this._update(),s&&(n===!0?this.setAttribute(xe(t),""):typeof n=="string"||typeof n=="number"?this.setAttribute(xe(t),n+""):n||this.removeAttribute(xe(t))))}_update(){zr(this._createVNode(),this.shadowRoot)}_createVNode(){const t=se(this._def,re({},this._props));return this._instance||(t.ce=n=>{this._instance=n,n.isCE=!0;const s=(i,o)=>{this.dispatchEvent(new CustomEvent(i,{detail:o}))};n.emit=(i,...o)=>{s(i,o),xe(i)!==i&&s(xe(i),o)};let r=this;for(;r=r&&(r.parentNode||r.host);)if(r instanceof ir){n.parent=r._instance,n.provides=r._instance.provides;break}}),t}_applyStyles(t){t&&t.forEach(n=>{const s=document.createElement("style");s.textContent=n,this.shadowRoot.appendChild(s)})}}function Wu(e="$style"){{const t=tt();if(!t)return z;const n=t.type.__cssModules;if(!n)return z;const s=n[e];return s||z}}const Co=new WeakMap,To=new WeakMap,Vn=Symbol("_moveCb"),qr=Symbol("_enterCb"),vo={name:"TransitionGroup",props:re({},Wc,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=tt(),s=ki();let r,i;return Xs(()=>{if(!r.length)return;const o=e.moveClass||`${e.name||"v"}-move`;if(!yf(r[0].el,n.vnode.el,o))return;r.forEach(gf),r.forEach(_f);const l=r.filter(mf);yo(),l.forEach(c=>{const u=c.el,h=u.style;Ve(u,o),h.transform=h.webkitTransform=h.transitionDuration="";const d=u[Vn]=g=>{g&&g.target!==u||(!g||/transform$/.test(g.propertyName))&&(u.removeEventListener("transitionend",d),u[Vn]=null,We(u,o))};u.addEventListener("transitionend",d)})}),()=>{const o=Q(e),l=_o(o);let c=o.tag||ae;r=i,i=t.default?Qs(t.default()):[];for(let u=0;udelete e.mode;vo.props;const Gu=vo;function gf(e){const t=e.el;t[Vn]&&t[Vn](),t[qr]&&t[qr]()}function _f(e){To.set(e,e.el.getBoundingClientRect())}function mf(e){const t=Co.get(e),n=To.get(e),s=t.left-n.left,r=t.top-n.top;if(s||r){const i=e.el.style;return i.transform=i.webkitTransform=`translate(${s}px,${r}px)`,i.transitionDuration="0s",e}}function yf(e,t,n){const s=e.cloneNode(),r=e[Lt];r&&r.forEach(l=>{l.split(/\s+/).forEach(c=>c&&s.classList.remove(c))}),n.split(/\s+/).forEach(l=>l&&s.classList.add(l)),s.style.display="none";const i=t.nodeType===1?t:t.parentNode;i.appendChild(s);const{hasTransform:o}=mo(s);return i.removeChild(s),o}const et=e=>{const t=e.props["onUpdate:modelValue"]||!1;return H(t)?n=>vt(t,n):t};function bf(e){e.target.composing=!0}function Jr(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const Se=Symbol("_assign"),Is={created(e,{modifiers:{lazy:t,trim:n,number:s}},r){e[Se]=et(r);const i=s||r.props&&r.props.type==="number";ke(e,t?"change":"input",o=>{if(o.target.composing)return;let l=e.value;n&&(l=l.trim()),i&&(l=Gt(l)),e[Se](l)}),n&&ke(e,"change",()=>{e.value=e.value.trim()}),t||(ke(e,"compositionstart",bf),ke(e,"compositionend",Jr),ke(e,"change",Jr))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:s,number:r}},i){if(e[Se]=et(i),e.composing)return;const o=r||e.type==="number"?Gt(e.value):e.value,l=t??"";o!==l&&(document.activeElement===e&&e.type!=="range"&&(n||s&&e.value.trim()===l)||(e.value=l))}},xo={deep:!0,created(e,t,n){e[Se]=et(n),ke(e,"change",()=>{const s=e._modelValue,r=Mt(e),i=e.checked,o=e[Se];if(H(s)){const l=Kn(s,r),c=l!==-1;if(i&&!c)o(s.concat(r));else if(!i&&c){const u=[...s];u.splice(l,1),o(u)}}else if(ht(s)){const l=new Set(s);i?l.add(r):l.delete(r),o(l)}else o(Ao(e,i))})},mounted:Yr,beforeUpdate(e,t,n){e[Se]=et(n),Yr(e,t,n)}};function Yr(e,{value:t,oldValue:n},s){e._modelValue=t,H(t)?e.checked=Kn(t,s.props.value)>-1:ht(t)?e.checked=t.has(s.props.value):t!==n&&(e.checked=Ze(t,Ao(e,!0)))}const wo={created(e,{value:t},n){e.checked=Ze(t,n.props.value),e[Se]=et(n),ke(e,"change",()=>{e[Se](Mt(e))})},beforeUpdate(e,{value:t,oldValue:n},s){e[Se]=et(s),t!==n&&(e.checked=Ze(t,s.props.value))}},Ef={deep:!0,created(e,{value:t,modifiers:{number:n}},s){const r=ht(t);ke(e,"change",()=>{const i=Array.prototype.filter.call(e.options,o=>o.selected).map(o=>n?Gt(Mt(o)):Mt(o));e[Se](e.multiple?r?new Set(i):i:i[0]),e._assigning=!0,Ws(()=>{e._assigning=!1})}),e[Se]=et(s)},mounted(e,{value:t,modifiers:{number:n}}){Qr(e,t,n)},beforeUpdate(e,t,n){e[Se]=et(n)},updated(e,{value:t,modifiers:{number:n}}){e._assigning||Qr(e,t,n)}};function Qr(e,t,n){const s=e.multiple,r=H(t);if(!(s&&!r&&!ht(t))){for(let i=0,o=e.options.length;i-1}else l.selected=t.has(c);else if(Ze(Mt(l),t)){e.selectedIndex!==i&&(e.selectedIndex=i);return}}!s&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function Mt(e){return"_value"in e?e._value:e.value}function Ao(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const Cf={created(e,t,n){bn(e,t,n,null,"created")},mounted(e,t,n){bn(e,t,n,null,"mounted")},beforeUpdate(e,t,n,s){bn(e,t,n,s,"beforeUpdate")},updated(e,t,n,s){bn(e,t,n,s,"updated")}};function So(e,t){switch(e){case"SELECT":return Ef;case"TEXTAREA":return Is;default:switch(t){case"checkbox":return xo;case"radio":return wo;default:return Is}}}function bn(e,t,n,s,r){const o=So(e.tagName,n.props&&n.props.type)[r];o&&o(e,t,n,s)}function Tf(){Is.getSSRProps=({value:e})=>({value:e}),wo.getSSRProps=({value:e},t)=>{if(t.props&&Ze(t.props.value,e))return{checked:!0}},xo.getSSRProps=({value:e},t)=>{if(H(e)){if(t.props&&Kn(e,t.props.value)>-1)return{checked:!0}}else if(ht(e)){if(t.props&&e.has(t.props.value))return{checked:!0}}else if(e)return{checked:!0}},Cf.getSSRProps=(e,t)=>{if(typeof t.type!="string")return;const n=So(t.type.toUpperCase(),t.props&&t.props.type);if(n.getSSRProps)return n.getSSRProps(e,t)}}const vf=["ctrl","shift","alt","meta"],xf={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>vf.some(n=>e[`${n}Key`]&&!t.includes(n))},qu=(e,t)=>{const n=e._withMods||(e._withMods={}),s=t.join(".");return n[s]||(n[s]=(r,...i)=>{for(let o=0;o{const n=e._withKeys||(e._withKeys={}),s=t.join(".");return n[s]||(n[s]=r=>{if(!("key"in r))return;const i=xe(r.key);if(t.some(o=>o===i||wf[o]===i))return e(r)})},Oo=re({patchProp:uf},jc);let Wt,Xr=!1;function Ro(){return Wt||(Wt=vc(Oo))}function Po(){return Wt=Xr?Wt:xc(Oo),Xr=!0,Wt}const zr=(...e)=>{Ro().render(...e)},Af=(...e)=>{Po().hydrate(...e)},Yu=(...e)=>{const t=Ro().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=Io(s);if(!r)return;const i=t._component;!K(i)&&!i.render&&!i.template&&(i.template=r.innerHTML),r.innerHTML="";const o=n(r,!1,No(r));return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),o},t},Qu=(...e)=>{const t=Po().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=Io(s);if(r)return n(r,!0,No(r))},t};function No(e){if(e instanceof SVGElement)return"svg";if(typeof MathMLElement=="function"&&e instanceof MathMLElement)return"mathml"}function Io(e){return ie(e)?document.querySelector(e):e}let Zr=!1;const Xu=()=>{Zr||(Zr=!0,Tf(),Qc())};function Sf(){return Lo().__VUE_DEVTOOLS_GLOBAL_HOOK__}function Lo(){return typeof navigator<"u"&&typeof window<"u"?window:typeof global<"u"?global:{}}const Of=typeof Proxy=="function",Rf="devtools-plugin:setup",Pf="plugin:settings:set";let yt,Ls;function Nf(){var e;return yt!==void 0||(typeof window<"u"&&window.performance?(yt=!0,Ls=window.performance):typeof global<"u"&&(!((e=global.perf_hooks)===null||e===void 0)&&e.performance)?(yt=!0,Ls=global.perf_hooks.performance):yt=!1),yt}function If(){return Nf()?Ls.now():Date.now()}class Lf{constructor(t,n){this.target=null,this.targetQueue=[],this.onQueue=[],this.plugin=t,this.hook=n;const s={};if(t.settings)for(const o in t.settings){const l=t.settings[o];s[o]=l.defaultValue}const r=`__vue-devtools-plugin-settings__${t.id}`;let i=Object.assign({},s);try{const o=localStorage.getItem(r),l=JSON.parse(o);Object.assign(i,l)}catch{}this.fallbacks={getSettings(){return i},setSettings(o){try{localStorage.setItem(r,JSON.stringify(o))}catch{}i=o},now(){return If()}},n&&n.on(Pf,(o,l)=>{o===this.plugin.id&&this.fallbacks.setSettings(l)}),this.proxiedOn=new Proxy({},{get:(o,l)=>this.target?this.target.on[l]:(...c)=>{this.onQueue.push({method:l,args:c})}}),this.proxiedTarget=new Proxy({},{get:(o,l)=>this.target?this.target[l]:l==="on"?this.proxiedOn:Object.keys(this.fallbacks).includes(l)?(...c)=>(this.targetQueue.push({method:l,args:c,resolve:()=>{}}),this.fallbacks[l](...c)):(...c)=>new Promise(u=>{this.targetQueue.push({method:l,args:c,resolve:u})})})}async setRealTarget(t){this.target=t;for(const n of this.onQueue)this.target.on[n.method](...n.args);for(const n of this.targetQueue)n.resolve(await this.target[n.method](...n.args))}}function zu(e,t){const n=e,s=Lo(),r=Sf(),i=Of&&n.enableEarlyProxy;if(r&&(s.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__||!i))r.emit(Rf,e,t);else{const o=i?new Lf(n,r):null;(s.__VUE_DEVTOOLS_PLUGINS__=s.__VUE_DEVTOOLS_PLUGINS__||[]).push({pluginDescriptor:n,setupFn:t,proxy:o}),o&&t(o.proxiedTarget)}}export{jf as $,lo as A,at as B,ge as C,Yc as D,vn as E,ae as F,zs as G,Cn as H,Xl as I,zl as J,Bf as K,su as L,Gu as M,Wf as N,Nc as O,ru as P,Ue as Q,It as R,Bs as S,po as T,Ci as U,Q as V,Zs as W,wu as X,Is as Y,Ru as Z,Ju as _,iu as a,Xs as a$,Qf as a0,Xf as a1,Ei as a2,Yl as a3,Di as a4,$u as a5,ii as a6,Yf as a7,Hu as a8,ou as a9,gu as aA,Vu as aB,kf as aC,Hf as aD,Xo as aE,Qs as aF,Pc as aG,Ht as aH,xu as aI,Af as aJ,Lu as aK,Xu as aL,Dc as aM,xt as aN,Pt as aO,he as aP,Nu as aQ,Pn as aR,Eu as aS,Cu as aT,Mf as aU,tc as aV,ic as aW,rc as aX,sc as aY,Vf as aZ,nc as a_,qt as aa,Rt as ab,nu as ac,Gf as ad,qf as ae,ir as af,Jf as ag,Ae as ah,Xe as ai,be as aj,Un as ak,Bu as al,Yu as am,xc as an,Tu as ao,vc as ap,Qu as aq,cu as ar,vl as as,df as at,du as au,hu as av,_u as aw,pu as ax,au as ay,ju as az,Xn as b,Ai as b0,ms as b1,Pu as b2,zr as b3,tu as b4,Uu as b5,Zt as b6,Mr as b7,ku as b8,Nt as b9,vu as bA,mu as bB,Mu as bC,zf as bD,zu as bE,yl as ba,Uf as bb,Kl as bc,Du as bd,Df as be,En as bf,uu as bg,Kf as bh,Su as bi,$f as bj,wi as bk,bu as bl,Wu as bm,Ku as bn,Iu as bo,jl as bp,yu as bq,ki as br,xo as bs,Cf as bt,wo as bu,Ef as bv,Uc as bw,Fu as bx,Wl as by,Gl as bz,Vc as c,Bi as d,sr as e,Au as f,tt as g,kc as h,xn as i,oo as j,se as k,$n as l,Ti as m,Ws as n,ec as o,pc as p,ro as q,Zf as r,eu as s,Bn as t,lu as u,fu as v,Li as w,Ff as x,qu as y,Ou as z}; diff --git a/web/dist/assets/@vue-a481fc63.js b/web/dist/assets/@vue-a481fc63.js deleted file mode 100644 index 03fbd102..00000000 --- a/web/dist/assets/@vue-a481fc63.js +++ /dev/null @@ -1 +0,0 @@ -function Sn(e,t){const n=Object.create(null),s=e.split(",");for(let r=0;r!!n[r.toLowerCase()]:r=>!!n[r]}const Z={},mt=[],Ie=()=>{},bo=()=>!1,yo=/^on[^a-z]/,nn=e=>yo.test(e),As=e=>e.startsWith("onUpdate:"),se=Object.assign,Ps=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},xo=Object.prototype.hasOwnProperty,Q=(e,t)=>xo.call(e,t),M=Array.isArray,_t=e=>Ft(e)==="[object Map]",at=e=>Ft(e)==="[object Set]",nr=e=>Ft(e)==="[object Date]",Co=e=>Ft(e)==="[object RegExp]",V=e=>typeof e=="function",ie=e=>typeof e=="string",Jt=e=>typeof e=="symbol",G=e=>e!==null&&typeof e=="object",Os=e=>G(e)&&V(e.then)&&V(e.catch),Kr=Object.prototype.toString,Ft=e=>Kr.call(e),vo=e=>Ft(e).slice(8,-1),Vr=e=>Ft(e)==="[object Object]",Is=e=>ie(e)&&e!=="NaN"&&e[0]!=="-"&&""+parseInt(e,10)===e,jt=Sn(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),Mn=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},Eo=/-(\w)/g,ve=Mn(e=>e.replace(Eo,(t,n)=>n?n.toUpperCase():"")),wo=/\B([A-Z])/g,we=Mn(e=>e.replace(wo,"-$1").toLowerCase()),Nn=Mn(e=>e.charAt(0).toUpperCase()+e.slice(1)),yn=Mn(e=>e?`on${Nn(e)}`:""),wt=(e,t)=>!Object.is(e,t),bt=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},wn=e=>{const t=parseFloat(e);return isNaN(t)?e:t},Tn=e=>{const t=ie(e)?Number(e):NaN;return isNaN(t)?e:t};let sr;const ls=()=>sr||(sr=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:typeof global<"u"?global:{}),To="Infinity,undefined,NaN,isFinite,isNaN,parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,BigInt,console",Ao=Sn(To);function Ln(e){if(M(e)){const t={};for(let n=0;n{if(n){const s=n.split(Oo);s.length>1&&(t[s[0].trim()]=s[1].trim())}}),t}function kn(e){let t="";if(ie(e))t=e;else if(M(e))for(let n=0;nQe(n,t))}const Cf=e=>ie(e)?e:e==null?"":M(e)||G(e)&&(e.toString===Kr||!V(e.toString))?JSON.stringify(e,qr,2):String(e),qr=(e,t)=>t&&t.__v_isRef?qr(e,t.value):_t(t)?{[`Map(${t.size})`]:[...t.entries()].reduce((n,[s,r])=>(n[`${s} =>`]=r,n),{})}:at(t)?{[`Set(${t.size})`]:[...t.values()]}:G(t)&&!M(t)&&!Vr(t)?String(t):t;let xe;class Jr{constructor(t=!1){this.detached=t,this._active=!0,this.effects=[],this.cleanups=[],this.parent=xe,!t&&xe&&(this.index=(xe.scopes||(xe.scopes=[])).push(this)-1)}get active(){return this._active}run(t){if(this._active){const n=xe;try{return xe=this,t()}finally{xe=n}}}on(){xe=this}off(){xe=this.parent}stop(t){if(this._active){let n,s;for(n=0,s=this.effects.length;n{const t=new Set(e);return t.w=0,t.n=0,t},Qr=e=>(e.w&ze)>0,zr=e=>(e.n&ze)>0,Lo=({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let s=0;s{(h==="length"||h>=c)&&l.push(u)})}else switch(n!==void 0&&l.push(o.get(n)),t){case"add":M(e)?Is(n)&&l.push(o.get("length")):(l.push(o.get(lt)),_t(e)&&l.push(o.get(fs)));break;case"delete":M(e)||(l.push(o.get(lt)),_t(e)&&l.push(o.get(fs)));break;case"set":_t(e)&&l.push(o.get(lt));break}if(l.length===1)l[0]&&us(l[0]);else{const c=[];for(const u of l)u&&c.push(...u);us(Fs(c))}}function us(e,t){const n=M(e)?e:[...e];for(const s of n)s.computed&&ir(s);for(const s of n)s.computed||ir(s)}function ir(e,t){(e!==Pe||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}function Bo(e,t){var n;return(n=An.get(e))==null?void 0:n.get(t)}const Ho=Sn("__proto__,__v_isRef,__isVue"),Gr=new Set(Object.getOwnPropertyNames(Symbol).filter(e=>e!=="arguments"&&e!=="caller").map(e=>Symbol[e]).filter(Jt)),Do=Dn(),Uo=Dn(!1,!0),jo=Dn(!0),$o=Dn(!0,!0),or=Ko();function Ko(){const e={};return["includes","indexOf","lastIndexOf"].forEach(t=>{e[t]=function(...n){const s=Y(this);for(let i=0,o=this.length;i{e[t]=function(...n){Rt();const s=Y(this)[t].apply(this,n);return St(),s}}),e}function Vo(e){const t=Y(this);return be(t,"has",e),t.hasOwnProperty(e)}function Dn(e=!1,t=!1){return function(s,r,i){if(r==="__v_isReactive")return!e;if(r==="__v_isReadonly")return e;if(r==="__v_isShallow")return t;if(r==="__v_raw"&&i===(e?t?oi:ii:t?ri:si).get(s))return s;const o=M(s);if(!e){if(o&&Q(or,r))return Reflect.get(or,r,i);if(r==="hasOwnProperty")return Vo}const l=Reflect.get(s,r,i);return(Jt(r)?Gr.has(r):Ho(r))||(e||be(s,"get",r),t)?l:ce(l)?o&&Is(r)?l:l.value:G(l)?e?li(l):Ss(l):l}}const Wo=ei(),qo=ei(!0);function ei(e=!1){return function(n,s,r,i){let o=n[s];if(Tt(o)&&ce(o)&&!ce(r))return!1;if(!e&&(!Pn(r)&&!Tt(r)&&(o=Y(o),r=Y(r)),!M(n)&&ce(o)&&!ce(r)))return o.value=r,!0;const l=M(n)&&Is(s)?Number(s)e,Un=e=>Reflect.getPrototypeOf(e);function cn(e,t,n=!1,s=!1){e=e.__v_raw;const r=Y(e),i=Y(t);n||(t!==i&&be(r,"get",t),be(r,"get",i));const{has:o}=Un(r),l=s?Rs:n?Ms:Yt;if(o.call(r,t))return l(e.get(t));if(o.call(r,i))return l(e.get(i));e!==r&&e.get(t)}function fn(e,t=!1){const n=this.__v_raw,s=Y(n),r=Y(e);return t||(e!==r&&be(s,"has",e),be(s,"has",r)),e===r?n.has(e):n.has(e)||n.has(r)}function un(e,t=!1){return e=e.__v_raw,!t&&be(Y(e),"iterate",lt),Reflect.get(e,"size",e)}function lr(e){e=Y(e);const t=Y(this);return Un(t).has.call(t,e)||(t.add(e),He(t,"add",e,e)),this}function cr(e,t){t=Y(t);const n=Y(this),{has:s,get:r}=Un(n);let i=s.call(n,e);i||(e=Y(e),i=s.call(n,e));const o=r.call(n,e);return n.set(e,t),i?wt(t,o)&&He(n,"set",e,t):He(n,"add",e,t),this}function fr(e){const t=Y(this),{has:n,get:s}=Un(t);let r=n.call(t,e);r||(e=Y(e),r=n.call(t,e)),s&&s.call(t,e);const i=t.delete(e);return r&&He(t,"delete",e,void 0),i}function ur(){const e=Y(this),t=e.size!==0,n=e.clear();return t&&He(e,"clear",void 0,void 0),n}function an(e,t){return function(s,r){const i=this,o=i.__v_raw,l=Y(o),c=t?Rs:e?Ms:Yt;return!e&&be(l,"iterate",lt),o.forEach((u,h)=>s.call(r,c(u),c(h),i))}}function dn(e,t,n){return function(...s){const r=this.__v_raw,i=Y(r),o=_t(i),l=e==="entries"||e===Symbol.iterator&&o,c=e==="keys"&&o,u=r[e](...s),h=n?Rs:t?Ms:Yt;return!t&&be(i,"iterate",c?fs:lt),{next(){const{value:d,done:m}=u.next();return m?{value:d,done:m}:{value:l?[h(d[0]),h(d[1])]:h(d),done:m}},[Symbol.iterator](){return this}}}}function je(e){return function(...t){return e==="delete"?!1:this}}function Zo(){const e={get(i){return cn(this,i)},get size(){return un(this)},has:fn,add:lr,set:cr,delete:fr,clear:ur,forEach:an(!1,!1)},t={get(i){return cn(this,i,!1,!0)},get size(){return un(this)},has:fn,add:lr,set:cr,delete:fr,clear:ur,forEach:an(!1,!0)},n={get(i){return cn(this,i,!0)},get size(){return un(this,!0)},has(i){return fn.call(this,i,!0)},add:je("add"),set:je("set"),delete:je("delete"),clear:je("clear"),forEach:an(!0,!1)},s={get(i){return cn(this,i,!0,!0)},get size(){return un(this,!0)},has(i){return fn.call(this,i,!0)},add:je("add"),set:je("set"),delete:je("delete"),clear:je("clear"),forEach:an(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach(i=>{e[i]=dn(i,!1,!1),n[i]=dn(i,!0,!1),t[i]=dn(i,!1,!0),s[i]=dn(i,!0,!0)}),[e,n,t,s]}const[Go,el,tl,nl]=Zo();function jn(e,t){const n=t?e?nl:tl:e?el:Go;return(s,r,i)=>r==="__v_isReactive"?!e:r==="__v_isReadonly"?e:r==="__v_raw"?s:Reflect.get(Q(n,r)&&r in s?n:s,r,i)}const sl={get:jn(!1,!1)},rl={get:jn(!1,!0)},il={get:jn(!0,!1)},ol={get:jn(!0,!0)},si=new WeakMap,ri=new WeakMap,ii=new WeakMap,oi=new WeakMap;function ll(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}function cl(e){return e.__v_skip||!Object.isExtensible(e)?0:ll(vo(e))}function Ss(e){return Tt(e)?e:$n(e,!1,ti,sl,si)}function fl(e){return $n(e,!1,zo,rl,ri)}function li(e){return $n(e,!0,ni,il,ii)}function Af(e){return $n(e,!0,Xo,ol,oi)}function $n(e,t,n,s,r){if(!G(e)||e.__v_raw&&!(t&&e.__v_isReactive))return e;const i=r.get(e);if(i)return i;const o=cl(e);if(o===0)return e;const l=new Proxy(e,o===2?s:n);return r.set(e,l),l}function yt(e){return Tt(e)?yt(e.__v_raw):!!(e&&e.__v_isReactive)}function Tt(e){return!!(e&&e.__v_isReadonly)}function Pn(e){return!!(e&&e.__v_isShallow)}function ci(e){return yt(e)||Tt(e)}function Y(e){const t=e&&e.__v_raw;return t?Y(t):e}function fi(e){return En(e,"__v_skip",!0),e}const Yt=e=>G(e)?Ss(e):e,Ms=e=>G(e)?li(e):e;function Ns(e){qe&&Pe&&(e=Y(e),Zr(e.dep||(e.dep=Fs())))}function Kn(e,t){e=Y(e);const n=e.dep;n&&us(n)}function ce(e){return!!(e&&e.__v_isRef===!0)}function $t(e){return ui(e,!1)}function Pf(e){return ui(e,!0)}function ui(e,t){return ce(e)?e:new ul(e,t)}class ul{constructor(t,n){this.__v_isShallow=n,this.dep=void 0,this.__v_isRef=!0,this._rawValue=n?t:Y(t),this._value=n?t:Yt(t)}get value(){return Ns(this),this._value}set value(t){const n=this.__v_isShallow||Pn(t)||Tt(t);t=n?t:Y(t),wt(t,this._rawValue)&&(this._rawValue=t,this._value=n?t:Yt(t),Kn(this))}}function Of(e){Kn(e)}function ai(e){return ce(e)?e.value:e}function If(e){return V(e)?e():ai(e)}const al={get:(e,t,n)=>ai(Reflect.get(e,t,n)),set:(e,t,n,s)=>{const r=e[t];return ce(r)&&!ce(n)?(r.value=n,!0):Reflect.set(e,t,n,s)}};function di(e){return yt(e)?e:new Proxy(e,al)}class dl{constructor(t){this.dep=void 0,this.__v_isRef=!0;const{get:n,set:s}=t(()=>Ns(this),()=>Kn(this));this._get=n,this._set=s}get value(){return this._get()}set value(t){this._set(t)}}function Ff(e){return new dl(e)}function Rf(e){const t=M(e)?new Array(e.length):{};for(const n in e)t[n]=hi(e,n);return t}class hl{constructor(t,n,s){this._object=t,this._key=n,this._defaultValue=s,this.__v_isRef=!0}get value(){const t=this._object[this._key];return t===void 0?this._defaultValue:t}set value(t){this._object[this._key]=t}get dep(){return Bo(Y(this._object),this._key)}}class pl{constructor(t){this._getter=t,this.__v_isRef=!0,this.__v_isReadonly=!0}get value(){return this._getter()}}function Sf(e,t,n){return ce(e)?e:V(e)?new pl(e):G(e)&&arguments.length>1?hi(e,t,n):$t(e)}function hi(e,t,n){const s=e[t];return ce(s)?s:new hl(e,t,n)}class gl{constructor(t,n,s,r){this._setter=n,this.dep=void 0,this.__v_isRef=!0,this.__v_isReadonly=!1,this._dirty=!0,this.effect=new Hn(t,()=>{this._dirty||(this._dirty=!0,Kn(this))}),this.effect.computed=this,this.effect.active=this._cacheable=!r,this.__v_isReadonly=s}get value(){const t=Y(this);return Ns(t),(t._dirty||!t._cacheable)&&(t._dirty=!1,t._value=t.effect.run()),t._value}set value(t){this._setter(t)}}function ml(e,t,n=!1){let s,r;const i=V(e);return i?(s=e,r=Ie):(s=e.get,r=e.set),new gl(s,r,i||!r,n)}function Mf(e,...t){}function Nf(e,t){}function Je(e,t,n,s){let r;try{r=s?e(...s):e()}catch(i){Mt(i,t,n)}return r}function Te(e,t,n,s){if(V(e)){const i=Je(e,t,n,s);return i&&Os(i)&&i.catch(o=>{Mt(o,t,n)}),i}const r=[];for(let i=0;i>>1;zt(he[s])Me&&he.splice(t,1)}function _i(e){M(e)?xt.push(...e):(!ke||!ke.includes(e,e.allowRecurse?rt+1:rt))&&xt.push(e),mi()}function ar(e,t=Qt?Me+1:0){for(;tzt(n)-zt(s)),rt=0;rte.id==null?1/0:e.id,xl=(e,t)=>{const n=zt(e)-zt(t);if(n===0){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function bi(e){as=!1,Qt=!0,he.sort(xl);const t=Ie;try{for(Me=0;MeLt.emit(r,...i)),hn=[]):typeof window<"u"&&window.HTMLElement&&!((s=(n=window.navigator)==null?void 0:n.userAgent)!=null&&s.includes("jsdom"))?((t.__VUE_DEVTOOLS_HOOK_REPLAY__=t.__VUE_DEVTOOLS_HOOK_REPLAY__||[]).push(i=>{Cl(i,t)}),setTimeout(()=>{Lt||(t.__VUE_DEVTOOLS_HOOK_REPLAY__=null,hn=[])},3e3)):hn=[]}function vl(e,t,...n){if(e.isUnmounted)return;const s=e.vnode.props||Z;let r=n;const i=t.startsWith("update:"),o=i&&t.slice(7);if(o&&o in s){const h=`${o==="modelValue"?"model":o}Modifiers`,{number:d,trim:m}=s[h]||Z;m&&(r=n.map(E=>ie(E)?E.trim():E)),d&&(r=n.map(wn))}let l,c=s[l=yn(t)]||s[l=yn(ve(t))];!c&&i&&(c=s[l=yn(we(t))]),c&&Te(c,e,6,r);const u=s[l+"Once"];if(u){if(!e.emitted)e.emitted={};else if(e.emitted[l])return;e.emitted[l]=!0,Te(u,e,6,r)}}function yi(e,t,n=!1){const s=t.emitsCache,r=s.get(e);if(r!==void 0)return r;const i=e.emits;let o={},l=!1;if(!V(e)){const c=u=>{const h=yi(u,t,!0);h&&(l=!0,se(o,h))};!n&&t.mixins.length&&t.mixins.forEach(c),e.extends&&c(e.extends),e.mixins&&e.mixins.forEach(c)}return!i&&!l?(G(e)&&s.set(e,null),null):(M(i)?i.forEach(c=>o[c]=null):se(o,i),G(e)&&s.set(e,o),o)}function Wn(e,t){return!e||!nn(t)?!1:(t=t.slice(2).replace(/Once$/,""),Q(e,t[0].toLowerCase()+t.slice(1))||Q(e,we(t))||Q(e,t))}let fe=null,qn=null;function Xt(e){const t=fe;return fe=e,qn=e&&e.type.__scopeId||null,t}function Lf(e){qn=e}function kf(){qn=null}const Bf=e=>xi;function xi(e,t=fe,n){if(!t||e._n)return e;const s=(...r)=>{s._d&&wr(-1);const i=Xt(t);let o;try{o=e(...r)}finally{Xt(i),s._d&&wr(1)}return o};return s._n=!0,s._c=!0,s._d=!0,s}function xn(e){const{type:t,vnode:n,proxy:s,withProxy:r,props:i,propsOptions:[o],slots:l,attrs:c,emit:u,render:h,renderCache:d,data:m,setupState:E,ctx:O,inheritAttrs:F}=e;let K,b;const p=Xt(e);try{if(n.shapeFlag&4){const g=r||s;K=Ce(h.call(g,g,d,i,E,m,O)),b=c}else{const g=t;K=Ce(g.length>1?g(i,{attrs:c,slots:l,emit:u}):g(i,null)),b=t.props?c:wl(c)}}catch(g){Wt.length=0,Mt(g,e,1),K=re(ge)}let T=K;if(b&&F!==!1){const g=Object.keys(b),{shapeFlag:A}=T;g.length&&A&7&&(o&&g.some(As)&&(b=Tl(b,o)),T=De(T,b))}return n.dirs&&(T=De(T),T.dirs=T.dirs?T.dirs.concat(n.dirs):n.dirs),n.transition&&(T.transition=n.transition),K=T,Xt(p),K}function El(e){let t;for(let n=0;n{let t;for(const n in e)(n==="class"||n==="style"||nn(n))&&((t||(t={}))[n]=e[n]);return t},Tl=(e,t)=>{const n={};for(const s in e)(!As(s)||!(s.slice(9)in t))&&(n[s]=e[s]);return n};function Al(e,t,n){const{props:s,children:r,component:i}=e,{props:o,children:l,patchFlag:c}=t,u=i.emitsOptions;if(t.dirs||t.transition)return!0;if(n&&c>=0){if(c&1024)return!0;if(c&16)return s?dr(s,o,u):!!o;if(c&8){const h=t.dynamicProps;for(let d=0;de.__isSuspense,Pl={name:"Suspense",__isSuspense:!0,process(e,t,n,s,r,i,o,l,c,u){e==null?Ol(t,n,s,r,i,o,l,c,u):Il(e,t,n,s,r,o,l,c,u)},hydrate:Fl,create:Bs,normalize:Rl},Hf=Pl;function Zt(e,t){const n=e.props&&e.props[t];V(n)&&n()}function Ol(e,t,n,s,r,i,o,l,c){const{p:u,o:{createElement:h}}=c,d=h("div"),m=e.suspense=Bs(e,r,s,t,d,n,i,o,l,c);u(null,m.pendingBranch=e.ssContent,d,null,s,m,i,o),m.deps>0?(Zt(e,"onPending"),Zt(e,"onFallback"),u(null,e.ssFallback,t,n,s,null,i,o),Ct(m,e.ssFallback)):m.resolve(!1,!0)}function Il(e,t,n,s,r,i,o,l,{p:c,um:u,o:{createElement:h}}){const d=t.suspense=e.suspense;d.vnode=t,t.el=e.el;const m=t.ssContent,E=t.ssFallback,{activeBranch:O,pendingBranch:F,isInFallback:K,isHydrating:b}=d;if(F)d.pendingBranch=m,Oe(m,F)?(c(F,m,d.hiddenContainer,null,r,d,i,o,l),d.deps<=0?d.resolve():K&&(c(O,E,n,s,r,null,i,o,l),Ct(d,E))):(d.pendingId++,b?(d.isHydrating=!1,d.activeBranch=F):u(F,r,d),d.deps=0,d.effects.length=0,d.hiddenContainer=h("div"),K?(c(null,m,d.hiddenContainer,null,r,d,i,o,l),d.deps<=0?d.resolve():(c(O,E,n,s,r,null,i,o,l),Ct(d,E))):O&&Oe(m,O)?(c(O,m,n,s,r,d,i,o,l),d.resolve(!0)):(c(null,m,d.hiddenContainer,null,r,d,i,o,l),d.deps<=0&&d.resolve()));else if(O&&Oe(m,O))c(O,m,n,s,r,d,i,o,l),Ct(d,m);else if(Zt(t,"onPending"),d.pendingBranch=m,d.pendingId++,c(null,m,d.hiddenContainer,null,r,d,i,o,l),d.deps<=0)d.resolve();else{const{timeout:p,pendingId:T}=d;p>0?setTimeout(()=>{d.pendingId===T&&d.fallback(E)},p):p===0&&d.fallback(E)}}function Bs(e,t,n,s,r,i,o,l,c,u,h=!1){const{p:d,m,um:E,n:O,o:{parentNode:F,remove:K}}=u;let b;const p=Sl(e);p&&t!=null&&t.pendingBranch&&(b=t.pendingId,t.deps++);const T=e.props?Tn(e.props.timeout):void 0,g={vnode:e,parent:t,parentComponent:n,isSVG:o,container:s,hiddenContainer:r,anchor:i,deps:0,pendingId:0,timeout:typeof T=="number"?T:-1,activeBranch:null,pendingBranch:null,isInFallback:!0,isHydrating:h,isUnmounted:!1,effects:[],resolve(A=!1,D=!1){const{vnode:N,activeBranch:C,pendingBranch:B,pendingId:H,effects:$,parentComponent:S,container:q}=g;if(g.isHydrating)g.isHydrating=!1;else if(!A){const z=C&&B.transition&&B.transition.mode==="out-in";z&&(C.transition.afterLeave=()=>{H===g.pendingId&&m(B,q,ee,0)});let{anchor:ee}=g;C&&(ee=O(C),E(C,S,g,!0)),z||m(B,q,ee,0)}Ct(g,B),g.pendingBranch=null,g.isInFallback=!1;let L=g.parent,ae=!1;for(;L;){if(L.pendingBranch){L.effects.push(...$),ae=!0;break}L=L.parent}ae||_i($),g.effects=[],p&&t&&t.pendingBranch&&b===t.pendingId&&(t.deps--,t.deps===0&&!D&&t.resolve()),Zt(N,"onResolve")},fallback(A){if(!g.pendingBranch)return;const{vnode:D,activeBranch:N,parentComponent:C,container:B,isSVG:H}=g;Zt(D,"onFallback");const $=O(N),S=()=>{g.isInFallback&&(d(null,A,B,$,C,null,H,l,c),Ct(g,A))},q=A.transition&&A.transition.mode==="out-in";q&&(N.transition.afterLeave=S),g.isInFallback=!0,E(N,C,null,!0),q||S()},move(A,D,N){g.activeBranch&&m(g.activeBranch,A,D,N),g.container=A},next(){return g.activeBranch&&O(g.activeBranch)},registerDep(A,D){const N=!!g.pendingBranch;N&&g.deps++;const C=A.vnode.el;A.asyncDep.catch(B=>{Mt(B,A,0)}).then(B=>{if(A.isUnmounted||g.isUnmounted||g.pendingId!==A.suspenseId)return;A.asyncResolved=!0;const{vnode:H}=A;bs(A,B,!1),C&&(H.el=C);const $=!C&&A.subTree.el;D(A,H,F(C||A.subTree.el),C?null:O(A.subTree),g,o,c),$&&K($),ks(A,H.el),N&&--g.deps===0&&g.resolve()})},unmount(A,D){g.isUnmounted=!0,g.activeBranch&&E(g.activeBranch,n,A,D),g.pendingBranch&&E(g.pendingBranch,n,A,D)}};return g}function Fl(e,t,n,s,r,i,o,l,c){const u=t.suspense=Bs(t,s,n,e.parentNode,document.createElement("div"),null,r,i,o,l,!0),h=c(e,u.pendingBranch=t.ssContent,n,u,i,o);return u.deps===0&&u.resolve(!1,!0),h}function Rl(e){const{shapeFlag:t,children:n}=e,s=t&32;e.ssContent=hr(s?n.default:n),e.ssFallback=s?hr(n.fallback):re(ge)}function hr(e){let t;if(V(e)){const n=ft&&e._c;n&&(e._d=!1,Js()),e=e(),n&&(e._d=!0,t=_e,ji())}return M(e)&&(e=El(e)),e=Ce(e),t&&!e.dynamicChildren&&(e.dynamicChildren=t.filter(n=>n!==e)),e}function vi(e,t){t&&t.pendingBranch?M(e)?t.effects.push(...e):t.effects.push(e):_i(e)}function Ct(e,t){e.activeBranch=t;const{vnode:n,parentComponent:s}=e,r=n.el=t.el;s&&s.subTree===n&&(s.vnode.el=r,ks(s,r))}function Sl(e){var t;return((t=e.props)==null?void 0:t.suspensible)!=null&&e.props.suspensible!==!1}function Df(e,t){return sn(e,null,t)}function Ml(e,t){return sn(e,null,{flush:"post"})}function Uf(e,t){return sn(e,null,{flush:"sync"})}const pn={};function vt(e,t,n){return sn(e,t,n)}function sn(e,t,{immediate:n,deep:s,flush:r,onTrack:i,onTrigger:o}=Z){var l;const c=No()===((l=le)==null?void 0:l.scope)?le:null;let u,h=!1,d=!1;if(ce(e)?(u=()=>e.value,h=Pn(e)):yt(e)?(u=()=>e,s=!0):M(e)?(d=!0,h=e.some(g=>yt(g)||Pn(g)),u=()=>e.map(g=>{if(ce(g))return g.value;if(yt(g))return ot(g);if(V(g))return Je(g,c,2)})):V(e)?t?u=()=>Je(e,c,2):u=()=>{if(!(c&&c.isUnmounted))return m&&m(),Te(e,c,3,[E])}:u=Ie,t&&s){const g=u;u=()=>ot(g())}let m,E=g=>{m=p.onStop=()=>{Je(g,c,4)}},O;if(Ot)if(E=Ie,t?n&&Te(t,c,3,[u(),d?[]:void 0,E]):u(),r==="sync"){const g=Ac();O=g.__watcherHandles||(g.__watcherHandles=[])}else return Ie;let F=d?new Array(e.length).fill(pn):pn;const K=()=>{if(p.active)if(t){const g=p.run();(s||h||(d?g.some((A,D)=>wt(A,F[D])):wt(g,F)))&&(m&&m(),Te(t,c,3,[g,F===pn?void 0:d&&F[0]===pn?[]:F,E]),F=g)}else p.run()};K.allowRecurse=!!t;let b;r==="sync"?b=K:r==="post"?b=()=>ue(K,c&&c.suspense):(K.pre=!0,c&&(K.id=c.uid),b=()=>Vn(K));const p=new Hn(u,b);t?n?K():F=p.run():r==="post"?ue(p.run.bind(p),c&&c.suspense):p.run();const T=()=>{p.stop(),c&&c.scope&&Ps(c.scope.effects,p)};return O&&O.push(T),T}function Nl(e,t,n){const s=this.proxy,r=ie(e)?e.includes(".")?Ei(s,e):()=>s[e]:e.bind(s,s);let i;V(t)?i=t:(i=t.handler,n=t);const o=le;Xe(this);const l=sn(r,i.bind(s),n);return o?Xe(o):Ye(),l}function Ei(e,t){const n=t.split(".");return()=>{let s=e;for(let r=0;r{ot(n,t)});else if(Vr(e))for(const n in e)ot(e[n],t);return e}function jf(e,t){const n=fe;if(n===null)return e;const s=zn(n)||n.proxy,r=e.dirs||(e.dirs=[]);for(let i=0;i{e.isMounted=!0}),Us(()=>{e.isUnmounting=!0}),e}const Ee=[Function,Array],Ti={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Ee,onEnter:Ee,onAfterEnter:Ee,onEnterCancelled:Ee,onBeforeLeave:Ee,onLeave:Ee,onAfterLeave:Ee,onLeaveCancelled:Ee,onBeforeAppear:Ee,onAppear:Ee,onAfterAppear:Ee,onAppearCancelled:Ee},Ll={name:"BaseTransition",props:Ti,setup(e,{slots:t}){const n=Ge(),s=wi();let r;return()=>{const i=t.default&&Hs(t.default(),!0);if(!i||!i.length)return;let o=i[0];if(i.length>1){for(const F of i)if(F.type!==ge){o=F;break}}const l=Y(e),{mode:c}=l;if(s.isLeaving)return Gn(o);const u=pr(o);if(!u)return Gn(o);const h=Gt(u,l,s,n);At(u,h);const d=n.subTree,m=d&&pr(d);let E=!1;const{getTransitionKey:O}=u.type;if(O){const F=O();r===void 0?r=F:F!==r&&(r=F,E=!0)}if(m&&m.type!==ge&&(!Oe(u,m)||E)){const F=Gt(m,l,s,n);if(At(m,F),c==="out-in")return s.isLeaving=!0,F.afterLeave=()=>{s.isLeaving=!1,n.update.active!==!1&&n.update()},Gn(o);c==="in-out"&&u.type!==ge&&(F.delayLeave=(K,b,p)=>{const T=Ai(s,m);T[String(m.key)]=m,K._leaveCb=()=>{b(),K._leaveCb=void 0,delete h.delayedLeave},h.delayedLeave=p})}return o}}},kl=Ll;function Ai(e,t){const{leavingVNodes:n}=e;let s=n.get(t.type);return s||(s=Object.create(null),n.set(t.type,s)),s}function Gt(e,t,n,s){const{appear:r,mode:i,persisted:o=!1,onBeforeEnter:l,onEnter:c,onAfterEnter:u,onEnterCancelled:h,onBeforeLeave:d,onLeave:m,onAfterLeave:E,onLeaveCancelled:O,onBeforeAppear:F,onAppear:K,onAfterAppear:b,onAppearCancelled:p}=t,T=String(e.key),g=Ai(n,e),A=(C,B)=>{C&&Te(C,s,9,B)},D=(C,B)=>{const H=B[1];A(C,B),M(C)?C.every($=>$.length<=1)&&H():C.length<=1&&H()},N={mode:i,persisted:o,beforeEnter(C){let B=l;if(!n.isMounted)if(r)B=F||l;else return;C._leaveCb&&C._leaveCb(!0);const H=g[T];H&&Oe(e,H)&&H.el._leaveCb&&H.el._leaveCb(),A(B,[C])},enter(C){let B=c,H=u,$=h;if(!n.isMounted)if(r)B=K||c,H=b||u,$=p||h;else return;let S=!1;const q=C._enterCb=L=>{S||(S=!0,L?A($,[C]):A(H,[C]),N.delayedLeave&&N.delayedLeave(),C._enterCb=void 0)};B?D(B,[C,q]):q()},leave(C,B){const H=String(e.key);if(C._enterCb&&C._enterCb(!0),n.isUnmounting)return B();A(d,[C]);let $=!1;const S=C._leaveCb=q=>{$||($=!0,B(),q?A(O,[C]):A(E,[C]),C._leaveCb=void 0,g[H]===e&&delete g[H])};g[H]=e,m?D(m,[C,S]):S()},clone(C){return Gt(C,t,n,s)}};return N}function Gn(e){if(rn(e))return e=De(e),e.children=null,e}function pr(e){return rn(e)?e.children?e.children[0]:void 0:e}function At(e,t){e.shapeFlag&6&&e.component?At(e.component.subTree,t):e.shapeFlag&128?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Hs(e,t=!1,n){let s=[],r=0;for(let i=0;i1)for(let i=0;ise({name:e.name},t,{setup:e}))():e}const ct=e=>!!e.type.__asyncLoader;function $f(e){V(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:s,delay:r=200,timeout:i,suspensible:o=!0,onError:l}=e;let c=null,u,h=0;const d=()=>(h++,c=null,m()),m=()=>{let E;return c||(E=c=t().catch(O=>{if(O=O instanceof Error?O:new Error(String(O)),l)return new Promise((F,K)=>{l(O,()=>F(d()),()=>K(O),h+1)});throw O}).then(O=>E!==c&&c?c:(O&&(O.__esModule||O[Symbol.toStringTag]==="Module")&&(O=O.default),u=O,O)))};return Pi({name:"AsyncComponentWrapper",__asyncLoader:m,get __asyncResolved(){return u},setup(){const E=le;if(u)return()=>es(u,E);const O=p=>{c=null,Mt(p,E,13,!s)};if(o&&E.suspense||Ot)return m().then(p=>()=>es(p,E)).catch(p=>(O(p),()=>s?re(s,{error:p}):null));const F=$t(!1),K=$t(),b=$t(!!r);return r&&setTimeout(()=>{b.value=!1},r),i!=null&&setTimeout(()=>{if(!F.value&&!K.value){const p=new Error(`Async component timed out after ${i}ms.`);O(p),K.value=p}},i),m().then(()=>{F.value=!0,E.parent&&rn(E.parent.vnode)&&Vn(E.parent.update)}).catch(p=>{O(p),K.value=p}),()=>{if(F.value&&u)return es(u,E);if(K.value&&s)return re(s,{error:K.value});if(n&&!b.value)return re(n)}}})}function es(e,t){const{ref:n,props:s,children:r,ce:i}=t.vnode,o=re(e,s,r);return o.ref=n,o.ce=i,delete t.vnode.ce,o}const rn=e=>e.type.__isKeepAlive,Bl={name:"KeepAlive",__isKeepAlive:!0,props:{include:[String,RegExp,Array],exclude:[String,RegExp,Array],max:[String,Number]},setup(e,{slots:t}){const n=Ge(),s=n.ctx;if(!s.renderer)return()=>{const p=t.default&&t.default();return p&&p.length===1?p[0]:p};const r=new Map,i=new Set;let o=null;const l=n.suspense,{renderer:{p:c,m:u,um:h,o:{createElement:d}}}=s,m=d("div");s.activate=(p,T,g,A,D)=>{const N=p.component;u(p,T,g,0,l),c(N.vnode,p,T,g,N,l,A,p.slotScopeIds,D),ue(()=>{N.isDeactivated=!1,N.a&&bt(N.a);const C=p.props&&p.props.onVnodeMounted;C&&me(C,N.parent,p)},l)},s.deactivate=p=>{const T=p.component;u(p,m,null,1,l),ue(()=>{T.da&&bt(T.da);const g=p.props&&p.props.onVnodeUnmounted;g&&me(g,T.parent,p),T.isDeactivated=!0},l)};function E(p){ts(p),h(p,n,l,!0)}function O(p){r.forEach((T,g)=>{const A=xs(T.type);A&&(!p||!p(A))&&F(g)})}function F(p){const T=r.get(p);!o||!Oe(T,o)?E(T):o&&ts(o),r.delete(p),i.delete(p)}vt(()=>[e.include,e.exclude],([p,T])=>{p&&O(g=>Dt(p,g)),T&&O(g=>!Dt(T,g))},{flush:"post",deep:!0});let K=null;const b=()=>{K!=null&&r.set(K,ns(n.subTree))};return Yn(b),Ds(b),Us(()=>{r.forEach(p=>{const{subTree:T,suspense:g}=n,A=ns(T);if(p.type===A.type&&p.key===A.key){ts(A);const D=A.component.da;D&&ue(D,g);return}E(p)})}),()=>{if(K=null,!t.default)return null;const p=t.default(),T=p[0];if(p.length>1)return o=null,p;if(!ut(T)||!(T.shapeFlag&4)&&!(T.shapeFlag&128))return o=null,T;let g=ns(T);const A=g.type,D=xs(ct(g)?g.type.__asyncResolved||{}:A),{include:N,exclude:C,max:B}=e;if(N&&(!D||!Dt(N,D))||C&&D&&Dt(C,D))return o=g,T;const H=g.key==null?A:g.key,$=r.get(H);return g.el&&(g=De(g),T.shapeFlag&128&&(T.ssContent=g)),K=H,$?(g.el=$.el,g.component=$.component,g.transition&&At(g,g.transition),g.shapeFlag|=512,i.delete(H),i.add(H)):(i.add(H),B&&i.size>parseInt(B,10)&&F(i.values().next().value)),g.shapeFlag|=256,o=g,Ci(T.type)?T:g}}},Kf=Bl;function Dt(e,t){return M(e)?e.some(n=>Dt(n,t)):ie(e)?e.split(",").includes(t):Co(e)?e.test(t):!1}function Hl(e,t){Oi(e,"a",t)}function Dl(e,t){Oi(e,"da",t)}function Oi(e,t,n=le){const s=e.__wdc||(e.__wdc=()=>{let r=n;for(;r;){if(r.isDeactivated)return;r=r.parent}return e()});if(Jn(t,s,n),n){let r=n.parent;for(;r&&r.parent;)rn(r.parent.vnode)&&Ul(s,t,n,r),r=r.parent}}function Ul(e,t,n,s){const r=Jn(t,e,s,!0);js(()=>{Ps(s[t],r)},n)}function ts(e){e.shapeFlag&=-257,e.shapeFlag&=-513}function ns(e){return e.shapeFlag&128?e.ssContent:e}function Jn(e,t,n=le,s=!1){if(n){const r=n[e]||(n[e]=[]),i=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;Rt(),Xe(n);const l=Te(t,n,e,o);return Ye(),St(),l});return s?r.unshift(i):r.push(i),i}}const Ue=e=>(t,n=le)=>(!Ot||e==="sp")&&Jn(e,(...s)=>t(...s),n),jl=Ue("bm"),Yn=Ue("m"),$l=Ue("bu"),Ds=Ue("u"),Us=Ue("bum"),js=Ue("um"),Kl=Ue("sp"),Vl=Ue("rtg"),Wl=Ue("rtc");function ql(e,t=le){Jn("ec",e,t)}const $s="components",Jl="directives";function Vf(e,t){return Ks($s,e,!0,t)||e}const Ii=Symbol.for("v-ndc");function Wf(e){return ie(e)?Ks($s,e,!1)||e:e||Ii}function qf(e){return Ks(Jl,e)}function Ks(e,t,n=!0,s=!1){const r=fe||le;if(r){const i=r.type;if(e===$s){const l=xs(i,!1);if(l&&(l===t||l===ve(t)||l===Nn(ve(t))))return i}const o=gr(r[e]||i[e],t)||gr(r.appContext[e],t);return!o&&s?i:o}}function gr(e,t){return e&&(e[t]||e[ve(t)]||e[Nn(ve(t))])}function Jf(e,t,n,s){let r;const i=n&&n[s];if(M(e)||ie(e)){r=new Array(e.length);for(let o=0,l=e.length;ot(o,l,void 0,i&&i[l]));else{const o=Object.keys(e);r=new Array(o.length);for(let l=0,c=o.length;l{const i=s.fn(...r);return i&&(i.key=s.key),i}:s.fn)}return e}function Qf(e,t,n={},s,r){if(fe.isCE||fe.parent&&ct(fe.parent)&&fe.parent.isCE)return t!=="default"&&(n.name=t),re("slot",n,s&&s());let i=e[t];i&&i._c&&(i._d=!1),Js();const o=i&&Fi(i(n)),l=Ki(de,{key:n.key||o&&o.key||`_${t}`},o||(s?s():[]),o&&e._===1?64:-2);return!r&&l.scopeId&&(l.slotScopeIds=[l.scopeId+"-s"]),i&&i._c&&(i._d=!0),l}function Fi(e){return e.some(t=>ut(t)?!(t.type===ge||t.type===de&&!Fi(t.children)):!0)?e:null}function zf(e,t){const n={};for(const s in e)n[t&&/[A-Z]/.test(s)?`on:${s}`:yn(s)]=e[s];return n}const ds=e=>e?Yi(e)?zn(e)||e.proxy:ds(e.parent):null,Kt=se(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>ds(e.parent),$root:e=>ds(e.root),$emit:e=>e.emit,$options:e=>Vs(e),$forceUpdate:e=>e.f||(e.f=()=>Vn(e.update)),$nextTick:e=>e.n||(e.n=gi.bind(e.proxy)),$watch:e=>Nl.bind(e)}),ss=(e,t)=>e!==Z&&!e.__isScriptSetup&&Q(e,t),hs={get({_:e},t){const{ctx:n,setupState:s,data:r,props:i,accessCache:o,type:l,appContext:c}=e;let u;if(t[0]!=="$"){const E=o[t];if(E!==void 0)switch(E){case 1:return s[t];case 2:return r[t];case 4:return n[t];case 3:return i[t]}else{if(ss(s,t))return o[t]=1,s[t];if(r!==Z&&Q(r,t))return o[t]=2,r[t];if((u=e.propsOptions[0])&&Q(u,t))return o[t]=3,i[t];if(n!==Z&&Q(n,t))return o[t]=4,n[t];ps&&(o[t]=0)}}const h=Kt[t];let d,m;if(h)return t==="$attrs"&&be(e,"get",t),h(e);if((d=l.__cssModules)&&(d=d[t]))return d;if(n!==Z&&Q(n,t))return o[t]=4,n[t];if(m=c.config.globalProperties,Q(m,t))return m[t]},set({_:e},t,n){const{data:s,setupState:r,ctx:i}=e;return ss(r,t)?(r[t]=n,!0):s!==Z&&Q(s,t)?(s[t]=n,!0):Q(e.props,t)||t[0]==="$"&&t.slice(1)in e?!1:(i[t]=n,!0)},has({_:{data:e,setupState:t,accessCache:n,ctx:s,appContext:r,propsOptions:i}},o){let l;return!!n[o]||e!==Z&&Q(e,o)||ss(t,o)||(l=i[0])&&Q(l,o)||Q(s,o)||Q(Kt,o)||Q(r.config.globalProperties,o)},defineProperty(e,t,n){return n.get!=null?e._.accessCache[t]=0:Q(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}},Yl=se({},hs,{get(e,t){if(t!==Symbol.unscopables)return hs.get(e,t,e)},has(e,t){return t[0]!=="_"&&!Ao(t)}});function Xf(){return null}function Zf(){return null}function Gf(e){}function eu(e){}function tu(){return null}function nu(){}function su(e,t){return null}function ru(){return Ri().slots}function iu(){return Ri().attrs}function ou(e,t,n){const s=Ge();if(n&&n.local){const r=$t(e[t]);return vt(()=>e[t],i=>r.value=i),vt(r,i=>{i!==e[t]&&s.emit(`update:${t}`,i)}),r}else return{__v_isRef:!0,get value(){return e[t]},set value(r){s.emit(`update:${t}`,r)}}}function Ri(){const e=Ge();return e.setupContext||(e.setupContext=Xi(e))}function en(e){return M(e)?e.reduce((t,n)=>(t[n]=null,t),{}):e}function lu(e,t){const n=en(e);for(const s in t){if(s.startsWith("__skip"))continue;let r=n[s];r?M(r)||V(r)?r=n[s]={type:r,default:t[s]}:r.default=t[s]:r===null&&(r=n[s]={default:t[s]}),r&&t[`__skip_${s}`]&&(r.skipFactory=!0)}return n}function cu(e,t){return!e||!t?e||t:M(e)&&M(t)?e.concat(t):se({},en(e),en(t))}function fu(e,t){const n={};for(const s in e)t.includes(s)||Object.defineProperty(n,s,{enumerable:!0,get:()=>e[s]});return n}function uu(e){const t=Ge();let n=e();return Ye(),Os(n)&&(n=n.catch(s=>{throw Xe(t),s})),[n,()=>Xe(t)]}let ps=!0;function Ql(e){const t=Vs(e),n=e.proxy,s=e.ctx;ps=!1,t.beforeCreate&&mr(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:o,watch:l,provide:c,inject:u,created:h,beforeMount:d,mounted:m,beforeUpdate:E,updated:O,activated:F,deactivated:K,beforeDestroy:b,beforeUnmount:p,destroyed:T,unmounted:g,render:A,renderTracked:D,renderTriggered:N,errorCaptured:C,serverPrefetch:B,expose:H,inheritAttrs:$,components:S,directives:q,filters:L}=t;if(u&&zl(u,s,null),o)for(const ee in o){const te=o[ee];V(te)&&(s[ee]=te.bind(n))}if(r){const ee=r.call(n,n);G(ee)&&(e.data=Ss(ee))}if(ps=!0,i)for(const ee in i){const te=i[ee],et=V(te)?te.bind(n,n):V(te.get)?te.get.bind(n,n):Ie,on=!V(te)&&V(te.set)?te.set.bind(n):Ie,tt=Ec({get:et,set:on});Object.defineProperty(s,ee,{enumerable:!0,configurable:!0,get:()=>tt.value,set:Fe=>tt.value=Fe})}if(l)for(const ee in l)Si(l[ee],s,n,ee);if(c){const ee=V(c)?c.call(n):c;Reflect.ownKeys(ee).forEach(te=>{nc(te,ee[te])})}h&&mr(h,e,"c");function z(ee,te){M(te)?te.forEach(et=>ee(et.bind(n))):te&&ee(te.bind(n))}if(z(jl,d),z(Yn,m),z($l,E),z(Ds,O),z(Hl,F),z(Dl,K),z(ql,C),z(Wl,D),z(Vl,N),z(Us,p),z(js,g),z(Kl,B),M(H))if(H.length){const ee=e.exposed||(e.exposed={});H.forEach(te=>{Object.defineProperty(ee,te,{get:()=>n[te],set:et=>n[te]=et})})}else e.exposed||(e.exposed={});A&&e.render===Ie&&(e.render=A),$!=null&&(e.inheritAttrs=$),S&&(e.components=S),q&&(e.directives=q)}function zl(e,t,n=Ie){M(e)&&(e=gs(e));for(const s in e){const r=e[s];let i;G(r)?"default"in r?i=Cn(r.from||s,r.default,!0):i=Cn(r.from||s):i=Cn(r),ce(i)?Object.defineProperty(t,s,{enumerable:!0,configurable:!0,get:()=>i.value,set:o=>i.value=o}):t[s]=i}}function mr(e,t,n){Te(M(e)?e.map(s=>s.bind(t.proxy)):e.bind(t.proxy),t,n)}function Si(e,t,n,s){const r=s.includes(".")?Ei(n,s):()=>n[s];if(ie(e)){const i=t[e];V(i)&&vt(r,i)}else if(V(e))vt(r,e.bind(n));else if(G(e))if(M(e))e.forEach(i=>Si(i,t,n,s));else{const i=V(e.handler)?e.handler.bind(n):t[e.handler];V(i)&&vt(r,i,e)}}function Vs(e){const t=e.type,{mixins:n,extends:s}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:o}}=e.appContext,l=i.get(t);let c;return l?c=l:!r.length&&!n&&!s?c=t:(c={},r.length&&r.forEach(u=>In(c,u,o,!0)),In(c,t,o)),G(t)&&i.set(t,c),c}function In(e,t,n,s=!1){const{mixins:r,extends:i}=t;i&&In(e,i,n,!0),r&&r.forEach(o=>In(e,o,n,!0));for(const o in t)if(!(s&&o==="expose")){const l=Xl[o]||n&&n[o];e[o]=l?l(e[o],t[o]):t[o]}return e}const Xl={data:_r,props:br,emits:br,methods:Ut,computed:Ut,beforeCreate:pe,created:pe,beforeMount:pe,mounted:pe,beforeUpdate:pe,updated:pe,beforeDestroy:pe,beforeUnmount:pe,destroyed:pe,unmounted:pe,activated:pe,deactivated:pe,errorCaptured:pe,serverPrefetch:pe,components:Ut,directives:Ut,watch:Gl,provide:_r,inject:Zl};function _r(e,t){return t?e?function(){return se(V(e)?e.call(this,this):e,V(t)?t.call(this,this):t)}:t:e}function Zl(e,t){return Ut(gs(e),gs(t))}function gs(e){if(M(e)){const t={};for(let n=0;n1)return n&&V(t)?t.call(s&&s.proxy):t}}function au(){return!!(le||fe||tn)}function sc(e,t,n,s=!1){const r={},i={};En(i,Qn,1),e.propsDefaults=Object.create(null),Ni(e,t,r,i);for(const o in e.propsOptions[0])o in r||(r[o]=void 0);n?e.props=s?r:fl(r):e.type.props?e.props=r:e.props=i,e.attrs=i}function rc(e,t,n,s){const{props:r,attrs:i,vnode:{patchFlag:o}}=e,l=Y(r),[c]=e.propsOptions;let u=!1;if((s||o>0)&&!(o&16)){if(o&8){const h=e.vnode.dynamicProps;for(let d=0;d{c=!0;const[m,E]=Li(d,t,!0);se(o,m),E&&l.push(...E)};!n&&t.mixins.length&&t.mixins.forEach(h),e.extends&&h(e.extends),e.mixins&&e.mixins.forEach(h)}if(!i&&!c)return G(e)&&s.set(e,mt),mt;if(M(i))for(let h=0;h-1,E[1]=F<0||O-1||Q(E,"default"))&&l.push(d)}}}const u=[o,l];return G(e)&&s.set(e,u),u}function yr(e){return e[0]!=="$"}function xr(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:e===null?"null":""}function Cr(e,t){return xr(e)===xr(t)}function vr(e,t){return M(t)?t.findIndex(n=>Cr(n,e)):V(t)&&Cr(t,e)?0:-1}const ki=e=>e[0]==="_"||e==="$stable",Ws=e=>M(e)?e.map(Ce):[Ce(e)],ic=(e,t,n)=>{if(t._n)return t;const s=xi((...r)=>Ws(t(...r)),n);return s._c=!1,s},Bi=(e,t,n)=>{const s=e._ctx;for(const r in e){if(ki(r))continue;const i=e[r];if(V(i))t[r]=ic(r,i,s);else if(i!=null){const o=Ws(i);t[r]=()=>o}}},Hi=(e,t)=>{const n=Ws(t);e.slots.default=()=>n},oc=(e,t)=>{if(e.vnode.shapeFlag&32){const n=t._;n?(e.slots=Y(t),En(t,"_",n)):Bi(t,e.slots={})}else e.slots={},t&&Hi(e,t);En(e.slots,Qn,1)},lc=(e,t,n)=>{const{vnode:s,slots:r}=e;let i=!0,o=Z;if(s.shapeFlag&32){const l=t._;l?n&&l===1?i=!1:(se(r,t),!n&&l===1&&delete r._):(i=!t.$stable,Bi(t,r)),o=t}else t&&(Hi(e,t),o={default:1});if(i)for(const l in r)!ki(l)&&!(l in o)&&delete r[l]};function Fn(e,t,n,s,r=!1){if(M(e)){e.forEach((m,E)=>Fn(m,t&&(M(t)?t[E]:t),n,s,r));return}if(ct(s)&&!r)return;const i=s.shapeFlag&4?zn(s.component)||s.component.proxy:s.el,o=r?null:i,{i:l,r:c}=e,u=t&&t.r,h=l.refs===Z?l.refs={}:l.refs,d=l.setupState;if(u!=null&&u!==c&&(ie(u)?(h[u]=null,Q(d,u)&&(d[u]=null)):ce(u)&&(u.value=null)),V(c))Je(c,l,12,[o,h]);else{const m=ie(c),E=ce(c);if(m||E){const O=()=>{if(e.f){const F=m?Q(d,c)?d[c]:h[c]:c.value;r?M(F)&&Ps(F,i):M(F)?F.includes(i)||F.push(i):m?(h[c]=[i],Q(d,c)&&(d[c]=h[c])):(c.value=[i],e.k&&(h[e.k]=c.value))}else m?(h[c]=o,Q(d,c)&&(d[c]=o)):E&&(c.value=o,e.k&&(h[e.k]=o))};o?(O.id=-1,ue(O,n)):O()}}}let $e=!1;const gn=e=>/svg/.test(e.namespaceURI)&&e.tagName!=="foreignObject",mn=e=>e.nodeType===8;function cc(e){const{mt:t,p:n,o:{patchProp:s,createText:r,nextSibling:i,parentNode:o,remove:l,insert:c,createComment:u}}=e,h=(b,p)=>{if(!p.hasChildNodes()){n(null,b,p),On(),p._vnode=b;return}$e=!1,d(p.firstChild,b,null,null,null),On(),p._vnode=b,$e&&console.error("Hydration completed but contains mismatches.")},d=(b,p,T,g,A,D=!1)=>{const N=mn(b)&&b.data==="[",C=()=>F(b,p,T,g,A,N),{type:B,ref:H,shapeFlag:$,patchFlag:S}=p;let q=b.nodeType;p.el=b,S===-2&&(D=!1,p.dynamicChildren=null);let L=null;switch(B){case Pt:q!==3?p.children===""?(c(p.el=r(""),o(b),b),L=b):L=C():(b.data!==p.children&&($e=!0,b.data=p.children),L=i(b));break;case ge:q!==8||N?L=C():L=i(b);break;case Et:if(N&&(b=i(b),q=b.nodeType),q===1||q===3){L=b;const ae=!p.children.length;for(let z=0;z{D=D||!!p.dynamicChildren;const{type:N,props:C,patchFlag:B,shapeFlag:H,dirs:$}=p,S=N==="input"&&$||N==="option";if(S||B!==-1){if($&&Se(p,null,T,"created"),C)if(S||!D||B&48)for(const L in C)(S&&L.endsWith("value")||nn(L)&&!jt(L))&&s(b,L,null,C[L],!1,void 0,T);else C.onClick&&s(b,"onClick",null,C.onClick,!1,void 0,T);let q;if((q=C&&C.onVnodeBeforeMount)&&me(q,T,p),$&&Se(p,null,T,"beforeMount"),((q=C&&C.onVnodeMounted)||$)&&vi(()=>{q&&me(q,T,p),$&&Se(p,null,T,"mounted")},g),H&16&&!(C&&(C.innerHTML||C.textContent))){let L=E(b.firstChild,p,b,T,g,A,D);for(;L;){$e=!0;const ae=L;L=L.nextSibling,l(ae)}}else H&8&&b.textContent!==p.children&&($e=!0,b.textContent=p.children)}return b.nextSibling},E=(b,p,T,g,A,D,N)=>{N=N||!!p.dynamicChildren;const C=p.children,B=C.length;for(let H=0;H{const{slotScopeIds:N}=p;N&&(A=A?A.concat(N):N);const C=o(b),B=E(i(b),p,C,T,g,A,D);return B&&mn(B)&&B.data==="]"?i(p.anchor=B):($e=!0,c(p.anchor=u("]"),C,B),B)},F=(b,p,T,g,A,D)=>{if($e=!0,p.el=null,D){const B=K(b);for(;;){const H=i(b);if(H&&H!==B)l(H);else break}}const N=i(b),C=o(b);return l(b),n(null,p,C,N,T,g,gn(C),A),N},K=b=>{let p=0;for(;b;)if(b=i(b),b&&mn(b)&&(b.data==="["&&p++,b.data==="]")){if(p===0)return i(b);p--}return b};return[h,d]}const ue=vi;function fc(e){return Di(e)}function uc(e){return Di(e,cc)}function Di(e,t){const n=ls();n.__VUE__=!0;const{insert:s,remove:r,patchProp:i,createElement:o,createText:l,createComment:c,setText:u,setElementText:h,parentNode:d,nextSibling:m,setScopeId:E=Ie,insertStaticContent:O}=e,F=(f,a,_,x=null,y=null,P=null,R=!1,w=null,I=!!a.dynamicChildren)=>{if(f===a)return;f&&!Oe(f,a)&&(x=ln(f),Fe(f,y,P,!0),f=null),a.patchFlag===-2&&(I=!1,a.dynamicChildren=null);const{type:v,ref:U,shapeFlag:k}=a;switch(v){case Pt:K(f,a,_,x);break;case ge:b(f,a,_,x);break;case Et:f==null&&p(a,_,x,R);break;case de:S(f,a,_,x,y,P,R,w,I);break;default:k&1?A(f,a,_,x,y,P,R,w,I):k&6?q(f,a,_,x,y,P,R,w,I):(k&64||k&128)&&v.process(f,a,_,x,y,P,R,w,I,dt)}U!=null&&y&&Fn(U,f&&f.ref,P,a||f,!a)},K=(f,a,_,x)=>{if(f==null)s(a.el=l(a.children),_,x);else{const y=a.el=f.el;a.children!==f.children&&u(y,a.children)}},b=(f,a,_,x)=>{f==null?s(a.el=c(a.children||""),_,x):a.el=f.el},p=(f,a,_,x)=>{[f.el,f.anchor]=O(f.children,a,_,x,f.el,f.anchor)},T=({el:f,anchor:a},_,x)=>{let y;for(;f&&f!==a;)y=m(f),s(f,_,x),f=y;s(a,_,x)},g=({el:f,anchor:a})=>{let _;for(;f&&f!==a;)_=m(f),r(f),f=_;r(a)},A=(f,a,_,x,y,P,R,w,I)=>{R=R||a.type==="svg",f==null?D(a,_,x,y,P,R,w,I):B(f,a,y,P,R,w,I)},D=(f,a,_,x,y,P,R,w)=>{let I,v;const{type:U,props:k,shapeFlag:j,transition:W,dirs:J}=f;if(I=f.el=o(f.type,P,k&&k.is,k),j&8?h(I,f.children):j&16&&C(f.children,I,null,x,y,P&&U!=="foreignObject",R,w),J&&Se(f,null,x,"created"),N(I,f,f.scopeId,R,x),k){for(const X in k)X!=="value"&&!jt(X)&&i(I,X,null,k[X],P,f.children,x,y,Ne);"value"in k&&i(I,"value",null,k.value),(v=k.onVnodeBeforeMount)&&me(v,x,f)}J&&Se(f,null,x,"beforeMount");const ne=(!y||y&&!y.pendingBranch)&&W&&!W.persisted;ne&&W.beforeEnter(I),s(I,a,_),((v=k&&k.onVnodeMounted)||ne||J)&&ue(()=>{v&&me(v,x,f),ne&&W.enter(I),J&&Se(f,null,x,"mounted")},y)},N=(f,a,_,x,y)=>{if(_&&E(f,_),x)for(let P=0;P{for(let v=I;v{const w=a.el=f.el;let{patchFlag:I,dynamicChildren:v,dirs:U}=a;I|=f.patchFlag&16;const k=f.props||Z,j=a.props||Z;let W;_&&nt(_,!1),(W=j.onVnodeBeforeUpdate)&&me(W,_,a,f),U&&Se(a,f,_,"beforeUpdate"),_&&nt(_,!0);const J=y&&a.type!=="foreignObject";if(v?H(f.dynamicChildren,v,w,_,x,J,P):R||te(f,a,w,null,_,x,J,P,!1),I>0){if(I&16)$(w,a,k,j,_,x,y);else if(I&2&&k.class!==j.class&&i(w,"class",null,j.class,y),I&4&&i(w,"style",k.style,j.style,y),I&8){const ne=a.dynamicProps;for(let X=0;X{W&&me(W,_,a,f),U&&Se(a,f,_,"updated")},x)},H=(f,a,_,x,y,P,R)=>{for(let w=0;w{if(_!==x){if(_!==Z)for(const w in _)!jt(w)&&!(w in x)&&i(f,w,_[w],null,R,a.children,y,P,Ne);for(const w in x){if(jt(w))continue;const I=x[w],v=_[w];I!==v&&w!=="value"&&i(f,w,v,I,R,a.children,y,P,Ne)}"value"in x&&i(f,"value",_.value,x.value)}},S=(f,a,_,x,y,P,R,w,I)=>{const v=a.el=f?f.el:l(""),U=a.anchor=f?f.anchor:l("");let{patchFlag:k,dynamicChildren:j,slotScopeIds:W}=a;W&&(w=w?w.concat(W):W),f==null?(s(v,_,x),s(U,_,x),C(a.children,_,U,y,P,R,w,I)):k>0&&k&64&&j&&f.dynamicChildren?(H(f.dynamicChildren,j,_,y,P,R,w),(a.key!=null||y&&a===y.subTree)&&qs(f,a,!0)):te(f,a,_,U,y,P,R,w,I)},q=(f,a,_,x,y,P,R,w,I)=>{a.slotScopeIds=w,f==null?a.shapeFlag&512?y.ctx.activate(a,_,x,R,I):L(a,_,x,y,P,R,I):ae(f,a,I)},L=(f,a,_,x,y,P,R)=>{const w=f.component=Ji(f,x,y);if(rn(f)&&(w.ctx.renderer=dt),Qi(w),w.asyncDep){if(y&&y.registerDep(w,z),!f.el){const I=w.subTree=re(ge);b(null,I,a,_)}return}z(w,f,a,_,y,P,R)},ae=(f,a,_)=>{const x=a.component=f.component;if(Al(f,a,_))if(x.asyncDep&&!x.asyncResolved){ee(x,a,_);return}else x.next=a,yl(x.update),x.update();else a.el=f.el,x.vnode=a},z=(f,a,_,x,y,P,R)=>{const w=()=>{if(f.isMounted){let{next:U,bu:k,u:j,parent:W,vnode:J}=f,ne=U,X;nt(f,!1),U?(U.el=J.el,ee(f,U,R)):U=J,k&&bt(k),(X=U.props&&U.props.onVnodeBeforeUpdate)&&me(X,W,U,J),nt(f,!0);const oe=xn(f),Ae=f.subTree;f.subTree=oe,F(Ae,oe,d(Ae.el),ln(Ae),f,y,P),U.el=oe.el,ne===null&&ks(f,oe.el),j&&ue(j,y),(X=U.props&&U.props.onVnodeUpdated)&&ue(()=>me(X,W,U,J),y)}else{let U;const{el:k,props:j}=a,{bm:W,m:J,parent:ne}=f,X=ct(a);if(nt(f,!1),W&&bt(W),!X&&(U=j&&j.onVnodeBeforeMount)&&me(U,ne,a),nt(f,!0),k&&Zn){const oe=()=>{f.subTree=xn(f),Zn(k,f.subTree,f,y,null)};X?a.type.__asyncLoader().then(()=>!f.isUnmounted&&oe()):oe()}else{const oe=f.subTree=xn(f);F(null,oe,_,x,f,y,P),a.el=oe.el}if(J&&ue(J,y),!X&&(U=j&&j.onVnodeMounted)){const oe=a;ue(()=>me(U,ne,oe),y)}(a.shapeFlag&256||ne&&ct(ne.vnode)&&ne.vnode.shapeFlag&256)&&f.a&&ue(f.a,y),f.isMounted=!0,a=_=x=null}},I=f.effect=new Hn(w,()=>Vn(v),f.scope),v=f.update=()=>I.run();v.id=f.uid,nt(f,!0),v()},ee=(f,a,_)=>{a.component=f;const x=f.vnode.props;f.vnode=a,f.next=null,rc(f,a.props,x,_),lc(f,a.children,_),Rt(),ar(),St()},te=(f,a,_,x,y,P,R,w,I=!1)=>{const v=f&&f.children,U=f?f.shapeFlag:0,k=a.children,{patchFlag:j,shapeFlag:W}=a;if(j>0){if(j&128){on(v,k,_,x,y,P,R,w,I);return}else if(j&256){et(v,k,_,x,y,P,R,w,I);return}}W&8?(U&16&&Ne(v,y,P),k!==v&&h(_,k)):U&16?W&16?on(v,k,_,x,y,P,R,w,I):Ne(v,y,P,!0):(U&8&&h(_,""),W&16&&C(k,_,x,y,P,R,w,I))},et=(f,a,_,x,y,P,R,w,I)=>{f=f||mt,a=a||mt;const v=f.length,U=a.length,k=Math.min(v,U);let j;for(j=0;jU?Ne(f,y,P,!0,!1,k):C(a,_,x,y,P,R,w,I,k)},on=(f,a,_,x,y,P,R,w,I)=>{let v=0;const U=a.length;let k=f.length-1,j=U-1;for(;v<=k&&v<=j;){const W=f[v],J=a[v]=I?We(a[v]):Ce(a[v]);if(Oe(W,J))F(W,J,_,null,y,P,R,w,I);else break;v++}for(;v<=k&&v<=j;){const W=f[k],J=a[j]=I?We(a[j]):Ce(a[j]);if(Oe(W,J))F(W,J,_,null,y,P,R,w,I);else break;k--,j--}if(v>k){if(v<=j){const W=j+1,J=Wj)for(;v<=k;)Fe(f[v],y,P,!0),v++;else{const W=v,J=v,ne=new Map;for(v=J;v<=j;v++){const ye=a[v]=I?We(a[v]):Ce(a[v]);ye.key!=null&&ne.set(ye.key,v)}let X,oe=0;const Ae=j-J+1;let ht=!1,Gs=0;const Nt=new Array(Ae);for(v=0;v=Ae){Fe(ye,y,P,!0);continue}let Re;if(ye.key!=null)Re=ne.get(ye.key);else for(X=J;X<=j;X++)if(Nt[X-J]===0&&Oe(ye,a[X])){Re=X;break}Re===void 0?Fe(ye,y,P,!0):(Nt[Re-J]=v+1,Re>=Gs?Gs=Re:ht=!0,F(ye,a[Re],_,null,y,P,R,w,I),oe++)}const er=ht?ac(Nt):mt;for(X=er.length-1,v=Ae-1;v>=0;v--){const ye=J+v,Re=a[ye],tr=ye+1{const{el:P,type:R,transition:w,children:I,shapeFlag:v}=f;if(v&6){tt(f.component.subTree,a,_,x);return}if(v&128){f.suspense.move(a,_,x);return}if(v&64){R.move(f,a,_,dt);return}if(R===de){s(P,a,_);for(let k=0;kw.enter(P),y);else{const{leave:k,delayLeave:j,afterLeave:W}=w,J=()=>s(P,a,_),ne=()=>{k(P,()=>{J(),W&&W()})};j?j(P,J,ne):ne()}else s(P,a,_)},Fe=(f,a,_,x=!1,y=!1)=>{const{type:P,props:R,ref:w,children:I,dynamicChildren:v,shapeFlag:U,patchFlag:k,dirs:j}=f;if(w!=null&&Fn(w,null,_,f,!0),U&256){a.ctx.deactivate(f);return}const W=U&1&&j,J=!ct(f);let ne;if(J&&(ne=R&&R.onVnodeBeforeUnmount)&&me(ne,a,f),U&6)_o(f.component,_,x);else{if(U&128){f.suspense.unmount(_,x);return}W&&Se(f,null,a,"beforeUnmount"),U&64?f.type.remove(f,a,_,y,dt,x):v&&(P!==de||k>0&&k&64)?Ne(v,a,_,!1,!0):(P===de&&k&384||!y&&U&16)&&Ne(I,a,_),x&&Xs(f)}(J&&(ne=R&&R.onVnodeUnmounted)||W)&&ue(()=>{ne&&me(ne,a,f),W&&Se(f,null,a,"unmounted")},_)},Xs=f=>{const{type:a,el:_,anchor:x,transition:y}=f;if(a===de){mo(_,x);return}if(a===Et){g(f);return}const P=()=>{r(_),y&&!y.persisted&&y.afterLeave&&y.afterLeave()};if(f.shapeFlag&1&&y&&!y.persisted){const{leave:R,delayLeave:w}=y,I=()=>R(_,P);w?w(f.el,P,I):I()}else P()},mo=(f,a)=>{let _;for(;f!==a;)_=m(f),r(f),f=_;r(a)},_o=(f,a,_)=>{const{bum:x,scope:y,update:P,subTree:R,um:w}=f;x&&bt(x),y.stop(),P&&(P.active=!1,Fe(R,f,a,_)),w&&ue(w,a),ue(()=>{f.isUnmounted=!0},a),a&&a.pendingBranch&&!a.isUnmounted&&f.asyncDep&&!f.asyncResolved&&f.suspenseId===a.pendingId&&(a.deps--,a.deps===0&&a.resolve())},Ne=(f,a,_,x=!1,y=!1,P=0)=>{for(let R=P;Rf.shapeFlag&6?ln(f.component.subTree):f.shapeFlag&128?f.suspense.next():m(f.anchor||f.el),Zs=(f,a,_)=>{f==null?a._vnode&&Fe(a._vnode,null,null,!0):F(a._vnode||null,f,a,null,null,null,_),ar(),On(),a._vnode=f},dt={p:F,um:Fe,m:tt,r:Xs,mt:L,mc:C,pc:te,pbc:H,n:ln,o:e};let Xn,Zn;return t&&([Xn,Zn]=t(dt)),{render:Zs,hydrate:Xn,createApp:tc(Zs,Xn)}}function nt({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function qs(e,t,n=!1){const s=e.children,r=t.children;if(M(s)&&M(r))for(let i=0;i>1,e[n[l]]0&&(t[s]=n[i-1]),n[i]=s)}}for(i=n.length,o=n[i-1];i-- >0;)n[i]=o,o=t[o];return n}const dc=e=>e.__isTeleport,Vt=e=>e&&(e.disabled||e.disabled===""),Er=e=>typeof SVGElement<"u"&&e instanceof SVGElement,_s=(e,t)=>{const n=e&&e.to;return ie(n)?t?t(n):null:n},hc={__isTeleport:!0,process(e,t,n,s,r,i,o,l,c,u){const{mc:h,pc:d,pbc:m,o:{insert:E,querySelector:O,createText:F,createComment:K}}=u,b=Vt(t.props);let{shapeFlag:p,children:T,dynamicChildren:g}=t;if(e==null){const A=t.el=F(""),D=t.anchor=F("");E(A,n,s),E(D,n,s);const N=t.target=_s(t.props,O),C=t.targetAnchor=F("");N&&(E(C,N),o=o||Er(N));const B=(H,$)=>{p&16&&h(T,H,$,r,i,o,l,c)};b?B(n,D):N&&B(N,C)}else{t.el=e.el;const A=t.anchor=e.anchor,D=t.target=e.target,N=t.targetAnchor=e.targetAnchor,C=Vt(e.props),B=C?n:D,H=C?A:N;if(o=o||Er(D),g?(m(e.dynamicChildren,g,B,r,i,o,l),qs(e,t,!0)):c||d(e,t,B,H,r,i,o,l,!1),b)C||_n(t,n,A,u,1);else if((t.props&&t.props.to)!==(e.props&&e.props.to)){const $=t.target=_s(t.props,O);$&&_n(t,$,null,u,0)}else C&&_n(t,D,N,u,1)}Ui(t)},remove(e,t,n,s,{um:r,o:{remove:i}},o){const{shapeFlag:l,children:c,anchor:u,targetAnchor:h,target:d,props:m}=e;if(d&&i(h),(o||!Vt(m))&&(i(u),l&16))for(let E=0;E0?_e||mt:null,ji(),ft>0&&_e&&_e.push(e),e}function hu(e,t,n,s,r,i){return $i(Wi(e,t,n,s,r,i,!0))}function Ki(e,t,n,s,r){return $i(re(e,t,n,s,r,!0))}function ut(e){return e?e.__v_isVNode===!0:!1}function Oe(e,t){return e.type===t.type&&e.key===t.key}function pu(e){}const Qn="__vInternal",Vi=({key:e})=>e??null,vn=({ref:e,ref_key:t,ref_for:n})=>(typeof e=="number"&&(e=""+e),e!=null?ie(e)||ce(e)||V(e)?{i:fe,r:e,k:t,f:!!n}:e:null);function Wi(e,t=null,n=null,s=0,r=null,i=e===de?0:1,o=!1,l=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&Vi(t),ref:t&&vn(t),scopeId:qn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:s,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:fe};return l?(Ys(c,n),i&128&&e.normalize(c)):n&&(c.shapeFlag|=ie(n)?8:16),ft>0&&!o&&_e&&(c.patchFlag>0||i&6)&&c.patchFlag!==32&&_e.push(c),c}const re=gc;function gc(e,t=null,n=null,s=0,r=null,i=!1){if((!e||e===Ii)&&(e=ge),ut(e)){const l=De(e,t,!0);return n&&Ys(l,n),ft>0&&!i&&_e&&(l.shapeFlag&6?_e[_e.indexOf(e)]=l:_e.push(l)),l.patchFlag|=-2,l}if(vc(e)&&(e=e.__vccOpts),t){t=mc(t);let{class:l,style:c}=t;l&&!ie(l)&&(t.class=kn(l)),G(c)&&(ci(c)&&!M(c)&&(c=se({},c)),t.style=Ln(c))}const o=ie(e)?1:Ci(e)?128:dc(e)?64:G(e)?4:V(e)?2:0;return Wi(e,t,n,s,r,o,i,!0)}function mc(e){return e?ci(e)||Qn in e?se({},e):e:null}function De(e,t,n=!1){const{props:s,ref:r,patchFlag:i,children:o}=e,l=t?_c(s||{},t):s;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:l,key:l&&Vi(l),ref:t&&t.ref?n&&r?M(r)?r.concat(vn(t)):[r,vn(t)]:vn(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:o,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==de?i===-1?16:i|16:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&De(e.ssContent),ssFallback:e.ssFallback&&De(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function qi(e=" ",t=0){return re(Pt,null,e,t)}function gu(e,t){const n=re(Et,null,e);return n.staticCount=t,n}function mu(e="",t=!1){return t?(Js(),Ki(ge,null,e)):re(ge,null,e)}function Ce(e){return e==null||typeof e=="boolean"?re(ge):M(e)?re(de,null,e.slice()):typeof e=="object"?We(e):re(Pt,null,String(e))}function We(e){return e.el===null&&e.patchFlag!==-1||e.memo?e:De(e)}function Ys(e,t){let n=0;const{shapeFlag:s}=e;if(t==null)t=null;else if(M(t))n=16;else if(typeof t=="object")if(s&65){const r=t.default;r&&(r._c&&(r._d=!1),Ys(e,r()),r._c&&(r._d=!0));return}else{n=32;const r=t._;!r&&!(Qn in t)?t._ctx=fe:r===3&&fe&&(fe.slots._===1?t._=1:(t._=2,e.patchFlag|=1024))}else V(t)?(t={default:t,_ctx:fe},n=32):(t=String(t),s&64?(n=16,t=[qi(t)]):n=8);e.children=t,e.shapeFlag|=n}function _c(...e){const t={};for(let n=0;nle||fe;let Qs,pt,Tr="__VUE_INSTANCE_SETTERS__";(pt=ls()[Tr])||(pt=ls()[Tr]=[]),pt.push(e=>le=e),Qs=e=>{pt.length>1?pt.forEach(t=>t(e)):pt[0](e)};const Xe=e=>{Qs(e),e.scope.on()},Ye=()=>{le&&le.scope.off(),Qs(null)};function Yi(e){return e.vnode.shapeFlag&4}let Ot=!1;function Qi(e,t=!1){Ot=t;const{props:n,children:s}=e.vnode,r=Yi(e);sc(e,n,r,t),oc(e,s);const i=r?xc(e,t):void 0;return Ot=!1,i}function xc(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=fi(new Proxy(e.ctx,hs));const{setup:s}=n;if(s){const r=e.setupContext=s.length>1?Xi(e):null;Xe(e),Rt();const i=Je(s,e,0,[e.props,r]);if(St(),Ye(),Os(i)){if(i.then(Ye,Ye),t)return i.then(o=>{bs(e,o,t)}).catch(o=>{Mt(o,e,0)});e.asyncDep=i}else bs(e,i,t)}else zi(e,t)}function bs(e,t,n){V(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:G(t)&&(e.setupState=di(t)),zi(e,n)}let Rn,ys;function _u(e){Rn=e,ys=t=>{t.render._rc&&(t.withProxy=new Proxy(t.ctx,Yl))}}const bu=()=>!Rn;function zi(e,t,n){const s=e.type;if(!e.render){if(!t&&Rn&&!s.render){const r=s.template||Vs(e).template;if(r){const{isCustomElement:i,compilerOptions:o}=e.appContext.config,{delimiters:l,compilerOptions:c}=s,u=se(se({isCustomElement:i,delimiters:l},o),c);s.render=Rn(r,u)}}e.render=s.render||Ie,ys&&ys(e)}Xe(e),Rt(),Ql(e),St(),Ye()}function Cc(e){return e.attrsProxy||(e.attrsProxy=new Proxy(e.attrs,{get(t,n){return be(e,"get","$attrs"),t[n]}}))}function Xi(e){const t=n=>{e.exposed=n||{}};return{get attrs(){return Cc(e)},slots:e.slots,emit:e.emit,expose:t}}function zn(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(di(fi(e.exposed)),{get(t,n){if(n in t)return t[n];if(n in Kt)return Kt[n](e)},has(t,n){return n in t||n in Kt}}))}function xs(e,t=!0){return V(e)?e.displayName||e.name:e.name||t&&e.__name}function vc(e){return V(e)&&"__vccOpts"in e}const Ec=(e,t)=>ml(e,t,Ot);function wc(e,t,n){const s=arguments.length;return s===2?G(t)&&!M(t)?ut(t)?re(e,null,[t]):re(e,t):re(e,null,t):(s>3?n=Array.prototype.slice.call(arguments,2):s===3&&ut(n)&&(n=[n]),re(e,t,n))}const Tc=Symbol.for("v-scx"),Ac=()=>Cn(Tc);function yu(){}function xu(e,t,n,s){const r=n[s];if(r&&Pc(r,e))return r;const i=t();return i.memo=e.slice(),n[s]=i}function Pc(e,t){const n=e.memo;if(n.length!=t.length)return!1;for(let s=0;s0&&_e&&_e.push(e),!0}const Oc="3.3.4",Ic={createComponentInstance:Ji,setupComponent:Qi,renderComponentRoot:xn,setCurrentRenderingInstance:Xt,isVNode:ut,normalizeVNode:Ce},Cu=Ic,vu=null,Eu=null,Fc="http://www.w3.org/2000/svg",it=typeof document<"u"?document:null,Ar=it&&it.createElement("template"),Rc={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,s)=>{const r=t?it.createElementNS(Fc,e):it.createElement(e,n?{is:n}:void 0);return e==="select"&&s&&s.multiple!=null&&r.setAttribute("multiple",s.multiple),r},createText:e=>it.createTextNode(e),createComment:e=>it.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>it.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,s,r,i){const o=n?n.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),!(r===i||!(r=r.nextSibling)););else{Ar.innerHTML=s?`${e}`:e;const l=Ar.content;if(s){const c=l.firstChild;for(;c.firstChild;)l.appendChild(c.firstChild);l.removeChild(c)}t.insertBefore(l,n)}return[o?o.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};function Sc(e,t,n){const s=e._vtc;s&&(t=(t?[t,...s]:[...s]).join(" ")),t==null?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}function Mc(e,t,n){const s=e.style,r=ie(n);if(n&&!r){if(t&&!ie(t))for(const i in t)n[i]==null&&Cs(s,i,"");for(const i in n)Cs(s,i,n[i])}else{const i=s.display;r?t!==n&&(s.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(s.display=i)}}const Pr=/\s*!important$/;function Cs(e,t,n){if(M(n))n.forEach(s=>Cs(e,t,s));else if(n==null&&(n=""),t.startsWith("--"))e.setProperty(t,n);else{const s=Nc(e,t);Pr.test(n)?e.setProperty(we(s),n.replace(Pr,""),"important"):e[s]=n}}const Or=["Webkit","Moz","ms"],rs={};function Nc(e,t){const n=rs[t];if(n)return n;let s=ve(t);if(s!=="filter"&&s in e)return rs[t]=s;s=Nn(s);for(let r=0;ris||(Uc.then(()=>is=0),is=Date.now());function $c(e,t){const n=s=>{if(!s._vts)s._vts=Date.now();else if(s._vts<=n.attached)return;Te(Kc(s,n.value),t,5,[s])};return n.value=e,n.attached=jc(),n}function Kc(e,t){if(M(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map(s=>r=>!r._stopped&&s&&s(r))}else return t}const Rr=/^on[a-z]/,Vc=(e,t,n,s,r=!1,i,o,l,c)=>{t==="class"?Sc(e,s,r):t==="style"?Mc(e,n,s):nn(t)?As(t)||Hc(e,t,n,s,o):(t[0]==="."?(t=t.slice(1),!0):t[0]==="^"?(t=t.slice(1),!1):Wc(e,t,s,r))?kc(e,t,s,i,o,l,c):(t==="true-value"?e._trueValue=s:t==="false-value"&&(e._falseValue=s),Lc(e,t,s,r))};function Wc(e,t,n,s){return s?!!(t==="innerHTML"||t==="textContent"||t in e&&Rr.test(t)&&V(n)):t==="spellcheck"||t==="draggable"||t==="translate"||t==="form"||t==="list"&&e.tagName==="INPUT"||t==="type"&&e.tagName==="TEXTAREA"||Rr.test(t)&&ie(n)?!1:t in e}function qc(e,t){const n=Pi(e);class s extends zs{constructor(i){super(n,i,t)}}return s.def=n,s}const wu=e=>qc(e,df),Jc=typeof HTMLElement<"u"?HTMLElement:class{};class zs extends Jc{constructor(t,n={},s){super(),this._def=t,this._props=n,this._instance=null,this._connected=!1,this._resolved=!1,this._numberProps=null,this.shadowRoot&&s?s(this._createVNode(),this.shadowRoot):(this.attachShadow({mode:"open"}),this._def.__asyncLoader||this._resolveProps(this._def))}connectedCallback(){this._connected=!0,this._instance||(this._resolved?this._update():this._resolveDef())}disconnectedCallback(){this._connected=!1,gi(()=>{this._connected||(jr(null,this.shadowRoot),this._instance=null)})}_resolveDef(){this._resolved=!0;for(let s=0;s{for(const r of s)this._setAttr(r.attributeName)}).observe(this,{attributes:!0});const t=(s,r=!1)=>{const{props:i,styles:o}=s;let l;if(i&&!M(i))for(const c in i){const u=i[c];(u===Number||u&&u.type===Number)&&(c in this._props&&(this._props[c]=Tn(this._props[c])),(l||(l=Object.create(null)))[ve(c)]=!0)}this._numberProps=l,r&&this._resolveProps(s),this._applyStyles(o),this._update()},n=this._def.__asyncLoader;n?n().then(s=>t(s,!0)):t(this._def)}_resolveProps(t){const{props:n}=t,s=M(n)?n:Object.keys(n||{});for(const r of Object.keys(this))r[0]!=="_"&&s.includes(r)&&this._setProp(r,this[r],!0,!1);for(const r of s.map(ve))Object.defineProperty(this,r,{get(){return this._getProp(r)},set(i){this._setProp(r,i)}})}_setAttr(t){let n=this.getAttribute(t);const s=ve(t);this._numberProps&&this._numberProps[s]&&(n=Tn(n)),this._setProp(s,n,!1)}_getProp(t){return this._props[t]}_setProp(t,n,s=!0,r=!0){n!==this._props[t]&&(this._props[t]=n,r&&this._instance&&this._update(),s&&(n===!0?this.setAttribute(we(t),""):typeof n=="string"||typeof n=="number"?this.setAttribute(we(t),n+""):n||this.removeAttribute(we(t))))}_update(){jr(this._createVNode(),this.shadowRoot)}_createVNode(){const t=re(this._def,se({},this._props));return this._instance||(t.ce=n=>{this._instance=n,n.isCE=!0;const s=(i,o)=>{this.dispatchEvent(new CustomEvent(i,{detail:o}))};n.emit=(i,...o)=>{s(i,o),we(i)!==i&&s(we(i),o)};let r=this;for(;r=r&&(r.parentNode||r.host);)if(r instanceof zs){n.parent=r._instance,n.provides=r._instance.provides;break}}),t}_applyStyles(t){t&&t.forEach(n=>{const s=document.createElement("style");s.textContent=n,this.shadowRoot.appendChild(s)})}}function Tu(e="$style"){{const t=Ge();if(!t)return Z;const n=t.type.__cssModules;if(!n)return Z;const s=n[e];return s||Z}}function Au(e){const t=Ge();if(!t)return;const n=t.ut=(r=e(t.proxy))=>{Array.from(document.querySelectorAll(`[data-v-owner="${t.uid}"]`)).forEach(i=>Es(i,r))},s=()=>{const r=e(t.proxy);vs(t.subTree,r),n(r)};Ml(s),Yn(()=>{const r=new MutationObserver(s);r.observe(t.subTree.el.parentNode,{childList:!0}),js(()=>r.disconnect())})}function vs(e,t){if(e.shapeFlag&128){const n=e.suspense;e=n.activeBranch,n.pendingBranch&&!n.isHydrating&&n.effects.push(()=>{vs(n.activeBranch,t)})}for(;e.component;)e=e.component.subTree;if(e.shapeFlag&1&&e.el)Es(e.el,t);else if(e.type===de)e.children.forEach(n=>vs(n,t));else if(e.type===Et){let{el:n,anchor:s}=e;for(;n&&(Es(n,t),n!==s);)n=n.nextSibling}}function Es(e,t){if(e.nodeType===1){const n=e.style;for(const s in t)n.setProperty(`--${s}`,t[s])}}const Ke="transition",kt="animation",Zi=(e,{slots:t})=>wc(kl,eo(e),t);Zi.displayName="Transition";const Gi={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String},Yc=Zi.props=se({},Ti,Gi),st=(e,t=[])=>{M(e)?e.forEach(n=>n(...t)):e&&e(...t)},Sr=e=>e?M(e)?e.some(t=>t.length>1):e.length>1:!1;function eo(e){const t={};for(const S in e)S in Gi||(t[S]=e[S]);if(e.css===!1)return t;const{name:n="v",type:s,duration:r,enterFromClass:i=`${n}-enter-from`,enterActiveClass:o=`${n}-enter-active`,enterToClass:l=`${n}-enter-to`,appearFromClass:c=i,appearActiveClass:u=o,appearToClass:h=l,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:m=`${n}-leave-active`,leaveToClass:E=`${n}-leave-to`}=e,O=Qc(r),F=O&&O[0],K=O&&O[1],{onBeforeEnter:b,onEnter:p,onEnterCancelled:T,onLeave:g,onLeaveCancelled:A,onBeforeAppear:D=b,onAppear:N=p,onAppearCancelled:C=T}=t,B=(S,q,L)=>{Ve(S,q?h:l),Ve(S,q?u:o),L&&L()},H=(S,q)=>{S._isLeaving=!1,Ve(S,d),Ve(S,E),Ve(S,m),q&&q()},$=S=>(q,L)=>{const ae=S?N:p,z=()=>B(q,S,L);st(ae,[q,z]),Mr(()=>{Ve(q,S?c:i),Le(q,S?h:l),Sr(ae)||Nr(q,s,F,z)})};return se(t,{onBeforeEnter(S){st(b,[S]),Le(S,i),Le(S,o)},onBeforeAppear(S){st(D,[S]),Le(S,c),Le(S,u)},onEnter:$(!1),onAppear:$(!0),onLeave(S,q){S._isLeaving=!0;const L=()=>H(S,q);Le(S,d),no(),Le(S,m),Mr(()=>{S._isLeaving&&(Ve(S,d),Le(S,E),Sr(g)||Nr(S,s,K,L))}),st(g,[S,L])},onEnterCancelled(S){B(S,!1),st(T,[S])},onAppearCancelled(S){B(S,!0),st(C,[S])},onLeaveCancelled(S){H(S),st(A,[S])}})}function Qc(e){if(e==null)return null;if(G(e))return[os(e.enter),os(e.leave)];{const t=os(e);return[t,t]}}function os(e){return Tn(e)}function Le(e,t){t.split(/\s+/).forEach(n=>n&&e.classList.add(n)),(e._vtc||(e._vtc=new Set)).add(t)}function Ve(e,t){t.split(/\s+/).forEach(s=>s&&e.classList.remove(s));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function Mr(e){requestAnimationFrame(()=>{requestAnimationFrame(e)})}let zc=0;function Nr(e,t,n,s){const r=e._endId=++zc,i=()=>{r===e._endId&&s()};if(n)return setTimeout(i,n);const{type:o,timeout:l,propCount:c}=to(e,t);if(!o)return s();const u=o+"end";let h=0;const d=()=>{e.removeEventListener(u,m),i()},m=E=>{E.target===e&&++h>=c&&d()};setTimeout(()=>{h(n[O]||"").split(", "),r=s(`${Ke}Delay`),i=s(`${Ke}Duration`),o=Lr(r,i),l=s(`${kt}Delay`),c=s(`${kt}Duration`),u=Lr(l,c);let h=null,d=0,m=0;t===Ke?o>0&&(h=Ke,d=o,m=i.length):t===kt?u>0&&(h=kt,d=u,m=c.length):(d=Math.max(o,u),h=d>0?o>u?Ke:kt:null,m=h?h===Ke?i.length:c.length:0);const E=h===Ke&&/\b(transform|all)(,|$)/.test(s(`${Ke}Property`).toString());return{type:h,timeout:d,propCount:m,hasTransform:E}}function Lr(e,t){for(;e.lengthkr(n)+kr(e[s])))}function kr(e){return Number(e.slice(0,-1).replace(",","."))*1e3}function no(){return document.body.offsetHeight}const so=new WeakMap,ro=new WeakMap,io={name:"TransitionGroup",props:se({},Yc,{tag:String,moveClass:String}),setup(e,{slots:t}){const n=Ge(),s=wi();let r,i;return Ds(()=>{if(!r.length)return;const o=e.moveClass||`${e.name||"v"}-move`;if(!tf(r[0].el,n.vnode.el,o))return;r.forEach(Zc),r.forEach(Gc);const l=r.filter(ef);no(),l.forEach(c=>{const u=c.el,h=u.style;Le(u,o),h.transform=h.webkitTransform=h.transitionDuration="";const d=u._moveCb=m=>{m&&m.target!==u||(!m||/transform$/.test(m.propertyName))&&(u.removeEventListener("transitionend",d),u._moveCb=null,Ve(u,o))};u.addEventListener("transitionend",d)})}),()=>{const o=Y(e),l=eo(o);let c=o.tag||de;r=i,i=t.default?Hs(t.default()):[];for(let u=0;udelete e.mode;io.props;const Pu=io;function Zc(e){const t=e.el;t._moveCb&&t._moveCb(),t._enterCb&&t._enterCb()}function Gc(e){ro.set(e,e.el.getBoundingClientRect())}function ef(e){const t=so.get(e),n=ro.get(e),s=t.left-n.left,r=t.top-n.top;if(s||r){const i=e.el.style;return i.transform=i.webkitTransform=`translate(${s}px,${r}px)`,i.transitionDuration="0s",e}}function tf(e,t,n){const s=e.cloneNode();e._vtc&&e._vtc.forEach(o=>{o.split(/\s+/).forEach(l=>l&&s.classList.remove(l))}),n.split(/\s+/).forEach(o=>o&&s.classList.add(o)),s.style.display="none";const r=t.nodeType===1?t:t.parentNode;r.appendChild(s);const{hasTransform:i}=to(s);return r.removeChild(s),i}const Ze=e=>{const t=e.props["onUpdate:modelValue"]||!1;return M(t)?n=>bt(t,n):t};function nf(e){e.target.composing=!0}function Br(e){const t=e.target;t.composing&&(t.composing=!1,t.dispatchEvent(new Event("input")))}const ws={created(e,{modifiers:{lazy:t,trim:n,number:s}},r){e._assign=Ze(r);const i=s||r.props&&r.props.type==="number";Be(e,t?"change":"input",o=>{if(o.target.composing)return;let l=e.value;n&&(l=l.trim()),i&&(l=wn(l)),e._assign(l)}),n&&Be(e,"change",()=>{e.value=e.value.trim()}),t||(Be(e,"compositionstart",nf),Be(e,"compositionend",Br),Be(e,"change",Br))},mounted(e,{value:t}){e.value=t??""},beforeUpdate(e,{value:t,modifiers:{lazy:n,trim:s,number:r}},i){if(e._assign=Ze(i),e.composing||document.activeElement===e&&e.type!=="range"&&(n||s&&e.value.trim()===t||(r||e.type==="number")&&wn(e.value)===t))return;const o=t??"";e.value!==o&&(e.value=o)}},oo={deep:!0,created(e,t,n){e._assign=Ze(n),Be(e,"change",()=>{const s=e._modelValue,r=It(e),i=e.checked,o=e._assign;if(M(s)){const l=Bn(s,r),c=l!==-1;if(i&&!c)o(s.concat(r));else if(!i&&c){const u=[...s];u.splice(l,1),o(u)}}else if(at(s)){const l=new Set(s);i?l.add(r):l.delete(r),o(l)}else o(co(e,i))})},mounted:Hr,beforeUpdate(e,t,n){e._assign=Ze(n),Hr(e,t,n)}};function Hr(e,{value:t,oldValue:n},s){e._modelValue=t,M(t)?e.checked=Bn(t,s.props.value)>-1:at(t)?e.checked=t.has(s.props.value):t!==n&&(e.checked=Qe(t,co(e,!0)))}const lo={created(e,{value:t},n){e.checked=Qe(t,n.props.value),e._assign=Ze(n),Be(e,"change",()=>{e._assign(It(e))})},beforeUpdate(e,{value:t,oldValue:n},s){e._assign=Ze(s),t!==n&&(e.checked=Qe(t,s.props.value))}},sf={deep:!0,created(e,{value:t,modifiers:{number:n}},s){const r=at(t);Be(e,"change",()=>{const i=Array.prototype.filter.call(e.options,o=>o.selected).map(o=>n?wn(It(o)):It(o));e._assign(e.multiple?r?new Set(i):i:i[0])}),e._assign=Ze(s)},mounted(e,{value:t}){Dr(e,t)},beforeUpdate(e,t,n){e._assign=Ze(n)},updated(e,{value:t}){Dr(e,t)}};function Dr(e,t){const n=e.multiple;if(!(n&&!M(t)&&!at(t))){for(let s=0,r=e.options.length;s-1:i.selected=t.has(o);else if(Qe(It(i),t)){e.selectedIndex!==s&&(e.selectedIndex=s);return}}!n&&e.selectedIndex!==-1&&(e.selectedIndex=-1)}}function It(e){return"_value"in e?e._value:e.value}function co(e,t){const n=t?"_trueValue":"_falseValue";return n in e?e[n]:t}const rf={created(e,t,n){bn(e,t,n,null,"created")},mounted(e,t,n){bn(e,t,n,null,"mounted")},beforeUpdate(e,t,n,s){bn(e,t,n,s,"beforeUpdate")},updated(e,t,n,s){bn(e,t,n,s,"updated")}};function fo(e,t){switch(e){case"SELECT":return sf;case"TEXTAREA":return ws;default:switch(t){case"checkbox":return oo;case"radio":return lo;default:return ws}}}function bn(e,t,n,s,r){const o=fo(e.tagName,n.props&&n.props.type)[r];o&&o(e,t,n,s)}function of(){ws.getSSRProps=({value:e})=>({value:e}),lo.getSSRProps=({value:e},t)=>{if(t.props&&Qe(t.props.value,e))return{checked:!0}},oo.getSSRProps=({value:e},t)=>{if(M(e)){if(t.props&&Bn(e,t.props.value)>-1)return{checked:!0}}else if(at(e)){if(t.props&&e.has(t.props.value))return{checked:!0}}else if(e)return{checked:!0}},rf.getSSRProps=(e,t)=>{if(typeof t.type!="string")return;const n=fo(t.type.toUpperCase(),t.props&&t.props.type);if(n.getSSRProps)return n.getSSRProps(e,t)}}const lf=["ctrl","shift","alt","meta"],cf={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&e.button!==0,middle:e=>"button"in e&&e.button!==1,right:e=>"button"in e&&e.button!==2,exact:(e,t)=>lf.some(n=>e[`${n}Key`]&&!t.includes(n))},Ou=(e,t)=>(n,...s)=>{for(let r=0;rn=>{if(!("key"in n))return;const s=we(n.key);if(t.some(r=>r===s||ff[r]===s))return e(n)},uf={beforeMount(e,{value:t},{transition:n}){e._vod=e.style.display==="none"?"":e.style.display,n&&t?n.beforeEnter(e):Bt(e,t)},mounted(e,{value:t},{transition:n}){n&&t&&n.enter(e)},updated(e,{value:t,oldValue:n},{transition:s}){!t!=!n&&(s?t?(s.beforeEnter(e),Bt(e,!0),s.enter(e)):s.leave(e,()=>{Bt(e,!1)}):Bt(e,t))},beforeUnmount(e,{value:t}){Bt(e,t)}};function Bt(e,t){e.style.display=t?e._vod:"none"}function af(){uf.getSSRProps=({value:e})=>{if(!e)return{style:{display:"none"}}}}const uo=se({patchProp:Vc},Rc);let qt,Ur=!1;function ao(){return qt||(qt=fc(uo))}function ho(){return qt=Ur?qt:uc(uo),Ur=!0,qt}const jr=(...e)=>{ao().render(...e)},df=(...e)=>{ho().hydrate(...e)},Fu=(...e)=>{const t=ao().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=po(s);if(!r)return;const i=t._component;!V(i)&&!i.render&&!i.template&&(i.template=r.innerHTML),r.innerHTML="";const o=n(r,!1,r instanceof SVGElement);return r instanceof Element&&(r.removeAttribute("v-cloak"),r.setAttribute("data-v-app","")),o},t},Ru=(...e)=>{const t=ho().createApp(...e),{mount:n}=t;return t.mount=s=>{const r=po(s);if(r)return n(r,!0,r instanceof SVGElement)},t};function po(e){return ie(e)?document.querySelector(e):e}let $r=!1;const Su=()=>{$r||($r=!0,of(),af())};function hf(){return go().__VUE_DEVTOOLS_GLOBAL_HOOK__}function go(){return typeof navigator<"u"&&typeof window<"u"?window:typeof global<"u"?global:{}}const pf=typeof Proxy=="function",gf="devtools-plugin:setup",mf="plugin:settings:set";let gt,Ts;function _f(){var e;return gt!==void 0||(typeof window<"u"&&window.performance?(gt=!0,Ts=window.performance):typeof global<"u"&&(!((e=global.perf_hooks)===null||e===void 0)&&e.performance)?(gt=!0,Ts=global.perf_hooks.performance):gt=!1),gt}function bf(){return _f()?Ts.now():Date.now()}class yf{constructor(t,n){this.target=null,this.targetQueue=[],this.onQueue=[],this.plugin=t,this.hook=n;const s={};if(t.settings)for(const o in t.settings){const l=t.settings[o];s[o]=l.defaultValue}const r=`__vue-devtools-plugin-settings__${t.id}`;let i=Object.assign({},s);try{const o=localStorage.getItem(r),l=JSON.parse(o);Object.assign(i,l)}catch{}this.fallbacks={getSettings(){return i},setSettings(o){try{localStorage.setItem(r,JSON.stringify(o))}catch{}i=o},now(){return bf()}},n&&n.on(mf,(o,l)=>{o===this.plugin.id&&this.fallbacks.setSettings(l)}),this.proxiedOn=new Proxy({},{get:(o,l)=>this.target?this.target.on[l]:(...c)=>{this.onQueue.push({method:l,args:c})}}),this.proxiedTarget=new Proxy({},{get:(o,l)=>this.target?this.target[l]:l==="on"?this.proxiedOn:Object.keys(this.fallbacks).includes(l)?(...c)=>(this.targetQueue.push({method:l,args:c,resolve:()=>{}}),this.fallbacks[l](...c)):(...c)=>new Promise(u=>{this.targetQueue.push({method:l,args:c,resolve:u})})})}async setRealTarget(t){this.target=t;for(const n of this.onQueue)this.target.on[n.method](...n.args);for(const n of this.targetQueue)n.resolve(await this.target[n.method](...n.args))}}function Mu(e,t){const n=e,s=go(),r=hf(),i=pf&&n.enableEarlyProxy;if(r&&(s.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__||!i))r.emit(gf,e,t);else{const o=i?new yf(n,r):null;(s.__VUE_DEVTOOLS_PLUGINS__=s.__VUE_DEVTOOLS_PLUGINS__||[]).push({pluginDescriptor:n,setupFn:t,proxy:o}),o&&t(o.proxiedTarget)}}export{Lf as $,qi as A,ut as B,ge as C,uf as D,vt as E,de as F,Us as G,$t as H,Hl as I,Dl as J,Df as K,Pu as L,Sf as M,_c as N,jf as O,De as P,Pt as Q,Ss as R,ci as S,Zi as T,Y as U,js as V,du as W,ws as X,mu as Y,Iu as Z,Rf as _,$f as a,vu as a$,kf as a0,li as a1,kl as a2,Ti as a3,Jr as a4,Kf as a5,Hn as a6,Et as a7,Hf as a8,zs as a9,mc as aA,Mt as aB,au as aC,df as aD,yu as aE,Su as aF,Pc as aG,yt as aH,Tt as aI,ce as aJ,bu as aK,Pn as aL,lu as aM,cu as aN,xf as aO,$l as aP,ql as aQ,Wl as aR,Vl as aS,Ef as aT,Kl as aU,Ds as aV,di as aW,_i as aX,_u as aY,jr as aZ,qf as a_,Nf as aa,Te as ab,Je as ac,ve as ad,Nn as ae,Eu as af,Fu as ag,uc as ah,fu as ai,fc as aj,Ru as ak,Yf as al,Ff as am,qc as an,Zf as ao,Gf as ap,nu as aq,eu as ar,Xf as as,wu as at,tu as au,Lt as av,wf as aw,vf as ax,No as ay,Hs as az,Yn as b,Gt as b0,wr as b1,Cl as b2,At as b3,fl as b4,Af as b5,Pf as b6,Tc as b7,Cu as b8,Tf as b9,yn as ba,zf as bb,If as bc,pu as bd,Of as be,ai as bf,iu as bg,Tu as bh,Au as bi,ou as bj,Ac as bk,ru as bl,wi as bm,oo as bn,rf as bo,lo as bp,sf as bq,Oc as br,Mf as bs,Ml as bt,Uf as bu,uu as bv,su as bw,xu as bx,Bf as by,Mu as bz,Ec as c,Pi as d,Js as e,hu as f,Ge as g,wc as h,Cn as i,Wi as j,re as k,kn as l,fi as m,gi as n,jl as o,nc as p,Ki as q,Vf as r,Wf as s,Ln as t,Jf as u,Qf as v,xi as w,Cf as x,Ou as y,gu as z}; diff --git a/web/dist/assets/Anouncement-BBExDZeq.js b/web/dist/assets/Anouncement-BBExDZeq.js new file mode 100644 index 00000000..68303543 --- /dev/null +++ b/web/dist/assets/Anouncement-BBExDZeq.js @@ -0,0 +1 @@ +import{_ as N}from"./post-skeleton-YfJeD-2o.js";import{_ as R}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{u as z}from"./vuex-DNAxYlmG.js";import{b as F}from"./vue-router-zwGLnBy5.js";import{K as S,_ as V}from"./index-v3l9hw1O.js";import{G as q,R as A,J as H,H as P}from"./naive-ui-DNcWoFGl.js";import{d as j,H as n,b as D,f as e,k as a,w as p,e as o,bk as u,Z as l,F as E,u as G,q as I,j as s,x as _,l as J}from"./@vue-CQsYufSu.js";import"./vooks-BQzJqMzq.js";import"./evtd-CI_DDEu_.js";import"./@vicons-C3A8jsfr.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./@css-render-CQdyXCYJ.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";const K={key:0,class:"pagination-wrap"},L={key:0,class:"skeleton-wrap"},M={key:1},O={key:0,class:"empty-wrap"},T={class:"bill-line"},U=j({__name:"Anouncement",setup(Z){const d=z(),g=F(),v=n(!1),r=n([]),i=n(+g.query.p||1),f=n(20),m=n(0),h=c=>{i.value=c};return D(()=>{}),(c,$)=>{const k=R,y=A,w=N,x=H,B=P,C=q;return o(),e("div",null,[a(k,{title:"公告"}),a(C,{class:"main-content-wrap",bordered:""},{footer:p(()=>[m.value>1?(o(),e("div",K,[a(y,{page:i.value,"onUpdate:page":h,"page-slot":u(d).state.collapsedRight?5:8,"page-count":m.value},null,8,["page","page-slot","page-count"])])):l("",!0)]),default:p(()=>[v.value?(o(),e("div",L,[a(w,{num:f.value},null,8,["num"])])):(o(),e("div",M,[r.value.length===0?(o(),e("div",O,[a(x,{size:"large",description:"暂无数据"})])):l("",!0),(o(!0),e(E,null,G(r.value,t=>(o(),I(B,{key:t.id},{default:p(()=>[s("div",T,[s("div",null,"NO."+_(t.id),1),s("div",null,_(t.reason),1),s("div",{class:J({income:t.change_amount>=0,out:t.change_amount<0})},_((t.change_amount>0?"+":"")+(t.change_amount/100).toFixed(2)),3),s("div",null,_(u(S)(t.created_on)),1)])]),_:2},1024))),128))]))]),_:1})])}}}),kt=V(U,[["__scopeId","data-v-d4d04859"]]);export{kt as default}; diff --git a/web/dist/assets/Anouncement-662e2d95.css b/web/dist/assets/Anouncement-D9-ntkc4.css similarity index 100% rename from web/dist/assets/Anouncement-662e2d95.css rename to web/dist/assets/Anouncement-D9-ntkc4.css diff --git a/web/dist/assets/Anouncement-ffc6370f.js b/web/dist/assets/Anouncement-ffc6370f.js deleted file mode 100644 index 7a4d23c2..00000000 --- a/web/dist/assets/Anouncement-ffc6370f.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as N}from"./post-skeleton-ae2be035.js";import{_ as R}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{u as z}from"./vuex-44de225f.js";import{b as A}from"./vue-router-e5a2430e.js";import{J as F,_ as S}from"./index-1e276b8f.js";import{G as V,R as q,J as H,H as J}from"./naive-ui-eecf2ec3.js";import{d as P,H as n,b as j,f as o,k as a,w as p,e as t,bf as u,Y as l,F as D,u as E,q as G,j as s,x as _,l as I}from"./@vue-a481fc63.js";import"./vooks-6d99783e.js";import"./evtd-b614532e.js";import"./@vicons-f0266f88.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./@css-render-7124a1a5.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";const L={key:0,class:"pagination-wrap"},M={key:0,class:"skeleton-wrap"},O={key:1},T={key:0,class:"empty-wrap"},U={class:"bill-line"},Y=P({__name:"Anouncement",setup($){const d=z(),g=A(),v=n(!1),i=n([]),r=n(+g.query.p||1),f=n(20),c=n(0),h=m=>{r.value=m};return j(()=>{}),(m,K)=>{const k=R,y=q,x=N,w=H,B=J,C=V;return t(),o("div",null,[a(k,{title:"公告"}),a(C,{class:"main-content-wrap",bordered:""},{footer:p(()=>[c.value>1?(t(),o("div",L,[a(y,{page:r.value,"onUpdate:page":h,"page-slot":u(d).state.collapsedRight?5:8,"page-count":c.value},null,8,["page","page-slot","page-count"])])):l("",!0)]),default:p(()=>[v.value?(t(),o("div",M,[a(x,{num:f.value},null,8,["num"])])):(t(),o("div",O,[i.value.length===0?(t(),o("div",T,[a(w,{size:"large",description:"暂无数据"})])):l("",!0),(t(!0),o(D,null,E(i.value,e=>(t(),G(B,{key:e.id},{default:p(()=>[s("div",U,[s("div",null,"NO."+_(e.id),1),s("div",null,_(e.reason),1),s("div",{class:I({income:e.change_amount>=0,out:e.change_amount<0})},_((e.change_amount>0?"+":"")+(e.change_amount/100).toFixed(2)),3),s("div",null,_(u(F)(e.created_on)),1)])]),_:2},1024))),128))]))]),_:1})])}}});const ke=S(Y,[["__scopeId","data-v-d4d04859"]]);export{ke as default}; diff --git a/web/dist/assets/Collection-e605040f.css b/web/dist/assets/Collection-CzPqeCvY.css similarity index 100% rename from web/dist/assets/Collection-e605040f.css rename to web/dist/assets/Collection-CzPqeCvY.css diff --git a/web/dist/assets/Collection-DdDm05Jj.js b/web/dist/assets/Collection-DdDm05Jj.js new file mode 100644 index 00000000..0310ede6 --- /dev/null +++ b/web/dist/assets/Collection-DdDm05Jj.js @@ -0,0 +1 @@ +import{_ as j}from"./whisper-DFhobfFF.js";import{_ as q,a as D}from"./post-item.vue_vue_type_style_index_0_lang-Dfn2xguO.js";import{_ as R}from"./post-skeleton-YfJeD-2o.js";import{_ as E}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{u as G}from"./vuex-DNAxYlmG.js";import{b as J}from"./vue-router-zwGLnBy5.js";import{W as L}from"./v3-infinite-loading-DK6TzcZc.js";import{U as Z,u as K,f as Q,_ as X}from"./index-v3l9hw1O.js";import{d as Y,H as t,b as ee,f as n,k as a,w as u,q as d,Z as h,e as o,bk as f,F as b,u as $,j as z,x as oe}from"./@vue-CQsYufSu.js";import{F as se,G as te,a as ne,J as ae,k as ie,H as le}from"./naive-ui-DNcWoFGl.js";import"./content-BMjusBPS.js";import"./@vicons-C3A8jsfr.js";import"./paopao-video-player-DAi68TC5.js";import"./copy-to-clipboard-CA7crPat.js";import"./@babel-Cpj98o6Y.js";import"./toggle-selection-BHUZwh74.js";import"./vooks-BQzJqMzq.js";import"./evtd-CI_DDEu_.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./@css-render-CQdyXCYJ.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";const re={key:0,class:"skeleton-wrap"},_e={key:1},ue={key:0,class:"empty-wrap"},ce={key:1},me={key:2},pe={class:"load-more-wrap"},de={class:"load-more-spinner"},fe=Y({__name:"Collection",setup(ve){const v=G(),A=J(),B=se(),c=t(!1),_=t(!1),s=t([]),l=t(+A.query.p||1),w=t(20),m=t(0),g=t(!1),k=t({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),y=e=>{k.value=e,g.value=!0},I=()=>{g.value=!1},x=e=>{B.success({title:"提示",content:"确定"+(e.user.is_following?"取消关注":"关注")+"该用户吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{e.user.is_following?K({user_id:e.user.id}).then(r=>{window.$message.success("操作成功"),C(e.user_id,!1)}).catch(r=>{}):Q({user_id:e.user.id}).then(r=>{window.$message.success("关注成功"),C(e.user_id,!0)}).catch(r=>{})}})};function C(e,r){for(let p in s.value)s.value[p].user_id==e&&(s.value[p].user.is_following=r)}const F=()=>{c.value=!0,Z({page:l.value,page_size:w.value}).then(e=>{c.value=!1,e.list.length===0&&(_.value=!0),l.value>1?s.value=s.value.concat(e.list):(s.value=e.list,window.scrollTo(0,0)),m.value=Math.ceil(e.pager.total_rows/w.value)}).catch(e=>{c.value=!1,l.value>1&&l.value--})},M=()=>{l.value{F()}),(e,r)=>{const p=E,O=R,P=ae,H=q,S=le,N=D,T=j,U=te,V=ie,W=ne;return o(),n("div",null,[a(p,{title:"收藏"}),a(U,{class:"main-content-wrap",bordered:""},{default:u(()=>[c.value&&s.value.length===0?(o(),n("div",re,[a(O,{num:w.value},null,8,["num"])])):(o(),n("div",_e,[s.value.length===0?(o(),n("div",ue,[a(P,{size:"large",description:"暂无数据"})])):h("",!0),f(v).state.desktopModelShow?(o(),n("div",ce,[(o(!0),n(b,null,$(s.value,i=>(o(),d(S,{key:i.id},{default:u(()=>[a(H,{post:i,isOwner:f(v).state.userInfo.id==i.user_id,addFollowAction:!0,onSendWhisper:y,onHandleFollowAction:x},null,8,["post","isOwner"])]),_:2},1024))),128))])):(o(),n("div",me,[(o(!0),n(b,null,$(s.value,i=>(o(),d(S,{key:i.id},{default:u(()=>[a(N,{post:i,isOwner:f(v).state.userInfo.id==i.user_id,addFollowAction:!0,onSendWhisper:y,onHandleFollowAction:x},null,8,["post","isOwner"])]),_:2},1024))),128))]))])),a(T,{show:g.value,user:k.value,onSuccess:I},null,8,["show","user"])]),_:1}),m.value>0?(o(),d(W,{key:0,justify:"center"},{default:u(()=>[a(f(L),{class:"load-more",slots:{complete:"没有更多收藏了",error:"加载出错"},onInfinite:M},{spinner:u(()=>[z("div",pe,[_.value?h("",!0):(o(),d(V,{key:0,size:14})),z("span",de,oe(_.value?"没有更多收藏了":"加载更多"),1)])]),_:1})]),_:1})):h("",!0)])}}}),Ze=X(fe,[["__scopeId","data-v-735372fb"]]);export{Ze as default}; diff --git a/web/dist/assets/Collection-c204e163.js b/web/dist/assets/Collection-c204e163.js deleted file mode 100644 index 78a0dc7e..00000000 --- a/web/dist/assets/Collection-c204e163.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as q}from"./whisper-6a06efa4.js";import{_ as D,a as R}from"./post-item.vue_vue_type_style_index_0_lang-cb395a2b.js";import{_ as U}from"./post-skeleton-ae2be035.js";import{_ as E}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{u as G}from"./vuex-44de225f.js";import{b as J}from"./vue-router-e5a2430e.js";import{W as L}from"./v3-infinite-loading-2c58ec2f.js";import{T as Y,u as K,f as Q,_ as X}from"./index-1e276b8f.js";import{d as Z,H as t,b as ee,f as n,k as a,w as u,q as d,Y as h,e as o,bf as f,F as S,u as $,j as z,x as oe}from"./@vue-a481fc63.js";import{F as se,G as te,a as ne,J as ae,k as ie,H as le}from"./naive-ui-eecf2ec3.js";import"./content-68a3f6d0.js";import"./@vicons-f0266f88.js";import"./paopao-video-player-2fe58954.js";import"./copy-to-clipboard-4ef7d3eb.js";import"./@babel-725317a4.js";import"./toggle-selection-93f4ad84.js";import"./vooks-6d99783e.js";import"./evtd-b614532e.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./@css-render-7124a1a5.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";const re={key:0,class:"skeleton-wrap"},_e={key:1},ue={key:0,class:"empty-wrap"},ce={key:1},pe={key:2},me={class:"load-more-wrap"},de={class:"load-more-spinner"},fe=Z({__name:"Collection",setup(ve){const v=G(),A=J(),B=se(),c=t(!1),_=t(!1),s=t([]),l=t(+A.query.p||1),w=t(20),p=t(0),g=t(!1),k=t({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),y=e=>{k.value=e,g.value=!0},I=()=>{g.value=!1},x=e=>{B.success({title:"提示",content:"确定"+(e.user.is_following?"取消关注":"关注")+"该用户吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{e.user.is_following?K({user_id:e.user.id}).then(r=>{window.$message.success("操作成功"),C(e.user_id,!1)}).catch(r=>{}):Q({user_id:e.user.id}).then(r=>{window.$message.success("关注成功"),C(e.user_id,!0)}).catch(r=>{})}})};function C(e,r){for(let m in s.value)s.value[m].user_id==e&&(s.value[m].user.is_following=r)}const b=()=>{c.value=!0,Y({page:l.value,page_size:w.value}).then(e=>{c.value=!1,e.list.length===0&&(_.value=!0),l.value>1?s.value=s.value.concat(e.list):(s.value=e.list,window.scrollTo(0,0)),p.value=Math.ceil(e.pager.total_rows/w.value)}).catch(e=>{c.value=!1,l.value>1&&l.value--})},M=()=>{l.value{b()}),(e,r)=>{const m=E,O=U,P=ae,T=D,F=le,H=R,N=q,V=te,W=ie,j=ne;return o(),n("div",null,[a(m,{title:"收藏"}),a(V,{class:"main-content-wrap",bordered:""},{default:u(()=>[c.value&&s.value.length===0?(o(),n("div",re,[a(O,{num:w.value},null,8,["num"])])):(o(),n("div",_e,[s.value.length===0?(o(),n("div",ue,[a(P,{size:"large",description:"暂无数据"})])):h("",!0),f(v).state.desktopModelShow?(o(),n("div",ce,[(o(!0),n(S,null,$(s.value,i=>(o(),d(F,{key:i.id},{default:u(()=>[a(T,{post:i,isOwner:f(v).state.userInfo.id==i.user_id,addFollowAction:!0,onSendWhisper:y,onHandleFollowAction:x},null,8,["post","isOwner"])]),_:2},1024))),128))])):(o(),n("div",pe,[(o(!0),n(S,null,$(s.value,i=>(o(),d(F,{key:i.id},{default:u(()=>[a(H,{post:i,isOwner:f(v).state.userInfo.id==i.user_id,addFollowAction:!0,onSendWhisper:y,onHandleFollowAction:x},null,8,["post","isOwner"])]),_:2},1024))),128))]))])),a(N,{show:g.value,user:k.value,onSuccess:I},null,8,["show","user"])]),_:1}),p.value>0?(o(),d(j,{key:0,justify:"center"},{default:u(()=>[a(f(L),{class:"load-more",slots:{complete:"没有更多收藏了",error:"加载出错"},onInfinite:M},{spinner:u(()=>[z("div",me,[_.value?h("",!0):(o(),d(W,{key:0,size:14})),z("span",de,oe(_.value?"没有更多收藏了":"加载更多"),1)])]),_:1})]),_:1})):h("",!0)])}}});const Ye=X(fe,[["__scopeId","data-v-735372fb"]]);export{Ye as default}; diff --git a/web/dist/assets/Contacts-1c38b9d9.js b/web/dist/assets/Contacts-1c38b9d9.js deleted file mode 100644 index b0e64e01..00000000 --- a/web/dist/assets/Contacts-1c38b9d9.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as W}from"./whisper-6a06efa4.js";import{d as N,c as A,r as R,e as c,f as p,k as t,w as n,j as _,y as E,A as G,x as d,bf as h,h as x,H as l,b as J,q as $,Y as C,F as S,u as K}from"./@vue-a481fc63.js";import{K as L,_ as P,X as U}from"./index-1e276b8f.js";import{k as X,r as Y}from"./@vicons-f0266f88.js";import{j as M,o as Q,e as Z,P as ee,O as te,G as ne,a as oe,J as se,k as ae,H as ce}from"./naive-ui-eecf2ec3.js";import{_ as _e}from"./post-skeleton-ae2be035.js";import{_ as ie}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{W as le}from"./v3-infinite-loading-2c58ec2f.js";import{b as re}from"./vue-router-e5a2430e.js";import"./vuex-44de225f.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./evtd-b614532e.js";import"./@css-render-7124a1a5.js";import"./vooks-6d99783e.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";const ue={class:"contact-item"},pe={class:"nickname-wrap"},me={class:"username-wrap"},de={class:"user-info"},fe={class:"info-item"},ve={class:"info-item"},he={class:"item-header-extra"},ge=N({__name:"contact-item",props:{contact:{}},emits:["send-whisper"],setup(b,{emit:g}){const o=b,r=e=>()=>x(M,null,{default:()=>x(e)}),s=A(()=>[{label:"私信 @"+o.contact.username,key:"whisper",icon:r(Y)}]),i=e=>{switch(e){case"whisper":const a={id:o.contact.user_id,avatar:o.contact.avatar,username:o.contact.username,nickname:o.contact.nickname,is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1};g("send-whisper",a);break}};return(e,a)=>{const m=Q,f=R("router-link"),w=Z,k=ee,y=te;return c(),p("div",ue,[t(y,{"content-indented":""},{avatar:n(()=>[t(m,{size:54,src:e.contact.avatar},null,8,["src"])]),header:n(()=>[_("span",pe,[t(f,{onClick:a[0]||(a[0]=E(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.contact.username}}},{default:n(()=>[G(d(e.contact.nickname),1)]),_:1},8,["to"])]),_("span",me," @"+d(e.contact.username),1),_("div",de,[_("span",fe," UID. "+d(e.contact.user_id),1),_("span",ve,d(h(L)(e.contact.created_on))+" 加入 ",1)])]),"header-extra":n(()=>[_("div",he,[t(k,{placement:"bottom-end",trigger:"click",size:"small",options:s.value,onSelect:i},{default:n(()=>[t(w,{quaternary:"",circle:""},{icon:n(()=>[t(h(M),null,{default:n(()=>[t(h(X))]),_:1})]),_:1})]),_:1},8,["options"])])]),_:1})])}}});const we=P(ge,[["__scopeId","data-v-42e975ce"]]),ke={key:0,class:"skeleton-wrap"},ye={key:1},$e={key:0,class:"empty-wrap"},Ce={class:"load-more-wrap"},be={class:"load-more-spinner"},ze=N({__name:"Contacts",setup(b){const g=re(),o=l(!1),r=l(!1),s=l([]),i=l(+g.query.p||1),e=l(20),a=l(0),m=l(!1),f=l({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),w=v=>{f.value=v,m.value=!0},k=()=>{m.value=!1},y=()=>{i.value{z()});const z=(v=!1)=>{s.value.length===0&&(o.value=!0),U({page:i.value,page_size:e.value}).then(u=>{o.value=!1,u.list.length===0&&(r.value=!0),i.value>1?s.value=s.value.concat(u.list):(s.value=u.list,v&&setTimeout(()=>{window.scrollTo(0,99999)},50)),a.value=Math.ceil(u.pager.total_rows/e.value)}).catch(u=>{o.value=!1,i.value>1&&i.value--})};return(v,u)=>{const q=ie,B=_e,V=se,j=we,D=ce,F=W,H=ne,O=ae,T=oe;return c(),p(S,null,[_("div",null,[t(q,{title:"好友"}),t(H,{class:"main-content-wrap",bordered:""},{default:n(()=>[o.value&&s.value.length===0?(c(),p("div",ke,[t(B,{num:e.value},null,8,["num"])])):(c(),p("div",ye,[s.value.length===0?(c(),p("div",$e,[t(V,{size:"large",description:"暂无数据"})])):C("",!0),(c(!0),p(S,null,K(s.value,I=>(c(),$(D,{class:"list-item",key:I.user_id},{default:n(()=>[t(j,{contact:I,onSendWhisper:w},null,8,["contact"])]),_:2},1024))),128))])),t(F,{show:m.value,user:f.value,onSuccess:k},null,8,["show","user"])]),_:1})]),a.value>0?(c(),$(T,{key:0,justify:"center"},{default:n(()=>[t(h(le),{class:"load-more",slots:{complete:"没有更多好友了",error:"加载出错"},onInfinite:y},{spinner:n(()=>[_("div",Ce,[r.value?C("",!0):(c(),$(O,{key:0,size:14})),_("span",be,d(r.value?"没有更多好友了":"加载更多"),1)])]),_:1})]),_:1})):C("",!0)],64)}}});const Qe=P(ze,[["__scopeId","data-v-69277f0c"]]);export{Qe as default}; diff --git a/web/dist/assets/Contacts-BMe_G0jw.js b/web/dist/assets/Contacts-BMe_G0jw.js new file mode 100644 index 00000000..d0108252 --- /dev/null +++ b/web/dist/assets/Contacts-BMe_G0jw.js @@ -0,0 +1 @@ +import{_ as W}from"./whisper-DFhobfFF.js";import{d as P,c as A,r as L,e as s,f as p,k as t,w as o,j as a,y as R,A as E,x as d,bk as g,h as S,H as r,b as G,q as C,Z as b,F as M,u as J}from"./@vue-CQsYufSu.js";import{L as U,_ as q,Y}from"./index-v3l9hw1O.js";import{k as Z,r as K}from"./@vicons-C3A8jsfr.js";import{j as N,o as Q,e as X,P as ee,O as te,G as ne,a as oe,J as se,k as ae,H as ce}from"./naive-ui-DNcWoFGl.js";import{_ as ie}from"./post-skeleton-YfJeD-2o.js";import{_ as re}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{W as le}from"./v3-infinite-loading-DK6TzcZc.js";import{b as _e}from"./vue-router-zwGLnBy5.js";import"./vuex-DNAxYlmG.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./evtd-CI_DDEu_.js";import"./@css-render-CQdyXCYJ.js";import"./vooks-BQzJqMzq.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";const ue={class:"contact-item"},pe={class:"nickname-wrap"},me={class:"username-wrap"},de={class:"user-info"},fe={class:"info-item"},ve={class:"info-item"},he={class:"item-header-extra"},ge=P({__name:"contact-item",props:{contact:{}},emits:["send-whisper"],setup(z,{emit:w}){const _=w,l=e=>()=>S(N,null,{default:()=>S(e)}),n=z,c=A(()=>[{label:"私信 @"+n.contact.username,key:"whisper",icon:l(K)}]),m=e=>{switch(e){case"whisper":const i={id:n.contact.user_id,avatar:n.contact.avatar,username:n.contact.username,nickname:n.contact.nickname,is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1};_("send-whisper",i);break}};return(e,i)=>{const f=Q,k=L("router-link"),y=X,$=ee,v=te;return s(),p("div",ue,[t(v,{"content-indented":""},{avatar:o(()=>[t(f,{size:54,src:e.contact.avatar},null,8,["src"])]),header:o(()=>[a("span",pe,[t(k,{onClick:i[0]||(i[0]=R(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.contact.username}}},{default:o(()=>[E(d(e.contact.nickname),1)]),_:1},8,["to"])]),a("span",me," @"+d(e.contact.username),1),a("div",de,[a("span",fe," UID. "+d(e.contact.user_id),1),a("span",ve,d(g(U)(e.contact.created_on))+" 加入 ",1)])]),"header-extra":o(()=>[a("div",he,[t($,{placement:"bottom-end",trigger:"click",size:"small",options:c.value,onSelect:m},{default:o(()=>[t(y,{quaternary:"",circle:""},{icon:o(()=>[t(g(N),null,{default:o(()=>[t(g(Z))]),_:1})]),_:1})]),_:1},8,["options"])])]),_:1})])}}}),we=q(ge,[["__scopeId","data-v-42e975ce"]]),ke={key:0,class:"skeleton-wrap"},ye={key:1},$e={key:0,class:"empty-wrap"},Ce={class:"load-more-wrap"},be={class:"load-more-spinner"},ze=P({__name:"Contacts",setup(z){const w=_e(),_=r(!1),l=r(!1),n=r([]),c=r(+w.query.p||1),m=r(20),e=r(0),i=r(!1),f=r({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),k=h=>{f.value=h,i.value=!0},y=()=>{i.value=!1},$=()=>{c.value{v()});const v=(h=!1)=>{n.value.length===0&&(_.value=!0),Y({page:c.value,page_size:m.value}).then(u=>{_.value=!1,u.list.length===0&&(l.value=!0),c.value>1?n.value=n.value.concat(u.list):(n.value=u.list,h&&setTimeout(()=>{window.scrollTo(0,99999)},50)),e.value=Math.ceil(u.pager.total_rows/m.value)}).catch(u=>{_.value=!1,c.value>1&&c.value--})};return(h,u)=>{const x=re,B=ie,V=se,j=we,D=ce,F=W,H=ne,O=ae,T=oe;return s(),p(M,null,[a("div",null,[t(x,{title:"好友"}),t(H,{class:"main-content-wrap",bordered:""},{default:o(()=>[_.value&&n.value.length===0?(s(),p("div",ke,[t(B,{num:m.value},null,8,["num"])])):(s(),p("div",ye,[n.value.length===0?(s(),p("div",$e,[t(V,{size:"large",description:"暂无数据"})])):b("",!0),(s(!0),p(M,null,J(n.value,I=>(s(),C(D,{class:"list-item",key:I.user_id},{default:o(()=>[t(j,{contact:I,onSendWhisper:k},null,8,["contact"])]),_:2},1024))),128))])),t(F,{show:i.value,user:f.value,onSuccess:y},null,8,["show","user"])]),_:1})]),e.value>0?(s(),C(T,{key:0,justify:"center"},{default:o(()=>[t(g(le),{class:"load-more",slots:{complete:"没有更多好友了",error:"加载出错"},onInfinite:$},{spinner:o(()=>[a("div",Ce,[l.value?b("",!0):(s(),C(O,{key:0,size:14})),a("span",be,d(l.value?"没有更多好友了":"加载更多"),1)])]),_:1})]),_:1})):b("",!0)],64)}}}),Qe=q(ze,[["__scopeId","data-v-69277f0c"]]);export{Qe as default}; diff --git a/web/dist/assets/Contacts-4b1622b8.css b/web/dist/assets/Contacts-DmwRVG9U.css similarity index 100% rename from web/dist/assets/Contacts-4b1622b8.css rename to web/dist/assets/Contacts-DmwRVG9U.css diff --git a/web/dist/assets/FiraCode-Regular-f13d1ece.woff2 b/web/dist/assets/FiraCode-Regular-CRwVj4V2.woff2 similarity index 100% rename from web/dist/assets/FiraCode-Regular-f13d1ece.woff2 rename to web/dist/assets/FiraCode-Regular-CRwVj4V2.woff2 diff --git a/web/dist/assets/Following-2d3776ee.js b/web/dist/assets/Following-2d3776ee.js deleted file mode 100644 index d423fe0e..00000000 --- a/web/dist/assets/Following-2d3776ee.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as X}from"./whisper-6a06efa4.js";import{d as N,c as O,r as ee,e as i,f,k as n,w as a,j as r,y as oe,A as S,x as g,q as $,Y as F,bf as w,h as U,H as _,b as ne,F as C,u as te}from"./@vue-a481fc63.js";import{K as se,u as ae,f as le,_ as D,Y as ce,Z as ie}from"./index-1e276b8f.js";import{k as ue,r as _e,s as re,t as pe}from"./@vicons-f0266f88.js";import{F as me,j as B,o as de,M as fe,e as ve,P as ge,O as we,G as he,a as ke,f as ye,g as be,J as $e,k as Fe,H as ze}from"./naive-ui-eecf2ec3.js";import{_ as Pe}from"./post-skeleton-ae2be035.js";import{_ as Te}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{W as qe}from"./v3-infinite-loading-2c58ec2f.js";import{b as xe}from"./vue-router-e5a2430e.js";import"./vuex-44de225f.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./evtd-b614532e.js";import"./@css-render-7124a1a5.js";import"./vooks-6d99783e.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";const Ie={class:"follow-item"},Me={class:"nickname-wrap"},Se={class:"username-wrap"},Ue={class:"user-info"},Ce={class:"info-item"},Be={class:"info-item"},Ne={class:"item-header-extra"},Oe=N({__name:"follow-item",props:{contact:{}},emits:["send-whisper"],setup(x,{emit:d}){const o=x,u=me(),t=e=>()=>U(B,null,{default:()=>U(e)}),z=()=>{u.success({title:"提示",content:"确定"+(o.contact.is_following?"取消关注 @":"关注 @")+o.contact.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{o.contact.is_following?ae({user_id:o.contact.user_id}).then(e=>{window.$message.success("取消关注成功"),o.contact.is_following=!1}).catch(e=>{console.log(e)}):le({user_id:o.contact.user_id}).then(e=>{window.$message.success("关注成功"),o.contact.is_following=!0}).catch(e=>{console.log(e)})}})},h=O(()=>{let e=[{label:"私信 @"+o.contact.username,key:"whisper",icon:t(_e)}];return o.contact.is_following?e.push({label:"取消关注 @"+o.contact.username,key:"unfollow",icon:t(re)}):e.push({label:"关注 @"+o.contact.username,key:"follow",icon:t(pe)}),e}),m=e=>{switch(e){case"follow":case"unfollow":z();break;case"whisper":const l={id:o.contact.user_id,avatar:o.contact.avatar,username:o.contact.username,nickname:o.contact.nickname,is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1};d("send-whisper",l);break}};return(e,l)=>{const p=de,v=ee("router-link"),k=fe,P=ve,y=ge,T=we;return i(),f("div",Ie,[n(T,{"content-indented":""},{avatar:a(()=>[n(p,{size:54,src:e.contact.avatar},null,8,["src"])]),header:a(()=>[r("span",Me,[n(v,{onClick:l[0]||(l[0]=oe(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.contact.username}}},{default:a(()=>[S(g(e.contact.nickname),1)]),_:1},8,["to"])]),r("span",Se," @"+g(e.contact.username),1),e.contact.is_following?(i(),$(k,{key:0,class:"top-tag",type:"success",size:"small",round:""},{default:a(()=>[S(" 已关注 ")]),_:1})):F("",!0),r("div",Ue,[r("span",Ce," UID. "+g(e.contact.user_id),1),r("span",Be,g(w(se)(e.contact.created_on))+" 加入 ",1)])]),"header-extra":a(()=>[r("div",Ne,[n(y,{placement:"bottom-end",trigger:"click",size:"small",options:h.value,onSelect:m},{default:a(()=>[n(P,{quaternary:"",circle:""},{icon:a(()=>[n(w(B),null,{default:a(()=>[n(w(ue))]),_:1})]),_:1})]),_:1},8,["options"])])]),_:1})])}}});const De=D(Oe,[["__scopeId","data-v-5dd79903"]]),Ve={key:0,class:"skeleton-wrap"},We={key:1},je={key:0,class:"empty-wrap"},He={class:"load-more-wrap"},Ae={class:"load-more-spinner"},Re=N({__name:"Following",setup(x){const d=xe(),o=_(!1),u=_(!1),t=_([]),z=d.query.n||"粉丝详情",h=d.query.s||"",m=_(d.query.t||"follows"),e=_(+d.query.p||1),l=_(20),p=_(0),v=_(!1),k=_({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1});function P(c){t.value=[],o.value=!1,u.value=!1,e.value=1,p.value=0,m.value=c}const y=O(()=>m.value=="follows"?"没有更多关注了":"没有更多粉丝了"),T=c=>{k.value=c,v.value=!0},V=()=>{v.value=!1},W=()=>{e.value{P(c),q()},q=()=>{m.value==="follows"?H(h):m.value==="followings"&&A(h)},H=(c,b=!1)=>{t.value.length===0&&(o.value=!0),ce({username:c,page:e.value,page_size:l.value}).then(s=>{o.value=!1,s.list.length===0&&(u.value=!0),e.value>1?t.value=t.value.concat(s.list):(t.value=s.list,b&&setTimeout(()=>{window.scrollTo(0,99999)},50)),p.value=Math.ceil(s.pager.total_rows/l.value)}).catch(s=>{o.value=!1,e.value>1&&e.value--})},A=(c,b=!1)=>{t.value.length===0&&(o.value=!0),ie({username:c,page:e.value,page_size:l.value}).then(s=>{o.value=!1,s.list.length===0&&(u.value=!0),e.value>1?t.value=t.value.concat(s.list):(t.value=s.list,b&&setTimeout(()=>{window.scrollTo(0,99999)},50)),p.value=Math.ceil(s.pager.total_rows/l.value)}).catch(s=>{o.value=!1,e.value>1&&e.value--})};return ne(()=>{q()}),(c,b)=>{const s=Te,I=ye,R=be,Y=Pe,E=$e,G=De,J=ze,K=X,L=he,Z=Fe,Q=ke;return i(),f(C,null,[r("div",null,[n(s,{title:w(z),back:!0},null,8,["title"]),n(L,{class:"main-content-wrap",bordered:""},{default:a(()=>[n(R,{type:"line",animated:"","default-value":m.value,"onUpdate:value":j},{default:a(()=>[n(I,{name:"follows",tab:"正在关注"}),n(I,{name:"followings",tab:"我的粉丝"})]),_:1},8,["default-value"]),o.value&&t.value.length===0?(i(),f("div",Ve,[n(Y,{num:l.value},null,8,["num"])])):(i(),f("div",We,[t.value.length===0?(i(),f("div",je,[n(E,{size:"large",description:"暂无数据"})])):F("",!0),(i(!0),f(C,null,te(t.value,M=>(i(),$(J,{key:M.user_id},{default:a(()=>[n(G,{contact:M,onSendWhisper:T},null,8,["contact"])]),_:2},1024))),128))])),n(K,{show:v.value,user:k.value,onSuccess:V},null,8,["show","user"])]),_:1})]),p.value>0?(i(),$(Q,{key:0,justify:"center"},{default:a(()=>[n(w(qe),{class:"load-more",slots:{complete:y.value,error:"加载出错"},onInfinite:W},{spinner:a(()=>[r("div",He,[u.value?F("",!0):(i(),$(Z,{key:0,size:14})),r("span",Ae,g(u.value?y.value:"加载更多"),1)])]),_:1},8,["slots"])]),_:1})):F("",!0)],64)}}});const wo=D(Re,[["__scopeId","data-v-dbf3bbcc"]]);export{wo as default}; diff --git a/web/dist/assets/Following-iHn0NcLi.js b/web/dist/assets/Following-iHn0NcLi.js new file mode 100644 index 00000000..ff5b4940 --- /dev/null +++ b/web/dist/assets/Following-iHn0NcLi.js @@ -0,0 +1 @@ +import{_ as Y}from"./whisper-DFhobfFF.js";import{d as O,c as D,r as ee,e as r,f as v,k as n,w as l,j as m,y as oe,A as I,x as w,q as $,Z as F,bk as h,h as x,H as p,b as ne,F as B,u as te}from"./@vue-CQsYufSu.js";import{L as se,u as ae,f as le,_ as V,Z as ce,$ as ie}from"./index-v3l9hw1O.js";import{k as ue,r as re,s as _e,t as pe}from"./@vicons-C3A8jsfr.js";import{F as me,j as N,o as fe,M as de,e as ve,P as ge,O as we,G as he,a as ke,f as ye,g as be,J as $e,k as Fe,H as ze}from"./naive-ui-DNcWoFGl.js";import{_ as Pe}from"./post-skeleton-YfJeD-2o.js";import{_ as Te}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{W as qe}from"./v3-infinite-loading-DK6TzcZc.js";import{b as Me}from"./vue-router-zwGLnBy5.js";import"./vuex-DNAxYlmG.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./evtd-CI_DDEu_.js";import"./@css-render-CQdyXCYJ.js";import"./vooks-BQzJqMzq.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";const Se={class:"follow-item"},Ue={class:"nickname-wrap"},Ce={class:"username-wrap"},Ie={class:"user-info"},xe={class:"info-item"},Be={class:"info-item"},Ne={class:"item-header-extra"},Oe=O({__name:"follow-item",props:{contact:{}},emits:["send-whisper"],setup(S,{emit:d}){const i=me(),_=d,t=e=>()=>x(N,null,{default:()=>x(e)}),z=()=>{i.success({title:"提示",content:"确定"+(o.contact.is_following?"取消关注 @":"关注 @")+o.contact.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{o.contact.is_following?ae({user_id:o.contact.user_id}).then(e=>{window.$message.success("取消关注成功"),o.contact.is_following=!1}).catch(e=>{console.log(e)}):le({user_id:o.contact.user_id}).then(e=>{window.$message.success("关注成功"),o.contact.is_following=!0}).catch(e=>{console.log(e)})}})},o=S,f=D(()=>{let e=[{label:"私信 @"+o.contact.username,key:"whisper",icon:t(re)}];return o.contact.is_following?e.push({label:"取消关注 @"+o.contact.username,key:"unfollow",icon:t(_e)}):e.push({label:"关注 @"+o.contact.username,key:"follow",icon:t(pe)}),e}),s=e=>{switch(e){case"follow":case"unfollow":z();break;case"whisper":const c={id:o.contact.user_id,avatar:o.contact.avatar,username:o.contact.username,nickname:o.contact.nickname,is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1};_("send-whisper",c);break}};return(e,c)=>{const g=fe,k=ee("router-link"),P=de,y=ve,T=ge,q=we;return r(),v("div",Se,[n(q,{"content-indented":""},{avatar:l(()=>[n(g,{size:54,src:e.contact.avatar},null,8,["src"])]),header:l(()=>[m("span",Ue,[n(k,{onClick:c[0]||(c[0]=oe(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.contact.username}}},{default:l(()=>[I(w(e.contact.nickname),1)]),_:1},8,["to"])]),m("span",Ce," @"+w(e.contact.username),1),e.contact.is_following?(r(),$(P,{key:0,class:"top-tag",type:"success",size:"small",round:""},{default:l(()=>[I(" 已关注 ")]),_:1})):F("",!0),m("div",Ie,[m("span",xe," UID. "+w(e.contact.user_id),1),m("span",Be,w(h(se)(e.contact.created_on))+" 加入 ",1)])]),"header-extra":l(()=>[m("div",Ne,[n(T,{placement:"bottom-end",trigger:"click",size:"small",options:f.value,onSelect:s},{default:l(()=>[n(y,{quaternary:"",circle:""},{icon:l(()=>[n(h(N),null,{default:l(()=>[n(h(ue))]),_:1})]),_:1})]),_:1},8,["options"])])]),_:1})])}}}),De=V(Oe,[["__scopeId","data-v-5dd79903"]]),Ve={key:0,class:"skeleton-wrap"},We={key:1},je={key:0,class:"empty-wrap"},He={class:"load-more-wrap"},Ae={class:"load-more-spinner"},Le=O({__name:"Following",setup(S){const d=Me(),i=p(!1),_=p(!1),t=p([]),z=d.query.n||"粉丝详情",o=d.query.s||"",f=p(d.query.t||"follows"),s=p(+d.query.p||1),e=p(20),c=p(0),g=p(!1),k=p({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1});function P(u){t.value=[],i.value=!1,_.value=!1,s.value=1,c.value=0,f.value=u}const y=D(()=>f.value=="follows"?"没有更多关注了":"没有更多粉丝了"),T=u=>{k.value=u,g.value=!0},q=()=>{g.value=!1},W=()=>{s.value{P(u),M()},M=()=>{f.value==="follows"?H(o):f.value==="followings"&&A(o)},H=(u,b=!1)=>{t.value.length===0&&(i.value=!0),ce({username:u,page:s.value,page_size:e.value}).then(a=>{i.value=!1,a.list.length===0&&(_.value=!0),s.value>1?t.value=t.value.concat(a.list):(t.value=a.list,b&&setTimeout(()=>{window.scrollTo(0,99999)},50)),c.value=Math.ceil(a.pager.total_rows/e.value)}).catch(a=>{i.value=!1,s.value>1&&s.value--})},A=(u,b=!1)=>{t.value.length===0&&(i.value=!0),ie({username:u,page:s.value,page_size:e.value}).then(a=>{i.value=!1,a.list.length===0&&(_.value=!0),s.value>1?t.value=t.value.concat(a.list):(t.value=a.list,b&&setTimeout(()=>{window.scrollTo(0,99999)},50)),c.value=Math.ceil(a.pager.total_rows/e.value)}).catch(a=>{i.value=!1,s.value>1&&s.value--})};return ne(()=>{M()}),(u,b)=>{const a=Te,U=ye,L=be,R=Pe,Z=$e,E=De,G=ze,J=Y,K=he,Q=Fe,X=ke;return r(),v(B,null,[m("div",null,[n(a,{title:h(z),back:!0},null,8,["title"]),n(K,{class:"main-content-wrap",bordered:""},{default:l(()=>[n(L,{type:"line",animated:"","default-value":f.value,"onUpdate:value":j},{default:l(()=>[n(U,{name:"follows",tab:"正在关注"}),n(U,{name:"followings",tab:"我的粉丝"})]),_:1},8,["default-value"]),i.value&&t.value.length===0?(r(),v("div",Ve,[n(R,{num:e.value},null,8,["num"])])):(r(),v("div",We,[t.value.length===0?(r(),v("div",je,[n(Z,{size:"large",description:"暂无数据"})])):F("",!0),(r(!0),v(B,null,te(t.value,C=>(r(),$(G,{key:C.user_id},{default:l(()=>[n(E,{contact:C,onSendWhisper:T},null,8,["contact"])]),_:2},1024))),128))])),n(J,{show:g.value,user:k.value,onSuccess:q},null,8,["show","user"])]),_:1})]),c.value>0?(r(),$(X,{key:0,justify:"center"},{default:l(()=>[n(h(qe),{class:"load-more",slots:{complete:y.value,error:"加载出错"},onInfinite:W},{spinner:l(()=>[m("div",He,[_.value?F("",!0):(r(),$(Q,{key:0,size:14})),m("span",Ae,w(_.value?y.value:"加载更多"),1)])]),_:1},8,["slots"])]),_:1})):F("",!0)],64)}}}),wo=V(Le,[["__scopeId","data-v-dbf3bbcc"]]);export{wo as default}; diff --git a/web/dist/assets/Following-b11fb642.css b/web/dist/assets/Following-z-lhddd0.css similarity index 100% rename from web/dist/assets/Following-b11fb642.css rename to web/dist/assets/Following-z-lhddd0.css diff --git a/web/dist/assets/Home-0ukNlDWW.js b/web/dist/assets/Home-0ukNlDWW.js new file mode 100644 index 00000000..fbe6da14 --- /dev/null +++ b/web/dist/assets/Home-0ukNlDWW.js @@ -0,0 +1 @@ +import{W as Fe}from"./whisper-add-friend-CuQaAOYJ.js";import{_ as Ne}from"./whisper-DFhobfFF.js";import{_ as Re,a as Ge}from"./post-item.vue_vue_type_style_index_0_lang-Dfn2xguO.js";import{_ as qe}from"./post-skeleton-YfJeD-2o.js";import{d as ye,H as i,c as le,b as ke,e as r,f as k,bk as w,j as D,k as a,w as o,q as A,Z as g,y as he,A as x,x as fe,F as _e,u as ge,S as Oe,E as Pe}from"./@vue-CQsYufSu.js";import{u as Ae}from"./vuex-DNAxYlmG.js";import{l as we}from"./lodash-YI8ZzHBK.js";import{g as Se,a as Me,c as Ye,b as We,d as Le,e as Ke,u as je,f as Qe,h as He,_ as Ze}from"./index-v3l9hw1O.js";import{p as Je}from"./content-BMjusBPS.js";import{V as G,P as X}from"./IEnum-B3rDUvtK.js";import{I as Xe,V as $e,A as et,d as tt,E as st}from"./@vicons-C3A8jsfr.js";import{o as be,v as at,j as nt,e as ze,w as ot,x as lt,y as it,z as rt,A as ut,B as ct,C as pt,a as Te,D as dt,E as vt,F as mt,G as ft,H as _t,l as gt,I as ht,J as wt,k as yt}from"./naive-ui-DNcWoFGl.js";import{_ as kt}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{b as At,u as bt}from"./vue-router-zwGLnBy5.js";import{W as zt}from"./v3-infinite-loading-DK6TzcZc.js";import{S as Tt}from"./@opentiny-BMB0hRxY.js";import"./copy-to-clipboard-CA7crPat.js";import"./@babel-Cpj98o6Y.js";import"./toggle-selection-BHUZwh74.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./evtd-CI_DDEu_.js";import"./@css-render-CQdyXCYJ.js";import"./vooks-BQzJqMzq.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";import"./paopao-video-player-DAi68TC5.js";import"./vue-C5uo8kQw.js";const Ct=$=>{const _=new FileReader,p=z=>["application/zip","application/x-zip","application/octet-stream","application/x-zip-compressed"].includes(z),h=()=>{const z=new Uint8Array(_.result).subarray(0,4);let d="";for(let b=0;b{_.onloadend=()=>{const b=$.type;z(b===""||b==="application/octet-stream"?h():p(b))},_.readAsArrayBuffer($.slice(0,4))})},It={key:0,class:"compose-wrap"},Dt={class:"compose-line"},Bt={class:"compose-user"},Ut={class:"compose-line compose-options"},Vt={class:"attachment"},xt={class:"submit-wrap"},Et={class:"attachment-list-wrap"},Ft={key:0,class:"attachment-price-wrap"},Nt=D("span",null," 附件价格¥",-1),Rt={key:0,class:"eye-wrap"},Gt={key:1,class:"link-wrap"},qt={key:1,class:"compose-wrap"},Ot=D("div",{class:"login-wrap"},[D("span",{class:"login-banner"}," 登录后,精彩更多")],-1),Pt={key:0,class:"login-only-wrap"},St={key:1,class:"login-wrap"},Mt=ye({__name:"compose",emits:["post-success"],setup($,{emit:_}){const p=_,h=Ae(),z=i([]),d=i(!1),b=i(!1),N=i(!1),R=i(!1),E=i(""),L=i([]),B=i(),q=i(0),y=i("public/image"),T=i([]),C=i([]),U=i([]),O=i([]),S=i(G.PUBLIC),v=i(G.PUBLIC),V=i("true".toLowerCase()==="true"),K="/v1/attachment",M=le(()=>"Bearer "+localStorage.getItem("PAOPAO_TOKEN")),Q=le(()=>{let e=[{value:G.PUBLIC,label:"公开"},{value:G.PRIVATE,label:"私密"},{value:G.Following,label:"关注可见"}];return h.state.profile.useFriendship&&e.push({value:G.FRIEND,label:"好友可见"}),e}),H=()=>{N.value=!N.value,N.value&&R.value&&(R.value=!1)},ee=()=>{R.value=!R.value,R.value&&N.value&&(N.value=!1)},te=we.debounce(e=>{Se({k:e}).then(t=>{let n=[];t.suggest.map(l=>{n.push({label:l,value:l})}),z.value=n,d.value=!1}).catch(t=>{d.value=!1})},200),ie=we.debounce(e=>{Me({k:e}).then(t=>{let n=[];t.suggest.map(l=>{n.push({label:l,value:l})}),z.value=n,d.value=!1}).catch(t=>{d.value=!1})},200),re=(e,t)=>{d.value||(d.value=!0,t==="@"?te(e):ie(e))},ue=e=>{e.length>h.state.profile.defaultTweetMaxLength?E.value=e.substring(0,h.state.profile.defaultTweetMaxLength):E.value=e},Z=e=>{y.value=e},se=e=>{for(let u=0;u30&&(e[u].name=n.substring(0,18)+"..."+n.substring(n.length-9)+"."+l)}T.value=e},ae=async e=>{var t,n,l,u,m;return y.value==="public/image"&&!["image/webp","image/png","image/jpg","image/jpeg","image/gif"].includes((t=e.file.file)==null?void 0:t.type)?(window.$message.warning("图片仅允许 webp/png/jpg/gif 格式"),!1):y.value==="image"&&((n=e.file.file)==null?void 0:n.size)>10485760?(window.$message.warning("图片大小不能超过10MB"),!1):y.value==="public/video"&&!["video/mp4","video/quicktime"].includes((l=e.file.file)==null?void 0:l.type)?(window.$message.warning("视频仅允许 mp4/mov 格式"),!1):y.value==="public/video"&&((u=e.file.file)==null?void 0:u.size)>104857600?(window.$message.warning("视频大小不能超过100MB"),!1):y.value==="attachment"&&!await Ct(e.file.file)?(window.$message.warning("附件仅允许 zip 格式"),!1):y.value==="attachment"&&((m=e.file.file)==null?void 0:m.size)>104857600?(window.$message.warning("附件大小不能超过100MB"),!1):!0},ne=({file:e,event:t})=>{var n;try{let l=JSON.parse((n=t.target)==null?void 0:n.response);l.code===0&&(y.value==="public/image"&&C.value.push({id:e.id,content:l.data.content}),y.value==="public/video"&&U.value.push({id:e.id,content:l.data.content}),y.value==="attachment"&&O.value.push({id:e.id,content:l.data.content}))}catch{window.$message.error("上传失败")}},oe=({file:e,event:t})=>{var n;try{let l=JSON.parse((n=t.target)==null?void 0:n.response);if(l.code!==0){let u=l.msg||"上传失败";l.details&&l.details.length>0&&l.details.map(m=>{u+=":"+m}),window.$message.error(u)}}catch{window.$message.error("上传失败")}},ce=({file:e})=>{let t=C.value.findIndex(n=>n.id===e.id);t>-1&&C.value.splice(t,1),t=U.value.findIndex(n=>n.id===e.id),t>-1&&U.value.splice(t,1),t=O.value.findIndex(n=>n.id===e.id),t>-1&&O.value.splice(t,1)},pe=()=>{if(E.value.trim().length===0){window.$message.warning("请输入内容哦");return}let{tags:e,users:t}=Je(E.value);const n=[];let l=100;n.push({content:E.value,type:X.TEXT,sort:l}),C.value.map(u=>{l++,n.push({content:u.content,type:X.IMAGEURL,sort:l})}),U.value.map(u=>{l++,n.push({content:u.content,type:X.VIDEOURL,sort:l})}),O.value.map(u=>{l++,n.push({content:u.content,type:X.ATTACHMENT,sort:l})}),L.value.length>0&&L.value.map(u=>{l++,n.push({content:u,type:X.LINKURL,sort:l})}),b.value=!0,Ye({contents:n,tags:Array.from(new Set(e)),users:Array.from(new Set(t)),attachment_price:+q.value*100,visibility:S.value}).then(u=>{var m;window.$message.success("发布成功"),b.value=!1,p("post-success",u),N.value=!1,R.value=!1,(m=B.value)==null||m.clear(),T.value=[],E.value="",L.value=[],C.value=[],U.value=[],O.value=[],S.value=v.value}).catch(u=>{b.value=!1})},Y=e=>{h.commit("triggerAuth",!0),h.commit("triggerAuthKey",e)};return ke(()=>{const e=h.state.profile.defaultTweetVisibility;h.state.profile.useFriendship&&e==="friend"?v.value=G.FRIEND:e==="following"?v.value=G.Following:e==="public"?v.value=G.PUBLIC:v.value=G.PRIVATE,S.value=v.value}),(e,t)=>{const n=be,l=at,u=nt,m=ze,J=ot,s=lt,c=it,P=rt,j=ut,F=ct,de=pt,ve=Te,me=dt,W=vt;return r(),k("div",null,[w(h).state.userInfo.id>0?(r(),k("div",It,[D("div",Dt,[D("div",Bt,[a(n,{round:"",size:30,src:w(h).state.userInfo.avatar},null,8,["src"])]),a(l,{type:"textarea",size:"large",autosize:"",bordered:!1,loading:d.value,value:E.value,prefix:["@","#"],options:z.value,onSearch:re,"onUpdate:value":ue,placeholder:"说说您的新鲜事..."},null,8,["loading","value","options"])]),a(F,{ref_key:"uploadRef",ref:B,abstract:"","list-type":"image",multiple:!0,max:9,action:K,headers:{Authorization:M.value},data:{type:y.value},"file-list":T.value,onBeforeUpload:ae,onFinish:ne,onError:oe,onRemove:ce,"onUpdate:fileList":se},{default:o(()=>[D("div",Ut,[D("div",Vt,[a(J,{abstract:""},{default:o(({handleClick:f})=>[a(m,{disabled:T.value.length>0&&y.value==="public/video"||T.value.length===9,onClick:()=>{Z("public/image"),f()},quaternary:"",circle:"",type:"primary"},{icon:o(()=>[a(u,{size:"20",color:"var(--primary-color)"},{default:o(()=>[a(w(Xe))]),_:1})]),_:2},1032,["disabled","onClick"])]),_:1}),w(h).state.profile.allowTweetVideo?(r(),A(J,{key:0,abstract:""},{default:o(({handleClick:f})=>[a(m,{disabled:T.value.length>0&&y.value!=="public/video"||T.value.length===9,onClick:()=>{Z("public/video"),f()},quaternary:"",circle:"",type:"primary"},{icon:o(()=>[a(u,{size:"20",color:"var(--primary-color)"},{default:o(()=>[a(w($e))]),_:1})]),_:2},1032,["disabled","onClick"])]),_:1})):g("",!0),w(h).state.profile.allowTweetAttachment?(r(),A(J,{key:1,abstract:""},{default:o(({handleClick:f})=>[a(m,{disabled:T.value.length>0&&y.value==="public/video"||T.value.length===9,onClick:()=>{Z("attachment"),f()},quaternary:"",circle:"",type:"primary"},{icon:o(()=>[a(u,{size:"20",color:"var(--primary-color)"},{default:o(()=>[a(w(et))]),_:1})]),_:2},1032,["disabled","onClick"])]),_:1})):g("",!0),a(m,{quaternary:"",circle:"",type:"primary",onClick:he(H,["stop"])},{icon:o(()=>[a(u,{size:"20",color:"var(--primary-color)"},{default:o(()=>[a(w(tt))]),_:1})]),_:1}),V.value?(r(),A(m,{key:2,quaternary:"",circle:"",type:"primary",onClick:he(ee,["stop"])},{icon:o(()=>[a(u,{size:"20",color:"var(--primary-color)"},{default:o(()=>[a(w(st))]),_:1})]),_:1})):g("",!0)]),D("div",xt,[a(c,{trigger:"hover",placement:"bottom"},{trigger:o(()=>[a(s,{class:"text-statistic",type:"circle","show-indicator":!1,status:"success","stroke-width":10,percentage:E.value.length/w(h).state.profile.defaultTweetMaxLength*100},null,8,["percentage"])]),default:o(()=>[x(" 已输入"+fe(E.value.length)+"字 ",1)]),_:1}),a(m,{loading:b.value,onClick:pe,type:"primary",secondary:"",round:""},{default:o(()=>[x(" 发布 ")]),_:1},8,["loading"])])]),D("div",Et,[a(P),O.value.length>0?(r(),k("div",Ft,[w(h).state.profile.allowTweetAttachmentPrice?(r(),A(j,{key:0,value:q.value,"onUpdate:value":t[0]||(t[0]=f=>q.value=f),min:0,max:1e5,placeholder:"请输入附件价格,0为免费附件"},{prefix:o(()=>[Nt]),_:1},8,["value"])):g("",!0)])):g("",!0)])]),_:1},8,["headers","data","file-list"]),R.value?(r(),k("div",Rt,[a(me,{value:S.value,"onUpdate:value":t[1]||(t[1]=f=>S.value=f),name:"radiogroup"},{default:o(()=>[a(ve,null,{default:o(()=>[(r(!0),k(_e,null,ge(Q.value,f=>(r(),A(de,{key:f.value,value:f.value,label:f.label},null,8,["value","label"]))),128))]),_:1})]),_:1},8,["value"])])):g("",!0),N.value?(r(),k("div",Gt,[a(W,{value:L.value,"onUpdate:value":t[2]||(t[2]=f=>L.value=f),placeholder:"请输入以http(s)://开头的链接",min:0,max:3},{"create-button-default":o(()=>[x(" 创建链接 ")]),_:1},8,["value"])])):g("",!0)])):(r(),k("div",qt,[Ot,w(h).state.profile.allowUserRegister?g("",!0):(r(),k("div",Pt,[a(m,{strong:"",secondary:"",round:"",type:"primary",onClick:t[3]||(t[3]=f=>Y("signin"))},{default:o(()=>[x(" 登录 ")]),_:1})])),w(h).state.profile.allowUserRegister?(r(),k("div",St,[a(m,{strong:"",secondary:"",round:"",type:"primary",onClick:t[4]||(t[4]=f=>Y("signin"))},{default:o(()=>[x(" 登录 ")]),_:1}),a(m,{strong:"",secondary:"",round:"",type:"info",onClick:t[5]||(t[5]=f=>Y("signup"))},{default:o(()=>[x(" 注册 ")]),_:1})])):g("",!0)]))])}}}),Yt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAA1lSURBVHgB7Z17cFTVHcd/59y7uze7ISSCqBBIeGmFIGilrVJUwBcw0jKgnc6Ijsr0D8eO1qrt+Kio9fEHRR1n7ExH8IEzdmgZWluxPnhYijJCkZQAtoSQmARaHk2A3WSzu/ec/n6XJpLdu5u9u/eVx2dmJ/u4m909v3N+v/P7nhcDn7JunVSm3xiv0kLabCnERGBQLoGNlQDnM5D0dzQDUOlavJ/C+0cA2BF8rR6fasMn2xnnhzri8U++Ua61MMZS4EMY+AQppXo4lpqjKHyOkHIWfrVrwE4k+wCYrFU433zsJGy7cgzrAB/gqQHq6mSwdCIsk1LchLV4cXeNdgUJbwHjG2NReK9mFIuCR3higINnuqaqqvpTKWGZq4VuguG+JLymBPiacUG2E1zGNQOsWCH5nY/ot+IHPoS+/ErwIRg/doGivFAdYuvBJVwxQEMstYgz9iLWtgnQD2AM6oDzFW4YwlEDNES7LuNcWe3XGt838lPGlMerS9gWcAhHDHDwpCxTNLEKa9I9MADAQloZjfKnnAjWthvgUDQ5D7t6b6C7qYQBBLklBvyBqhK2CWyEg01QkG2I6Y9zzj8eaIVPYI+tRkjxcWOn/hj9VrAJW1rA4TZZDiH9ffx334FBAGbVn8k4WzC+grVDkRRtSezTT5EhsWewFD6BWftVEBTbG7vkpVAkRbWAxjPJOVLhG/GuBoOTOAd+Q1WY/Q0KpOAW0ByXC4TCP4TBW/iEpoPY8lVcLoICKagF0AfqQvwRhugBldeF1RrbaPFt1g3QcDo5G1S+2WsNx28YmhLjN4wvYVutvM+SASjgqor6dxjcbicXcabwK1DCOJDvG/KOAdTVVLn6Oxgq/FxoIORGo1ueJ3kZwEg8qJ/PYAoMkRPsolYzTW7MN1nLywVRhoup+DMwRN5geaGIpzzb53V9XYDazvUoL3wEQ1gGg/I8VFI357wm14t1x2Rp6TD5GTarGhjCOow1pzpYzeQR7HS2S3J2JUtLxZMkQoEP0LGft7s9BbV4OxjVobVTwOmUhIjCYPGYINxWGQLfIeVYJSxW4b3l2S7J2gLqzyTnKgq3VXotBCr4v/w7ARuOJOBYl8h63cMXl8DskQHwI6rgl40tZXtNX8v6JkV5RlJ64SH/PKPDy/Wd0NIp8rrWrwZIcn0N/plp9pppV6nhTGopFv7V4CGbjiXh0X2xvArf7zAckm2Kp24xe83UAFzlT4KHvI8uh2p+sv+XfQ9S8hfNcoOMJ4za72Gvh4Lsbw7Hs75+kcahssS2ASnXwDKdeMcj+tL05zMtovCfgUfEsFfzEtZ83ST0lKkM7p9UAq9eXgpXlPdbHfDh9Cd6GaDhVOJb6Ps9m0LyTnMXnExklj7V+JdmRGDeqAAovpnNah0jFnTJXnJOLwOwoHIXeERbQsD7/0lkPD8qxOHpqWEYGex/bscMkdIfOvdxz6+irBeTruXgEZuOJ02D7v2TtAFT+Aac3V4nZbDnYfedyHBY6OUgy87/Zk7fn1mhwrThA2zcR0KgNK4v63749a9LiQVeTVanoFsf0zOenzvKnsTqBGbQFFsS4mx8qQgy7E0pnsUTqcNN+Gc13TcMsKtVhoGJO8AjjsZ1U/czrayw2t+tG207kYTdbSlDM0ongG1/UkQxWtm8UUHDKK6hsO/TghRatWP8whHDU9fYOEnOMm0mPZ/yAIOygPVC2YqxhHpTR+O5szgy+AGUL+j2TksXzL8gCD8cG4KI6oIh0A01xFPX4b2Pz5Y653PAZ1h1D1TLnz7QAasOdvZZ+OmQMd49moD79kRhT7s7S8m44HONv8YjJqeDhwR5ZmmbuY1cUM3f1VZc4VGceAqNSFKI00hG6+DQAFvQF+Gjm8BDRpj4X6qVdgpx5PPpc8r6cDEUP37dEDfEQCfBpGz2OikVtbo9XgmhIHjJSEy2yOe3J3vX+h0nk7C0iIEW0o1uviAAM88L9NKPTuPn7D2dgs1YyDuztJpXGzqN91wyTAGHYNNPxas417RrwQfMMNF3PsIC6u46WoHixxIcJXsF5YvFY0IZ4h0F91kjAvDEpWF4FrNsyrbToRb4chZdyi6CocBsrovUJPABZoMpFEzf/qoLrECu5tFLwnBnlWYaW9KhRO+FmrCpwkou8L2jzsUDKdhEzhkfDj6AFE5yGen8CQtg+8n8/fHdWPAzz7OWP5ALfHpK2DQ+UO/IqVaA9aOcYzSoAB9AbuP2cZn+nn78yn91wobWvlvCtDIFFl5UWDwjI9xVnTnpj8ahdzvUNdVBjuWYkfnCBRHkhr5tUnvJCK83dcGD/4gZmlG2GnlrkTMjrjs/YNoKax0yANa58/HXstHgEOQ69p/WLb0nkiMDq4/q8MyX5ls80NsoF6BbMZgZl6bBOAFKEZXq/3cdsZ3fo8t4q8laAC0GKrjNx53pu7c6NzFgNHdKgl7f4nw26RZWs/K8kaA6psDFnOxAu0zEQd2a08oOcIAyN1RFl1hS6ZBSwCClnt1pCsaBzVSGeUYApoyTuorFshV1/kIa2Dzs5ZwrN+fzL6bg96Ws2SGOYBBmzQyk7QagwY50A1BLvm9SSVEjUSQXbzIJtgsvDGIypxhjAfUx86B5Cn35/ZNLwDdIdgSDsDgODjDdRNshaaHYbuK6FvOeFfUmSHRbNb0UlmNCZWZkkqtplMwvYMU/hN+bNYMDkLRgJnK93hiHE4nCunWky9TlkVcsGh2Ehy42b2mkLfmof9DGhRSnwAHox1NBpENdul/s67BshM/bkrCmKZ739eS3bzGRJagV7m73xwaKKPS2c4Wr9eAQ5JezqYw/39sBe0/1XRAkR7+JBf/8l9Yn65K2ZCYt+MUNMY4uCCC+DRyCWgHN5wyYZBskcj2GLYHGcUmyOJU8uxqh+0ZGIgHux3tisL61MEWS5GgakEmn1ictAEcdPlHHaVpTo4Nz8GlE6d4JGg5umLsPCozdY7mUO5CxyE3ZNTWdAvPraZJIGxqb5gqNDHk6405Wa1oLR0EIo5r8KzgIzbshI/TV/aSCp4FxO9cFkAs0a4Fmk4BdRcoPaV6Q8dUEyE/BYW7GeLDiUppkW1yGfHYilbXEyCwrL2So01YYq6U/hgGYgM3gApQbvDKjFBZh78TqfFsKpg9iEkXjuFa1GV/KUpwbZW5kS00RdUtVp0i5MTmXpIDl4zVj0Jzk489xgOVQTAezXinV3CuwxtNADeUVhWTQNAMifbYFUeHtjGsZDIHR+TEKfA76osMd+ga8eyu4BBXAkjEh40Y1lOaHdk9RpN4LzeGxI0juP5OZuFFMMOueuoaEtWPY2c3De2o8Y/wDKYVrBjgXqtmVJQrewHY+Mln0MTni3cxoAyZ7NnbqqQZRDdY6JU17BSV6ZhOvrqzwcM0Bg2QsqrzX/bDHADWMJRiDtTBAIKnDLPcg90PdYs8QsPrcHXh7OUKeSv0KBgBU+KQ3mW1tQNPQXV0LkIYI8DXnPu5lgKphoX2oju6CfgoFc5pU+8Ae8xX2FNhpDYBXoNiya2LaGQVq5kViJTqq30I/4wvUd+79Ipp1bUC3LhXxcKhUKvBC+nMZfbHqEoX2hWuAfgbV+FwLM36EuccMDxd4Swl1E0NqxnkEGQZAfUJIKX8CAwQKulTz51/o7RR8qcoVZs+bZiMTIuq7/TkWdENC3HNTI5a1I7vBSr3drPYTWdukiCfvYZpaCz7EWDRxNPvrNBS6GEfjSAD0x9YG7Imsr0AOGmL6a349BYMG5zfgQA1NACPNaAzW9smliiH4FaobOQFN7p4QVh7O9nrOr2kcRVIi9rEBeCCDO7C9sSi7OtfRJ33Wk8ZOORc1Is/3juuPcMav7+vIkz4lQdr3Eg3wBAxhCcng8XzOm8lLkx0fVp/Df7kDhsgPKXe8pfHn87k071BFG1LLkNzDQFbBENmRsL89wWddnuf5MkPb19tLPKWnvjl5WGh/vm+wNCxk/GPG5w+0cQObSNJ5MlYKn7A8LkcnRHDOvwdD9EKRfGkhh/kUNDBKZ6VINMJQSzBIMskXjouwd6EAisoXmzrkdwUI2tp+0B5jRS7Z6rkx51LU1ABqchR0KPLDIANbfxP99mIKn7DvKMMgHXEySE7Tw35+e0KZf7kfjjIk6EzF6rAyazBkzJThvom/1Y7CJ2zXDJs65TxdiJdQRR1Qp26gy2lBbefOvo4ksYrt08NI/+iI8atIhoUBAg4nrtY726faXfiEo6o5KqlzpNR/iR/j6VkEhYJDs7sCUrk72+kXduDKsEVjh1wipFjRX9wSDsceYpw9UKWxP4PDuDJDtTrM1k+IKNMYcDqbwLdjzfTdUE74wRsl7GI3Cp/wZOCOtsk3dmqXxnCn1we/JLEU3kZ5ZWVViLmez3g6cko7tkdK9YVoiAWYQyxz8fvQksA/4Kd90HFIWVtTwzzb2sU3O2q0tspwYjjMBi5wCFROZ4zdCPZ9P+zIyG1Msu2Yq2wZH1G30Pos8AG+3dKENrdujMcr0UNda+wuCFAuGFTggNAkCYw2mboIvp5WQzv6HMV3NePzx7GgmwVAO63DTUByW62mNd1mLEb0H/8DkOAXi0+nceAAAAAASUVORK5CYII=",Wt="/assets/discover-tweets-DGidPW73.jpeg",Lt="/assets/following-tweets-BKofJ8VU.jpeg",Kt={class:"slide-bar-item"},jt={class:"slide-bar-item-title slide-bar-user-link"},Qt={key:1,class:"style-wrap"},Ht={key:2,class:"skeleton-wrap"},Zt={key:0,class:"empty-wrap"},Jt={key:1},Xt={key:2},$t={class:"load-more-wrap"},es={class:"load-more-spinner"},ts=ye({__name:"Home",setup($){const _=Ae(),p=At(),h=bt(),z=mt(),d=i("newest"),b=()=>{d.value="newest",e(B.value[0],0)},N=()=>{d.value="hots",e(B.value[1],1)},R=()=>{d.value="following",e(B.value[2],2)},E=i(9),L=i(8),B=i([{title:"最新动态",style:1,username:"",avatar:Yt,show:!0},{title:"热门推荐",style:2,username:"",avatar:Wt,show:!1},{title:"正在关注",style:3,username:"",avatar:Lt,show:!1},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0}]),q=Oe({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!1,is_following:!1,created_on:0,follows:0,followings:0,status:1}),y=i(null),T=i("泡泡广场"),C=i(!1),U=i(!1),O=i(1),S=i(""),v=i([]),V=i(1),K=i(20),M=i(0),Q=i(!1),H=i(!1),ee=i({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),te=s=>{ee.value=s,Q.value=!0},ie=()=>{Q.value=!1},re=()=>{H.value=!0},ue=s=>{z.warning({title:"删除好友",content:"将好友 “"+s.user.nickname+"” 删除,将同时删除 点赞/收藏 列表中关于该朋友的 “好友可见” 推文",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{He({user_id:q.id}).then(c=>{window.$message.success("操作成功"),s.user.is_friend=!1}).catch(c=>{})}})},Z=()=>{H.value=!1,y.value=null},se=s=>{y.value=s,q.id=s.user.id,q.username=s.user.username,q.nickname=s.user.nickname,s.user.is_friend?ue(s):re()},ae=s=>{z.success({title:"提示",content:"确定"+(s.user.is_following?"取消关注 @":"关注 @")+s.user.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{s.user.is_following?je({user_id:s.user.id}).then(c=>{window.$message.success("操作成功"),ne(s.user_id,!1)}).catch(c=>{}):Qe({user_id:s.user.id}).then(c=>{window.$message.success("关注成功"),ne(s.user_id,!0)}).catch(c=>{})}})};function ne(s,c){for(let P in v.value)v.value[P].user_id==s&&(v.value[P].user.is_following=c)}const oe=()=>{T.value="泡泡广场",p.query&&p.query.q&&(p.query.t&&p.query.t==="tag"?T.value="#"+decodeURIComponent(p.query.q):T.value="搜索: "+decodeURIComponent(p.query.q))},ce=le(()=>_.state.userInfo.id>0&&!_.state.profile.enableTrendsBar&&_.state.desktopModelShow),pe=le(()=>_.state.profile.useFriendship&&_.state.profile.enableTrendsBar&&_.state.desktopModelShow&&_.state.userInfo.id>0),Y=()=>{C.value=!1,U.value=!1,v.value=[],V.value=1,M.value=0},e=(s,c)=>{switch(Y(),O.value=s.style,p.query.q&&(p.query.q=null,oe()),s.style){case 1:n("newest");break;case 2:n("hots");break;case 3:p.query.q=null,n("following");break;case 21:S.value=s.username,l();break}B.value[c].show=!1},t=()=>{B.value=B.value.slice(0,3),!(!_.state.profile.useFriendship||!_.state.profile.enableTrendsBar||_.state.userInfo.id===0)&&We({page:1,page_size:50}).then(s=>{var c=0;const P=s.list||[];let j=[];for(;c0&&(B.value=B.value.concat(j))}).catch(s=>{console.log(s)})},n=s=>{C.value=!0,Le({query:p.query.q?decodeURIComponent(p.query.q):null,type:p.query.t,style:s,page:V.value,page_size:K.value}).then(c=>{C.value=!1,c.list.length===0&&(U.value=!0),V.value>1?v.value=v.value.concat(c.list):(v.value=c.list,window.scrollTo(0,0)),M.value=Math.ceil(c.pager.total_rows/K.value)}).catch(c=>{C.value=!1,V.value>1&&V.value--})},l=()=>{C.value=!0,Ke({username:S.value,style:"post",page:V.value,page_size:K.value}).then(s=>{C.value=!1,s.list.length===0&&(U.value=!0),V.value>1?v.value=v.value.concat(s.list):(v.value=s.list||[],window.scrollTo(0,0)),M.value=Math.ceil(s.pager.total_rows/K.value)}).catch(s=>{v.value=[],V.value>1&&V.value--,C.value=!1})},u=s=>{h.push({name:"post",query:{id:s.id}})},m=()=>{switch(O.value){case 1:n("newest");break;case 2:n("hots");break;case 3:n("following");break;case 21:p.query.q?n("search"):l();break}},J=()=>{V.value{Y(),t(),n("newest")}),Pe(()=>({path:p.path,query:p.query,refresh:_.state.refresh}),(s,c)=>{if(oe(),s.refresh!==c.refresh){Y(),setTimeout(()=>{t(),m()},0);return}c.path!=="/post"&&s.path==="/"&&(Y(),setTimeout(()=>{t(),m()},0))}),(s,c)=>{const P=kt,j=Mt,F=_t,de=be,ve=gt,me=ht,W=ze,f=Te,Ce=qe,Ie=wt,De=Re,Be=Ge,Ue=Ne,Ve=Fe,xe=ft,Ee=yt;return r(),k("div",null,[a(P,{title:T.value},null,8,["title"]),a(xe,{class:"main-content-wrap",bordered:""},{default:o(()=>[a(F,null,{default:o(()=>[a(j,{onPostSuccess:u})]),_:1}),pe.value?(r(),A(F,{key:0},{default:o(()=>[a(w(Tt),{modelValue:B.value,"onUpdate:modelValue":c[0]||(c[0]=I=>B.value=I),"wheel-blocks":L.value,"init-blocks":E.value,onClick:e,tag:"div","sub-tag":"div"},{default:o(I=>[D("div",Kt,[a(ve,{value:"1",offset:[-4,48],dot:"",show:I.slotData.show},{default:o(()=>[a(de,{round:"",size:48,src:I.slotData.avatar,class:"slide-bar-item-avatar"},null,8,["src"])]),_:2},1032,["show"]),D("div",jt,[a(me,{"line-clamp":2},{default:o(()=>[x(fe(I.slotData.title),1)]),_:2},1024)])])]),_:1},8,["modelValue","wheel-blocks","init-blocks"])]),_:1})):ce.value?(r(),k("div",Qt,[a(f,null,{default:o(()=>[d.value!=="newest"?(r(),A(W,{key:0,size:"small",bordered:!1,onClick:b,class:"style-item",secondary:"",round:""},{default:o(()=>[x(" 全部 ")]),_:1})):g("",!0),d.value==="newest"?(r(),A(W,{key:1,size:"small",type:"success",bordered:!1,onClick:b,class:"style-item",secondary:"",round:""},{default:o(()=>[x(" 全部 ")]),_:1})):g("",!0),d.value!=="hots"?(r(),A(W,{key:2,size:"small",bordered:!1,onClick:N,class:"style-item",secondary:"",round:""},{default:o(()=>[x(" 热门推荐 ")]),_:1})):g("",!0),d.value==="hots"?(r(),A(W,{key:3,size:"small",type:"success",bordered:!1,onClick:N,class:"style-item",secondary:"",round:""},{default:o(()=>[x(" 热门推荐 ")]),_:1})):g("",!0),d.value!=="following"?(r(),A(W,{key:4,size:"small",bordered:!1,onClick:R,class:"style-item",secondary:"",round:""},{default:o(()=>[x(" 正在关注 ")]),_:1})):g("",!0),d.value==="following"?(r(),A(W,{key:5,size:"small",type:"success",bordered:!1,onClick:R,class:"style-item",secondary:"",round:""},{default:o(()=>[x(" 正在关注 ")]),_:1})):g("",!0)]),_:1})])):g("",!0),C.value&&v.value.length===0?(r(),k("div",Ht,[a(Ce,{num:K.value},null,8,["num"])])):g("",!0),D("div",null,[v.value.length===0?(r(),k("div",Zt,[a(Ie,{size:"large",description:"暂无数据"})])):g("",!0),w(_).state.desktopModelShow?(r(),k("div",Jt,[(r(!0),k(_e,null,ge(v.value,I=>(r(),A(F,{key:I.id},{default:o(()=>[a(De,{post:I,isOwner:w(_).state.userInfo.id==I.user_id,addFollowAction:!0,onSendWhisper:te,onHandleFollowAction:ae,onHandleFriendAction:se},null,8,["post","isOwner"])]),_:2},1024))),128))])):(r(),k("div",Xt,[(r(!0),k(_e,null,ge(v.value,I=>(r(),A(F,{key:I.id},{default:o(()=>[a(Be,{post:I,isOwner:w(_).state.userInfo.id==I.user_id,addFollowAction:!0,onSendWhisper:te,onHandleFollowAction:ae,onHandleFriendAction:se},null,8,["post","isOwner"])]),_:2},1024))),128))]))]),a(Ue,{show:Q.value,user:ee.value,onSuccess:ie},null,8,["show","user"]),a(Ve,{show:H.value,user:q,onSuccess:Z},null,8,["show","user"])]),_:1}),M.value>0?(r(),A(f,{key:0,justify:"center"},{default:o(()=>[a(w(zt),{class:"load-more",slots:{complete:"没有更多泡泡了",error:"加载出错"},onInfinite:c[1]||(c[1]=I=>J())},{spinner:o(()=>[D("div",$t,[U.value?g("",!0):(r(),A(Ee,{key:0,size:14})),D("span",es,fe(U.value?"没有更多泡泡了":"加载更多"),1)])]),_:1})]),_:1})):g("",!0)])}}}),Os=Ze(ts,[["__scopeId","data-v-cc7d12d2"]]);export{Os as default}; diff --git a/web/dist/assets/Home-U0_yubfz.css b/web/dist/assets/Home-U0_yubfz.css new file mode 100644 index 00000000..1c65bbb2 --- /dev/null +++ b/web/dist/assets/Home-U0_yubfz.css @@ -0,0 +1 @@ +.compose-wrap{width:100%;padding:16px;box-sizing:border-box}.compose-wrap .compose-line{display:flex;flex-direction:row}.compose-wrap .compose-line .compose-user{width:42px;height:42px;display:flex;align-items:center}.compose-wrap .compose-line.compose-options{margin-top:6px;padding-left:42px;display:flex;justify-content:space-between}.compose-wrap .compose-line.compose-options .submit-wrap{display:flex;align-items:center}.compose-wrap .compose-line.compose-options .submit-wrap .text-statistic{margin-right:8px;width:20px;height:20px;transform:rotate(180deg)}.compose-wrap .link-wrap{margin-left:42px;margin-right:42px}.compose-wrap .eye-wrap{margin-left:64px}.compose-wrap .login-only-wrap{display:flex;justify-content:center;width:100%}.compose-wrap .login-only-wrap button{margin:0 4px;width:50%}.compose-wrap .login-wrap{display:flex;justify-content:center;width:100%}.compose-wrap .login-wrap .login-banner{margin-bottom:12px;opacity:.8}.compose-wrap .login-wrap button{margin:0 4px}.attachment-list-wrap{margin-top:12px;margin-left:42px}.attachment-list-wrap .n-upload-file-info__thumbnail{overflow:hidden}.dark .compose-wrap{background-color:#101014bf}.tiny-slide-bar .tiny-slide-bar__list>div.tiny-slide-bar__select .slide-bar-item .slide-bar-item-title[data-v-cc7d12d2]{color:#18a058;opacity:.8}.tiny-slide-bar .tiny-slide-bar__list>div:hover .slide-bar-item[data-v-cc7d12d2]{cursor:pointer}.tiny-slide-bar .tiny-slide-bar__list>div:hover .slide-bar-item .slide-bar-item-avatar[data-v-cc7d12d2]{color:#18a058;opacity:.8}.tiny-slide-bar .tiny-slide-bar__list>div:hover .slide-bar-item .slide-bar-item-title[data-v-cc7d12d2]{color:#18a058;opacity:.8}.style-wrap[data-v-cc7d12d2]{margin-top:10px;margin-left:16px;margin-bottom:4px;opacity:.8}.style-wrap .style-item.hover[data-v-cc7d12d2]{cursor:pointer}.tiny-slide-bar[data-v-cc7d12d2]{margin-top:-30px;margin-bottom:-30px}.tiny-slide-bar .slide-bar-item[data-v-cc7d12d2]{min-height:170px;width:64px;display:flex;flex-direction:column;justify-content:center;align-items:center;margin-top:8px}.tiny-slide-bar .slide-bar-item .slide-bar-item-title[data-v-cc7d12d2]{justify-content:center;font-size:12px;margin-top:4px;height:40px}.load-more[data-v-cc7d12d2]{margin:20px}.load-more .load-more-wrap[data-v-cc7d12d2]{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:14px}.load-more .load-more-wrap .load-more-spinner[data-v-cc7d12d2]{font-size:14px;opacity:.65}.dark .main-content-wrap[data-v-cc7d12d2],.dark .pagination-wrap[data-v-cc7d12d2],.dark .empty-wrap[data-v-cc7d12d2],.dark .skeleton-wrap[data-v-cc7d12d2]{background-color:#101014bf}.dark .tiny-slide-bar .tiny-slide-bar__list>div.tiny-slide-bar__select .slide-bar-item .slide-bar-item-title[data-v-cc7d12d2]{color:#63e2b7;opacity:.8}.dark .tiny-slide-bar .tiny-slide-bar__list>div:hover .slide-bar-item .slide-bar-item-title[data-v-cc7d12d2]{color:#63e2b7;opacity:.8}.dark .tiny-slide-bar[data-v-cc7d12d2]{--ti-slider-progress-box-arrow-hover-text-color: #f2f2f2;--ti-slider-progress-box-arrow-normal-text-color: #808080} diff --git a/web/dist/assets/Home-a4b26d35.js b/web/dist/assets/Home-a4b26d35.js deleted file mode 100644 index 643edce5..00000000 --- a/web/dist/assets/Home-a4b26d35.js +++ /dev/null @@ -1 +0,0 @@ -import{W as Te}from"./whisper-add-friend-e34f36ad.js";import{_ as De}from"./whisper-6a06efa4.js";import{_ as Ue,a as Be}from"./post-item.vue_vue_type_style_index_0_lang-cb395a2b.js";import{_ as xe}from"./post-skeleton-ae2be035.js";import{d as we,H as r,c as ve,b as ye,e as u,f as w,bf as f,j as I,k as n,w as i,q as E,Y as b,y as ge,A as O,x as me,F as _e,u as fe,R as Ve,E as Ee}from"./@vue-a481fc63.js";import{u as Ae}from"./vuex-44de225f.js";import{l as he}from"./lodash-e0b37ac3.js";import{g as Fe,a as Ne,c as Re,b as qe,d as Ge,e as Oe,u as Pe,f as Se,h as Ye,_ as Me}from"./index-1e276b8f.js";import{p as Le}from"./content-68a3f6d0.js";import{V,P as K}from"./IEnum-5453a777.js";import{I as We,V as Ke,A as je,d as Qe,E as He}from"./@vicons-f0266f88.js";import{o as ke,v as Ze,j as Je,e as Xe,w as $e,x as et,y as tt,z as st,A as at,B as nt,C as ot,a as be,D as lt,E as it,F as rt,G as ut,H as ct,l as pt,I as dt,J as vt,k as mt}from"./naive-ui-eecf2ec3.js";import{_ as _t}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{b as ft,u as gt}from"./vue-router-e5a2430e.js";import{W as ht}from"./v3-infinite-loading-2c58ec2f.js";import{S as wt}from"./@opentiny-d73a2d67.js";import"./copy-to-clipboard-4ef7d3eb.js";import"./@babel-725317a4.js";import"./toggle-selection-93f4ad84.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./evtd-b614532e.js";import"./@css-render-7124a1a5.js";import"./vooks-6d99783e.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";import"./paopao-video-player-2fe58954.js";import"./vue-1e3b54ec.js";import"./xss-a5544f63.js";import"./cssfilter-af71ba68.js";const yt=j=>{const g=new FileReader,o=m=>["application/zip","application/x-zip","application/octet-stream","application/x-zip-compressed"].includes(m),q=()=>{const m=new Uint8Array(g.result).subarray(0,4);let D="";for(let h=0;h{g.onloadend=()=>{const h=j.type;m(h===""||h==="application/octet-stream"?q():o(h))},g.readAsArrayBuffer(j.slice(0,4))})},At={key:0,class:"compose-wrap"},kt={class:"compose-line"},bt={class:"compose-user"},It={class:"compose-line compose-options"},zt={class:"attachment"},Ct={class:"submit-wrap"},Tt={class:"attachment-list-wrap"},Dt={key:0,class:"attachment-price-wrap"},Ut=I("span",null," 附件价格¥",-1),Bt={key:0,class:"eye-wrap"},xt={key:1,class:"link-wrap"},Vt={key:1,class:"compose-wrap"},Et=I("div",{class:"login-wrap"},[I("span",{class:"login-banner"}," 登录后,精彩更多")],-1),Ft={key:0,class:"login-only-wrap"},Nt={key:1,class:"login-wrap"},Rt=we({__name:"compose",emits:["post-success"],setup(j,{emit:g}){const o=Ae(),q=r([]),m=r(!1),D=r(!1),h=r(!1),y=r(!1),A=r(""),N=r([]),G=r(),C=r(0),p=r("public/image"),T=r([]),R=r([]),d=r([]),_=r([]),U=r(V.PUBLIC),z=r(V.PUBLIC),M=r("true".toLowerCase()==="true"),L="/v1/attachment",Q=ve(()=>"Bearer "+localStorage.getItem("PAOPAO_TOKEN")),H=ve(()=>{let s=[{value:V.PUBLIC,label:"公开"},{value:V.PRIVATE,label:"私密"},{value:V.Following,label:"关注可见"}];return o.state.profile.useFriendship&&s.push({value:V.FRIEND,label:"好友可见"}),s}),$=()=>{h.value=!h.value,h.value&&y.value&&(y.value=!1)},ee=()=>{y.value=!y.value,y.value&&h.value&&(h.value=!1)},te=he.debounce(s=>{Fe({k:s}).then(a=>{let l=[];a.suggest.map(e=>{l.push({label:e,value:e})}),q.value=l,m.value=!1}).catch(a=>{m.value=!1})},200),se=he.debounce(s=>{Ne({k:s}).then(a=>{let l=[];a.suggest.map(e=>{l.push({label:e,value:e})}),q.value=l,m.value=!1}).catch(a=>{m.value=!1})},200),Z=(s,a)=>{m.value||(m.value=!0,a==="@"?te(s):se(s))},J=s=>{s.length>o.state.profile.defaultTweetMaxLength?A.value=s.substring(0,o.state.profile.defaultTweetMaxLength):A.value=s},P=s=>{p.value=s},X=s=>{for(let t=0;t30&&(s[t].name=l.substring(0,18)+"..."+l.substring(l.length-9)+"."+e)}T.value=s},ae=async s=>{var a,l,e,t,c;return p.value==="public/image"&&!["image/png","image/jpg","image/jpeg","image/gif"].includes((a=s.file.file)==null?void 0:a.type)?(window.$message.warning("图片仅允许 png/jpg/gif 格式"),!1):p.value==="image"&&((l=s.file.file)==null?void 0:l.size)>10485760?(window.$message.warning("图片大小不能超过10MB"),!1):p.value==="public/video"&&!["video/mp4","video/quicktime"].includes((e=s.file.file)==null?void 0:e.type)?(window.$message.warning("视频仅允许 mp4/mov 格式"),!1):p.value==="public/video"&&((t=s.file.file)==null?void 0:t.size)>104857600?(window.$message.warning("视频大小不能超过100MB"),!1):p.value==="attachment"&&!await yt(s.file.file)?(window.$message.warning("附件仅允许 zip 格式"),!1):p.value==="attachment"&&((c=s.file.file)==null?void 0:c.size)>104857600?(window.$message.warning("附件大小不能超过100MB"),!1):!0},S=({file:s,event:a})=>{var l;try{let e=JSON.parse((l=a.target)==null?void 0:l.response);e.code===0&&(p.value==="public/image"&&R.value.push({id:s.id,content:e.data.content}),p.value==="public/video"&&d.value.push({id:s.id,content:e.data.content}),p.value==="attachment"&&_.value.push({id:s.id,content:e.data.content}))}catch{window.$message.error("上传失败")}},ne=({file:s,event:a})=>{var l;try{let e=JSON.parse((l=a.target)==null?void 0:l.response);if(e.code!==0){let t=e.msg||"上传失败";e.details&&e.details.length>0&&e.details.map(c=>{t+=":"+c}),window.$message.error(t)}}catch{window.$message.error("上传失败")}},W=({file:s})=>{let a=R.value.findIndex(l=>l.id===s.id);a>-1&&R.value.splice(a,1),a=d.value.findIndex(l=>l.id===s.id),a>-1&&d.value.splice(a,1),a=_.value.findIndex(l=>l.id===s.id),a>-1&&_.value.splice(a,1)},x=()=>{if(A.value.trim().length===0){window.$message.warning("请输入内容哦");return}let{tags:s,users:a}=Le(A.value);const l=[];let e=100;l.push({content:A.value,type:K.TEXT,sort:e}),R.value.map(t=>{e++,l.push({content:t.content,type:K.IMAGEURL,sort:e})}),d.value.map(t=>{e++,l.push({content:t.content,type:K.VIDEOURL,sort:e})}),_.value.map(t=>{e++,l.push({content:t.content,type:K.ATTACHMENT,sort:e})}),N.value.length>0&&N.value.map(t=>{e++,l.push({content:t,type:K.LINKURL,sort:e})}),D.value=!0,Re({contents:l,tags:Array.from(new Set(s)),users:Array.from(new Set(a)),attachment_price:+C.value*100,visibility:U.value}).then(t=>{var c;window.$message.success("发布成功"),D.value=!1,g("post-success",t),h.value=!1,y.value=!1,(c=G.value)==null||c.clear(),T.value=[],A.value="",N.value=[],R.value=[],d.value=[],_.value=[],U.value=z.value}).catch(t=>{D.value=!1})},Y=s=>{o.commit("triggerAuth",!0),o.commit("triggerAuthKey",s)};return ye(()=>{const s=o.state.profile.defaultTweetVisibility;o.state.profile.useFriendship&&s==="friend"?z.value=V.FRIEND:s==="following"?z.value=V.Following:s==="public"?z.value=V.PUBLIC:z.value=V.PRIVATE,U.value=z.value}),(s,a)=>{const l=ke,e=Ze,t=Je,c=Xe,F=$e,B=et,oe=tt,le=st,ie=at,re=nt,ue=ot,ce=be,pe=lt,de=it;return u(),w("div",null,[f(o).state.userInfo.id>0?(u(),w("div",At,[I("div",kt,[I("div",bt,[n(l,{round:"",size:30,src:f(o).state.userInfo.avatar},null,8,["src"])]),n(e,{type:"textarea",size:"large",autosize:"",bordered:!1,loading:m.value,value:A.value,prefix:["@","#"],options:q.value,onSearch:Z,"onUpdate:value":J,placeholder:"说说您的新鲜事..."},null,8,["loading","value","options"])]),n(re,{ref_key:"uploadRef",ref:G,abstract:"","list-type":"image",multiple:!0,max:9,action:L,headers:{Authorization:Q.value},data:{type:p.value},"file-list":T.value,onBeforeUpload:ae,onFinish:S,onError:ne,onRemove:W,"onUpdate:fileList":X},{default:i(()=>[I("div",It,[I("div",zt,[n(F,{abstract:""},{default:i(({handleClick:v})=>[n(c,{disabled:T.value.length>0&&p.value==="public/video"||T.value.length===9,onClick:()=>{P("public/image"),v()},quaternary:"",circle:"",type:"primary"},{icon:i(()=>[n(t,{size:"20",color:"var(--primary-color)"},{default:i(()=>[n(f(We))]),_:1})]),_:2},1032,["disabled","onClick"])]),_:1}),f(o).state.profile.allowTweetVideo?(u(),E(F,{key:0,abstract:""},{default:i(({handleClick:v})=>[n(c,{disabled:T.value.length>0&&p.value!=="public/video"||T.value.length===9,onClick:()=>{P("public/video"),v()},quaternary:"",circle:"",type:"primary"},{icon:i(()=>[n(t,{size:"20",color:"var(--primary-color)"},{default:i(()=>[n(f(Ke))]),_:1})]),_:2},1032,["disabled","onClick"])]),_:1})):b("",!0),f(o).state.profile.allowTweetAttachment?(u(),E(F,{key:1,abstract:""},{default:i(({handleClick:v})=>[n(c,{disabled:T.value.length>0&&p.value==="public/video"||T.value.length===9,onClick:()=>{P("attachment"),v()},quaternary:"",circle:"",type:"primary"},{icon:i(()=>[n(t,{size:"20",color:"var(--primary-color)"},{default:i(()=>[n(f(je))]),_:1})]),_:2},1032,["disabled","onClick"])]),_:1})):b("",!0),n(c,{quaternary:"",circle:"",type:"primary",onClick:ge($,["stop"])},{icon:i(()=>[n(t,{size:"20",color:"var(--primary-color)"},{default:i(()=>[n(f(Qe))]),_:1})]),_:1},8,["onClick"]),M.value?(u(),E(c,{key:2,quaternary:"",circle:"",type:"primary",onClick:ge(ee,["stop"])},{icon:i(()=>[n(t,{size:"20",color:"var(--primary-color)"},{default:i(()=>[n(f(He))]),_:1})]),_:1},8,["onClick"])):b("",!0)]),I("div",Ct,[n(oe,{trigger:"hover",placement:"bottom"},{trigger:i(()=>[n(B,{class:"text-statistic",type:"circle","show-indicator":!1,status:"success","stroke-width":10,percentage:A.value.length/f(o).state.profile.defaultTweetMaxLength*100},null,8,["percentage"])]),default:i(()=>[O(" 已输入"+me(A.value.length)+"字 ",1)]),_:1}),n(c,{loading:D.value,onClick:x,type:"primary",secondary:"",round:""},{default:i(()=>[O(" 发布 ")]),_:1},8,["loading"])])]),I("div",Tt,[n(le),_.value.length>0?(u(),w("div",Dt,[f(o).state.profile.allowTweetAttachmentPrice?(u(),E(ie,{key:0,value:C.value,"onUpdate:value":a[0]||(a[0]=v=>C.value=v),min:0,max:1e5,placeholder:"请输入附件价格,0为免费附件"},{prefix:i(()=>[Ut]),_:1},8,["value"])):b("",!0)])):b("",!0)])]),_:1},8,["headers","data","file-list"]),y.value?(u(),w("div",Bt,[n(pe,{value:U.value,"onUpdate:value":a[1]||(a[1]=v=>U.value=v),name:"radiogroup"},{default:i(()=>[n(ce,null,{default:i(()=>[(u(!0),w(_e,null,fe(H.value,v=>(u(),E(ue,{key:v.value,value:v.value,label:v.label},null,8,["value","label"]))),128))]),_:1})]),_:1},8,["value"])])):b("",!0),h.value?(u(),w("div",xt,[n(de,{value:N.value,"onUpdate:value":a[2]||(a[2]=v=>N.value=v),placeholder:"请输入以http(s)://开头的链接",min:0,max:3},{"create-button-default":i(()=>[O(" 创建链接 ")]),_:1},8,["value"])])):b("",!0)])):(u(),w("div",Vt,[Et,f(o).state.profile.allowUserRegister?b("",!0):(u(),w("div",Ft,[n(c,{strong:"",secondary:"",round:"",type:"primary",onClick:a[3]||(a[3]=v=>Y("signin"))},{default:i(()=>[O(" 登录 ")]),_:1})])),f(o).state.profile.allowUserRegister?(u(),w("div",Nt,[n(c,{strong:"",secondary:"",round:"",type:"primary",onClick:a[4]||(a[4]=v=>Y("signin"))},{default:i(()=>[O(" 登录 ")]),_:1}),n(c,{strong:"",secondary:"",round:"",type:"info",onClick:a[5]||(a[5]=v=>Y("signup"))},{default:i(()=>[O(" 注册 ")]),_:1})])):b("",!0)]))])}}});const qt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAA1lSURBVHgB7Z17cFTVHcd/59y7uze7ISSCqBBIeGmFIGilrVJUwBcw0jKgnc6Ijsr0D8eO1qrt+Kio9fEHRR1n7ExH8IEzdmgZWluxPnhYijJCkZQAtoSQmARaHk2A3WSzu/ec/n6XJpLdu5u9u/eVx2dmJ/u4m909v3N+v/P7nhcDn7JunVSm3xiv0kLabCnERGBQLoGNlQDnM5D0dzQDUOlavJ/C+0cA2BF8rR6fasMn2xnnhzri8U++Ua61MMZS4EMY+AQppXo4lpqjKHyOkHIWfrVrwE4k+wCYrFU433zsJGy7cgzrAB/gqQHq6mSwdCIsk1LchLV4cXeNdgUJbwHjG2NReK9mFIuCR3higINnuqaqqvpTKWGZq4VuguG+JLymBPiacUG2E1zGNQOsWCH5nY/ot+IHPoS+/ErwIRg/doGivFAdYuvBJVwxQEMstYgz9iLWtgnQD2AM6oDzFW4YwlEDNES7LuNcWe3XGt838lPGlMerS9gWcAhHDHDwpCxTNLEKa9I9MADAQloZjfKnnAjWthvgUDQ5D7t6b6C7qYQBBLklBvyBqhK2CWyEg01QkG2I6Y9zzj8eaIVPYI+tRkjxcWOn/hj9VrAJW1rA4TZZDiH9ffx334FBAGbVn8k4WzC+grVDkRRtSezTT5EhsWewFD6BWftVEBTbG7vkpVAkRbWAxjPJOVLhG/GuBoOTOAd+Q1WY/Q0KpOAW0ByXC4TCP4TBW/iEpoPY8lVcLoICKagF0AfqQvwRhugBldeF1RrbaPFt1g3QcDo5G1S+2WsNx28YmhLjN4wvYVutvM+SASjgqor6dxjcbicXcabwK1DCOJDvG/KOAdTVVLn6Oxgq/FxoIORGo1ueJ3kZwEg8qJ/PYAoMkRPsolYzTW7MN1nLywVRhoup+DMwRN5geaGIpzzb53V9XYDazvUoL3wEQ1gGg/I8VFI357wm14t1x2Rp6TD5GTarGhjCOow1pzpYzeQR7HS2S3J2JUtLxZMkQoEP0LGft7s9BbV4OxjVobVTwOmUhIjCYPGYINxWGQLfIeVYJSxW4b3l2S7J2gLqzyTnKgq3VXotBCr4v/w7ARuOJOBYl8h63cMXl8DskQHwI6rgl40tZXtNX8v6JkV5RlJ64SH/PKPDy/Wd0NIp8rrWrwZIcn0N/plp9pppV6nhTGopFv7V4CGbjiXh0X2xvArf7zAckm2Kp24xe83UAFzlT4KHvI8uh2p+sv+XfQ9S8hfNcoOMJ4za72Gvh4Lsbw7Hs75+kcahssS2ASnXwDKdeMcj+tL05zMtovCfgUfEsFfzEtZ83ST0lKkM7p9UAq9eXgpXlPdbHfDh9Cd6GaDhVOJb6Ps9m0LyTnMXnExklj7V+JdmRGDeqAAovpnNah0jFnTJXnJOLwOwoHIXeERbQsD7/0lkPD8qxOHpqWEYGex/bscMkdIfOvdxz6+irBeTruXgEZuOJ02D7v2TtAFT+Aac3V4nZbDnYfedyHBY6OUgy87/Zk7fn1mhwrThA2zcR0KgNK4v63749a9LiQVeTVanoFsf0zOenzvKnsTqBGbQFFsS4mx8qQgy7E0pnsUTqcNN+Gc13TcMsKtVhoGJO8AjjsZ1U/czrayw2t+tG207kYTdbSlDM0ongG1/UkQxWtm8UUHDKK6hsO/TghRatWP8whHDU9fYOEnOMm0mPZ/yAIOygPVC2YqxhHpTR+O5szgy+AGUL+j2TksXzL8gCD8cG4KI6oIh0A01xFPX4b2Pz5Y653PAZ1h1D1TLnz7QAasOdvZZ+OmQMd49moD79kRhT7s7S8m44HONv8YjJqeDhwR5ZmmbuY1cUM3f1VZc4VGceAqNSFKI00hG6+DQAFvQF+Gjm8BDRpj4X6qVdgpx5PPpc8r6cDEUP37dEDfEQCfBpGz2OikVtbo9XgmhIHjJSEy2yOe3J3vX+h0nk7C0iIEW0o1uviAAM88L9NKPTuPn7D2dgs1YyDuztJpXGzqN91wyTAGHYNNPxas417RrwQfMMNF3PsIC6u46WoHixxIcJXsF5YvFY0IZ4h0F91kjAvDEpWF4FrNsyrbToRb4chZdyi6CocBsrovUJPABZoMpFEzf/qoLrECu5tFLwnBnlWYaW9KhRO+FmrCpwkou8L2jzsUDKdhEzhkfDj6AFE5yGen8CQtg+8n8/fHdWPAzz7OWP5ALfHpK2DQ+UO/IqVaA9aOcYzSoAB9AbuP2cZn+nn78yn91wobWvlvCtDIFFl5UWDwjI9xVnTnpj8ahdzvUNdVBjuWYkfnCBRHkhr5tUnvJCK83dcGD/4gZmlG2GnlrkTMjrjs/YNoKax0yANa58/HXstHgEOQ69p/WLb0nkiMDq4/q8MyX5ls80NsoF6BbMZgZl6bBOAFKEZXq/3cdsZ3fo8t4q8laAC0GKrjNx53pu7c6NzFgNHdKgl7f4nw26RZWs/K8kaA6psDFnOxAu0zEQd2a08oOcIAyN1RFl1hS6ZBSwCClnt1pCsaBzVSGeUYApoyTuorFshV1/kIa2Dzs5ZwrN+fzL6bg96Ws2SGOYBBmzQyk7QagwY50A1BLvm9SSVEjUSQXbzIJtgsvDGIypxhjAfUx86B5Cn35/ZNLwDdIdgSDsDgODjDdRNshaaHYbuK6FvOeFfUmSHRbNb0UlmNCZWZkkqtplMwvYMU/hN+bNYMDkLRgJnK93hiHE4nCunWky9TlkVcsGh2Ehy42b2mkLfmof9DGhRSnwAHox1NBpENdul/s67BshM/bkrCmKZ739eS3bzGRJagV7m73xwaKKPS2c4Wr9eAQ5JezqYw/39sBe0/1XRAkR7+JBf/8l9Yn65K2ZCYt+MUNMY4uCCC+DRyCWgHN5wyYZBskcj2GLYHGcUmyOJU8uxqh+0ZGIgHux3tisL61MEWS5GgakEmn1ictAEcdPlHHaVpTo4Nz8GlE6d4JGg5umLsPCozdY7mUO5CxyE3ZNTWdAvPraZJIGxqb5gqNDHk6405Wa1oLR0EIo5r8KzgIzbshI/TV/aSCp4FxO9cFkAs0a4Fmk4BdRcoPaV6Q8dUEyE/BYW7GeLDiUppkW1yGfHYilbXEyCwrL2So01YYq6U/hgGYgM3gApQbvDKjFBZh78TqfFsKpg9iEkXjuFa1GV/KUpwbZW5kS00RdUtVp0i5MTmXpIDl4zVj0Jzk489xgOVQTAezXinV3CuwxtNADeUVhWTQNAMifbYFUeHtjGsZDIHR+TEKfA76osMd+ga8eyu4BBXAkjEh40Y1lOaHdk9RpN4LzeGxI0juP5OZuFFMMOueuoaEtWPY2c3De2o8Y/wDKYVrBjgXqtmVJQrewHY+Mln0MTni3cxoAyZ7NnbqqQZRDdY6JU17BSV6ZhOvrqzwcM0Bg2QsqrzX/bDHADWMJRiDtTBAIKnDLPcg90PdYs8QsPrcHXh7OUKeSv0KBgBU+KQ3mW1tQNPQXV0LkIYI8DXnPu5lgKphoX2oju6CfgoFc5pU+8Ae8xX2FNhpDYBXoNiya2LaGQVq5kViJTqq30I/4wvUd+79Ipp1bUC3LhXxcKhUKvBC+nMZfbHqEoX2hWuAfgbV+FwLM36EuccMDxd4Swl1E0NqxnkEGQZAfUJIKX8CAwQKulTz51/o7RR8qcoVZs+bZiMTIuq7/TkWdENC3HNTI5a1I7vBSr3drPYTWdukiCfvYZpaCz7EWDRxNPvrNBS6GEfjSAD0x9YG7Imsr0AOGmL6a349BYMG5zfgQA1NACPNaAzW9smliiH4FaobOQFN7p4QVh7O9nrOr2kcRVIi9rEBeCCDO7C9sSi7OtfRJ33Wk8ZOORc1Is/3juuPcMav7+vIkz4lQdr3Eg3wBAxhCcng8XzOm8lLkx0fVp/Df7kDhsgPKXe8pfHn87k071BFG1LLkNzDQFbBENmRsL89wWddnuf5MkPb19tLPKWnvjl5WGh/vm+wNCxk/GPG5w+0cQObSNJ5MlYKn7A8LkcnRHDOvwdD9EKRfGkhh/kUNDBKZ6VINMJQSzBIMskXjouwd6EAisoXmzrkdwUI2tp+0B5jRS7Z6rkx51LU1ABqchR0KPLDIANbfxP99mIKn7DvKMMgHXEySE7Tw35+e0KZf7kfjjIk6EzF6rAyazBkzJThvom/1Y7CJ2zXDJs65TxdiJdQRR1Qp26gy2lBbefOvo4ksYrt08NI/+iI8atIhoUBAg4nrtY726faXfiEo6o5KqlzpNR/iR/j6VkEhYJDs7sCUrk72+kXduDKsEVjh1wipFjRX9wSDsceYpw9UKWxP4PDuDJDtTrM1k+IKNMYcDqbwLdjzfTdUE74wRsl7GI3Cp/wZOCOtsk3dmqXxnCn1we/JLEU3kZ5ZWVViLmez3g6cko7tkdK9YVoiAWYQyxz8fvQksA/4Kd90HFIWVtTwzzb2sU3O2q0tspwYjjMBi5wCFROZ4zdCPZ9P+zIyG1Msu2Yq2wZH1G30Pos8AG+3dKENrdujMcr0UNda+wuCFAuGFTggNAkCYw2mboIvp5WQzv6HMV3NePzx7GgmwVAO63DTUByW62mNd1mLEb0H/8DkOAXi0+nceAAAAAASUVORK5CYII=",Gt="/assets/discover-tweets-ab101944.jpeg",Ot="/assets/following-tweets-e36b4410.jpeg",Pt={class:"slide-bar-item"},St={class:"slide-bar-item-title slide-bar-user-link"},Yt={key:1,class:"skeleton-wrap"},Mt={key:0,class:"empty-wrap"},Lt={key:1},Wt={key:2},Kt={class:"load-more-wrap"},jt={class:"load-more-spinner"},Qt=we({__name:"Home",setup(j){const g=Ae(),o=ft(),q=gt(),m=rt(),D=r(9),h=r(8),y=r([{title:"最新动态",style:1,username:"",avatar:qt,show:!0},{title:"热门推荐",style:2,username:"",avatar:Gt,show:!1},{title:"正在关注",style:3,username:"",avatar:Ot,show:!1},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0},{title:"",style:1,username:"",avatar:"",show:!0}]),A=Ve({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!1,is_following:!1,created_on:0,follows:0,followings:0,status:1}),N=r(null),G=r("泡泡广场"),C=r(!1),p=r(!1),T=r(1),R=r(""),d=r([]),_=r(1),U=r(20),z=r(0),M=r(!1),L=r(!1),Q=r({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),H=e=>{Q.value=e,M.value=!0},$=()=>{M.value=!1},ee=()=>{L.value=!0},te=e=>{m.warning({title:"删除好友",content:"将好友 “"+e.user.nickname+"” 删除,将同时删除 点赞/收藏 列表中关于该朋友的 “好友可见” 推文",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{Ye({user_id:A.id}).then(t=>{window.$message.success("操作成功"),e.user.is_friend=!1}).catch(t=>{})}})},se=()=>{L.value=!1,N.value=null},Z=e=>{N.value=e,A.id=e.user.id,A.username=e.user.username,A.nickname=e.user.nickname,e.user.is_friend?te(e):ee()},J=e=>{m.success({title:"提示",content:"确定"+(e.user.is_following?"取消关注 @":"关注 @")+e.user.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{e.user.is_following?Pe({user_id:e.user.id}).then(t=>{window.$message.success("操作成功"),P(e.user_id,!1)}).catch(t=>{}):Se({user_id:e.user.id}).then(t=>{window.$message.success("关注成功"),P(e.user_id,!0)}).catch(t=>{})}})};function P(e,t){for(let c in d.value)d.value[c].user_id==e&&(d.value[c].user.is_following=t)}const X=()=>{G.value="泡泡广场",o.query&&o.query.q&&(o.query.t&&o.query.t==="tag"?G.value="#"+decodeURIComponent(o.query.q):G.value="搜索: "+decodeURIComponent(o.query.q))},ae=ve(()=>g.state.profile.useFriendship&&g.state.profile.enableTrendsBar&&g.state.desktopModelShow&&g.state.userInfo.id>0),S=()=>{C.value=!1,p.value=!1,d.value=[],_.value=1,z.value=0},ne=(e,t)=>{switch(S(),T.value=e.style,o.query.q&&(o.query.q=null,X()),e.style){case 1:x("newest");break;case 2:x("hots");break;case 3:o.query.q=null,x("following");break;case 21:R.value=e.username,Y();break}y.value[t].show=!1},W=()=>{y.value=y.value.slice(0,3),!(!g.state.profile.useFriendship||!g.state.profile.enableTrendsBar||g.state.userInfo.id===0)&&qe({page:1,page_size:50}).then(e=>{var t=0;const c=e.list||[];let F=[];for(;t0&&(y.value=y.value.concat(F))}).catch(e=>{console.log(e)})},x=e=>{C.value=!0,Ge({query:o.query.q?decodeURIComponent(o.query.q):null,type:o.query.t,style:e,page:_.value,page_size:U.value}).then(t=>{C.value=!1,t.list.length===0&&(p.value=!0),_.value>1?d.value=d.value.concat(t.list):(d.value=t.list,window.scrollTo(0,0)),z.value=Math.ceil(t.pager.total_rows/U.value)}).catch(t=>{C.value=!1,_.value>1&&_.value--})},Y=()=>{C.value=!0,Oe({username:R.value,style:"post",page:_.value,page_size:U.value}).then(e=>{C.value=!1,e.list.length===0&&(p.value=!0),_.value>1?d.value=d.value.concat(e.list):(d.value=e.list||[],window.scrollTo(0,0)),z.value=Math.ceil(e.pager.total_rows/U.value)}).catch(e=>{d.value=[],_.value>1&&_.value--,C.value=!1})},s=e=>{q.push({name:"post",query:{id:e.id}})},a=()=>{switch(T.value){case 1:x("newest");break;case 2:x("hots");break;case 3:x("following");break;case 21:o.query.q?x("search"):Y();break}},l=()=>{_.value{S(),W(),x("newest")}),Ee(()=>({path:o.path,query:o.query,refresh:g.state.refresh}),(e,t)=>{if(X(),e.refresh!==t.refresh){S(),setTimeout(()=>{W(),a()},0);return}t.path!=="/post"&&e.path==="/"&&(S(),setTimeout(()=>{W(),a()},0))}),(e,t)=>{const c=_t,F=Rt,B=ct,oe=ke,le=pt,ie=dt,re=xe,ue=vt,ce=Ue,pe=Be,de=De,v=Te,Ie=ut,ze=mt,Ce=be;return u(),w("div",null,[n(c,{title:G.value},null,8,["title"]),n(Ie,{class:"main-content-wrap",bordered:""},{default:i(()=>[n(B,null,{default:i(()=>[n(F,{onPostSuccess:s})]),_:1}),ae.value?(u(),E(B,{key:0},{default:i(()=>[n(f(wt),{modelValue:y.value,"onUpdate:modelValue":t[0]||(t[0]=k=>y.value=k),"wheel-blocks":h.value,"init-blocks":D.value,onClick:ne,tag:"div","sub-tag":"div"},{default:i(k=>[I("div",Pt,[n(le,{value:"1",offset:[-4,48],dot:"",show:k.slotData.show},{default:i(()=>[n(oe,{round:"",size:48,src:k.slotData.avatar,class:"slide-bar-item-avatar"},null,8,["src"])]),_:2},1032,["show"]),I("div",St,[n(ie,{"line-clamp":2},{default:i(()=>[O(me(k.slotData.title),1)]),_:2},1024)])])]),_:1},8,["modelValue","wheel-blocks","init-blocks"])]),_:1})):b("",!0),C.value&&d.value.length===0?(u(),w("div",Yt,[n(re,{num:U.value},null,8,["num"])])):b("",!0),I("div",null,[d.value.length===0?(u(),w("div",Mt,[n(ue,{size:"large",description:"暂无数据"})])):b("",!0),f(g).state.desktopModelShow?(u(),w("div",Lt,[(u(!0),w(_e,null,fe(d.value,k=>(u(),E(B,{key:k.id},{default:i(()=>[n(ce,{post:k,isOwner:f(g).state.userInfo.id==k.user_id,addFollowAction:!0,onSendWhisper:H,onHandleFollowAction:J,onHandleFriendAction:Z},null,8,["post","isOwner"])]),_:2},1024))),128))])):(u(),w("div",Wt,[(u(!0),w(_e,null,fe(d.value,k=>(u(),E(B,{key:k.id},{default:i(()=>[n(pe,{post:k,isOwner:f(g).state.userInfo.id==k.user_id,addFollowAction:!0,onSendWhisper:H,onHandleFollowAction:J,onHandleFriendAction:Z},null,8,["post","isOwner"])]),_:2},1024))),128))]))]),n(de,{show:M.value,user:Q.value,onSuccess:$},null,8,["show","user"]),n(v,{show:L.value,user:A,onSuccess:se},null,8,["show","user"])]),_:1}),z.value>0?(u(),E(Ce,{key:0,justify:"center"},{default:i(()=>[n(f(ht),{class:"load-more",slots:{complete:"没有更多泡泡了",error:"加载出错"},onInfinite:t[1]||(t[1]=k=>l())},{spinner:i(()=>[I("div",Kt,[p.value?b("",!0):(u(),E(ze,{key:0,size:14})),I("span",jt,me(p.value?"没有更多泡泡了":"加载更多"),1)])]),_:1})]),_:1})):b("",!0)])}}});const Fs=Me(Qt,[["__scopeId","data-v-325ca19f"]]);export{Fs as default}; diff --git a/web/dist/assets/Home-bed4fc16.css b/web/dist/assets/Home-bed4fc16.css deleted file mode 100644 index 8410e444..00000000 --- a/web/dist/assets/Home-bed4fc16.css +++ /dev/null @@ -1 +0,0 @@ -.compose-wrap{width:100%;padding:16px;box-sizing:border-box}.compose-wrap .compose-line{display:flex;flex-direction:row}.compose-wrap .compose-line .compose-user{width:42px;height:42px;display:flex;align-items:center}.compose-wrap .compose-line.compose-options{margin-top:6px;padding-left:42px;display:flex;justify-content:space-between}.compose-wrap .compose-line.compose-options .submit-wrap{display:flex;align-items:center}.compose-wrap .compose-line.compose-options .submit-wrap .text-statistic{margin-right:8px;width:20px;height:20px;transform:rotate(180deg)}.compose-wrap .link-wrap{margin-left:42px;margin-right:42px}.compose-wrap .eye-wrap{margin-left:64px}.compose-wrap .login-only-wrap{display:flex;justify-content:center;width:100%}.compose-wrap .login-only-wrap button{margin:0 4px;width:50%}.compose-wrap .login-wrap{display:flex;justify-content:center;width:100%}.compose-wrap .login-wrap .login-banner{margin-bottom:12px;opacity:.8}.compose-wrap .login-wrap button{margin:0 4px}.attachment-list-wrap{margin-top:12px;margin-left:42px}.attachment-list-wrap .n-upload-file-info__thumbnail{overflow:hidden}.dark .compose-wrap{background-color:#101014bf}.tiny-slide-bar .tiny-slide-bar__list>div.tiny-slide-bar__select .slide-bar-item .slide-bar-item-title[data-v-325ca19f]{color:#18a058;opacity:.8}.tiny-slide-bar .tiny-slide-bar__list>div:hover .slide-bar-item[data-v-325ca19f]{cursor:pointer}.tiny-slide-bar .tiny-slide-bar__list>div:hover .slide-bar-item .slide-bar-item-avatar[data-v-325ca19f]{color:#18a058;opacity:.8}.tiny-slide-bar .tiny-slide-bar__list>div:hover .slide-bar-item .slide-bar-item-title[data-v-325ca19f]{color:#18a058;opacity:.8}.tiny-slide-bar[data-v-325ca19f]{margin-top:-30px;margin-bottom:-30px}.tiny-slide-bar .slide-bar-item[data-v-325ca19f]{min-height:170px;width:64px;display:flex;flex-direction:column;justify-content:center;align-items:center;margin-top:8px}.tiny-slide-bar .slide-bar-item .slide-bar-item-title[data-v-325ca19f]{justify-content:center;font-size:12px;margin-top:4px;height:40px}.load-more[data-v-325ca19f]{margin:20px}.load-more .load-more-wrap[data-v-325ca19f]{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:14px}.load-more .load-more-wrap .load-more-spinner[data-v-325ca19f]{font-size:14px;opacity:.65}.dark .main-content-wrap[data-v-325ca19f],.dark .pagination-wrap[data-v-325ca19f],.dark .empty-wrap[data-v-325ca19f],.dark .skeleton-wrap[data-v-325ca19f]{background-color:#101014bf}.dark .tiny-slide-bar .tiny-slide-bar__list>div.tiny-slide-bar__select .slide-bar-item .slide-bar-item-title[data-v-325ca19f]{color:#63e2b7;opacity:.8}.dark .tiny-slide-bar .tiny-slide-bar__list>div:hover .slide-bar-item .slide-bar-item-title[data-v-325ca19f]{color:#63e2b7;opacity:.8}.dark .tiny-slide-bar[data-v-325ca19f]{--ti-slider-progress-box-arrow-hover-text-color: #f2f2f2;--ti-slider-progress-box-arrow-normal-text-color: #808080} diff --git a/web/dist/assets/IEnum-5453a777.js b/web/dist/assets/IEnum-B3rDUvtK.js similarity index 100% rename from web/dist/assets/IEnum-5453a777.js rename to web/dist/assets/IEnum-B3rDUvtK.js diff --git a/web/dist/assets/LatoLatin-Regular-ddd4ef7f.woff2 b/web/dist/assets/LatoLatin-Regular-Dmlz1U0B.woff2 similarity index 100% rename from web/dist/assets/LatoLatin-Regular-ddd4ef7f.woff2 rename to web/dist/assets/LatoLatin-Regular-Dmlz1U0B.woff2 diff --git a/web/dist/assets/LatoLatin-Semibold-267eef30.woff2 b/web/dist/assets/LatoLatin-Semibold-Dbk81p2D.woff2 similarity index 100% rename from web/dist/assets/LatoLatin-Semibold-267eef30.woff2 rename to web/dist/assets/LatoLatin-Semibold-Dbk81p2D.woff2 diff --git a/web/dist/assets/Messages-5a324cdf.js b/web/dist/assets/Messages-5a324cdf.js deleted file mode 100644 index 466890e0..00000000 --- a/web/dist/assets/Messages-5a324cdf.js +++ /dev/null @@ -1 +0,0 @@ -import{d as K,c as T,r as me,e as a,f as i,k as n,w as t,bf as o,j as b,y as A,A as d,x as g,Y as _,q,l as ge,h as H,u as se,F as ne,H as f,b as fe}from"./@vue-a481fc63.js";import{u as te}from"./vuex-44de225f.js";import{u as ve,b as ke}from"./vue-router-e5a2430e.js";import{J as ye,O as he,P as we,Q as be,u as $e,f as Ie,_ as L,R as Ce,S as Me}from"./index-1e276b8f.js";import{K as x,k as Se,N as qe,O as ze,Q as ee,U as Oe,r as N,s as Re,t as Ae,X as F,Y as Fe,Z as B,_ as V,R as D}from"./@vicons-f0266f88.js";import{F as Te,j as m,o as Ne,M as Pe,l as Ue,e as ae,P as oe,T as We,O as je,U as Be,a as Ve,G as De,Q as He,J as Qe,k as Je,H as Ye}from"./naive-ui-eecf2ec3.js";import{_ as Ee}from"./whisper-6a06efa4.js";import{_ as Ge}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{W as Ke}from"./v3-infinite-loading-2c58ec2f.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./evtd-b614532e.js";import"./@css-render-7124a1a5.js";import"./vooks-6d99783e.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";const Le={class:"sender-wrap"},Xe={key:0,class:"nickname"},Ze={key:0,class:"username"},xe={key:1,class:"nickname"},es={key:0,class:"username"},ss={key:2,class:"nickname"},ns={class:"timestamp"},ts={class:"timestamp-txt"},as={key:0,class:"brief-content"},os={key:1,class:"whisper-content-wrap"},ls={key:2,class:"requesting-friend-wrap"},rs={key:2,class:"status-info"},is={key:3,class:"status-info"},us="https://assets.paopao.info/public/avatar/default/admin.png",cs=K({__name:"message-item",props:{message:{}},emits:["send-whisper","reload"],setup(Q,{emit:v}){const c=Q,k=ve(),u=te(),y=Te(),$=e=>()=>H(m,null,{default:()=>H(e)}),I=T(()=>{let e=c.message.type==4&&c.message.sender_user_id==u.state.userInfo.id?c.message.receiver_user:c.message.sender_user,s=[{label:"私信 @"+e.username,key:"whisper",icon:$(N)}];return u.state.userInfo.id!=e.id&&(e.is_following?s.push({label:"取消关注 @"+e.username,key:"unfollow",icon:$(Re)}):s.push({label:"关注 @"+e.username,key:"follow",icon:$(Ae)})),s}),p=e=>{let s=e.type==4&&e.sender_user_id==u.state.userInfo.id?e.receiver_user:e.sender_user;y.success({title:"提示",content:"确定"+(s.is_following?"取消关注 @":"关注 @")+s.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{s.is_following?$e({user_id:s.id}).then(w=>{window.$message.success("操作成功"),s.is_following=!1,setTimeout(()=>{v("reload")},50)}).catch(w=>{}):Ie({user_id:s.id}).then(w=>{window.$message.success("关注成功"),s.is_following=!0,setTimeout(()=>{v("reload")},50)}).catch(w=>{})}})},h=e=>{switch(e){case"whisper":const s=c.message;if(s.type!=99){let w=s.type==4&&s.sender_user_id==u.state.userInfo.id?s.receiver_user:s.sender_user;v("send-whisper",w)}break;case"follow":case"unfollow":p(c.message);break}},C=T(()=>c.message.type!==4||c.message.sender_user_id!==u.state.userInfo.id),z=T(()=>c.message.type==4&&c.message.receiver_user_id==u.state.userInfo.id),O=T(()=>c.message.type==4&&c.message.sender_user_id==u.state.userInfo.id),P=e=>{M(e),(e.type===1||e.type===2||e.type===3)&&(e.post&&e.post.id>0?k.push({name:"post",query:{id:e.post_id}}):window.$message.error("该动态已被删除"))},r=e=>{M(e),he({user_id:e.sender_user_id}).then(s=>{e.reply_id=2,window.$message.success("已同意添加好友")}).catch(s=>{console.log(s)})},J=e=>{M(e),we({user_id:e.sender_user_id}).then(s=>{e.reply_id=3,window.$message.success("已拒绝添加好友")}).catch(s=>{console.log(s)})},M=e=>{c.message.receiver_user_id==u.state.userInfo.id&&e.is_read===0&&be({id:e.id}).then(s=>{e.is_read=1}).catch(s=>{console.log(s)})};return(e,s)=>{const w=Ne,U=me("router-link"),W=Pe,S=Ue,Y=ae,l=oe,j=We,E=je;return a(),i("div",{class:ge(["message-item",{unread:C.value&&e.message.is_read===0}]),onClick:s[5]||(s[5]=R=>M(e.message))},[n(E,{"content-indented":""},{avatar:t(()=>[n(w,{round:"",size:30,src:e.message.type==4&&e.message.sender_user_id==o(u).state.userInfo.id?e.message.receiver_user.avatar:e.message.sender_user.id>0?e.message.sender_user.avatar:us},null,8,["src"])]),header:t(()=>[b("div",Le,[e.message.type!=4&&e.message.sender_user.id>0||z.value?(a(),i("span",Xe,[n(U,{onClick:s[0]||(s[0]=A(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.message.sender_user.username}}},{default:t(()=>[d(g(e.message.sender_user.nickname),1)]),_:1},8,["to"]),o(u).state.desktopModelShow?(a(),i("span",Ze," @"+g(e.message.sender_user.username),1)):_("",!0)])):O.value?(a(),i("span",xe,[n(U,{onClick:s[1]||(s[1]=A(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.message.receiver_user.username}}},{default:t(()=>[d(g(e.message.receiver_user.nickname),1)]),_:1},8,["to"]),o(u).state.desktopModelShow?(a(),i("span",es," @"+g(e.message.receiver_user.username),1)):_("",!0)])):(a(),i("span",ss," 系统 ")),O.value?(a(),q(W,{key:3,class:"top-tag",type:"info",size:"small",round:""},{icon:t(()=>[n(o(m),{component:o(x)},null,8,["component"])]),default:t(()=>[d(" 私信已发送 ")]),_:1})):_("",!0),e.message.type==4&&e.message.receiver_user_id==o(u).state.userInfo.id?(a(),q(W,{key:4,class:"top-tag",type:"warning",size:"small",round:""},{icon:t(()=>[n(o(m),{component:o(x)},null,8,["component"])]),default:t(()=>[d(" 私信已接收 ")]),_:1})):_("",!0)])]),"header-extra":t(()=>[b("span",ns,[C.value&&e.message.is_read===0?(a(),q(S,{key:0,dot:"",processing:""})):_("",!0),b("span",ts,g(o(ye)(e.message.created_on)),1),n(l,{placement:"bottom-end",trigger:"click",size:"small",options:I.value,onSelect:h},{default:t(()=>[n(Y,{quaternary:"",circle:""},{icon:t(()=>[n(o(m),null,{default:t(()=>[n(o(Se))]),_:1})]),_:1})]),_:1},8,["options"])])]),description:t(()=>[n(j,{"show-icon":!1,class:"brief-wrap",type:!C.value||e.message.is_read>0?"default":"success"},{default:t(()=>[e.message.type!=4?(a(),i("div",as,[d(g(e.message.brief)+" ",1),e.message.type===1||e.message.type===2||e.message.type===3?(a(),i("span",{key:0,onClick:s[2]||(s[2]=A(R=>P(e.message),["stop"])),class:"hash-link view-link"},[n(o(m),null,{default:t(()=>[n(o(qe))]),_:1}),d(" 查看详情 ")])):_("",!0)])):_("",!0),e.message.type===4?(a(),i("div",os,g(e.message.content),1)):_("",!0),e.message.type===5?(a(),i("div",ls,[d(g(e.message.content)+" ",1),e.message.reply_id===1?(a(),i("span",{key:0,onClick:s[3]||(s[3]=A(R=>r(e.message),["stop"])),class:"hash-link view-link"},[n(o(m),null,{default:t(()=>[n(o(ze))]),_:1}),d(" 同意 ")])):_("",!0),e.message.reply_id===1?(a(),i("span",{key:1,onClick:s[4]||(s[4]=A(R=>J(e.message),["stop"])),class:"hash-link view-link"},[n(o(m),null,{default:t(()=>[n(o(ee))]),_:1}),d(" 拒绝 ")])):_("",!0),e.message.reply_id===2?(a(),i("span",rs,[n(o(m),null,{default:t(()=>[n(o(Oe))]),_:1}),d(" 已同意 ")])):_("",!0),e.message.reply_id===3?(a(),i("span",is,[n(o(m),null,{default:t(()=>[n(o(ee))]),_:1}),d(" 已拒绝 ")])):_("",!0)])):_("",!0)]),_:1},8,["type"])]),_:1})],2)}}});const _s=L(cs,[["__scopeId","data-v-019d5af4"]]),ds={class:"content"},ps=K({__name:"message-skeleton",props:{num:{default:1}},setup(Q){return(v,c)=>{const k=Be;return a(!0),i(ne,null,se(new Array(v.num),u=>(a(),i("div",{class:"skeleton-item",key:u},[b("div",ds,[n(k,{text:"",repeat:2}),n(k,{text:"",style:{width:"60%"}})])]))),128)}}});const ms=L(ps,[["__scopeId","data-v-01d2e871"]]),gs={class:"title title-action"},fs={class:"title title-filter"},vs={key:0,class:"skeleton-wrap"},ks={key:1},ys={key:0,class:"empty-wrap"},hs={key:1},ws={class:"load-more-wrap"},bs={class:"load-more-spinner"},$s=K({__name:"Messages",setup(Q){const v=te(),c=ke(),k=f(!1),u=f(!1),y=f(+c.query.p||1),$=f(20),I=f(0),p=f([]),h=f("所有消息"),C=f("all"),z=f(!1),O=f({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),P=()=>{u.value=!1,y.value=1,I.value=0,p.value=[]},r=l=>()=>H(m,null,{default:()=>H(l)}),J=T(()=>{let l;switch(h.value){case"所有消息":l=[{label:"系统消息",key:"system",icon:r(V)},{label:"我的私信",key:"whisper",icon:r(N)},{label:"好友申请",key:"requesting",icon:r(D)},{label:"未读消息",key:"unread",icon:r(F)}];break;case"系统消息":l=[{label:"所有消息",key:"all",icon:r(B)},{label:"我的私信",key:"whisper",icon:r(N)},{label:"好友申请",key:"requesting",icon:r(D)},{label:"未读消息",key:"unread",icon:r(F)}];break;case"我的私信":l=[{label:"所有消息",key:"all",icon:r(B)},{label:"系统消息",key:"system",icon:r(V)},{label:"好友申请",key:"requesting",icon:r(D)},{label:"未读消息",key:"unread",icon:r(F)}];break;case"好友申请":l=[{label:"所有消息",key:"all",icon:r(B)},{label:"系统消息",key:"system",icon:r(V)},{label:"我的私信",key:"whisper",icon:r(N)},{label:"未读消息",key:"unread",icon:r(F)}];break;case"未读消息":l=[{label:"所有消息",key:"all",icon:r(B)},{label:"系统消息",key:"system",icon:r(V)},{label:"我的私信",key:"whisper",icon:r(N)},{label:"好友申请",key:"requesting",icon:r(D)}];break;default:l=[];break}return l}),M=l=>{switch(l){case"all":h.value="所有消息";break;case"system":h.value="系统消息";break;case"whisper":h.value="我的私信";break;case"requesting":h.value="好友申请";break;case"unread":h.value="未读消息";break}C.value=l,P(),S()},e=()=>{M("unread")},s=()=>{v.state.unreadMsgCount>0&&p.value.length>0&&Me().then(l=>{if(C.value!="unread")for(let j in p.value)p.value[j].is_read=1;else p.value=[];v.commit("updateUnreadMsgCount",0)}).catch(l=>{console.log(l)})},w=l=>{O.value=l,z.value=!0},U=()=>{z.value=!1},W=()=>{P(),S()},S=()=>{k.value=!0,Ce({style:C.value,page:y.value,page_size:$.value}).then(l=>{k.value=!1,l.list.length===0&&(u.value=!0),y.value>1?p.value=p.value.concat(l.list):(p.value=l.list,window.scrollTo(0,0)),I.value=Math.ceil(l.pager.total_rows/$.value)}).catch(l=>{k.value=!1,y.value>1&&y.value--})},Y=()=>{y.value{S()}),(l,j)=>{const E=Ge,R=Ee,G=ae,le=He,re=oe,X=Ve,ie=ms,ue=Qe,ce=_s,_e=Ye,de=De,pe=Je;return a(),i("div",null,[n(E,{title:"消息"}),n(de,{class:"main-content-wrap messages-wrap",bordered:""},{default:t(()=>[n(R,{show:z.value,user:O.value,onSuccess:U},null,8,["show","user"]),n(X,{justify:"space-between"},{default:t(()=>[b("div",gs,[n(G,{text:"",size:"small",focusable:!1,onClick:e},{icon:t(()=>[n(o(m),null,{default:t(()=>[n(o(F))]),_:1})]),default:t(()=>[d(" "+g(o(v).state.unreadMsgCount)+" 条未读 ",1)]),_:1}),n(le,{vertical:""}),n(G,{text:"",size:"small",focusable:!1,onClick:s},{default:t(()=>[d("全标已读")]),_:1})]),b("div",fs,[n(re,{placement:"bottom-end",trigger:"click",size:"small",options:J.value,onSelect:M},{default:t(()=>[n(G,{text:""},{icon:t(()=>[n(o(m),null,{default:t(()=>[n(o(Fe))]),_:1})]),default:t(()=>[d(" "+g(h.value),1)]),_:1})]),_:1},8,["options"])])]),_:1}),k.value&&p.value.length===0?(a(),i("div",vs,[n(ie,{num:$.value},null,8,["num"])])):(a(),i("div",ks,[p.value.length===0?(a(),i("div",ys,[n(ue,{size:"large",description:"暂无数据"})])):(a(),i("div",hs,[(a(!0),i(ne,null,se(p.value,Z=>(a(),q(_e,{key:Z.id},{default:t(()=>[n(ce,{message:Z,onSendWhisper:w,onReload:W},null,8,["message"])]),_:2},1024))),128))]))]))]),_:1}),I.value>0?(a(),q(X,{key:0,justify:"center"},{default:t(()=>[n(o(Ke),{class:"load-more",slots:{complete:"没有更多消息了",error:"加载出错"},onInfinite:Y},{spinner:t(()=>[b("div",ws,[u.value?_("",!0):(a(),q(pe,{key:0,size:14})),b("span",bs,g(u.value?"没有更多消息了":"加载更多"),1)])]),_:1})]),_:1})):_("",!0)])}}});const Ks=L($s,[["__scopeId","data-v-a2e6a3be"]]);export{Ks as default}; diff --git a/web/dist/assets/Messages-a71f605f.css b/web/dist/assets/Messages-CGktZWmD.css similarity index 100% rename from web/dist/assets/Messages-a71f605f.css rename to web/dist/assets/Messages-CGktZWmD.css diff --git a/web/dist/assets/Messages-pR9E7fXn.js b/web/dist/assets/Messages-pR9E7fXn.js new file mode 100644 index 00000000..6aad8349 --- /dev/null +++ b/web/dist/assets/Messages-pR9E7fXn.js @@ -0,0 +1 @@ +import{d as J,c as F,r as me,e as a,f as i,k as n,w as t,bk as o,j as h,y as R,A as p,x as g,Z as d,q,l as ge,h as H,u as se,F as ne,H as v,b as fe}from"./@vue-CQsYufSu.js";import{u as te}from"./vuex-DNAxYlmG.js";import{u as ve,b as ke}from"./vue-router-zwGLnBy5.js";import{K as ye,P as he,Q as we,R as be,u as $e,f as Ce,_ as L,S as Ie,T as Me}from"./index-v3l9hw1O.js";import{K as x,k as Se,N as qe,O as ze,Q as ee,U as Oe,r as T,s as Re,t as Ae,X as A,Y as Fe,Z as B,_ as V,R as D}from"./@vicons-C3A8jsfr.js";import{F as Te,j as m,o as Ne,M as Pe,l as Ue,e as ae,P as oe,T as We,O as je,U as Be,a as Ve,G as De,Q as He,J as Qe,k as Ke,H as Ze}from"./naive-ui-DNcWoFGl.js";import{_ as Ee}from"./whisper-DFhobfFF.js";import{_ as Ge}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{W as Je}from"./v3-infinite-loading-DK6TzcZc.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./evtd-CI_DDEu_.js";import"./@css-render-CQdyXCYJ.js";import"./vooks-BQzJqMzq.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";const Le={class:"sender-wrap"},Xe={key:0,class:"nickname"},Ye={key:0,class:"username"},xe={key:1,class:"nickname"},es={key:0,class:"username"},ss={key:2,class:"nickname"},ns={class:"timestamp"},ts={class:"timestamp-txt"},as={key:0,class:"brief-content"},os={key:1,class:"whisper-content-wrap"},ls={key:2,class:"requesting-friend-wrap"},rs={key:2,class:"status-info"},is={key:3,class:"status-info"},us="https://assets.paopao.info/public/avatar/default/admin.png",cs=J({__name:"message-item",props:{message:{}},emits:["send-whisper","reload"],setup(Q,{emit:w}){const N=ve(),c=te(),f=Te(),u=Q,b=e=>()=>H(m,null,{default:()=>H(e)}),$=F(()=>{let e=u.message.type==4&&u.message.sender_user_id==c.state.userInfo.id?u.message.receiver_user:u.message.sender_user,s=[{label:"私信 @"+e.username,key:"whisper",icon:b(T)}];return c.state.userInfo.id!=e.id&&(e.is_following?s.push({label:"取消关注 @"+e.username,key:"unfollow",icon:b(Re)}):s.push({label:"关注 @"+e.username,key:"follow",icon:b(Ae)})),s}),_=w,k=e=>{let s=e.type==4&&e.sender_user_id==c.state.userInfo.id?e.receiver_user:e.sender_user;f.success({title:"提示",content:"确定"+(s.is_following?"取消关注 @":"关注 @")+s.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{s.is_following?$e({user_id:s.id}).then(y=>{window.$message.success("操作成功"),s.is_following=!1,setTimeout(()=>{_("reload")},50)}).catch(y=>{}):Ce({user_id:s.id}).then(y=>{window.$message.success("关注成功"),s.is_following=!0,setTimeout(()=>{_("reload")},50)}).catch(y=>{})}})},z=e=>{switch(e){case"whisper":const s=u.message;if(s.type!=99){let y=s.type==4&&s.sender_user_id==c.state.userInfo.id?s.receiver_user:s.sender_user;_("send-whisper",y)}break;case"follow":case"unfollow":k(u.message);break}},C=F(()=>u.message.type!==4||u.message.sender_user_id!==c.state.userInfo.id),P=F(()=>u.message.type==4&&u.message.receiver_user_id==c.state.userInfo.id),O=F(()=>u.message.type==4&&u.message.sender_user_id==c.state.userInfo.id),r=e=>{S(e),(e.type===1||e.type===2||e.type===3)&&(e.post&&e.post.id>0?N.push({name:"post",query:{id:e.post_id}}):window.$message.error("该动态已被删除"))},K=e=>{S(e),he({user_id:e.sender_user_id}).then(s=>{e.reply_id=2,window.$message.success("已同意添加好友")}).catch(s=>{console.log(s)})},U=e=>{S(e),we({user_id:e.sender_user_id}).then(s=>{e.reply_id=3,window.$message.success("已拒绝添加好友")}).catch(s=>{console.log(s)})},S=e=>{u.message.receiver_user_id==c.state.userInfo.id&&e.is_read===0&&be({id:e.id}).then(s=>{e.is_read=1}).catch(s=>{console.log(s)})};return(e,s)=>{const y=Ne,W=me("router-link"),I=Pe,Z=Ue,l=ae,j=oe,E=We,G=je;return a(),i("div",{class:ge(["message-item",{unread:C.value&&e.message.is_read===0}]),onClick:s[5]||(s[5]=M=>S(e.message))},[n(G,{"content-indented":""},{avatar:t(()=>[n(y,{round:"",size:30,src:e.message.type==4&&e.message.sender_user_id==o(c).state.userInfo.id?e.message.receiver_user.avatar:e.message.sender_user.id>0?e.message.sender_user.avatar:us},null,8,["src"])]),header:t(()=>[h("div",Le,[e.message.type!=4&&e.message.sender_user.id>0||P.value?(a(),i("span",Xe,[n(W,{onClick:s[0]||(s[0]=R(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.message.sender_user.username}}},{default:t(()=>[p(g(e.message.sender_user.nickname),1)]),_:1},8,["to"]),o(c).state.desktopModelShow?(a(),i("span",Ye," @"+g(e.message.sender_user.username),1)):d("",!0)])):O.value?(a(),i("span",xe,[n(W,{onClick:s[1]||(s[1]=R(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.message.receiver_user.username}}},{default:t(()=>[p(g(e.message.receiver_user.nickname),1)]),_:1},8,["to"]),o(c).state.desktopModelShow?(a(),i("span",es," @"+g(e.message.receiver_user.username),1)):d("",!0)])):(a(),i("span",ss," 系统 ")),O.value?(a(),q(I,{key:3,class:"top-tag",type:"info",size:"small",round:""},{icon:t(()=>[n(o(m),{component:o(x)},null,8,["component"])]),default:t(()=>[p(" 私信已发送 ")]),_:1})):d("",!0),e.message.type==4&&e.message.receiver_user_id==o(c).state.userInfo.id?(a(),q(I,{key:4,class:"top-tag",type:"warning",size:"small",round:""},{icon:t(()=>[n(o(m),{component:o(x)},null,8,["component"])]),default:t(()=>[p(" 私信已接收 ")]),_:1})):d("",!0)])]),"header-extra":t(()=>[h("span",ns,[C.value&&e.message.is_read===0?(a(),q(Z,{key:0,dot:"",processing:""})):d("",!0),h("span",ts,g(o(ye)(e.message.created_on)),1),n(j,{placement:"bottom-end",trigger:"click",size:"small",options:$.value,onSelect:z},{default:t(()=>[n(l,{quaternary:"",circle:""},{icon:t(()=>[n(o(m),null,{default:t(()=>[n(o(Se))]),_:1})]),_:1})]),_:1},8,["options"])])]),description:t(()=>[n(E,{"show-icon":!1,class:"brief-wrap",type:!C.value||e.message.is_read>0?"default":"success"},{default:t(()=>[e.message.type!=4?(a(),i("div",as,[p(g(e.message.brief)+" ",1),e.message.type===1||e.message.type===2||e.message.type===3?(a(),i("span",{key:0,onClick:s[2]||(s[2]=R(M=>r(e.message),["stop"])),class:"hash-link view-link"},[n(o(m),null,{default:t(()=>[n(o(qe))]),_:1}),p(" 查看详情 ")])):d("",!0)])):d("",!0),e.message.type===4?(a(),i("div",os,g(e.message.content),1)):d("",!0),e.message.type===5?(a(),i("div",ls,[p(g(e.message.content)+" ",1),e.message.reply_id===1?(a(),i("span",{key:0,onClick:s[3]||(s[3]=R(M=>K(e.message),["stop"])),class:"hash-link view-link"},[n(o(m),null,{default:t(()=>[n(o(ze))]),_:1}),p(" 同意 ")])):d("",!0),e.message.reply_id===1?(a(),i("span",{key:1,onClick:s[4]||(s[4]=R(M=>U(e.message),["stop"])),class:"hash-link view-link"},[n(o(m),null,{default:t(()=>[n(o(ee))]),_:1}),p(" 拒绝 ")])):d("",!0),e.message.reply_id===2?(a(),i("span",rs,[n(o(m),null,{default:t(()=>[n(o(Oe))]),_:1}),p(" 已同意 ")])):d("",!0),e.message.reply_id===3?(a(),i("span",is,[n(o(m),null,{default:t(()=>[n(o(ee))]),_:1}),p(" 已拒绝 ")])):d("",!0)])):d("",!0)]),_:1},8,["type"])]),_:1})],2)}}}),_s=L(cs,[["__scopeId","data-v-019d5af4"]]),ds={class:"content"},ps=J({__name:"message-skeleton",props:{num:{default:1}},setup(Q){return(w,N)=>{const c=Be;return a(!0),i(ne,null,se(new Array(w.num),f=>(a(),i("div",{class:"skeleton-item",key:f},[h("div",ds,[n(c,{text:"",repeat:2}),n(c,{text:"",style:{width:"60%"}})])]))),128)}}}),ms=L(ps,[["__scopeId","data-v-01d2e871"]]),gs={class:"title title-action"},fs={class:"title title-filter"},vs={key:0,class:"skeleton-wrap"},ks={key:1},ys={key:0,class:"empty-wrap"},hs={key:1},ws={class:"load-more-wrap"},bs={class:"load-more-spinner"},$s=J({__name:"Messages",setup(Q){const w=te(),N=ke(),c=v(!1),f=v(!1),u=v(+N.query.p||1),b=v(20),$=v(0),_=v([]),k=v("所有消息"),z=v("all"),C=v(!1),P=v({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),O=()=>{f.value=!1,u.value=1,$.value=0,_.value=[]},r=l=>()=>H(m,null,{default:()=>H(l)}),K=F(()=>{let l;switch(k.value){case"所有消息":l=[{label:"系统消息",key:"system",icon:r(V)},{label:"我的私信",key:"whisper",icon:r(T)},{label:"好友申请",key:"requesting",icon:r(D)},{label:"未读消息",key:"unread",icon:r(A)}];break;case"系统消息":l=[{label:"所有消息",key:"all",icon:r(B)},{label:"我的私信",key:"whisper",icon:r(T)},{label:"好友申请",key:"requesting",icon:r(D)},{label:"未读消息",key:"unread",icon:r(A)}];break;case"我的私信":l=[{label:"所有消息",key:"all",icon:r(B)},{label:"系统消息",key:"system",icon:r(V)},{label:"好友申请",key:"requesting",icon:r(D)},{label:"未读消息",key:"unread",icon:r(A)}];break;case"好友申请":l=[{label:"所有消息",key:"all",icon:r(B)},{label:"系统消息",key:"system",icon:r(V)},{label:"我的私信",key:"whisper",icon:r(T)},{label:"未读消息",key:"unread",icon:r(A)}];break;case"未读消息":l=[{label:"所有消息",key:"all",icon:r(B)},{label:"系统消息",key:"system",icon:r(V)},{label:"我的私信",key:"whisper",icon:r(T)},{label:"好友申请",key:"requesting",icon:r(D)}];break;default:l=[];break}return l}),U=l=>{switch(l){case"all":k.value="所有消息";break;case"system":k.value="系统消息";break;case"whisper":k.value="我的私信";break;case"requesting":k.value="好友申请";break;case"unread":k.value="未读消息";break}z.value=l,O(),I()},S=()=>{U("unread")},e=()=>{w.state.unreadMsgCount>0&&_.value.length>0&&Me().then(l=>{if(z.value!="unread")for(let j in _.value)_.value[j].is_read=1;else _.value=[];w.commit("updateUnreadMsgCount",0)}).catch(l=>{console.log(l)})},s=l=>{P.value=l,C.value=!0},y=()=>{C.value=!1},W=()=>{O(),I()},I=()=>{c.value=!0,Ie({style:z.value,page:u.value,page_size:b.value}).then(l=>{c.value=!1,l.list.length===0&&(f.value=!0),u.value>1?_.value=_.value.concat(l.list):(_.value=l.list,window.scrollTo(0,0)),$.value=Math.ceil(l.pager.total_rows/b.value)}).catch(l=>{c.value=!1,u.value>1&&u.value--})},Z=()=>{u.value<$.value||$.value==0?(f.value=!1,u.value++,I()):f.value=!0};return fe(()=>{I()}),(l,j)=>{const E=Ge,G=Ee,M=ae,le=He,re=oe,X=Ve,ie=ms,ue=Qe,ce=_s,_e=Ze,de=De,pe=Ke;return a(),i("div",null,[n(E,{title:"消息"}),n(de,{class:"main-content-wrap messages-wrap",bordered:""},{default:t(()=>[n(G,{show:C.value,user:P.value,onSuccess:y},null,8,["show","user"]),n(X,{justify:"space-between"},{default:t(()=>[h("div",gs,[n(M,{text:"",size:"small",focusable:!1,onClick:S},{icon:t(()=>[n(o(m),null,{default:t(()=>[n(o(A))]),_:1})]),default:t(()=>[p(" "+g(o(w).state.unreadMsgCount)+" 条未读 ",1)]),_:1}),n(le,{vertical:""}),n(M,{text:"",size:"small",focusable:!1,onClick:e},{default:t(()=>[p("全标已读")]),_:1})]),h("div",fs,[n(re,{placement:"bottom-end",trigger:"click",size:"small",options:K.value,onSelect:U},{default:t(()=>[n(M,{text:""},{icon:t(()=>[n(o(m),null,{default:t(()=>[n(o(Fe))]),_:1})]),default:t(()=>[p(" "+g(k.value),1)]),_:1})]),_:1},8,["options"])])]),_:1}),c.value&&_.value.length===0?(a(),i("div",vs,[n(ie,{num:b.value},null,8,["num"])])):(a(),i("div",ks,[_.value.length===0?(a(),i("div",ys,[n(ue,{size:"large",description:"暂无数据"})])):(a(),i("div",hs,[(a(!0),i(ne,null,se(_.value,Y=>(a(),q(_e,{key:Y.id},{default:t(()=>[n(ce,{message:Y,onSendWhisper:s,onReload:W},null,8,["message"])]),_:2},1024))),128))]))]))]),_:1}),$.value>0?(a(),q(X,{key:0,justify:"center"},{default:t(()=>[n(o(Je),{class:"load-more",slots:{complete:"没有更多消息了",error:"加载出错"},onInfinite:Z},{spinner:t(()=>[h("div",ws,[f.value?d("",!0):(a(),q(pe,{key:0,size:14})),h("span",bs,g(f.value?"没有更多消息了":"加载更多"),1)])]),_:1})]),_:1})):d("",!0)])}}}),Js=L($s,[["__scopeId","data-v-a2e6a3be"]]);export{Js as default}; diff --git a/web/dist/assets/Post-834734af.js b/web/dist/assets/Post-834734af.js deleted file mode 100644 index f38cfc7d..00000000 --- a/web/dist/assets/Post-834734af.js +++ /dev/null @@ -1 +0,0 @@ -import{d as oe,H as r,r as ke,e as o,f as _,j as d,k as t,w as n,A as T,x as R,q as x,Y as u,bf as a,y as Y,c as ue,al as Ke,F as me,u as ve,$ as ze,a0 as Re,b as Se,h as xe,E as Ge}from"./@vue-a481fc63.js";import{u as ce}from"./vuex-44de225f.js";import{i as he,t as Qe,j as Xe,k as Ze,_ as re,l as et,m as tt,n as st,o as ot,p as nt,g as at,q as lt,r as it,s as ut,v as ct,w as rt,x as _t,y as pt,z as dt,A as mt,B as vt,u as ht,f as ft,C as Ie,D as ye}from"./index-1e276b8f.js";import{Y as se,V as ee}from"./IEnum-5453a777.js";import{T as Oe,e as fe,f as Le,g as ge,h as Ae,i as gt,j as yt,I as kt,k as wt,l as bt,m as $t,n as Ct,o as xt,p as It,q as Pt,r as Tt,s as Ut,t as ie,u as zt,v as Rt,w as St,x as Pe,F as Te,E as pe,y as de,z as Ue}from"./@vicons-f0266f88.js";import{j as J,e as _e,K as De,I as Ot,b as Lt,L as At,o as we,M as Me,O as Ee,v as Dt,w as Mt,x as Et,y as Nt,z as qt,B as Bt,F as Ht,P as Ft,i as jt,Q as Vt,a as Ne,G as Yt,J as Wt,k as Jt,H as Kt,f as Gt,g as Qt}from"./naive-ui-eecf2ec3.js";import{p as be,_ as qe,a as Xt,b as Zt,c as es}from"./content-68a3f6d0.js";import{u as Be,b as ts}from"./vue-router-e5a2430e.js";import{_ as ss}from"./post-skeleton-ae2be035.js";import{l as os}from"./lodash-e0b37ac3.js";import{_ as ns}from"./whisper-6a06efa4.js";import{c as as}from"./copy-to-clipboard-4ef7d3eb.js";import{_ as ls}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{W as is}from"./v3-infinite-loading-2c58ec2f.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./evtd-b614532e.js";import"./@css-render-7124a1a5.js";import"./vooks-6d99783e.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";import"./paopao-video-player-2fe58954.js";import"./@babel-725317a4.js";import"./toggle-selection-93f4ad84.js";const us={class:"reply-item"},cs={class:"header-wrap"},rs={class:"username"},_s={class:"reply-name"},ps={class:"timestamp"},ds={class:"base-wrap"},ms={class:"content"},vs={class:"reply-switch"},hs={class:"time-item"},fs={class:"actions"},gs={class:"upvote-count"},ys=["onClick"],ks={class:"upvote-count"},ws={key:2,class:"action-item"},bs=["onClick"],$s=oe({__name:"reply-item",props:{tweetId:{},reply:{}},emits:["focusReply","reload"],setup(E,{emit:q}){const l=E,m=ce(),v=r(l.reply.is_thumbs_up==se.YES),g=r(l.reply.is_thumbs_down==se.YES),$=r(l.reply.thumbs_up_count),D=()=>{Qe({tweet_id:l.tweetId,comment_id:l.reply.comment_id,reply_id:l.reply.id}).then(y=>{v.value=!v.value,v.value?($.value++,g.value=!1):$.value--}).catch(y=>{console.log(y)})},i=()=>{Xe({tweet_id:l.tweetId,comment_id:l.reply.comment_id,reply_id:l.reply.id}).then(y=>{g.value=!g.value,g.value&&v.value&&($.value--,v.value=!1)}).catch(y=>{console.log(y)})},S=()=>{q("focusReply",l.reply)},L=()=>{Ze({id:l.reply.id}).then(y=>{window.$message.success("删除成功"),setTimeout(()=>{q("reload")},50)}).catch(y=>{console.log(y)})};return(y,A)=>{const M=ke("router-link"),U=J,p=_e,z=De,w=Ot;return o(),_("div",us,[d("div",cs,[d("div",rs,[t(M,{class:"user-link",to:{name:"user",query:{s:l.reply.user.username}}},{default:n(()=>[T(R(l.reply.user.username),1)]),_:1},8,["to"]),d("span",_s,R(l.reply.at_user_id>0?"回复":":"),1),l.reply.at_user_id>0?(o(),x(M,{key:0,class:"user-link",to:{name:"user",query:{s:l.reply.at_user.username}}},{default:n(()=>[T(R(l.reply.at_user.username),1)]),_:1},8,["to"])):u("",!0)]),d("div",ps,[T(R(l.reply.ip_loc)+" ",1),a(m).state.userInfo.is_admin||a(m).state.userInfo.id===l.reply.user.id?(o(),x(z,{key:0,"negative-text":"取消","positive-text":"确认",onPositiveClick:L},{trigger:n(()=>[t(p,{quaternary:"",circle:"",size:"tiny",class:"del-btn"},{icon:n(()=>[t(U,null,{default:n(()=>[t(a(Oe))]),_:1})]),_:1})]),default:n(()=>[T(" 是否删除这条回复? ")]),_:1})):u("",!0)])]),d("div",ds,[d("div",ms,[t(w,{"expand-trigger":"click","line-clamp":"5",tooltip:!1},{default:n(()=>[T(R(l.reply.content),1)]),_:1})]),d("div",vs,[d("span",hs,R(a(he)(l.reply.created_on)),1),d("div",fs,[a(m).state.userLogined?u("",!0):(o(),_("div",{key:0,class:"action-item",onClick:A[0]||(A[0]=Y(()=>{},["stop"]))},[t(U,{size:"medium"},{default:n(()=>[t(a(fe))]),_:1}),d("span",gs,R($.value),1)])),a(m).state.userLogined?(o(),_("div",{key:1,class:"action-item hover",onClick:Y(D,["stop"])},[t(U,{size:"medium"},{default:n(()=>[v.value?u("",!0):(o(),x(a(fe),{key:0})),v.value?(o(),x(a(Le),{key:1,class:"show"})):u("",!0)]),_:1}),d("span",ks,R($.value>0?$.value:"赞"),1)],8,ys)):u("",!0),a(m).state.userLogined?u("",!0):(o(),_("div",ws,[t(U,{size:"medium"},{default:n(()=>[t(a(ge))]),_:1})])),a(m).state.userLogined?(o(),_("div",{key:3,class:"action-item hover",onClick:Y(i,["stop"])},[t(U,{size:"medium"},{default:n(()=>[g.value?u("",!0):(o(),x(a(ge),{key:0})),g.value?(o(),x(a(Ae),{key:1,class:"show"})):u("",!0)]),_:1})],8,bs)):u("",!0),a(m).state.userLogined?(o(),_("span",{key:4,class:"show opacity-item reply-btn",onClick:S}," 回复 ")):u("",!0)])])])])}}});const Cs=re($s,[["__scopeId","data-v-eccdbbd8"]]),xs={class:"reply-compose-wrap"},Is={class:"reply-switch"},Ps={class:"time-item"},Ts={class:"actions"},Us={key:0,class:"action-item"},zs={class:"upvote-count"},Rs=["onClick"],Ss={class:"upvote-count"},Os={key:2,class:"action-item"},Ls=["onClick"],As={key:0,class:"reply-input-wrap"},Ds=oe({__name:"compose-reply",props:{comment:{},atUserid:{default:0},atUsername:{default:""}},emits:["reload","reset"],setup(E,{expose:q,emit:l}){const m=E,v=ce(),g=r(),$=r(!1),D=r(""),i=r(!1),S=+"300",L=r(m.comment.is_thumbs_up==se.YES),y=r(m.comment.is_thumbs_down==se.YES),A=r(m.comment.thumbs_up_count),M=()=>{et({tweet_id:m.comment.post_id,comment_id:m.comment.id}).then(w=>{L.value=!L.value,L.value?(A.value++,y.value=!1):A.value--}).catch(w=>{console.log(w)})},U=()=>{tt({tweet_id:m.comment.post_id,comment_id:m.comment.id}).then(w=>{y.value=!y.value,y.value&&L.value&&(A.value--,L.value=!1)}).catch(w=>{console.log(w)})},p=w=>{$.value=w,w?setTimeout(()=>{var O;(O=g.value)==null||O.focus()},10):(i.value=!1,D.value="",l("reset"))},z=()=>{i.value=!0,st({comment_id:m.comment.id,at_user_id:m.atUserid,content:D.value}).then(w=>{p(!1),window.$message.success("评论成功"),l("reload")}).catch(w=>{i.value=!1})};return q({switchReply:p}),(w,O)=>{const N=J,s=Lt,h=_e,F=At;return o(),_("div",xs,[d("div",Is,[d("span",Ps,R(a(he)(w.comment.created_on)),1),d("div",Ts,[a(v).state.userLogined?u("",!0):(o(),_("div",Us,[t(N,{size:"medium"},{default:n(()=>[t(a(fe))]),_:1}),d("span",zs,R(A.value),1)])),a(v).state.userLogined?(o(),_("div",{key:1,class:"action-item hover",onClick:Y(M,["stop"])},[t(N,{size:"medium"},{default:n(()=>[L.value?u("",!0):(o(),x(a(fe),{key:0})),L.value?(o(),x(a(Le),{key:1,class:"show"})):u("",!0)]),_:1}),d("span",Ss,R(A.value>0?A.value:"赞"),1)],8,Rs)):u("",!0),a(v).state.userLogined?u("",!0):(o(),_("div",Os,[t(N,{size:"medium"},{default:n(()=>[t(a(ge))]),_:1})])),a(v).state.userLogined?(o(),_("div",{key:3,class:"action-item hover",onClick:Y(U,["stop"])},[t(N,{size:"medium"},{default:n(()=>[y.value?u("",!0):(o(),x(a(ge),{key:0})),y.value?(o(),x(a(Ae),{key:1,class:"show"})):u("",!0)]),_:1})],8,Ls)):u("",!0),a(v).state.userLogined&&!$.value?(o(),_("span",{key:4,class:"show reply-btn",onClick:O[0]||(O[0]=B=>p(!0))}," 回复 ")):u("",!0),a(v).state.userLogined&&$.value?(o(),_("span",{key:5,class:"hide reply-btn",onClick:O[1]||(O[1]=B=>p(!1))}," 取消 ")):u("",!0)])]),$.value?(o(),_("div",As,[t(F,null,{default:n(()=>[t(s,{ref_key:"inputInstRef",ref:g,size:"small",placeholder:m.atUsername?"@"+m.atUsername:"请输入回复内容..",maxlength:a(S),value:D.value,"onUpdate:value":O[2]||(O[2]=B=>D.value=B),"show-count":"",clearable:""},null,8,["placeholder","maxlength","value"]),t(h,{type:"primary",size:"small",ghost:"",loading:i.value,onClick:z},{default:n(()=>[T(" 回复 ")]),_:1},8,["loading"])]),_:1})])):u("",!0)])}}});const Ms=re(Ds,[["__scopeId","data-v-f9af7a93"]]),Es={class:"comment-item"},Ns={class:"nickname-wrap"},qs={class:"username-wrap"},Bs={class:"opt-wrap"},Hs={class:"timestamp"},Fs=["innerHTML"],js={class:"reply-wrap"},Vs=oe({__name:"comment-item",props:{comment:{},postUserId:{}},emits:["reload"],setup(E,{emit:q}){const l=E,m=ce(),v=Be(),g=r(0),$=r(""),D=r(),i=ue(()=>{let p=Object.assign({texts:[],imgs:[]},l.comment);return p.contents.map(z=>{(+z.type==1||+z.type==2)&&p.texts.push(z),+z.type==3&&p.imgs.push(z)}),p}),S=(p,z)=>{let w=p.target;if(w.dataset.detail){const O=w.dataset.detail.split(":");O.length===2&&(m.commit("refresh"),O[0]==="tag"?window.$message.warning("评论内的无效话题"):v.push({name:"user",query:{s:O[1]}}))}},L=p=>{var z,w;g.value=p.user_id,$.value=((z=p.user)==null?void 0:z.username)||"",(w=D.value)==null||w.switchReply(!0)},y=()=>{q("reload")},A=()=>{g.value=0,$.value=""},M=()=>{ot({id:i.value.id}).then(p=>{window.$message.success("删除成功"),setTimeout(()=>{y()},50)}).catch(p=>{})},U=()=>{nt({id:i.value.id}).then(p=>{i.value.is_essence=p.highlight_status,window.$message.success("操作成功"),setTimeout(()=>{y()},50)}).catch(p=>{})};return(p,z)=>{const w=we,O=ke("router-link"),N=Me,s=J,h=_e,F=De,B=qe,G=Ms,W=Cs,Q=Ee;return o(),_("div",Es,[t(Q,{"content-indented":""},Ke({avatar:n(()=>[t(w,{round:"",size:30,src:i.value.user.avatar},null,8,["src"])]),header:n(()=>[d("span",Ns,[t(O,{onClick:z[0]||(z[0]=Y(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:i.value.user.username}}},{default:n(()=>[T(R(i.value.user.nickname),1)]),_:1},8,["to"])]),d("span",qs," @"+R(i.value.user.username),1),i.value.is_essence==a(se).YES?(o(),x(N,{key:0,class:"top-tag",type:"warning",size:"small",round:""},{default:n(()=>[T(" 精选 ")]),_:1})):u("",!0)]),"header-extra":n(()=>[d("div",Bs,[d("span",Hs,R(i.value.ip_loc),1),a(m).state.userInfo.id===p.postUserId?(o(),x(F,{key:0,"negative-text":"取消","positive-text":"确认",onPositiveClick:U},{trigger:n(()=>[t(h,{quaternary:"",circle:"",size:"tiny",class:"action-btn"},{icon:n(()=>[i.value.is_essence==a(se).NO?(o(),x(s,{key:0},{default:n(()=>[t(a(gt))]),_:1})):(o(),x(s,{key:1},{default:n(()=>[t(a(yt))]),_:1}))]),_:1})]),default:n(()=>[T(" "+R(i.value.is_essence==a(se).NO?"是否精选这条评论":"是否取消精选"),1)]),_:1})):u("",!0),a(m).state.userInfo.is_admin||a(m).state.userInfo.id===i.value.user.id?(o(),x(F,{key:1,"negative-text":"取消","positive-text":"确认",onPositiveClick:M},{trigger:n(()=>[t(h,{quaternary:"",circle:"",size:"tiny",class:"action-btn"},{icon:n(()=>[t(s,null,{default:n(()=>[t(a(Oe))]),_:1})]),_:1})]),default:n(()=>[T(" 是否删除这条评论? ")]),_:1})):u("",!0)])]),footer:n(()=>[i.value.imgs.length>0?(o(),x(B,{key:0,imgs:i.value.imgs},null,8,["imgs"])):u("",!0),t(G,{ref_key:"replyComposeRef",ref:D,comment:i.value,"at-userid":g.value,"at-username":$.value,onReload:y,onReset:A},null,8,["comment","at-userid","at-username"]),d("div",js,[(o(!0),_(me,null,ve(i.value.replies,b=>(o(),x(W,{key:b.id,reply:b,"tweet-id":i.value.post_id,onFocusReply:L,onReload:y},null,8,["reply","tweet-id"]))),128))])]),_:2},[i.value.texts.length>0?{name:"description",fn:n(()=>[(o(!0),_(me,null,ve(i.value.texts,b=>(o(),_("span",{key:b.id,class:"comment-text",onClick:z[1]||(z[1]=Y(I=>S(I,i.value.id),["stop"])),innerHTML:a(be)(b.content).content},null,8,Fs))),128))]),key:"0"}:void 0]),1024)])}}});const Ys=re(Vs,[["__scopeId","data-v-e1f04c6b"]]),Ws=E=>(ze("data-v-d9073453"),E=E(),Re(),E),Js={key:0,class:"compose-wrap"},Ks={class:"compose-line"},Gs={class:"compose-user"},Qs={class:"compose-line compose-options"},Xs={class:"attachment"},Zs={class:"submit-wrap"},eo={class:"attachment-list-wrap"},to={key:1,class:"compose-wrap"},so=Ws(()=>d("div",{class:"login-wrap"},[d("span",{class:"login-banner"}," 登录后,精彩更多")],-1)),oo={key:0,class:"login-only-wrap"},no={key:1,class:"login-wrap"},ao=oe({__name:"compose-comment",props:{lock:{default:0},postId:{default:0}},emits:["post-success"],setup(E,{emit:q}){const l=E,m=ce(),v=r([]),g=r(!1),$=r(!1),D=r(!1),i=r(""),S=r(),L=r("public/image"),y=r([]),A=r([]),M=r("true".toLowerCase()==="true"),U=+"300",p="/v1/attachment",z=ue(()=>"Bearer "+localStorage.getItem("PAOPAO_TOKEN")),w=os.debounce(f=>{at({k:f}).then(k=>{let C=[];k.suggest.map(P=>{C.push({label:P,value:P})}),v.value=C,$.value=!1}).catch(k=>{$.value=!1})},200),O=(f,k)=>{$.value||($.value=!0,k==="@"&&w(f))},N=f=>{f.length>U?i.value=f.substring(0,U):i.value=f},s=f=>{L.value=f},h=f=>{for(let H=0;H30&&(f[H].name=C.substring(0,18)+"..."+C.substring(C.length-9)+"."+P)}y.value=f},F=async f=>{var k,C;return L.value==="public/image"&&!["image/png","image/jpg","image/jpeg","image/gif"].includes((k=f.file.file)==null?void 0:k.type)?(window.$message.warning("图片仅允许 png/jpg/gif 格式"),!1):L.value==="image"&&((C=f.file.file)==null?void 0:C.size)>10485760?(window.$message.warning("图片大小不能超过10MB"),!1):!0},B=({file:f,event:k})=>{var C;try{let P=JSON.parse((C=k.target)==null?void 0:C.response);P.code===0&&L.value==="public/image"&&A.value.push({id:f.id,content:P.data.content})}catch{window.$message.error("上传失败")}},G=({file:f,event:k})=>{var C;try{let P=JSON.parse((C=k.target)==null?void 0:C.response);if(P.code!==0){let H=P.msg||"上传失败";P.details&&P.details.length>0&&P.details.map(e=>{H+=":"+e}),window.$message.error(H)}}catch{window.$message.error("上传失败")}},W=({file:f})=>{let k=A.value.findIndex(C=>C.id===f.id);k>-1&&A.value.splice(k,1)},Q=()=>{g.value=!0},b=()=>{var f;g.value=!1,(f=S.value)==null||f.clear(),y.value=[],i.value="",A.value=[]},I=()=>{if(i.value.trim().length===0){window.$message.warning("请输入内容哦");return}let{users:f}=be(i.value);const k=[];let C=100;k.push({content:i.value,type:2,sort:C}),A.value.map(P=>{C++,k.push({content:P.content,type:3,sort:C})}),D.value=!0,lt({contents:k,post_id:l.postId,users:Array.from(new Set(f))}).then(P=>{window.$message.success("发布成功"),D.value=!1,q("post-success"),b()}).catch(P=>{D.value=!1})},X=f=>{m.commit("triggerAuth",!0),m.commit("triggerAuthKey",f)};return(f,k)=>{const C=we,P=Dt,H=J,e=_e,c=Mt,j=Et,ne=Nt,Z=qt,ae=Bt;return o(),_("div",null,[a(m).state.userInfo.id>0?(o(),_("div",Js,[d("div",Ks,[d("div",Gs,[t(C,{round:"",size:30,src:a(m).state.userInfo.avatar},null,8,["src"])]),t(P,{type:"textarea",size:"large",autosize:"",bordered:!1,options:v.value,prefix:["@"],loading:$.value,value:i.value,disabled:l.lock===1,"onUpdate:value":N,onSearch:O,onFocus:Q,placeholder:l.lock===1?"泡泡已被锁定,回复功能已关闭":"快来评论两句吧..."},null,8,["options","loading","value","disabled","placeholder"])]),g.value?(o(),x(ae,{key:0,ref_key:"uploadRef",ref:S,abstract:"","list-type":"image",multiple:!0,max:9,action:p,headers:{Authorization:z.value},data:{type:L.value},"file-list":y.value,onBeforeUpload:F,onFinish:B,onError:G,onRemove:W,"onUpdate:fileList":h},{default:n(()=>[d("div",Qs,[d("div",Xs,[t(c,{abstract:""},{default:n(({handleClick:K})=>[t(e,{disabled:y.value.length>0&&L.value==="public/video"||y.value.length===9,onClick:()=>{s("public/image"),K()},quaternary:"",circle:"",type:"primary"},{icon:n(()=>[t(H,{size:"20",color:"var(--primary-color)"},{default:n(()=>[t(a(kt))]),_:1})]),_:2},1032,["disabled","onClick"])]),_:1}),t(ne,{trigger:"hover",placement:"bottom"},{trigger:n(()=>[t(j,{class:"text-statistic",type:"circle","show-indicator":!1,status:"success","stroke-width":10,percentage:i.value.length/a(U)*100},null,8,["percentage"])]),default:n(()=>[T(" "+R(i.value.length)+" / "+R(a(U)),1)]),_:1})]),d("div",Zs,[t(e,{quaternary:"",round:"",type:"tertiary",class:"cancel-btn",size:"small",onClick:b},{default:n(()=>[T(" 取消 ")]),_:1}),t(e,{loading:D.value,onClick:I,type:"primary",secondary:"",size:"small",round:""},{default:n(()=>[T(" 发布 ")]),_:1},8,["loading"])])]),d("div",eo,[t(Z)])]),_:1},8,["headers","data","file-list"])):u("",!0)])):(o(),_("div",to,[so,M.value?u("",!0):(o(),_("div",oo,[t(e,{strong:"",secondary:"",round:"",type:"primary",onClick:k[0]||(k[0]=K=>X("signin"))},{default:n(()=>[T(" 登录 ")]),_:1})])),M.value?(o(),_("div",no,[t(e,{strong:"",secondary:"",round:"",type:"primary",onClick:k[1]||(k[1]=K=>X("signin"))},{default:n(()=>[T(" 登录 ")]),_:1}),t(e,{strong:"",secondary:"",round:"",type:"info",onClick:k[2]||(k[2]=K=>X("signup"))},{default:n(()=>[T(" 注册 ")]),_:1})])):u("",!0)]))])}}});const lo=re(ao,[["__scopeId","data-v-d9073453"]]),io={class:"username-wrap"},uo={class:"options"},co={key:0},ro=["innerHTML"],_o={class:"timestamp"},po={key:0},mo={key:1},vo={class:"opts-wrap"},ho=["onClick"],fo={class:"opt-item"},go=["onClick"],yo=["onClick"],ko=oe({__name:"post-detail",props:{post:{}},emits:["reload"],setup(E,{emit:q}){const l=E,m="true".toLowerCase()==="true",v=ce(),g=Be(),$=Ht(),D=r(!1),i=r(!1),S=r(!1),L=r(!1),y=r(!1),A=r(!1),M=r(!1),U=r(!1),p=r(ee.PUBLIC),z=r(!1),w=r({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),O=e=>{w.value=e,z.value=!0},N=()=>{z.value=!1},s=ue({get:()=>{let e=Object.assign({texts:[],imgs:[],videos:[],links:[],attachments:[],charge_attachments:[]},l.post);return e.contents.map(c=>{(+c.type==1||+c.type==2)&&e.texts.push(c),+c.type==3&&e.imgs.push(c),+c.type==4&&e.videos.push(c),+c.type==6&&e.links.push(c),+c.type==7&&e.attachments.push(c),+c.type==8&&e.charge_attachments.push(c)}),e},set:e=>{l.post.upvote_count=e.upvote_count,l.post.comment_count=e.comment_count,l.post.collection_count=e.collection_count,l.post.is_essence=e.is_essence}}),h=e=>()=>xe(J,null,{default:()=>xe(e)}),F=ue(()=>{var j;let e=[];if(!v.state.userInfo.is_admin&&v.state.userInfo.id!=l.post.user.id)return e.push({label:"私信 @"+l.post.user.username,key:"whisper",icon:h(Tt)}),l.post.user.is_following?e.push({label:"取消关注 @"+l.post.user.username,key:"unfollow",icon:h(Ut)}):e.push({label:"关注 @"+l.post.user.username,key:"follow",icon:h(ie)}),e;e.push({label:"删除",key:"delete",icon:h(zt)}),s.value.is_lock===0?e.push({label:"锁定",key:"lock",icon:h(Rt)}):e.push({label:"解锁",key:"unlock",icon:h(St)}),v.state.userInfo.is_admin&&(s.value.is_top===0?e.push({label:"置顶",key:"stick",icon:h(Pe)}):e.push({label:"取消置顶",key:"unstick",icon:h(Pe)})),s.value.is_essence===0?e.push({label:"设为亮点",key:"highlight",icon:h(Te)}):e.push({label:"取消亮点",key:"unhighlight",icon:h(Te)});let c;return s.value.visibility===ee.PUBLIC?c={label:"公开",key:"vpublic",icon:h(pe),children:[{label:"私密",key:"vprivate",icon:h(de)},{label:"关注可见",key:"vfollowing",icon:h(ie)}]}:s.value.visibility===ee.PRIVATE?c={label:"私密",key:"vprivate",icon:h(de),children:[{label:"公开",key:"vpublic",icon:h(pe)},{label:"关注可见",key:"vfollowing",icon:h(ie)}]}:m&&s.value.visibility===ee.FRIEND?c={label:"好友可见",key:"vfriend",icon:h(Ue),children:[{label:"公开",key:"vpublic",icon:h(pe)},{label:"私密",key:"vprivate",icon:h(de)},{label:"关注可见",key:"vfollowing",icon:h(ie)}]}:c={label:"关注可见",key:"vfollowing",icon:h(ie),children:[{label:"公开",key:"vpublic",icon:h(pe)},{label:"私密",key:"vprivate",icon:h(de)}]},m&&s.value.visibility!==ee.FRIEND&&((j=c.children)==null||j.push({label:"好友可见",key:"vfriend",icon:h(Ue)})),e.push(c),e}),B=e=>{$.success({title:"提示",content:"确定"+(e.user.is_following?"取消关注 @":"关注 @")+l.post.user.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{e.user.is_following?ht({user_id:e.user.id}).then(c=>{window.$message.success("操作成功"),e.user.is_following=!1}).catch(c=>{}):ft({user_id:e.user.id}).then(c=>{window.$message.success("操作成功"),e.user.is_following=!0}).catch(c=>{})}})},G=e=>{g.push({name:"post",query:{id:e}})},W=(e,c)=>{if(e.target.dataset.detail){const j=e.target.dataset.detail.split(":");if(j.length===2){v.commit("refresh"),j[0]==="tag"?g.push({name:"home",query:{q:j[1],t:"tag"}}):g.push({name:"user",query:{s:j[1]}});return}}G(c)},Q=e=>{switch(e){case"whisper":O(l.post.user);break;case"follow":case"unfollow":B(l.post);break;case"delete":S.value=!0;break;case"lock":case"unlock":L.value=!0;break;case"stick":case"unstick":y.value=!0;break;case"highlight":case"unhighlight":A.value=!0;break;case"vpublic":p.value=0,M.value=!0;break;case"vprivate":p.value=1,M.value=!0;break;case"vfriend":p.value=2,M.value=!0;break;case"vfollowing":p.value=3,M.value=!0;break}},b=()=>{ct({id:s.value.id}).then(e=>{window.$message.success("删除成功"),g.replace("/"),setTimeout(()=>{v.commit("refresh")},50)}).catch(e=>{U.value=!1})},I=()=>{rt({id:s.value.id}).then(e=>{q("reload",s.value.id),e.lock_status===1?window.$message.success("锁定成功"):window.$message.success("解锁成功")}).catch(e=>{U.value=!1})},X=()=>{_t({id:s.value.id}).then(e=>{q("reload",s.value.id),e.top_status===1?window.$message.success("置顶成功"):window.$message.success("取消置顶成功")}).catch(e=>{U.value=!1})},f=()=>{pt({id:s.value.id}).then(e=>{s.value={...s.value,is_essence:e.highlight_status},e.highlight_status===1?window.$message.success("设为亮点成功"):window.$message.success("取消亮点成功")}).catch(e=>{U.value=!1})},k=()=>{dt({id:s.value.id,visibility:p.value}).then(e=>{q("reload",s.value.id),window.$message.success("修改可见性成功")}).catch(e=>{U.value=!1})},C=()=>{mt({id:s.value.id}).then(e=>{D.value=e.status,e.status?s.value={...s.value,upvote_count:s.value.upvote_count+1}:s.value={...s.value,upvote_count:s.value.upvote_count-1}}).catch(e=>{console.log(e)})},P=()=>{vt({id:s.value.id}).then(e=>{i.value=e.status,e.status?s.value={...s.value,collection_count:s.value.collection_count+1}:s.value={...s.value,collection_count:s.value.collection_count-1}}).catch(e=>{console.log(e)})},H=()=>{as(`${window.location.origin}/#/post?id=${s.value.id}&share=copy_link&t=${new Date().getTime()}`),window.$message.success("链接已复制到剪贴板")};return Se(()=>{v.state.userInfo.id>0&&(it({id:s.value.id}).then(e=>{D.value=e.status}).catch(e=>{console.log(e)}),ut({id:s.value.id}).then(e=>{i.value=e.status}).catch(e=>{console.log(e)}))}),(e,c)=>{const j=we,ne=ke("router-link"),Z=Me,ae=_e,K=Ft,le=jt,He=ns,$e=Xt,Fe=qe,je=Zt,Ve=es,Ce=Vt,Ye=Ne,We=Ee;return o(),_("div",{class:"detail-item",onClick:c[7]||(c[7]=V=>G(s.value.id))},[t(We,null,{avatar:n(()=>[t(j,{round:"",size:30,src:s.value.user.avatar},null,8,["src"])]),header:n(()=>[t(ne,{onClick:c[0]||(c[0]=Y(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:s.value.user.username}}},{default:n(()=>[T(R(s.value.user.nickname),1)]),_:1},8,["to"]),d("span",io," @"+R(s.value.user.username),1),s.value.is_top?(o(),x(Z,{key:0,class:"top-tag",type:"warning",size:"small",round:""},{default:n(()=>[T(" 置顶 ")]),_:1})):u("",!0),s.value.visibility==a(ee).PRIVATE?(o(),x(Z,{key:1,class:"top-tag",type:"error",size:"small",round:""},{default:n(()=>[T(" 私密 ")]),_:1})):u("",!0),s.value.visibility==a(ee).FRIEND?(o(),x(Z,{key:2,class:"top-tag",type:"info",size:"small",round:""},{default:n(()=>[T(" 好友可见 ")]),_:1})):u("",!0)]),"header-extra":n(()=>[d("div",uo,[t(K,{placement:"bottom-end",trigger:"click",size:"small",options:F.value,onSelect:Q},{default:n(()=>[t(ae,{quaternary:"",circle:""},{icon:n(()=>[t(a(J),null,{default:n(()=>[t(a(wt))]),_:1})]),_:1})]),_:1},8,["options"])]),t(le,{show:S.value,"onUpdate:show":c[1]||(c[1]=V=>S.value=V),"mask-closable":!1,preset:"dialog",title:"提示",content:"确定删除该泡泡动态吗?","positive-text":"确认","negative-text":"取消",onPositiveClick:b},null,8,["show"]),t(le,{show:L.value,"onUpdate:show":c[2]||(c[2]=V=>L.value=V),"mask-closable":!1,preset:"dialog",title:"提示",content:"确定"+(s.value.is_lock?"解锁":"锁定")+"该泡泡动态吗?","positive-text":"确认","negative-text":"取消",onPositiveClick:I},null,8,["show","content"]),t(le,{show:y.value,"onUpdate:show":c[3]||(c[3]=V=>y.value=V),"mask-closable":!1,preset:"dialog",title:"提示",content:"确定"+(s.value.is_top?"取消置顶":"置顶")+"该泡泡动态吗?","positive-text":"确认","negative-text":"取消",onPositiveClick:X},null,8,["show","content"]),t(le,{show:A.value,"onUpdate:show":c[4]||(c[4]=V=>A.value=V),"mask-closable":!1,preset:"dialog",title:"提示",content:"确定将该泡泡动态"+(s.value.is_essence?"取消亮点":"设为亮点")+"吗?","positive-text":"确认","negative-text":"取消",onPositiveClick:f},null,8,["show","content"]),t(le,{show:M.value,"onUpdate:show":c[5]||(c[5]=V=>M.value=V),"mask-closable":!1,preset:"dialog",title:"提示",content:"确定将该泡泡动态可见度修改为"+(p.value==0?"公开":p.value==1?"私密":p.value==2?"好友可见":"关注可见")+"吗?","positive-text":"确认","negative-text":"取消",onPositiveClick:k},null,8,["show","content"]),t(He,{show:z.value,user:w.value,onSuccess:N},null,8,["show","user"])]),footer:n(()=>[t($e,{attachments:s.value.attachments},null,8,["attachments"]),t($e,{attachments:s.value.charge_attachments,price:s.value.attachment_price},null,8,["attachments","price"]),t(Fe,{imgs:s.value.imgs},null,8,["imgs"]),t(je,{videos:s.value.videos,full:!0},null,8,["videos"]),t(Ve,{links:s.value.links},null,8,["links"]),d("div",_o,[T(" 发布于 "+R(a(he)(s.value.created_on))+" ",1),s.value.ip_loc?(o(),_("span",po,[t(Ce,{vertical:""}),T(" "+R(s.value.ip_loc),1)])):u("",!0),!a(v).state.collapsedLeft&&s.value.created_on!=s.value.latest_replied_on?(o(),_("span",mo,[t(Ce,{vertical:""}),T(" 最后回复 "+R(a(he)(s.value.latest_replied_on)),1)])):u("",!0)])]),action:n(()=>[d("div",vo,[t(Ye,{justify:"space-between"},{default:n(()=>[d("div",{class:"opt-item hover",onClick:Y(C,["stop"])},[t(a(J),{size:"20",class:"opt-item-icon"},{default:n(()=>[D.value?u("",!0):(o(),x(a(bt),{key:0})),D.value?(o(),x(a($t),{key:1,color:"red"})):u("",!0)]),_:1}),T(" "+R(s.value.upvote_count),1)],8,ho),d("div",fo,[t(a(J),{size:"20",class:"opt-item-icon"},{default:n(()=>[t(a(Ct))]),_:1}),T(" "+R(s.value.comment_count),1)]),d("div",{class:"opt-item hover",onClick:Y(P,["stop"])},[t(a(J),{size:"20",class:"opt-item-icon"},{default:n(()=>[i.value?u("",!0):(o(),x(a(xt),{key:0})),i.value?(o(),x(a(It),{key:1,color:"#ff7600"})):u("",!0)]),_:1}),T(" "+R(s.value.collection_count),1)],8,go),d("div",{class:"opt-item hover",onClick:Y(H,["stop"])},[t(a(J),{size:"20",class:"opt-item-icon"},{default:n(()=>[t(a(Pt))]),_:1}),T(" "+R(s.value.share_count),1)],8,yo)]),_:1})])]),default:n(()=>[s.value.texts.length>0?(o(),_("div",co,[(o(!0),_(me,null,ve(s.value.texts,V=>(o(),_("span",{key:V.id,class:"post-text",onClick:c[6]||(c[6]=Y(Je=>W(Je,s.value.id),["stop"])),innerHTML:a(be)(V.content).content},null,8,ro))),128))])):u("",!0)]),_:1})])}}});const wo=E=>(ze("data-v-edac44ef"),E=E(),Re(),E),bo={key:0,class:"detail-wrap"},$o={key:1,class:"empty-wrap"},Co={key:0,class:"comment-opts-wrap"},xo=wo(()=>d("span",{class:"comment-title-item"},"评论",-1)),Io={key:2},Po={key:0,class:"skeleton-wrap"},To={key:1},Uo={key:0,class:"empty-wrap"},zo={key:0,class:"load-more-spinner"},Ro={key:1,class:"load-more-spinner"},So={key:2,class:"load-more-spinner"},Oo={key:3,class:"load-more-spinner"},Lo={key:4,class:"load-more-spinner"},Ao={key:5,class:"load-more-spinner"},te=20,Do=oe({__name:"Post",setup(E){const q=ts(),l=r({}),m=r(!1),v=r(!1),g=r([]),$=ue(()=>+q.query.id),D=r("default"),i=r(!0);let S={loading(){},loaded(){},complete(){},error(){}};const L=b=>{D.value=b,b==="default"&&(i.value=!0),W(S)},y=b=>{Ie({id:b}).then(I=>{l.value=I}).catch(I=>{})},A=()=>{l.value={id:0},m.value=!0,Ie({id:$.value}).then(b=>{m.value=!1,l.value=b,W(S)}).catch(b=>{m.value=!1})};let M=1;const U=r(!1),p=r([]),z=b=>{U.value||ye({id:l.value.id,style:"default",page:M,page_size:te}).then(I=>{b!==null&&(S=b),I.list.length0&&(M===1?p.value=I.list:p.value.push(...I.list),g.value=p.value),S.loaded(),v.value=!1}).catch(I=>{v.value=!1,S.error()})};let w=1,O=r(!1);const N=r([]),s=b=>{O.value||ye({id:l.value.id,style:"hots",page:w,page_size:te}).then(I=>{b!==null&&(S=b),I.list.length0&&(w===1?N.value=I.list:N.value.push(...I.list),g.value=N.value),S.loaded(),v.value=!1}).catch(I=>{v.value=!1,S.error()})};let h=1,F=r(!1);const B=r([]),G=b=>{F.value||ye({id:l.value.id,style:"newest",page:h,page_size:te}).then(I=>{b!==null&&(S=b),I.list.length0&&(h===1?B.value=I.list:B.value.push(...I.list),g.value=B.value),S.loaded(),v.value=!1}).catch(I=>{v.value=!1,S.error()})},W=b=>{$.value<1||(g.value.length===0&&(v.value=!0),D.value==="default"?(g.value=p.value,z(b)):D.value==="hots"?(g.value=N.value,s(b)):(g.value=B.value,G(b)),v.value=!1)},Q=()=>{M=1,U.value=!1,p.value=[],w=1,O.value=!1,N.value=[],h=1,F.value=!1,B.value=[],W(S)};return Se(()=>{A()}),Ge($,()=>{$.value>0&&q.name==="post"&&A()}),(b,I)=>{const X=ls,f=ko,k=Wt,C=Jt,P=Kt,H=Gt,e=Qt,c=lo,j=ss,ne=Ys,Z=Ne,ae=Yt;return o(),_("div",null,[t(X,{title:"泡泡详情",back:!0}),t(ae,{class:"main-content-wrap",bordered:""},{default:n(()=>[t(P,null,{default:n(()=>[t(C,{show:m.value},{default:n(()=>[l.value.id>1?(o(),_("div",bo,[t(f,{post:l.value,onReload:y},null,8,["post"])])):(o(),_("div",$o,[t(k,{size:"large",description:"暂无数据"})]))]),_:1},8,["show"])]),_:1}),l.value.id>0?(o(),_("div",Co,[t(e,{type:"bar","justify-content":"end",size:"small","tab-style":"margin-left: -24px;",animated:"","onUpdate:value":L},{prefix:n(()=>[xo]),default:n(()=>[t(H,{name:"default",tab:"推荐"}),t(H,{name:"hots",tab:"热门"}),t(H,{name:"newest",tab:"最新"})]),_:1})])):u("",!0),l.value.id>0?(o(),x(P,{key:1},{default:n(()=>[t(c,{lock:l.value.is_lock,"post-id":l.value.id,onPostSuccess:Q},null,8,["lock","post-id"])]),_:1})):u("",!0),l.value.id>0?(o(),_("div",Io,[v.value?(o(),_("div",Po,[t(j,{num:5})])):(o(),_("div",To,[g.value.length===0?(o(),_("div",Uo,[t(k,{size:"large",description:"暂无评论,快来抢沙发"})])):u("",!0),(o(!0),_(me,null,ve(g.value,K=>(o(),x(P,{key:K.id},{default:n(()=>[t(ne,{comment:K,postUserId:l.value.user_id,onReload:Q},null,8,["comment","postUserId"])]),_:2},1024))),128))]))])):u("",!0),g.value.length>=te?(o(),x(Z,{key:3,justify:"center"},{default:n(()=>[t(a(is),{class:"load-more",slots:{complete:"没有更多数据了",error:"加载出错"},onInfinite:W},{spinner:n(()=>[i.value&&U.value?(o(),_("span",zo)):u("",!0),!i.value&&a(O)?(o(),_("span",Ro)):u("",!0),!i.value&&a(F)?(o(),_("span",So)):u("",!0),i.value&&!U.value?(o(),_("span",Oo,"加载评论")):u("",!0),!i.value&&!a(O)?(o(),_("span",Lo,"加载评论")):u("",!0),!i.value&&!a(F)?(o(),_("span",Ao,"加载评论")):u("",!0)]),_:1})]),_:1})):u("",!0)]),_:1})])}}});const fn=re(Do,[["__scopeId","data-v-edac44ef"]]);export{fn as default}; diff --git a/web/dist/assets/Post-39447b75.css b/web/dist/assets/Post-DVMMdt_w.css similarity index 100% rename from web/dist/assets/Post-39447b75.css rename to web/dist/assets/Post-DVMMdt_w.css diff --git a/web/dist/assets/Post-qFQOJJiu.js b/web/dist/assets/Post-qFQOJJiu.js new file mode 100644 index 00000000..df8a31d5 --- /dev/null +++ b/web/dist/assets/Post-qFQOJJiu.js @@ -0,0 +1 @@ +import{d as ae,H as r,r as we,e as o,f as p,j as d,k as t,w as n,A as S,x as L,q as U,Z as i,bk as a,y as Y,c as ce,ar as Ge,F as ve,u as he,a0 as Re,a1 as Se,b as Oe,h as Ie,E as Qe}from"./@vue-CQsYufSu.js";import{u as re}from"./vuex-DNAxYlmG.js";import{i as fe,t as Ze,j as Xe,k as et,_ as pe,l as tt,m as st,n as ot,o as nt,p as at,g as lt,q as it,r as ut,s as ct,v as rt,w as pt,x as _t,y as dt,z as mt,A as vt,B as ht,u as ft,f as gt,C as Te,D as ke}from"./index-v3l9hw1O.js";import{Y as se,V as ee}from"./IEnum-B3rDUvtK.js";import{T as Le,e as ge,f as Ae,g as ye,h as De,i as yt,j as kt,I as wt,k as bt,l as $t,m as Ct,n as xt,o as It,p as Tt,q as Pt,r as Ut,s as zt,t as ue,u as Rt,v as St,w as Ot,x as Pe,F as Ue,E as de,y as me,z as ze}from"./@vicons-C3A8jsfr.js";import{j as K,e as _e,K as Me,I as Lt,b as At,L as Dt,o as be,M as Ee,O as Ne,v as Mt,w as Et,x as Nt,y as qt,z as Bt,B as Ht,F as Ft,P as jt,i as Vt,Q as Yt,a as qe,G as Wt,J as Jt,k as Kt,H as Gt,f as Qt,g as Zt}from"./naive-ui-DNcWoFGl.js";import{p as $e,_ as Be,a as Xt,b as es,c as ts}from"./content-BMjusBPS.js";import{u as He,b as ss}from"./vue-router-zwGLnBy5.js";import{_ as os}from"./post-skeleton-YfJeD-2o.js";import{l as ns}from"./lodash-YI8ZzHBK.js";import{_ as as}from"./whisper-DFhobfFF.js";import{c as ls}from"./copy-to-clipboard-CA7crPat.js";import{_ as is}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{W as us}from"./v3-infinite-loading-DK6TzcZc.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./evtd-CI_DDEu_.js";import"./@css-render-CQdyXCYJ.js";import"./vooks-BQzJqMzq.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";import"./paopao-video-player-DAi68TC5.js";import"./@babel-Cpj98o6Y.js";import"./toggle-selection-BHUZwh74.js";const cs={class:"reply-item"},rs={class:"header-wrap"},ps={class:"username"},_s={class:"reply-name"},ds={class:"timestamp"},ms={class:"base-wrap"},vs={class:"content"},hs={class:"reply-switch"},fs={class:"time-item"},gs={class:"actions"},ys={class:"upvote-count"},ks={class:"upvote-count"},ws={key:2,class:"action-item"},bs=ae({__name:"reply-item",props:{tweetId:{},reply:{}},emits:["focusReply","reload"],setup(E,{emit:V}){const u=E,_=re(),g=V,$=r(u.reply.is_thumbs_up==se.YES),O=r(u.reply.is_thumbs_down==se.YES),T=r(u.reply.thumbs_up_count),v=()=>{Ze({tweet_id:u.tweetId,comment_id:u.reply.comment_id,reply_id:u.reply.id}).then(f=>{$.value=!$.value,$.value?(T.value++,O.value=!1):T.value--}).catch(f=>{console.log(f)})},l=()=>{Xe({tweet_id:u.tweetId,comment_id:u.reply.comment_id,reply_id:u.reply.id}).then(f=>{O.value=!O.value,O.value&&$.value&&(T.value--,$.value=!1)}).catch(f=>{console.log(f)})},N=()=>{g("focusReply",u.reply)},D=()=>{et({id:u.reply.id}).then(f=>{window.$message.success("删除成功"),setTimeout(()=>{g("reload")},50)}).catch(f=>{console.log(f)})};return(f,x)=>{const M=we("router-link"),I=K,b=_e,P=Me,y=Lt;return o(),p("div",cs,[d("div",rs,[d("div",ps,[t(M,{class:"user-link",to:{name:"user",query:{s:u.reply.user.username}}},{default:n(()=>[S(L(u.reply.user.username),1)]),_:1},8,["to"]),d("span",_s,L(u.reply.at_user_id>0?"回复":":"),1),u.reply.at_user_id>0?(o(),U(M,{key:0,class:"user-link",to:{name:"user",query:{s:u.reply.at_user.username}}},{default:n(()=>[S(L(u.reply.at_user.username),1)]),_:1},8,["to"])):i("",!0)]),d("div",ds,[S(L(u.reply.ip_loc)+" ",1),a(_).state.userInfo.is_admin||a(_).state.userInfo.id===u.reply.user.id?(o(),U(P,{key:0,"negative-text":"取消","positive-text":"确认",onPositiveClick:D},{trigger:n(()=>[t(b,{quaternary:"",circle:"",size:"tiny",class:"del-btn"},{icon:n(()=>[t(I,null,{default:n(()=>[t(a(Le))]),_:1})]),_:1})]),default:n(()=>[S(" 是否删除这条回复? ")]),_:1})):i("",!0)])]),d("div",ms,[d("div",vs,[t(y,{"expand-trigger":"click","line-clamp":"5",tooltip:!1},{default:n(()=>[S(L(u.reply.content),1)]),_:1})]),d("div",hs,[d("span",fs,L(a(fe)(u.reply.created_on)),1),d("div",gs,[a(_).state.userLogined?i("",!0):(o(),p("div",{key:0,class:"action-item",onClick:x[0]||(x[0]=Y(()=>{},["stop"]))},[t(I,{size:"medium"},{default:n(()=>[t(a(ge))]),_:1}),d("span",ys,L(T.value),1)])),a(_).state.userLogined?(o(),p("div",{key:1,class:"action-item hover",onClick:Y(v,["stop"])},[t(I,{size:"medium"},{default:n(()=>[$.value?i("",!0):(o(),U(a(ge),{key:0})),$.value?(o(),U(a(Ae),{key:1,class:"show"})):i("",!0)]),_:1}),d("span",ks,L(T.value>0?T.value:"赞"),1)])):i("",!0),a(_).state.userLogined?i("",!0):(o(),p("div",ws,[t(I,{size:"medium"},{default:n(()=>[t(a(ye))]),_:1})])),a(_).state.userLogined?(o(),p("div",{key:3,class:"action-item hover",onClick:Y(l,["stop"])},[t(I,{size:"medium"},{default:n(()=>[O.value?i("",!0):(o(),U(a(ye),{key:0})),O.value?(o(),U(a(De),{key:1,class:"show"})):i("",!0)]),_:1})])):i("",!0),a(_).state.userLogined?(o(),p("span",{key:4,class:"show opacity-item reply-btn",onClick:N}," 回复 ")):i("",!0)])])])])}}}),$s=pe(bs,[["__scopeId","data-v-eccdbbd8"]]),Cs={class:"reply-compose-wrap"},xs={class:"reply-switch"},Is={class:"time-item"},Ts={class:"actions"},Ps={key:0,class:"action-item"},Us={class:"upvote-count"},zs={class:"upvote-count"},Rs={key:2,class:"action-item"},Ss={key:0,class:"reply-input-wrap"},Os=ae({__name:"compose-reply",props:{comment:{},atUserid:{default:0},atUsername:{default:""}},emits:["reload","reset"],setup(E,{expose:V,emit:u}){const _=E,g=re(),$=u,O=r(),T=r(!1),v=r(""),l=r(!1),N=300,D=r(_.comment.is_thumbs_up==se.YES),f=r(_.comment.is_thumbs_down==se.YES),x=r(_.comment.thumbs_up_count),M=()=>{tt({tweet_id:_.comment.post_id,comment_id:_.comment.id}).then(y=>{D.value=!D.value,D.value?(x.value++,f.value=!1):x.value--}).catch(y=>{console.log(y)})},I=()=>{st({tweet_id:_.comment.post_id,comment_id:_.comment.id}).then(y=>{f.value=!f.value,f.value&&D.value&&(x.value--,D.value=!1)}).catch(y=>{console.log(y)})},b=y=>{T.value=y,y?setTimeout(()=>{var A;(A=O.value)==null||A.focus()},10):(l.value=!1,v.value="",$("reset"))},P=()=>{l.value=!0,ot({comment_id:_.comment.id,at_user_id:_.atUserid,content:v.value}).then(y=>{b(!1),window.$message.success("评论成功"),$("reload")}).catch(y=>{l.value=!1})};return V({switchReply:b}),(y,A)=>{const q=K,s=At,m=_e,B=Dt;return o(),p("div",Cs,[d("div",xs,[d("span",Is,L(a(fe)(y.comment.created_on)),1),d("div",Ts,[a(g).state.userLogined?i("",!0):(o(),p("div",Ps,[t(q,{size:"medium"},{default:n(()=>[t(a(ge))]),_:1}),d("span",Us,L(x.value),1)])),a(g).state.userLogined?(o(),p("div",{key:1,class:"action-item hover",onClick:Y(M,["stop"])},[t(q,{size:"medium"},{default:n(()=>[D.value?i("",!0):(o(),U(a(ge),{key:0})),D.value?(o(),U(a(Ae),{key:1,class:"show"})):i("",!0)]),_:1}),d("span",zs,L(x.value>0?x.value:"赞"),1)])):i("",!0),a(g).state.userLogined?i("",!0):(o(),p("div",Rs,[t(q,{size:"medium"},{default:n(()=>[t(a(ye))]),_:1})])),a(g).state.userLogined?(o(),p("div",{key:3,class:"action-item hover",onClick:Y(I,["stop"])},[t(q,{size:"medium"},{default:n(()=>[f.value?i("",!0):(o(),U(a(ye),{key:0})),f.value?(o(),U(a(De),{key:1,class:"show"})):i("",!0)]),_:1})])):i("",!0),a(g).state.userLogined&&!T.value?(o(),p("span",{key:4,class:"show reply-btn",onClick:A[0]||(A[0]=W=>b(!0))}," 回复 ")):i("",!0),a(g).state.userLogined&&T.value?(o(),p("span",{key:5,class:"hide reply-btn",onClick:A[1]||(A[1]=W=>b(!1))}," 取消 ")):i("",!0)])]),T.value?(o(),p("div",Ss,[t(B,null,{default:n(()=>[t(s,{ref_key:"inputInstRef",ref:O,size:"small",placeholder:_.atUsername?"@"+_.atUsername:"请输入回复内容..",maxlength:a(N),value:v.value,"onUpdate:value":A[2]||(A[2]=W=>v.value=W),"show-count":"",clearable:""},null,8,["placeholder","maxlength","value"]),t(m,{type:"primary",size:"small",ghost:"",loading:l.value,onClick:P},{default:n(()=>[S(" 回复 ")]),_:1},8,["loading"])]),_:1})])):i("",!0)])}}}),Ls=pe(Os,[["__scopeId","data-v-f9af7a93"]]),As={class:"comment-item"},Ds={class:"nickname-wrap"},Ms={class:"username-wrap"},Es={class:"opt-wrap"},Ns={class:"timestamp"},qs=["innerHTML"],Bs={class:"reply-wrap"},Hs=ae({__name:"comment-item",props:{comment:{},postUserId:{}},emits:["reload"],setup(E,{emit:V}){const u=re(),_=He(),g=r(0),$=r(""),O=r(),T=V,v=E,l=ce(()=>{let b=Object.assign({texts:[],imgs:[]},v.comment);return b.contents.map(P=>{(+P.type==1||+P.type==2)&&b.texts.push(P),+P.type==3&&b.imgs.push(P)}),b}),N=(b,P)=>{let y=b.target;if(y.dataset.detail){const A=y.dataset.detail.split(":");A.length===2&&(u.commit("refresh"),A[0]==="tag"?window.$message.warning("评论内的无效话题"):_.push({name:"user",query:{s:A[1]}}))}},D=b=>{var P,y;g.value=b.user_id,$.value=((P=b.user)==null?void 0:P.username)||"",(y=O.value)==null||y.switchReply(!0)},f=()=>{T("reload")},x=()=>{g.value=0,$.value=""},M=()=>{nt({id:l.value.id}).then(b=>{window.$message.success("删除成功"),setTimeout(()=>{f()},50)}).catch(b=>{})},I=()=>{at({id:l.value.id}).then(b=>{l.value.is_essence=b.highlight_status,window.$message.success("操作成功"),setTimeout(()=>{f()},50)}).catch(b=>{})};return(b,P)=>{const y=be,A=we("router-link"),q=Ee,s=K,m=_e,B=Me,W=Be,J=Ls,G=$s,z=Ne;return o(),p("div",As,[t(z,{"content-indented":""},Ge({avatar:n(()=>[t(y,{round:"",size:30,src:l.value.user.avatar},null,8,["src"])]),header:n(()=>[d("span",Ds,[t(A,{onClick:P[0]||(P[0]=Y(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:l.value.user.username}}},{default:n(()=>[S(L(l.value.user.nickname),1)]),_:1},8,["to"])]),d("span",Ms," @"+L(l.value.user.username),1),l.value.is_essence==a(se).YES?(o(),U(q,{key:0,class:"top-tag",type:"warning",size:"small",round:""},{default:n(()=>[S(" 精选 ")]),_:1})):i("",!0)]),"header-extra":n(()=>[d("div",Es,[d("span",Ns,L(l.value.ip_loc),1),a(u).state.userInfo.id===b.postUserId?(o(),U(B,{key:0,"negative-text":"取消","positive-text":"确认",onPositiveClick:I},{trigger:n(()=>[t(m,{quaternary:"",circle:"",size:"tiny",class:"action-btn"},{icon:n(()=>[l.value.is_essence==a(se).NO?(o(),U(s,{key:0},{default:n(()=>[t(a(yt))]),_:1})):(o(),U(s,{key:1},{default:n(()=>[t(a(kt))]),_:1}))]),_:1})]),default:n(()=>[S(" "+L(l.value.is_essence==a(se).NO?"是否精选这条评论":"是否取消精选"),1)]),_:1})):i("",!0),a(u).state.userInfo.is_admin||a(u).state.userInfo.id===l.value.user.id?(o(),U(B,{key:1,"negative-text":"取消","positive-text":"确认",onPositiveClick:M},{trigger:n(()=>[t(m,{quaternary:"",circle:"",size:"tiny",class:"action-btn"},{icon:n(()=>[t(s,null,{default:n(()=>[t(a(Le))]),_:1})]),_:1})]),default:n(()=>[S(" 是否删除这条评论? ")]),_:1})):i("",!0)])]),footer:n(()=>[l.value.imgs.length>0?(o(),U(W,{key:0,imgs:l.value.imgs},null,8,["imgs"])):i("",!0),t(J,{ref_key:"replyComposeRef",ref:O,comment:l.value,"at-userid":g.value,"at-username":$.value,onReload:f,onReset:x},null,8,["comment","at-userid","at-username"]),d("div",Bs,[(o(!0),p(ve,null,he(l.value.replies,k=>(o(),U(G,{key:k.id,reply:k,"tweet-id":l.value.post_id,onFocusReply:D,onReload:f},null,8,["reply","tweet-id"]))),128))])]),_:2},[l.value.texts.length>0?{name:"description",fn:n(()=>[(o(!0),p(ve,null,he(l.value.texts,k=>(o(),p("span",{key:k.id,class:"comment-text",onClick:P[1]||(P[1]=Y(Q=>N(Q,l.value.id),["stop"])),innerHTML:a($e)(k.content).content},null,8,qs))),128))]),key:"0"}:void 0]),1024)])}}}),Fs=pe(Hs,[["__scopeId","data-v-e1f04c6b"]]),js=E=>(Re("data-v-d9073453"),E=E(),Se(),E),Vs={key:0,class:"compose-wrap"},Ys={class:"compose-line"},Ws={class:"compose-user"},Js={class:"compose-line compose-options"},Ks={class:"attachment"},Gs={class:"submit-wrap"},Qs={class:"attachment-list-wrap"},Zs={key:1,class:"compose-wrap"},Xs=js(()=>d("div",{class:"login-wrap"},[d("span",{class:"login-banner"}," 登录后,精彩更多")],-1)),eo={key:0,class:"login-only-wrap"},to={key:1,class:"login-wrap"},so=ae({__name:"compose-comment",props:{lock:{default:0},postId:{default:0}},emits:["post-success"],setup(E,{emit:V}){const u=V,_=E,g=re(),$=r([]),O=r(!1),T=r(!1),v=r(!1),l=r(""),N=r(),D=r("public/image"),f=r([]),x=r([]),M=r("true".toLowerCase()==="true"),I=300,b="/v1/attachment",P=ce(()=>"Bearer "+localStorage.getItem("PAOPAO_TOKEN")),y=ns.debounce(h=>{lt({k:h}).then(w=>{let C=[];w.suggest.map(R=>{C.push({label:R,value:R})}),$.value=C,T.value=!1}).catch(w=>{T.value=!1})},200),A=(h,w)=>{T.value||(T.value=!0,w==="@"&&y(h))},q=h=>{h.length>I?l.value=h.substring(0,I):l.value=h},s=h=>{D.value=h},m=h=>{for(let H=0;H30&&(h[H].name=C.substring(0,18)+"..."+C.substring(C.length-9)+"."+R)}f.value=h},B=async h=>{var w,C;return D.value==="public/image"&&!["image/png","image/jpg","image/jpeg","image/gif"].includes((w=h.file.file)==null?void 0:w.type)?(window.$message.warning("图片仅允许 png/jpg/gif 格式"),!1):D.value==="image"&&((C=h.file.file)==null?void 0:C.size)>10485760?(window.$message.warning("图片大小不能超过10MB"),!1):!0},W=({file:h,event:w})=>{var C;try{let R=JSON.parse((C=w.target)==null?void 0:C.response);R.code===0&&D.value==="public/image"&&x.value.push({id:h.id,content:R.data.content})}catch{window.$message.error("上传失败")}},J=({file:h,event:w})=>{var C;try{let R=JSON.parse((C=w.target)==null?void 0:C.response);if(R.code!==0){let H=R.msg||"上传失败";R.details&&R.details.length>0&&R.details.map(e=>{H+=":"+e}),window.$message.error(H)}}catch{window.$message.error("上传失败")}},G=({file:h})=>{let w=x.value.findIndex(C=>C.id===h.id);w>-1&&x.value.splice(w,1)},z=()=>{O.value=!0},k=()=>{var h;O.value=!1,(h=N.value)==null||h.clear(),f.value=[],l.value="",x.value=[]},Q=()=>{if(l.value.trim().length===0){window.$message.warning("请输入内容哦");return}let{users:h}=$e(l.value);const w=[];let C=100;w.push({content:l.value,type:2,sort:C}),x.value.map(R=>{C++,w.push({content:R.content,type:3,sort:C})}),v.value=!0,it({contents:w,post_id:_.postId,users:Array.from(new Set(h))}).then(R=>{window.$message.success("发布成功"),v.value=!1,u("post-success"),k()}).catch(R=>{v.value=!1})},Z=h=>{g.commit("triggerAuth",!0),g.commit("triggerAuthKey",h)};return(h,w)=>{const C=be,R=Mt,H=K,e=_e,c=Et,F=Nt,le=qt,X=Bt,oe=Ht;return o(),p("div",null,[a(g).state.userInfo.id>0?(o(),p("div",Vs,[d("div",Ys,[d("div",Ws,[t(C,{round:"",size:30,src:a(g).state.userInfo.avatar},null,8,["src"])]),t(R,{type:"textarea",size:"large",autosize:"",bordered:!1,options:$.value,prefix:["@"],loading:T.value,value:l.value,disabled:_.lock===1,"onUpdate:value":q,onSearch:A,onFocus:z,placeholder:_.lock===1?"泡泡已被锁定,回复功能已关闭":"快来评论两句吧..."},null,8,["options","loading","value","disabled","placeholder"])]),O.value?(o(),U(oe,{key:0,ref_key:"uploadRef",ref:N,abstract:"","list-type":"image",multiple:!0,max:9,action:b,headers:{Authorization:P.value},data:{type:D.value},"file-list":f.value,onBeforeUpload:B,onFinish:W,onError:J,onRemove:G,"onUpdate:fileList":m},{default:n(()=>[d("div",Js,[d("div",Ks,[t(c,{abstract:""},{default:n(({handleClick:ne})=>[t(e,{disabled:f.value.length>0&&D.value==="public/video"||f.value.length===9,onClick:()=>{s("public/image"),ne()},quaternary:"",circle:"",type:"primary"},{icon:n(()=>[t(H,{size:"20",color:"var(--primary-color)"},{default:n(()=>[t(a(wt))]),_:1})]),_:2},1032,["disabled","onClick"])]),_:1}),t(le,{trigger:"hover",placement:"bottom"},{trigger:n(()=>[t(F,{class:"text-statistic",type:"circle","show-indicator":!1,status:"success","stroke-width":10,percentage:l.value.length/a(I)*100},null,8,["percentage"])]),default:n(()=>[S(" "+L(l.value.length)+" / "+L(a(I)),1)]),_:1})]),d("div",Gs,[t(e,{quaternary:"",round:"",type:"tertiary",class:"cancel-btn",size:"small",onClick:k},{default:n(()=>[S(" 取消 ")]),_:1}),t(e,{loading:v.value,onClick:Q,type:"primary",secondary:"",size:"small",round:""},{default:n(()=>[S(" 发布 ")]),_:1},8,["loading"])])]),d("div",Qs,[t(X)])]),_:1},8,["headers","data","file-list"])):i("",!0)])):(o(),p("div",Zs,[Xs,M.value?i("",!0):(o(),p("div",eo,[t(e,{strong:"",secondary:"",round:"",type:"primary",onClick:w[0]||(w[0]=ne=>Z("signin"))},{default:n(()=>[S(" 登录 ")]),_:1})])),M.value?(o(),p("div",to,[t(e,{strong:"",secondary:"",round:"",type:"primary",onClick:w[1]||(w[1]=ne=>Z("signin"))},{default:n(()=>[S(" 登录 ")]),_:1}),t(e,{strong:"",secondary:"",round:"",type:"info",onClick:w[2]||(w[2]=ne=>Z("signup"))},{default:n(()=>[S(" 注册 ")]),_:1})])):i("",!0)]))])}}}),oo=pe(so,[["__scopeId","data-v-d9073453"]]),no={class:"username-wrap"},ao={class:"options"},lo={key:0},io=["innerHTML"],uo={class:"timestamp"},co={key:0},ro={key:1},po={class:"opts-wrap"},_o={class:"opt-item"},mo=ae({__name:"post-detail",props:{post:{}},emits:["reload"],setup(E,{emit:V}){const u="true".toLowerCase()==="true",_=re(),g=He(),$=Ft(),O=r(!1),T=r(!1),v=E,l=r(!1),N=r(!1),D=r(!1),f=r(!1),x=r(!1),M=r(!1),I=r(ee.PUBLIC),b=r(!1),P=r({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),y=e=>{P.value=e,b.value=!0},A=()=>{b.value=!1},q=V,s=ce({get:()=>{let e=Object.assign({texts:[],imgs:[],videos:[],links:[],attachments:[],charge_attachments:[]},v.post);return e.contents.map(c=>{(+c.type==1||+c.type==2)&&e.texts.push(c),+c.type==3&&e.imgs.push(c),+c.type==4&&e.videos.push(c),+c.type==6&&e.links.push(c),+c.type==7&&e.attachments.push(c),+c.type==8&&e.charge_attachments.push(c)}),e},set:e=>{v.post.upvote_count=e.upvote_count,v.post.comment_count=e.comment_count,v.post.collection_count=e.collection_count,v.post.is_essence=e.is_essence}}),m=e=>()=>Ie(K,null,{default:()=>Ie(e)}),B=ce(()=>{var F;let e=[];if(!_.state.userInfo.is_admin&&_.state.userInfo.id!=v.post.user.id)return e.push({label:"私信 @"+v.post.user.username,key:"whisper",icon:m(Ut)}),v.post.user.is_following?e.push({label:"取消关注 @"+v.post.user.username,key:"unfollow",icon:m(zt)}):e.push({label:"关注 @"+v.post.user.username,key:"follow",icon:m(ue)}),e;e.push({label:"删除",key:"delete",icon:m(Rt)}),s.value.is_lock===0?e.push({label:"锁定",key:"lock",icon:m(St)}):e.push({label:"解锁",key:"unlock",icon:m(Ot)}),_.state.userInfo.is_admin&&(s.value.is_top===0?e.push({label:"置顶",key:"stick",icon:m(Pe)}):e.push({label:"取消置顶",key:"unstick",icon:m(Pe)})),s.value.is_essence===0?e.push({label:"设为亮点",key:"highlight",icon:m(Ue)}):e.push({label:"取消亮点",key:"unhighlight",icon:m(Ue)});let c;return s.value.visibility===ee.PUBLIC?c={label:"公开",key:"vpublic",icon:m(de),children:[{label:"私密",key:"vprivate",icon:m(me)},{label:"关注可见",key:"vfollowing",icon:m(ue)}]}:s.value.visibility===ee.PRIVATE?c={label:"私密",key:"vprivate",icon:m(me),children:[{label:"公开",key:"vpublic",icon:m(de)},{label:"关注可见",key:"vfollowing",icon:m(ue)}]}:u&&s.value.visibility===ee.FRIEND?c={label:"好友可见",key:"vfriend",icon:m(ze),children:[{label:"公开",key:"vpublic",icon:m(de)},{label:"私密",key:"vprivate",icon:m(me)},{label:"关注可见",key:"vfollowing",icon:m(ue)}]}:c={label:"关注可见",key:"vfollowing",icon:m(ue),children:[{label:"公开",key:"vpublic",icon:m(de)},{label:"私密",key:"vprivate",icon:m(me)}]},u&&s.value.visibility!==ee.FRIEND&&((F=c.children)==null||F.push({label:"好友可见",key:"vfriend",icon:m(ze)})),e.push(c),e}),W=e=>{$.success({title:"提示",content:"确定"+(e.user.is_following?"取消关注 @":"关注 @")+v.post.user.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{e.user.is_following?ft({user_id:e.user.id}).then(c=>{window.$message.success("操作成功"),e.user.is_following=!1}).catch(c=>{}):gt({user_id:e.user.id}).then(c=>{window.$message.success("操作成功"),e.user.is_following=!0}).catch(c=>{})}})},J=e=>{g.push({name:"post",query:{id:e}})},G=(e,c)=>{if(e.target.dataset.detail){const F=e.target.dataset.detail.split(":");if(F.length===2){_.commit("refresh"),F[0]==="tag"?g.push({name:"home",query:{q:F[1],t:"tag"}}):g.push({name:"user",query:{s:F[1]}});return}}J(c)},z=e=>{switch(e){case"whisper":y(v.post.user);break;case"follow":case"unfollow":W(v.post);break;case"delete":l.value=!0;break;case"lock":case"unlock":N.value=!0;break;case"stick":case"unstick":D.value=!0;break;case"highlight":case"unhighlight":f.value=!0;break;case"vpublic":I.value=0,x.value=!0;break;case"vprivate":I.value=1,x.value=!0;break;case"vfriend":I.value=2,x.value=!0;break;case"vfollowing":I.value=3,x.value=!0;break}},k=()=>{rt({id:s.value.id}).then(e=>{window.$message.success("删除成功"),g.replace("/"),setTimeout(()=>{_.commit("refresh")},50)}).catch(e=>{M.value=!1})},Q=()=>{pt({id:s.value.id}).then(e=>{q("reload",s.value.id),e.lock_status===1?window.$message.success("锁定成功"):window.$message.success("解锁成功")}).catch(e=>{M.value=!1})},Z=()=>{_t({id:s.value.id}).then(e=>{q("reload",s.value.id),e.top_status===1?window.$message.success("置顶成功"):window.$message.success("取消置顶成功")}).catch(e=>{M.value=!1})},h=()=>{dt({id:s.value.id}).then(e=>{s.value={...s.value,is_essence:e.highlight_status},e.highlight_status===1?window.$message.success("设为亮点成功"):window.$message.success("取消亮点成功")}).catch(e=>{M.value=!1})},w=()=>{mt({id:s.value.id,visibility:I.value}).then(e=>{q("reload",s.value.id),window.$message.success("修改可见性成功")}).catch(e=>{M.value=!1})},C=()=>{vt({id:s.value.id}).then(e=>{O.value=e.status,e.status?s.value={...s.value,upvote_count:s.value.upvote_count+1}:s.value={...s.value,upvote_count:s.value.upvote_count-1}}).catch(e=>{console.log(e)})},R=()=>{ht({id:s.value.id}).then(e=>{T.value=e.status,e.status?s.value={...s.value,collection_count:s.value.collection_count+1}:s.value={...s.value,collection_count:s.value.collection_count-1}}).catch(e=>{console.log(e)})},H=()=>{ls(`${window.location.origin}/#/post?id=${s.value.id}&share=copy_link&t=${new Date().getTime()}`),window.$message.success("链接已复制到剪贴板")};return Oe(()=>{_.state.userInfo.id>0&&(ut({id:s.value.id}).then(e=>{O.value=e.status}).catch(e=>{console.log(e)}),ct({id:s.value.id}).then(e=>{T.value=e.status}).catch(e=>{console.log(e)}))}),(e,c)=>{const F=be,le=we("router-link"),X=Ee,oe=_e,ne=jt,ie=Vt,Fe=as,Ce=Xt,je=Be,Ve=es,Ye=ts,xe=Yt,We=qe,Je=Ne;return o(),p("div",{class:"detail-item",onClick:c[7]||(c[7]=j=>J(s.value.id))},[t(Je,null,{avatar:n(()=>[t(F,{round:"",size:30,src:s.value.user.avatar},null,8,["src"])]),header:n(()=>[t(le,{onClick:c[0]||(c[0]=Y(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:s.value.user.username}}},{default:n(()=>[S(L(s.value.user.nickname),1)]),_:1},8,["to"]),d("span",no," @"+L(s.value.user.username),1),s.value.is_top?(o(),U(X,{key:0,class:"top-tag",type:"warning",size:"small",round:""},{default:n(()=>[S(" 置顶 ")]),_:1})):i("",!0),s.value.visibility==a(ee).PRIVATE?(o(),U(X,{key:1,class:"top-tag",type:"error",size:"small",round:""},{default:n(()=>[S(" 私密 ")]),_:1})):i("",!0),s.value.visibility==a(ee).FRIEND?(o(),U(X,{key:2,class:"top-tag",type:"info",size:"small",round:""},{default:n(()=>[S(" 好友可见 ")]),_:1})):i("",!0)]),"header-extra":n(()=>[d("div",ao,[t(ne,{placement:"bottom-end",trigger:"click",size:"small",options:B.value,onSelect:z},{default:n(()=>[t(oe,{quaternary:"",circle:""},{icon:n(()=>[t(a(K),null,{default:n(()=>[t(a(bt))]),_:1})]),_:1})]),_:1},8,["options"])]),t(ie,{show:l.value,"onUpdate:show":c[1]||(c[1]=j=>l.value=j),"mask-closable":!1,preset:"dialog",title:"提示",content:"确定删除该泡泡动态吗?","positive-text":"确认","negative-text":"取消",onPositiveClick:k},null,8,["show"]),t(ie,{show:N.value,"onUpdate:show":c[2]||(c[2]=j=>N.value=j),"mask-closable":!1,preset:"dialog",title:"提示",content:"确定"+(s.value.is_lock?"解锁":"锁定")+"该泡泡动态吗?","positive-text":"确认","negative-text":"取消",onPositiveClick:Q},null,8,["show","content"]),t(ie,{show:D.value,"onUpdate:show":c[3]||(c[3]=j=>D.value=j),"mask-closable":!1,preset:"dialog",title:"提示",content:"确定"+(s.value.is_top?"取消置顶":"置顶")+"该泡泡动态吗?","positive-text":"确认","negative-text":"取消",onPositiveClick:Z},null,8,["show","content"]),t(ie,{show:f.value,"onUpdate:show":c[4]||(c[4]=j=>f.value=j),"mask-closable":!1,preset:"dialog",title:"提示",content:"确定将该泡泡动态"+(s.value.is_essence?"取消亮点":"设为亮点")+"吗?","positive-text":"确认","negative-text":"取消",onPositiveClick:h},null,8,["show","content"]),t(ie,{show:x.value,"onUpdate:show":c[5]||(c[5]=j=>x.value=j),"mask-closable":!1,preset:"dialog",title:"提示",content:"确定将该泡泡动态可见度修改为"+(I.value==0?"公开":I.value==1?"私密":I.value==2?"好友可见":"关注可见")+"吗?","positive-text":"确认","negative-text":"取消",onPositiveClick:w},null,8,["show","content"]),t(Fe,{show:b.value,user:P.value,onSuccess:A},null,8,["show","user"])]),footer:n(()=>[t(Ce,{attachments:s.value.attachments},null,8,["attachments"]),t(Ce,{attachments:s.value.charge_attachments,price:s.value.attachment_price},null,8,["attachments","price"]),t(je,{imgs:s.value.imgs},null,8,["imgs"]),t(Ve,{videos:s.value.videos,full:!0},null,8,["videos"]),t(Ye,{links:s.value.links},null,8,["links"]),d("div",uo,[S(" 发布于 "+L(a(fe)(s.value.created_on))+" ",1),s.value.ip_loc?(o(),p("span",co,[t(xe,{vertical:""}),S(" "+L(s.value.ip_loc),1)])):i("",!0),!a(_).state.collapsedLeft&&s.value.created_on!=s.value.latest_replied_on?(o(),p("span",ro,[t(xe,{vertical:""}),S(" 最后回复 "+L(a(fe)(s.value.latest_replied_on)),1)])):i("",!0)])]),action:n(()=>[d("div",po,[t(We,{justify:"space-between"},{default:n(()=>[d("div",{class:"opt-item hover",onClick:Y(C,["stop"])},[t(a(K),{size:"20",class:"opt-item-icon"},{default:n(()=>[O.value?i("",!0):(o(),U(a($t),{key:0})),O.value?(o(),U(a(Ct),{key:1,color:"red"})):i("",!0)]),_:1}),S(" "+L(s.value.upvote_count),1)]),d("div",_o,[t(a(K),{size:"20",class:"opt-item-icon"},{default:n(()=>[t(a(xt))]),_:1}),S(" "+L(s.value.comment_count),1)]),d("div",{class:"opt-item hover",onClick:Y(R,["stop"])},[t(a(K),{size:"20",class:"opt-item-icon"},{default:n(()=>[T.value?i("",!0):(o(),U(a(It),{key:0})),T.value?(o(),U(a(Tt),{key:1,color:"#ff7600"})):i("",!0)]),_:1}),S(" "+L(s.value.collection_count),1)]),d("div",{class:"opt-item hover",onClick:Y(H,["stop"])},[t(a(K),{size:"20",class:"opt-item-icon"},{default:n(()=>[t(a(Pt))]),_:1}),S(" "+L(s.value.share_count),1)])]),_:1})])]),default:n(()=>[s.value.texts.length>0?(o(),p("div",lo,[(o(!0),p(ve,null,he(s.value.texts,j=>(o(),p("span",{key:j.id,class:"post-text",onClick:c[6]||(c[6]=Y(Ke=>G(Ke,s.value.id),["stop"])),innerHTML:a($e)(j.content).content},null,8,io))),128))])):i("",!0)]),_:1})])}}}),vo=E=>(Re("data-v-edac44ef"),E=E(),Se(),E),ho={key:0,class:"detail-wrap"},fo={key:1,class:"empty-wrap"},go={key:0,class:"comment-opts-wrap"},yo=vo(()=>d("span",{class:"comment-title-item"},"评论",-1)),ko={key:2},wo={key:0,class:"skeleton-wrap"},bo={key:1},$o={key:0,class:"empty-wrap"},Co={key:0,class:"load-more-spinner"},xo={key:1,class:"load-more-spinner"},Io={key:2,class:"load-more-spinner"},To={key:3,class:"load-more-spinner"},Po={key:4,class:"load-more-spinner"},Uo={key:5,class:"load-more-spinner"},te=20,zo=ae({__name:"Post",setup(E){const V=ss(),u=r({}),_=r(!1),g=r(!1),$=r([]),O=ce(()=>+V.query.id),T=r("default"),v=r(!0);let l={loading(){},loaded(){},complete(){},error(){}};const N=z=>{T.value=z,z==="default"&&(v.value=!0),J(l)},D=z=>{Te({id:z}).then(k=>{u.value=k}).catch(k=>{})},f=()=>{u.value={id:0},_.value=!0,Te({id:O.value}).then(z=>{_.value=!1,u.value=z,J(l)}).catch(z=>{_.value=!1})};let x=1;const M=r(!1),I=r([]),b=z=>{M.value||ke({id:u.value.id,style:"default",page:x,page_size:te}).then(k=>{z!==null&&(l=z),k.list.length0&&(x===1?I.value=k.list:I.value.push(...k.list),$.value=I.value),l.loaded(),g.value=!1}).catch(k=>{g.value=!1,l.error()})};let P=1,y=r(!1);const A=r([]),q=z=>{y.value||ke({id:u.value.id,style:"hots",page:P,page_size:te}).then(k=>{z!==null&&(l=z),k.list.length0&&(P===1?A.value=k.list:A.value.push(...k.list),$.value=A.value),l.loaded(),g.value=!1}).catch(k=>{g.value=!1,l.error()})};let s=1,m=r(!1);const B=r([]),W=z=>{m.value||ke({id:u.value.id,style:"newest",page:s,page_size:te}).then(k=>{z!==null&&(l=z),k.list.length0&&(s===1?B.value=k.list:B.value.push(...k.list),$.value=B.value),l.loaded(),g.value=!1}).catch(k=>{g.value=!1,l.error()})},J=z=>{O.value<1||($.value.length===0&&(g.value=!0),T.value==="default"?($.value=I.value,b(z)):T.value==="hots"?($.value=A.value,q(z)):($.value=B.value,W(z)),g.value=!1)},G=()=>{x=1,M.value=!1,I.value=[],P=1,y.value=!1,A.value=[],s=1,m.value=!1,B.value=[],J(l)};return Oe(()=>{f()}),Qe(O,()=>{O.value>0&&V.name==="post"&&f()}),(z,k)=>{const Q=is,Z=mo,h=Jt,w=Kt,C=Gt,R=Qt,H=Zt,e=oo,c=os,F=Fs,le=qe,X=Wt;return o(),p("div",null,[t(Q,{title:"泡泡详情",back:!0}),t(X,{class:"main-content-wrap",bordered:""},{default:n(()=>[t(C,null,{default:n(()=>[t(w,{show:_.value},{default:n(()=>[u.value.id>1?(o(),p("div",ho,[t(Z,{post:u.value,onReload:D},null,8,["post"])])):(o(),p("div",fo,[t(h,{size:"large",description:"暂无数据"})]))]),_:1},8,["show"])]),_:1}),u.value.id>0?(o(),p("div",go,[t(H,{type:"bar","justify-content":"end",size:"small","tab-style":"margin-left: -24px;",animated:"","onUpdate:value":N},{prefix:n(()=>[yo]),default:n(()=>[t(R,{name:"default",tab:"推荐"}),t(R,{name:"hots",tab:"热门"}),t(R,{name:"newest",tab:"最新"})]),_:1})])):i("",!0),u.value.id>0?(o(),U(C,{key:1},{default:n(()=>[t(e,{lock:u.value.is_lock,"post-id":u.value.id,onPostSuccess:G},null,8,["lock","post-id"])]),_:1})):i("",!0),u.value.id>0?(o(),p("div",ko,[g.value?(o(),p("div",wo,[t(c,{num:5})])):(o(),p("div",bo,[$.value.length===0?(o(),p("div",$o,[t(h,{size:"large",description:"暂无评论,快来抢沙发"})])):i("",!0),(o(!0),p(ve,null,he($.value,oe=>(o(),U(C,{key:oe.id},{default:n(()=>[t(F,{comment:oe,postUserId:u.value.user_id,onReload:G},null,8,["comment","postUserId"])]),_:2},1024))),128))]))])):i("",!0),$.value.length>=te?(o(),U(le,{key:3,justify:"center"},{default:n(()=>[t(a(us),{class:"load-more",slots:{complete:"没有更多数据了",error:"加载出错"},onInfinite:J},{spinner:n(()=>[v.value&&M.value?(o(),p("span",Co)):i("",!0),!v.value&&a(y)?(o(),p("span",xo)):i("",!0),!v.value&&a(m)?(o(),p("span",Io)):i("",!0),v.value&&!M.value?(o(),p("span",To,"加载评论")):i("",!0),!v.value&&!a(y)?(o(),p("span",Po,"加载评论")):i("",!0),!v.value&&!a(m)?(o(),p("span",Uo,"加载评论")):i("",!0)]),_:1})]),_:1})):i("",!0)]),_:1})])}}}),pn=pe(zo,[["__scopeId","data-v-edac44ef"]]);export{pn as default}; diff --git a/web/dist/assets/Profile-909e78bc.css b/web/dist/assets/Profile-Dogk38nM.css similarity index 100% rename from web/dist/assets/Profile-909e78bc.css rename to web/dist/assets/Profile-Dogk38nM.css diff --git a/web/dist/assets/Profile-516bc8e9.js b/web/dist/assets/Profile-oanYBP0F.js similarity index 74% rename from web/dist/assets/Profile-516bc8e9.js rename to web/dist/assets/Profile-oanYBP0F.js index 5cd42c0d..9d4d09cb 100644 --- a/web/dist/assets/Profile-516bc8e9.js +++ b/web/dist/assets/Profile-oanYBP0F.js @@ -1 +1 @@ -import{_ as ze}from"./whisper-6a06efa4.js";import{_ as Me,a as qe}from"./post-item.vue_vue_type_style_index_0_lang-cb395a2b.js";import{_ as xe}from"./post-skeleton-ae2be035.js";import{_ as $e}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{d as Se,H as r,c as Ce,b as Le,E as Ne,r as Ue,f as i,k as u,bf as o,q as h,w as _,Y as f,e as a,j as m,x as O,A as E,y as ue,F as b,u as I,h as ie}from"./@vue-a481fc63.js";import{u as De}from"./vuex-44de225f.js";import{b as He,u as Be}from"./vue-router-e5a2430e.js";import{e as L,K as Ve,u as je,f as Re,_ as We}from"./index-1e276b8f.js";import{p as G}from"./count-e2caa1c1.js";import{W as Ee}from"./v3-infinite-loading-2c58ec2f.js";import{k as Ge,a as Je}from"./@vicons-f0266f88.js";import{F as Ke,G as Qe,a as Ye,j as re,o as Xe,M as Ze,e as et,P as tt,f as at,g as st,J as lt,k as ot,H as nt}from"./naive-ui-eecf2ec3.js";import"./content-68a3f6d0.js";import"./paopao-video-player-2fe58954.js";import"./copy-to-clipboard-4ef7d3eb.js";import"./@babel-725317a4.js";import"./toggle-selection-93f4ad84.js";import"./vooks-6d99783e.js";import"./evtd-b614532e.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./@css-render-7124a1a5.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";const ut={class:"profile-baseinfo"},it={class:"avatar"},rt={class:"base-info"},ct={class:"username"},_t={class:"userinfo"},vt={class:"info-item"},dt={class:"info-item"},mt={class:"userinfo"},ft={class:"info-item"},pt={class:"info-item"},ht={class:"info-item"},gt={class:"user-opts"},wt={key:0,class:"skeleton-wrap"},kt={key:1},yt={key:0,class:"empty-wrap"},bt={key:1},It={key:0},Pt={key:1},Ot={key:2},Tt={key:3},At={key:4},Ft={key:2},zt={key:0},Mt={key:1},qt={key:2},xt={key:3},$t={key:4},St={class:"load-more-wrap"},Ct={class:"load-more-spinner"},Lt=Se({__name:"Profile",setup(Nt){const n=De(),T=He(),ce=Be(),_e=Ke(),d=r(!1),P=r(!1),l=r([]),A=r([]),F=r([]),z=r([]),M=r([]),q=r([]),p=r("post"),J=r(+T.query.p||1),K=r(1),Q=r(1),Y=r(1),X=r(1),s=r(+T.query.p||1),g=r(20),v=r(0),Z=r(0),ee=r(0),te=r(0),ae=r(0),se=r(0),U=r(!1),le=r({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),ve=e=>()=>ie(re,null,{default:()=>ie(e)}),de=Ce(()=>[{label:"设置",key:"setting",icon:ve(Je)}]),me=e=>{switch(e){case"setting":ce.push({name:"setting",query:{t:new Date().getTime()}});break}},w=e=>{le.value=e,U.value=!0},fe=()=>{U.value=!1},k=e=>{_e.success({title:"提示",content:"确定"+(e.user.is_following?"取消关注 @":"关注 @")+e.user.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{e.user.is_following?je({user_id:e.user.id}).then(c=>{window.$message.success("操作成功"),oe(e.user_id,!1)}).catch(c=>{}):Re({user_id:e.user.id}).then(c=>{window.$message.success("关注成功"),oe(e.user_id,!0)}).catch(c=>{})}})};function oe(e,c){x(A.value,e,c),x(F.value,e,c),x(z.value,e,c),x(M.value,e,c),x(q.value,e,c)}function x(e,c,W){if(e&&e.length>0)for(let N in e)e[N].user_id==c&&(e[N].user.is_following=W)}const D=()=>{switch(p.value){case"post":H();break;case"comment":B();break;case"highlight":V();break;case"media":j();break;case"star":R();break}},H=()=>{d.value=!0,L({username:n.state.userInfo.username,style:"post",page:s.value,page_size:g.value}).then(e=>{d.value=!1,e.list.length===0&&(P.value=!0),s.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),v.value=Math.ceil(e.pager.total_rows/g.value),A.value=l.value,Z.value=v.value}).catch(e=>{l.value=[],s.value>1&&s.value--,d.value=!1})},B=()=>{d.value=!0,L({username:n.state.userInfo.username,style:"comment",page:s.value,page_size:g.value}).then(e=>{d.value=!1,e.list.length===0&&(P.value=!0),s.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),v.value=Math.ceil(e.pager.total_rows/g.value),F.value=l.value,ee.value=v.value}).catch(e=>{l.value=[],s.value>1&&s.value--,d.value=!1})},V=()=>{d.value=!0,L({username:n.state.userInfo.username,style:"highlight",page:s.value,page_size:g.value}).then(e=>{d.value=!1,e.list.length===0&&(P.value=!0),s.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),v.value=Math.ceil(e.pager.total_rows/g.value),z.value=l.value,te.value=v.value}).catch(e=>{l.value=[],s.value>1&&s.value--,d.value=!1})},j=()=>{d.value=!0,L({username:n.state.userInfo.username,style:"media",page:s.value,page_size:g.value}).then(e=>{d.value=!1,e.list.length===0&&(P.value=!0),s.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),v.value=Math.ceil(e.pager.total_rows/g.value),M.value=l.value,ae.value=v.value}).catch(e=>{l.value=[],s.value>1&&s.value--,d.value=!1})},R=()=>{d.value=!0,L({username:n.state.userInfo.username,style:"star",page:s.value,page_size:g.value}).then(e=>{d.value=!1,e.list.length===0&&(P.value=!0),s.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),v.value=Math.ceil(e.pager.total_rows/g.value),q.value=l.value,se.value=v.value}).catch(e=>{l.value=[],s.value>1&&s.value--,d.value=!1})},pe=e=>{switch(p.value=e,p.value){case"post":l.value=A.value,s.value=J.value,v.value=Z.value,H();break;case"comment":l.value=F.value,s.value=K.value,v.value=ee.value,B();break;case"highlight":l.value=z.value,s.value=Q.value,v.value=te.value,V();break;case"media":l.value=M.value,s.value=Y.value,v.value=ae.value,j();break;case"star":l.value=q.value,s.value=X.value,v.value=se.value,R();break}},he=()=>{switch(p.value){case"post":J.value=s.value,H();break;case"comment":K.value=s.value,B();break;case"highlight":Q.value=s.value,V();break;case"media":Y.value=s.value,j();break;case"star":X.value=s.value,R();break}},ge=()=>{s.value{D()}),Ne(()=>({path:T.path,query:T.query,refresh:n.state.refresh}),(e,c)=>{if(e.refresh!==c.refresh){s.value=+T.query.p||1,setTimeout(()=>{D()},0);return}c.path!=="/post"&&e.path==="/profile"&&(s.value=+T.query.p||1,setTimeout(()=>{D()},0))}),(e,c)=>{const W=$e,N=Xe,we=Ze,ne=Ue("router-link"),ke=et,ye=tt,$=at,be=st,Ie=xe,Pe=lt,S=Me,y=nt,C=qe,Oe=ze,Te=Qe,Ae=ot,Fe=Ye;return a(),i("div",null,[u(W,{title:"主页"}),o(n).state.userInfo.id>0?(a(),h(Te,{key:0,class:"main-content-wrap profile-wrap",bordered:""},{default:_(()=>[m("div",ut,[m("div",it,[u(N,{size:72,src:o(n).state.userInfo.avatar},null,8,["src"])]),m("div",rt,[m("div",ct,[m("strong",null,O(o(n).state.userInfo.nickname),1),m("span",null," @"+O(o(n).state.userInfo.username),1),o(n).state.userInfo.is_admin?(a(),h(we,{key:0,class:"top-tag",type:"error",size:"small",round:""},{default:_(()=>[E(" 管理员 ")]),_:1})):f("",!0)]),m("div",_t,[m("span",vt,"UID. "+O(o(n).state.userInfo.id),1),m("span",dt,O(o(Ve)(o(n).state.userInfo.created_on))+" 加入",1)]),m("div",mt,[m("span",ft,[u(ne,{onClick:c[0]||(c[0]=ue(()=>{},["stop"])),class:"following-link",to:{name:"following",query:{s:o(n).state.userInfo.username,n:o(n).state.userInfo.nickname,t:"follows"}}},{default:_(()=>[E(" 关注  "+O(o(G)(o(n).state.userInfo.follows)),1)]),_:1},8,["to"])]),m("span",pt,[u(ne,{onClick:c[1]||(c[1]=ue(()=>{},["stop"])),class:"following-link",to:{name:"following",query:{s:o(n).state.userInfo.username,n:o(n).state.userInfo.nickname,t:"followings"}}},{default:_(()=>[E(" 粉丝  "+O(o(G)(o(n).state.userInfo.followings)),1)]),_:1},8,["to"])]),m("span",ht," 泡泡  "+O(o(G)(o(n).state.userInfo.tweets_count)),1)])]),m("div",gt,[u(ye,{placement:"bottom-end",trigger:"click",size:"small",options:de.value,onSelect:me},{default:_(()=>[u(ke,{quaternary:"",circle:""},{icon:_(()=>[u(o(re),null,{default:_(()=>[u(o(Ge))]),_:1})]),_:1})]),_:1},8,["options"])])]),u(be,{class:"profile-tabs-wrap",type:"line",animated:"","onUpdate:value":pe},{default:_(()=>[u($,{name:"post",tab:"泡泡"}),u($,{name:"comment",tab:"评论"}),u($,{name:"highlight",tab:"亮点"}),u($,{name:"media",tab:"图文"}),u($,{name:"star",tab:"喜欢"})]),_:1}),d.value&&l.value.length===0?(a(),i("div",wt,[u(Ie,{num:g.value},null,8,["num"])])):(a(),i("div",kt,[l.value.length===0?(a(),i("div",yt,[u(Pe,{size:"large",description:"暂无数据"})])):f("",!0),o(n).state.desktopModelShow?(a(),i("div",bt,[p.value==="post"?(a(),i("div",It,[(a(!0),i(b,null,I(A.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(S,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="comment"?(a(),i("div",Pt,[(a(!0),i(b,null,I(F.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(S,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="highlight"?(a(),i("div",Ot,[(a(!0),i(b,null,I(z.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(S,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="media"?(a(),i("div",Tt,[(a(!0),i(b,null,I(M.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(S,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="star"?(a(),i("div",At,[(a(!0),i(b,null,I(q.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(S,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0)])):(a(),i("div",Ft,[p.value==="post"?(a(),i("div",zt,[(a(!0),i(b,null,I(A.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(C,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="comment"?(a(),i("div",Mt,[(a(!0),i(b,null,I(F.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(C,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="highlight"?(a(),i("div",qt,[(a(!0),i(b,null,I(z.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(C,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="media"?(a(),i("div",xt,[(a(!0),i(b,null,I(M.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(C,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="star"?(a(),i("div",$t,[(a(!0),i(b,null,I(q.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(C,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0)]))])),u(Oe,{show:U.value,user:le.value,onSuccess:fe},null,8,["show","user"])]),_:1})):f("",!0),v.value>0?(a(),h(Fe,{key:1,justify:"center"},{default:_(()=>[u(o(Ee),{class:"load-more",slots:{complete:"没有更多泡泡了",error:"加载出错"},onInfinite:c[2]||(c[2]=t=>ge())},{spinner:_(()=>[m("div",St,[P.value?f("",!0):(a(),h(Ae,{key:0,size:14})),m("span",Ct,O(P.value?"没有更多泡泡了":"加载更多"),1)])]),_:1})]),_:1})):f("",!0)])}}});const ha=We(Lt,[["__scopeId","data-v-106c824e"]]);export{ha as default}; +import{_ as ze}from"./whisper-DFhobfFF.js";import{_ as Me,a as qe}from"./post-item.vue_vue_type_style_index_0_lang-Dfn2xguO.js";import{_ as $e}from"./post-skeleton-YfJeD-2o.js";import{_ as xe}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{d as Se,H as r,c as Ce,b as Le,E as Ne,f as i,k as u,bk as o,q as h,w as _,Z as f,r as Ue,e as a,j as m,x as O,A as E,y as ue,F as b,u as I,h as ie}from"./@vue-CQsYufSu.js";import{u as De}from"./vuex-DNAxYlmG.js";import{b as He,u as Be}from"./vue-router-zwGLnBy5.js";import{e as L,L as Ve,u as je,f as Re,_ as We}from"./index-v3l9hw1O.js";import{p as G}from"./count-BK58UQ2M.js";import{W as Ee}from"./v3-infinite-loading-DK6TzcZc.js";import{k as Ge,a as Je}from"./@vicons-C3A8jsfr.js";import{F as Qe,G as Ze,a as Ke,j as re,o as Xe,M as Ye,e as et,P as tt,f as at,g as st,J as lt,k as ot,H as nt}from"./naive-ui-DNcWoFGl.js";import"./content-BMjusBPS.js";import"./paopao-video-player-DAi68TC5.js";import"./copy-to-clipboard-CA7crPat.js";import"./@babel-Cpj98o6Y.js";import"./toggle-selection-BHUZwh74.js";import"./vooks-BQzJqMzq.js";import"./evtd-CI_DDEu_.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./@css-render-CQdyXCYJ.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";const ut={class:"profile-baseinfo"},it={class:"avatar"},rt={class:"base-info"},ct={class:"username"},_t={class:"userinfo"},vt={class:"info-item"},dt={class:"info-item"},mt={class:"userinfo"},ft={class:"info-item"},pt={class:"info-item"},ht={class:"info-item"},gt={class:"user-opts"},wt={key:0,class:"skeleton-wrap"},kt={key:1},yt={key:0,class:"empty-wrap"},bt={key:1},It={key:0},Pt={key:1},Ot={key:2},Tt={key:3},At={key:4},Ft={key:2},zt={key:0},Mt={key:1},qt={key:2},$t={key:3},xt={key:4},St={class:"load-more-wrap"},Ct={class:"load-more-spinner"},Lt=Se({__name:"Profile",setup(Nt){const n=De(),T=He(),ce=Be(),_e=Qe(),d=r(!1),P=r(!1),l=r([]),A=r([]),F=r([]),z=r([]),M=r([]),q=r([]),p=r("post"),J=r(+T.query.p||1),Q=r(1),Z=r(1),K=r(1),X=r(1),s=r(+T.query.p||1),g=r(20),v=r(0),Y=r(0),ee=r(0),te=r(0),ae=r(0),se=r(0),U=r(!1),le=r({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,status:1}),ve=e=>()=>ie(re,null,{default:()=>ie(e)}),de=Ce(()=>[{label:"设置",key:"setting",icon:ve(Je)}]),me=e=>{switch(e){case"setting":ce.push({name:"setting",query:{t:new Date().getTime()}});break}},w=e=>{le.value=e,U.value=!0},fe=()=>{U.value=!1},k=e=>{_e.success({title:"提示",content:"确定"+(e.user.is_following?"取消关注 @":"关注 @")+e.user.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{e.user.is_following?je({user_id:e.user.id}).then(c=>{window.$message.success("操作成功"),oe(e.user_id,!1)}).catch(c=>{}):Re({user_id:e.user.id}).then(c=>{window.$message.success("关注成功"),oe(e.user_id,!0)}).catch(c=>{})}})};function oe(e,c){$(A.value,e,c),$(F.value,e,c),$(z.value,e,c),$(M.value,e,c),$(q.value,e,c)}function $(e,c,W){if(e&&e.length>0)for(let N in e)e[N].user_id==c&&(e[N].user.is_following=W)}const D=()=>{switch(p.value){case"post":H();break;case"comment":B();break;case"highlight":V();break;case"media":j();break;case"star":R();break}},H=()=>{d.value=!0,L({username:n.state.userInfo.username,style:"post",page:s.value,page_size:g.value}).then(e=>{d.value=!1,e.list.length===0&&(P.value=!0),s.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),v.value=Math.ceil(e.pager.total_rows/g.value),A.value=l.value,Y.value=v.value}).catch(e=>{l.value=[],s.value>1&&s.value--,d.value=!1})},B=()=>{d.value=!0,L({username:n.state.userInfo.username,style:"comment",page:s.value,page_size:g.value}).then(e=>{d.value=!1,e.list.length===0&&(P.value=!0),s.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),v.value=Math.ceil(e.pager.total_rows/g.value),F.value=l.value,ee.value=v.value}).catch(e=>{l.value=[],s.value>1&&s.value--,d.value=!1})},V=()=>{d.value=!0,L({username:n.state.userInfo.username,style:"highlight",page:s.value,page_size:g.value}).then(e=>{d.value=!1,e.list.length===0&&(P.value=!0),s.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),v.value=Math.ceil(e.pager.total_rows/g.value),z.value=l.value,te.value=v.value}).catch(e=>{l.value=[],s.value>1&&s.value--,d.value=!1})},j=()=>{d.value=!0,L({username:n.state.userInfo.username,style:"media",page:s.value,page_size:g.value}).then(e=>{d.value=!1,e.list.length===0&&(P.value=!0),s.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),v.value=Math.ceil(e.pager.total_rows/g.value),M.value=l.value,ae.value=v.value}).catch(e=>{l.value=[],s.value>1&&s.value--,d.value=!1})},R=()=>{d.value=!0,L({username:n.state.userInfo.username,style:"star",page:s.value,page_size:g.value}).then(e=>{d.value=!1,e.list.length===0&&(P.value=!0),s.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),v.value=Math.ceil(e.pager.total_rows/g.value),q.value=l.value,se.value=v.value}).catch(e=>{l.value=[],s.value>1&&s.value--,d.value=!1})},pe=e=>{switch(p.value=e,p.value){case"post":l.value=A.value,s.value=J.value,v.value=Y.value,H();break;case"comment":l.value=F.value,s.value=Q.value,v.value=ee.value,B();break;case"highlight":l.value=z.value,s.value=Z.value,v.value=te.value,V();break;case"media":l.value=M.value,s.value=K.value,v.value=ae.value,j();break;case"star":l.value=q.value,s.value=X.value,v.value=se.value,R();break}},he=()=>{switch(p.value){case"post":J.value=s.value,H();break;case"comment":Q.value=s.value,B();break;case"highlight":Z.value=s.value,V();break;case"media":K.value=s.value,j();break;case"star":X.value=s.value,R();break}},ge=()=>{s.value{D()}),Ne(()=>({path:T.path,query:T.query,refresh:n.state.refresh}),(e,c)=>{if(e.refresh!==c.refresh){s.value=+T.query.p||1,setTimeout(()=>{D()},0);return}c.path!=="/post"&&e.path==="/profile"&&(s.value=+T.query.p||1,setTimeout(()=>{D()},0))}),(e,c)=>{const W=xe,N=Xe,we=Ye,ne=Ue("router-link"),ke=et,ye=tt,x=at,be=st,Ie=$e,Pe=lt,S=Me,y=nt,C=qe,Oe=ze,Te=Ze,Ae=ot,Fe=Ke;return a(),i("div",null,[u(W,{title:"主页"}),o(n).state.userInfo.id>0?(a(),h(Te,{key:0,class:"main-content-wrap profile-wrap",bordered:""},{default:_(()=>[m("div",ut,[m("div",it,[u(N,{size:72,src:o(n).state.userInfo.avatar},null,8,["src"])]),m("div",rt,[m("div",ct,[m("strong",null,O(o(n).state.userInfo.nickname),1),m("span",null," @"+O(o(n).state.userInfo.username),1),o(n).state.userInfo.is_admin?(a(),h(we,{key:0,class:"top-tag",type:"error",size:"small",round:""},{default:_(()=>[E(" 管理员 ")]),_:1})):f("",!0)]),m("div",_t,[m("span",vt,"UID. "+O(o(n).state.userInfo.id),1),m("span",dt,O(o(Ve)(o(n).state.userInfo.created_on))+" 加入",1)]),m("div",mt,[m("span",ft,[u(ne,{onClick:c[0]||(c[0]=ue(()=>{},["stop"])),class:"following-link",to:{name:"following",query:{s:o(n).state.userInfo.username,n:o(n).state.userInfo.nickname,t:"follows"}}},{default:_(()=>[E(" 关注  "+O(o(G)(o(n).state.userInfo.follows)),1)]),_:1},8,["to"])]),m("span",pt,[u(ne,{onClick:c[1]||(c[1]=ue(()=>{},["stop"])),class:"following-link",to:{name:"following",query:{s:o(n).state.userInfo.username,n:o(n).state.userInfo.nickname,t:"followings"}}},{default:_(()=>[E(" 粉丝  "+O(o(G)(o(n).state.userInfo.followings)),1)]),_:1},8,["to"])]),m("span",ht," 泡泡  "+O(o(G)(o(n).state.userInfo.tweets_count)),1)])]),m("div",gt,[u(ye,{placement:"bottom-end",trigger:"click",size:"small",options:de.value,onSelect:me},{default:_(()=>[u(ke,{quaternary:"",circle:""},{icon:_(()=>[u(o(re),null,{default:_(()=>[u(o(Ge))]),_:1})]),_:1})]),_:1},8,["options"])])]),u(be,{class:"profile-tabs-wrap",type:"line",animated:"","onUpdate:value":pe},{default:_(()=>[u(x,{name:"post",tab:"泡泡"}),u(x,{name:"comment",tab:"评论"}),u(x,{name:"highlight",tab:"亮点"}),u(x,{name:"media",tab:"图文"}),u(x,{name:"star",tab:"喜欢"})]),_:1}),d.value&&l.value.length===0?(a(),i("div",wt,[u(Ie,{num:g.value},null,8,["num"])])):(a(),i("div",kt,[l.value.length===0?(a(),i("div",yt,[u(Pe,{size:"large",description:"暂无数据"})])):f("",!0),o(n).state.desktopModelShow?(a(),i("div",bt,[p.value==="post"?(a(),i("div",It,[(a(!0),i(b,null,I(A.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(S,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="comment"?(a(),i("div",Pt,[(a(!0),i(b,null,I(F.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(S,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="highlight"?(a(),i("div",Ot,[(a(!0),i(b,null,I(z.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(S,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="media"?(a(),i("div",Tt,[(a(!0),i(b,null,I(M.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(S,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="star"?(a(),i("div",At,[(a(!0),i(b,null,I(q.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(S,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0)])):(a(),i("div",Ft,[p.value==="post"?(a(),i("div",zt,[(a(!0),i(b,null,I(A.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(C,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="comment"?(a(),i("div",Mt,[(a(!0),i(b,null,I(F.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(C,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="highlight"?(a(),i("div",qt,[(a(!0),i(b,null,I(z.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(C,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="media"?(a(),i("div",$t,[(a(!0),i(b,null,I(M.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(C,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0),p.value==="star"?(a(),i("div",xt,[(a(!0),i(b,null,I(q.value,t=>(a(),h(y,{key:t.id},{default:_(()=>[u(C,{post:t,isOwner:o(n).state.userInfo.id==t.user_id,addFollowAction:!0,onSendWhisper:w,onHandleFollowAction:k},null,8,["post","isOwner"])]),_:2},1024))),128))])):f("",!0)]))])),u(Oe,{show:U.value,user:le.value,onSuccess:fe},null,8,["show","user"])]),_:1})):f("",!0),v.value>0?(a(),h(Fe,{key:1,justify:"center"},{default:_(()=>[u(o(Ee),{class:"load-more",slots:{complete:"没有更多泡泡了",error:"加载出错"},onInfinite:c[2]||(c[2]=t=>ge())},{spinner:_(()=>[m("div",St,[P.value?f("",!0):(a(),h(Ae,{key:0,size:14})),m("span",Ct,O(P.value?"没有更多泡泡了":"加载更多"),1)])]),_:1})]),_:1})):f("",!0)])}}}),ha=We(Lt,[["__scopeId","data-v-106c824e"]]);export{ha as default}; diff --git a/web/dist/assets/Setting-C0pZ4LXF.js b/web/dist/assets/Setting-C0pZ4LXF.js new file mode 100644 index 00000000..483dc167 --- /dev/null +++ b/web/dist/assets/Setting-C0pZ4LXF.js @@ -0,0 +1 @@ +import{_ as ge}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{d as we,H as d,S as Q,b as ye,f as h,k as a,w as s,bk as r,q as b,Z as m,e as i,j as _,A as p,x as U,P as ke,D as be,_ as S,y as R,a0 as Ce,a1 as Ie}from"./@vue-CQsYufSu.js";import{u as Pe}from"./vuex-DNAxYlmG.js";import{a5 as X,a6 as $e,a7 as Be,a8 as Ue,a9 as Se,aa as Re,ab as qe,_ as Ae}from"./index-v3l9hw1O.js";import{a2 as Ne}from"./@vicons-C3A8jsfr.js";import{h as ze,o as De,e as Ke,B as xe,b as Fe,j as Te,T as je,$ as Ve,L as Ee,a0 as Oe,a1 as Le,d as Me}from"./naive-ui-DNcWoFGl.js";import"./vue-router-zwGLnBy5.js";import"./vooks-BQzJqMzq.js";import"./evtd-CI_DDEu_.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./@css-render-CQdyXCYJ.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";const F=q=>(Ce("data-v-7bb19e7f"),q=q(),Ie(),q),We={class:"base-line avatar"},Ge={class:"base-line"},He=F(()=>_("span",{class:"base-label"},"昵称",-1)),Je={key:0},Ze={class:"base-line"},Qe=F(()=>_("span",{class:"base-label"},"用户名",-1)),Xe={key:0},Ye={key:1},ea=F(()=>_("br",null,null,-1)),aa={key:2,class:"phone-bind-wrap"},ta={class:"captcha-img-wrap"},sa={class:"captcha-img"},na=["src"],oa={class:"form-submit-wrap"},la={key:0},ra={key:1},ia=F(()=>_("br",null,null,-1)),ua={key:2,class:"phone-bind-wrap"},da={class:"captcha-img-wrap"},pa={class:"captcha-img"},ca=["src"],ma={class:"form-submit-wrap"},_a={key:1,class:"phone-bind-wrap"},va={class:"form-submit-wrap"},fa=we({__name:"Setting",setup(q){const Y="/v1/attachment",ee="Bearer "+localStorage.getItem("PAOPAO_TOKEN"),A=d("public/avatar"),ae="false".toLowerCase()==="true",o=Pe(),P=d(!1),N=d(!1),z=d(!1),L=d(),M=d(),C=d(!1),D=d(!1),$=d(!1),B=d(!1),I=d(60),y=d(!1),k=d(!1),W=d(),G=d(),H=d(),J=d(),t=Q({id:"",b64s:"",imgCaptcha:"",phone:"",phone_captcha:"",password:"",old_password:"",reenteredPassword:""}),u=Q({id:"",b64s:"",imgCaptcha:"",activate_code:""}),te=async n=>{var e,v;return A.value==="public/avatar"&&!["image/png","image/jpg","image/jpeg"].includes((e=n.file.file)==null?void 0:e.type)?(window.$message.warning("头像仅允许 png/jpg 格式"),!1):A.value==="image"&&((v=n.file.file)==null?void 0:v.size)>1048576?(window.$message.warning("头像大小不能超过1MB"),!1):!0},se=({file:n,event:e})=>{var v;try{let f=JSON.parse((v=e.target)==null?void 0:v.response);f.code===0&&A.value==="public/avatar"&&$e({avatar:f.data.content}).then(c=>{var K;window.$message.success("头像更新成功"),(K=L.value)==null||K.clear(),o.commit("updateUserinfo",{...o.state.userInfo,avatar:f.data.content})}).catch(c=>{console.log(c)})}catch{window.$message.error("上传失败")}},ne=(n,e)=>!!t.password&&t.password.startsWith(e)&&t.password.length>=e.length,oe=(n,e)=>e===t.password,le=()=>{var n;t.reenteredPassword&&((n=J.value)==null||n.validate({trigger:"password-input"}))},re=n=>{var e;n.preventDefault(),(e=H.value)==null||e.validate(v=>{v||(D.value=!0,Be({password:t.password,old_password:t.old_password}).then(f=>{D.value=!1,$.value=!1,window.$message.success("密码重置成功"),o.commit("userLogout"),o.commit("triggerAuth",!0),o.commit("triggerAuthKey","signin")}).catch(f=>{D.value=!1}))})},ie=n=>{var e;n.preventDefault(),(e=W.value)==null||e.validate(v=>{v||(N.value=!0,Ue({phone:t.phone,captcha:t.phone_captcha}).then(f=>{N.value=!1,y.value=!1,window.$message.success("绑定成功"),o.commit("updateUserinfo",{...o.state.userInfo,phone:t.phone}),t.id="",t.b64s="",t.imgCaptcha="",t.phone="",t.phone_captcha=""}).catch(f=>{N.value=!1}))})},ue=n=>{var e;n.preventDefault(),(e=G.value)==null||e.validate(v=>{if(u.imgCaptcha===""){window.$message.warning("请输入图片验证码");return}P.value=!0,v||(z.value=!0,Se({activate_code:u.activate_code,captcha_id:u.id,imgCaptcha:u.imgCaptcha}).then(f=>{z.value=!1,k.value=!1,window.$message.success("激活成功"),o.commit("updateUserinfo",{...o.state.userInfo,activation:u.activate_code}),u.id="",u.b64s="",u.imgCaptcha="",u.activate_code=""}).catch(f=>{z.value=!1,f.code===20012&&j()}))})},T=()=>{X().then(n=>{t.id=n.id,t.b64s=n.b64s}).catch(n=>{console.log(n)})},j=()=>{X().then(n=>{u.id=n.id,u.b64s=n.b64s}).catch(n=>{console.log(n)})},de=()=>{Re({nickname:o.state.userInfo.nickname||""}).then(n=>{C.value=!1,window.$message.success("昵称修改成功")}).catch(n=>{C.value=!0})},pe=()=>{if(!(I.value>0&&B.value)){if(t.imgCaptcha===""){window.$message.warning("请输入图片验证码");return}P.value=!0,qe({phone:t.phone,img_captcha:t.imgCaptcha,img_captcha_id:t.id}).then(n=>{B.value=!0,P.value=!1,window.$message.success("发送成功");let e=setInterval(()=>{I.value--,I.value===0&&(clearInterval(e),I.value=60,B.value=!1)},1e3)}).catch(n=>{P.value=!1,n.code===20012&&T(),console.log(n)})}},ce={phone:[{required:!0,message:"请输入手机号",trigger:["input"],validator:(n,e)=>/^[1]+[3-9]{1}\d{9}$/.test(e)}],phone_captcha:[{required:!0,message:"请输入手机验证码"}]},me={activate_code:[{required:!0,message:"请输入激活码",trigger:["input"],validator:(n,e)=>/\d{6}$/.test(e)}]},_e={password:[{required:!0,message:"请输入新密码"}],old_password:[{required:!0,message:"请输入旧密码"}],reenteredPassword:[{required:!0,message:"请再次输入密码",trigger:["input","blur"]},{validator:ne,message:"两次密码输入不一致",trigger:"input"},{validator:oe,message:"两次密码输入不一致",trigger:["blur","password-input"]}]},ve=()=>{C.value=!0,setTimeout(()=>{var n;(n=M.value)==null||n.focus()},30)};return ye(()=>{o.state.userInfo.id===0&&(o.commit("triggerAuth",!0),o.commit("triggerAuthKey","signin")),T(),j()}),(n,e)=>{const v=ge,f=De,c=Ke,K=xe,g=Fe,fe=Te,x=ze,Z=je,w=Ve,he=Ee,V=Oe,E=Le,O=Me;return i(),h("div",null,[a(v,{title:"设置",theme:""}),a(x,{title:"基本信息",size:"small",class:"setting-card"},{default:s(()=>[_("div",We,[a(f,{class:"avatar-img",size:80,src:r(o).state.userInfo.avatar},null,8,["src"]),!r(o).state.profile.allowPhoneBind||r(o).state.profile.allowPhoneBind&&r(o).state.userInfo.phone&&r(o).state.userInfo.phone.length>0?(i(),b(K,{key:0,ref_key:"avatarRef",ref:L,action:Y,headers:{Authorization:ee},data:{type:A.value},onBeforeUpload:te,onFinish:se},{default:s(()=>[a(c,{size:"small"},{default:s(()=>[p("更改头像")]),_:1})]),_:1},8,["headers","data"])):m("",!0)]),_("div",Ge,[He,C.value?m("",!0):(i(),h("div",Je,U(r(o).state.userInfo.nickname),1)),ke(a(g,{ref_key:"inputInstRef",ref:M,class:"nickname-input",value:r(o).state.userInfo.nickname,"onUpdate:value":e[0]||(e[0]=l=>r(o).state.userInfo.nickname=l),type:"text",size:"small",placeholder:"请输入昵称",onBlur:de,maxlength:16},null,8,["value"]),[[be,C.value]]),!C.value&&(!r(o).state.profile.allowPhoneBind||r(o).state.profile.allowPhoneBind&&r(o).state.userInfo.phone&&r(o).state.userInfo.phone.length>0&&r(o).state.userInfo.status==1)?(i(),b(c,{key:1,quaternary:"",round:"",type:"success",size:"small",onClick:ve},{icon:s(()=>[a(fe,null,{default:s(()=>[a(r(Ne))]),_:1})]),_:1})):m("",!0)]),_("div",Ze,[Qe,p(" @"+U(r(o).state.userInfo.username),1)])]),_:1}),r(o).state.profile.allowPhoneBind?(i(),b(x,{key:0,title:"手机号",size:"small",class:"setting-card"},{default:s(()=>[r(o).state.userInfo.phone&&r(o).state.userInfo.phone.length>0?(i(),h("div",Xe,[p(U(r(o).state.userInfo.phone)+" ",1),!y.value&&r(o).state.userInfo.status==1?(i(),b(c,{key:0,quaternary:"",round:"",type:"success",onClick:e[1]||(e[1]=l=>y.value=!0)},{default:s(()=>[p(" 换绑手机 ")]),_:1})):m("",!0)])):(i(),h("div",Ye,[a(Z,{title:"手机绑定提示",type:"warning"},{default:s(()=>[p(" 成功绑定手机后,才能进行换头像、发动态、回复等交互~"),ea,y.value?m("",!0):(i(),h("a",{key:0,class:"hash-link",onClick:e[2]||(e[2]=l=>y.value=!0)}," 立即绑定 "))]),_:1})])),y.value?(i(),h("div",aa,[a(O,{ref_key:"phoneFormRef",ref:W,model:t,rules:ce},{default:s(()=>[a(w,{path:"phone",label:"手机号"},{default:s(()=>[a(g,{value:t.phone,"onUpdate:value":e[3]||(e[3]=l=>t.phone=l.trim()),placeholder:"请输入中国大陆手机号",onKeydown:e[4]||(e[4]=S(R(()=>{},["prevent"]),["enter"]))},null,8,["value"])]),_:1}),a(w,{path:"img_captcha",label:"图形验证码"},{default:s(()=>[_("div",ta,[a(g,{value:t.imgCaptcha,"onUpdate:value":e[5]||(e[5]=l=>t.imgCaptcha=l),placeholder:"请输入图形验证码后获取验证码"},null,8,["value"]),_("div",sa,[t.b64s?(i(),h("img",{key:0,src:t.b64s,onClick:T},null,8,na)):m("",!0)])])]),_:1}),a(w,{path:"phone_captcha",label:"短信验证码"},{default:s(()=>[a(he,null,{default:s(()=>[a(g,{value:t.phone_captcha,"onUpdate:value":e[6]||(e[6]=l=>t.phone_captcha=l),placeholder:"请输入收到的短信验证码"},null,8,["value"]),a(c,{type:"primary",ghost:"",disabled:B.value,loading:P.value,onClick:pe},{default:s(()=>[p(U(I.value>0&&B.value?I.value+"s后重新发送":"发送验证码"),1)]),_:1},8,["disabled","loading"])]),_:1})]),_:1}),a(E,{gutter:[0,24]},{default:s(()=>[a(V,{span:24},{default:s(()=>[_("div",oa,[a(c,{quaternary:"",round:"",onClick:e[7]||(e[7]=l=>y.value=!1)},{default:s(()=>[p(" 取消 ")]),_:1}),a(c,{secondary:"",round:"",type:"primary",loading:N.value,onClick:ie},{default:s(()=>[p(" 绑定 ")]),_:1},8,["loading"])])]),_:1})]),_:1})]),_:1},8,["model"])])):m("",!0)]),_:1})):m("",!0),ae?(i(),b(x,{key:1,title:"激活码",size:"small",class:"setting-card"},{default:s(()=>[r(o).state.userInfo.activation&&r(o).state.userInfo.activation.length>0?(i(),h("div",la,[p(U(r(o).state.userInfo.activation)+" ",1),k.value?m("",!0):(i(),b(c,{key:0,quaternary:"",round:"",type:"success",onClick:e[8]||(e[8]=l=>k.value=!0)},{default:s(()=>[p(" 重新激活 ")]),_:1}))])):(i(),h("div",ra,[a(Z,{title:"激活码激活提示",type:"warning"},{default:s(()=>[p(" 成功激活后后,才能发(公开/好友可见)动态、回复~"),ia,k.value?m("",!0):(i(),h("a",{key:0,class:"hash-link",onClick:e[9]||(e[9]=l=>k.value=!0)}," 立即激活 "))]),_:1})])),k.value?(i(),h("div",ua,[a(O,{ref_key:"activateFormRef",ref:G,model:u,rules:me},{default:s(()=>[a(w,{path:"activate_code",label:"激活码"},{default:s(()=>[a(g,{value:u.activate_code,"onUpdate:value":e[10]||(e[10]=l=>u.activate_code=l.trim()),placeholder:"请输入激活码",onKeydown:e[11]||(e[11]=S(R(()=>{},["prevent"]),["enter"]))},null,8,["value"])]),_:1}),a(w,{path:"img_captcha",label:"图形验证码"},{default:s(()=>[_("div",da,[a(g,{value:u.imgCaptcha,"onUpdate:value":e[12]||(e[12]=l=>u.imgCaptcha=l),placeholder:"请输入图形验证码后获取验证码"},null,8,["value"]),_("div",pa,[u.b64s?(i(),h("img",{key:0,src:u.b64s,onClick:j},null,8,ca)):m("",!0)])])]),_:1}),a(E,{gutter:[0,24]},{default:s(()=>[a(V,{span:24},{default:s(()=>[_("div",ma,[a(c,{quaternary:"",round:"",onClick:e[13]||(e[13]=l=>k.value=!1)},{default:s(()=>[p(" 取消 ")]),_:1}),a(c,{secondary:"",round:"",type:"primary",loading:z.value,onClick:ue},{default:s(()=>[p(" 激活 ")]),_:1},8,["loading"])])]),_:1})]),_:1})]),_:1},8,["model"])])):m("",!0)]),_:1})):m("",!0),a(x,{title:"账户安全",size:"small",class:"setting-card"},{default:s(()=>[p(" 您已设置密码 "),$.value?m("",!0):(i(),b(c,{key:0,quaternary:"",round:"",type:"success",onClick:e[14]||(e[14]=l=>$.value=!0)},{default:s(()=>[p(" 重置密码 ")]),_:1})),$.value?(i(),h("div",_a,[a(O,{ref_key:"formRef",ref:H,model:t,rules:_e},{default:s(()=>[a(w,{path:"old_password",label:"旧密码"},{default:s(()=>[a(g,{value:t.old_password,"onUpdate:value":e[15]||(e[15]=l=>t.old_password=l),type:"password",placeholder:"请输入当前密码",onKeydown:e[16]||(e[16]=S(R(()=>{},["prevent"]),["enter"]))},null,8,["value"])]),_:1}),a(w,{path:"password",label:"新密码"},{default:s(()=>[a(g,{value:t.password,"onUpdate:value":e[17]||(e[17]=l=>t.password=l),type:"password",placeholder:"请输入新密码",onInput:le,onKeydown:e[18]||(e[18]=S(R(()=>{},["prevent"]),["enter"]))},null,8,["value"])]),_:1}),a(w,{ref_key:"rPasswordFormItemRef",ref:J,first:"",path:"reenteredPassword",label:"重复密码"},{default:s(()=>[a(g,{value:t.reenteredPassword,"onUpdate:value":e[19]||(e[19]=l=>t.reenteredPassword=l),disabled:!t.password,type:"password",placeholder:"请再次输入密码",onKeydown:e[20]||(e[20]=S(R(()=>{},["prevent"]),["enter"]))},null,8,["value","disabled"])]),_:1},512),a(E,{gutter:[0,24]},{default:s(()=>[a(V,{span:24},{default:s(()=>[_("div",va,[a(c,{quaternary:"",round:"",onClick:e[21]||(e[21]=l=>$.value=!1)},{default:s(()=>[p(" 取消 ")]),_:1}),a(c,{secondary:"",round:"",type:"primary",loading:D.value,onClick:re},{default:s(()=>[p(" 更新 ")]),_:1},8,["loading"])])]),_:1})]),_:1})]),_:1},8,["model"])])):m("",!0)]),_:1})])}}}),ja=Ae(fa,[["__scopeId","data-v-7bb19e7f"]]);export{ja as default}; diff --git a/web/dist/assets/Setting-94ec4c57.css b/web/dist/assets/Setting-D32M9eQI.css similarity index 100% rename from web/dist/assets/Setting-94ec4c57.css rename to web/dist/assets/Setting-D32M9eQI.css diff --git a/web/dist/assets/Setting-a557ce66.js b/web/dist/assets/Setting-a557ce66.js deleted file mode 100644 index 0e59e7dc..00000000 --- a/web/dist/assets/Setting-a557ce66.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as he}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{d as we,H as d,R as Z,b as ye,f as g,k as t,w as s,bf as r,q as k,Y as _,e as i,j as m,A as p,x as U,O as be,D as ke,Z as R,y as S,$ as Ce,a0 as Ie}from"./@vue-a481fc63.js";import{u as $e}from"./vuex-44de225f.js";import{a4 as Q,a5 as Pe,a6 as Be,a7 as Ue,a8 as Re,a9 as Se,aa as qe,_ as Ae}from"./index-1e276b8f.js";import{a2 as Ne}from"./@vicons-f0266f88.js";import{h as ze,o as xe,e as De,B as Ke,b as Fe,j as Te,T as je,$ as Oe,L as Ve,a0 as Ee,a1 as Le,d as Me}from"./naive-ui-eecf2ec3.js";import"./vue-router-e5a2430e.js";import"./vooks-6d99783e.js";import"./evtd-b614532e.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./@css-render-7124a1a5.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";const F=q=>(Ce("data-v-7bb19e7f"),q=q(),Ie(),q),We={class:"base-line avatar"},Ge={class:"base-line"},He=F(()=>m("span",{class:"base-label"},"昵称",-1)),Je={key:0},Ye={class:"base-line"},Ze=F(()=>m("span",{class:"base-label"},"用户名",-1)),Qe={key:0},Xe={key:1},et=F(()=>m("br",null,null,-1)),tt={key:2,class:"phone-bind-wrap"},at={class:"captcha-img-wrap"},st={class:"captcha-img"},nt=["src"],ot={class:"form-submit-wrap"},lt={key:0},rt={key:1},it=F(()=>m("br",null,null,-1)),ut={key:2,class:"phone-bind-wrap"},dt={class:"captcha-img-wrap"},pt={class:"captcha-img"},ct=["src"],_t={class:"form-submit-wrap"},mt={key:1,class:"phone-bind-wrap"},vt={class:"form-submit-wrap"},ft=we({__name:"Setting",setup(q){const X="/v1/attachment",ee="Bearer "+localStorage.getItem("PAOPAO_TOKEN"),A=d("public/avatar"),te="false".toLowerCase()==="true",o=$e(),$=d(!1),N=d(!1),z=d(!1),L=d(),M=d(),C=d(!1),x=d(!1),P=d(!1),B=d(!1),I=d(60),y=d(!1),b=d(!1),W=d(),G=d(),H=d(),J=d(),a=Z({id:"",b64s:"",imgCaptcha:"",phone:"",phone_captcha:"",password:"",old_password:"",reenteredPassword:""}),u=Z({id:"",b64s:"",imgCaptcha:"",activate_code:""}),ae=async n=>{var e,v;return A.value==="public/avatar"&&!["image/png","image/jpg","image/jpeg"].includes((e=n.file.file)==null?void 0:e.type)?(window.$message.warning("头像仅允许 png/jpg 格式"),!1):A.value==="image"&&((v=n.file.file)==null?void 0:v.size)>1048576?(window.$message.warning("头像大小不能超过1MB"),!1):!0},se=({file:n,event:e})=>{var v;try{let f=JSON.parse((v=e.target)==null?void 0:v.response);f.code===0&&A.value==="public/avatar"&&Pe({avatar:f.data.content}).then(c=>{var D;window.$message.success("头像更新成功"),(D=L.value)==null||D.clear(),o.commit("updateUserinfo",{...o.state.userInfo,avatar:f.data.content})}).catch(c=>{console.log(c)})}catch{window.$message.error("上传失败")}},ne=(n,e)=>!!a.password&&a.password.startsWith(e)&&a.password.length>=e.length,oe=(n,e)=>e===a.password,le=()=>{var n;a.reenteredPassword&&((n=J.value)==null||n.validate({trigger:"password-input"}))},re=n=>{var e;n.preventDefault(),(e=H.value)==null||e.validate(v=>{v||(x.value=!0,Be({password:a.password,old_password:a.old_password}).then(f=>{x.value=!1,P.value=!1,window.$message.success("密码重置成功"),o.commit("userLogout"),o.commit("triggerAuth",!0),o.commit("triggerAuthKey","signin")}).catch(f=>{x.value=!1}))})},ie=n=>{var e;n.preventDefault(),(e=W.value)==null||e.validate(v=>{v||(N.value=!0,Ue({phone:a.phone,captcha:a.phone_captcha}).then(f=>{N.value=!1,y.value=!1,window.$message.success("绑定成功"),o.commit("updateUserinfo",{...o.state.userInfo,phone:a.phone}),a.id="",a.b64s="",a.imgCaptcha="",a.phone="",a.phone_captcha=""}).catch(f=>{N.value=!1}))})},ue=n=>{var e;n.preventDefault(),(e=G.value)==null||e.validate(v=>{if(u.imgCaptcha===""){window.$message.warning("请输入图片验证码");return}$.value=!0,v||(z.value=!0,Re({activate_code:u.activate_code,captcha_id:u.id,imgCaptcha:u.imgCaptcha}).then(f=>{z.value=!1,b.value=!1,window.$message.success("激活成功"),o.commit("updateUserinfo",{...o.state.userInfo,activation:u.activate_code}),u.id="",u.b64s="",u.imgCaptcha="",u.activate_code=""}).catch(f=>{z.value=!1,f.code===20012&&j()}))})},T=()=>{Q().then(n=>{a.id=n.id,a.b64s=n.b64s}).catch(n=>{console.log(n)})},j=()=>{Q().then(n=>{u.id=n.id,u.b64s=n.b64s}).catch(n=>{console.log(n)})},de=()=>{Se({nickname:o.state.userInfo.nickname||""}).then(n=>{C.value=!1,window.$message.success("昵称修改成功")}).catch(n=>{C.value=!0})},pe=()=>{if(!(I.value>0&&B.value)){if(a.imgCaptcha===""){window.$message.warning("请输入图片验证码");return}$.value=!0,qe({phone:a.phone,img_captcha:a.imgCaptcha,img_captcha_id:a.id}).then(n=>{B.value=!0,$.value=!1,window.$message.success("发送成功");let e=setInterval(()=>{I.value--,I.value===0&&(clearInterval(e),I.value=60,B.value=!1)},1e3)}).catch(n=>{$.value=!1,n.code===20012&&T(),console.log(n)})}},ce={phone:[{required:!0,message:"请输入手机号",trigger:["input"],validator:(n,e)=>/^[1]+[3-9]{1}\d{9}$/.test(e)}],phone_captcha:[{required:!0,message:"请输入手机验证码"}]},_e={activate_code:[{required:!0,message:"请输入激活码",trigger:["input"],validator:(n,e)=>/\d{6}$/.test(e)}]},me={password:[{required:!0,message:"请输入新密码"}],old_password:[{required:!0,message:"请输入旧密码"}],reenteredPassword:[{required:!0,message:"请再次输入密码",trigger:["input","blur"]},{validator:ne,message:"两次密码输入不一致",trigger:"input"},{validator:oe,message:"两次密码输入不一致",trigger:["blur","password-input"]}]},ve=()=>{C.value=!0,setTimeout(()=>{var n;(n=M.value)==null||n.focus()},30)};return ye(()=>{o.state.userInfo.id===0&&(o.commit("triggerAuth",!0),o.commit("triggerAuthKey","signin")),T(),j()}),(n,e)=>{const v=he,f=xe,c=De,D=Ke,h=Fe,fe=Te,K=ze,Y=je,w=Oe,ge=Ve,O=Ee,V=Le,E=Me;return i(),g("div",null,[t(v,{title:"设置",theme:""}),t(K,{title:"基本信息",size:"small",class:"setting-card"},{default:s(()=>[m("div",We,[t(f,{class:"avatar-img",size:80,src:r(o).state.userInfo.avatar},null,8,["src"]),!r(o).state.profile.allowPhoneBind||r(o).state.profile.allowPhoneBind&&r(o).state.userInfo.phone&&r(o).state.userInfo.phone.length>0?(i(),k(D,{key:0,ref_key:"avatarRef",ref:L,action:X,headers:{Authorization:ee},data:{type:A.value},onBeforeUpload:ae,onFinish:se},{default:s(()=>[t(c,{size:"small"},{default:s(()=>[p("更改头像")]),_:1})]),_:1},8,["headers","data"])):_("",!0)]),m("div",Ge,[He,C.value?_("",!0):(i(),g("div",Je,U(r(o).state.userInfo.nickname),1)),be(t(h,{ref_key:"inputInstRef",ref:M,class:"nickname-input",value:r(o).state.userInfo.nickname,"onUpdate:value":e[0]||(e[0]=l=>r(o).state.userInfo.nickname=l),type:"text",size:"small",placeholder:"请输入昵称",onBlur:de,maxlength:16},null,8,["value"]),[[ke,C.value]]),!C.value&&(!r(o).state.profile.allowPhoneBind||r(o).state.profile.allowPhoneBind&&r(o).state.userInfo.phone&&r(o).state.userInfo.phone.length>0&&r(o).state.userInfo.status==1)?(i(),k(c,{key:1,quaternary:"",round:"",type:"success",size:"small",onClick:ve},{icon:s(()=>[t(fe,null,{default:s(()=>[t(r(Ne))]),_:1})]),_:1})):_("",!0)]),m("div",Ye,[Ze,p(" @"+U(r(o).state.userInfo.username),1)])]),_:1}),r(o).state.profile.allowPhoneBind?(i(),k(K,{key:0,title:"手机号",size:"small",class:"setting-card"},{default:s(()=>[r(o).state.userInfo.phone&&r(o).state.userInfo.phone.length>0?(i(),g("div",Qe,[p(U(r(o).state.userInfo.phone)+" ",1),!y.value&&r(o).state.userInfo.status==1?(i(),k(c,{key:0,quaternary:"",round:"",type:"success",onClick:e[1]||(e[1]=l=>y.value=!0)},{default:s(()=>[p(" 换绑手机 ")]),_:1})):_("",!0)])):(i(),g("div",Xe,[t(Y,{title:"手机绑定提示",type:"warning"},{default:s(()=>[p(" 成功绑定手机后,才能进行换头像、发动态、回复等交互~"),et,y.value?_("",!0):(i(),g("a",{key:0,class:"hash-link",onClick:e[2]||(e[2]=l=>y.value=!0)}," 立即绑定 "))]),_:1})])),y.value?(i(),g("div",tt,[t(E,{ref_key:"phoneFormRef",ref:W,model:a,rules:ce},{default:s(()=>[t(w,{path:"phone",label:"手机号"},{default:s(()=>[t(h,{value:a.phone,"onUpdate:value":e[3]||(e[3]=l=>a.phone=l.trim()),placeholder:"请输入中国大陆手机号",onKeydown:e[4]||(e[4]=R(S(()=>{},["prevent"]),["enter"]))},null,8,["value"])]),_:1}),t(w,{path:"img_captcha",label:"图形验证码"},{default:s(()=>[m("div",at,[t(h,{value:a.imgCaptcha,"onUpdate:value":e[5]||(e[5]=l=>a.imgCaptcha=l),placeholder:"请输入图形验证码后获取验证码"},null,8,["value"]),m("div",st,[a.b64s?(i(),g("img",{key:0,src:a.b64s,onClick:T},null,8,nt)):_("",!0)])])]),_:1}),t(w,{path:"phone_captcha",label:"短信验证码"},{default:s(()=>[t(ge,null,{default:s(()=>[t(h,{value:a.phone_captcha,"onUpdate:value":e[6]||(e[6]=l=>a.phone_captcha=l),placeholder:"请输入收到的短信验证码"},null,8,["value"]),t(c,{type:"primary",ghost:"",disabled:B.value,loading:$.value,onClick:pe},{default:s(()=>[p(U(I.value>0&&B.value?I.value+"s后重新发送":"发送验证码"),1)]),_:1},8,["disabled","loading"])]),_:1})]),_:1}),t(V,{gutter:[0,24]},{default:s(()=>[t(O,{span:24},{default:s(()=>[m("div",ot,[t(c,{quaternary:"",round:"",onClick:e[7]||(e[7]=l=>y.value=!1)},{default:s(()=>[p(" 取消 ")]),_:1}),t(c,{secondary:"",round:"",type:"primary",loading:N.value,onClick:ie},{default:s(()=>[p(" 绑定 ")]),_:1},8,["loading"])])]),_:1})]),_:1})]),_:1},8,["model"])])):_("",!0)]),_:1})):_("",!0),te?(i(),k(K,{key:1,title:"激活码",size:"small",class:"setting-card"},{default:s(()=>[r(o).state.userInfo.activation&&r(o).state.userInfo.activation.length>0?(i(),g("div",lt,[p(U(r(o).state.userInfo.activation)+" ",1),b.value?_("",!0):(i(),k(c,{key:0,quaternary:"",round:"",type:"success",onClick:e[8]||(e[8]=l=>b.value=!0)},{default:s(()=>[p(" 重新激活 ")]),_:1}))])):(i(),g("div",rt,[t(Y,{title:"激活码激活提示",type:"warning"},{default:s(()=>[p(" 成功激活后后,才能发(公开/好友可见)动态、回复~"),it,b.value?_("",!0):(i(),g("a",{key:0,class:"hash-link",onClick:e[9]||(e[9]=l=>b.value=!0)}," 立即激活 "))]),_:1})])),b.value?(i(),g("div",ut,[t(E,{ref_key:"activateFormRef",ref:G,model:u,rules:_e},{default:s(()=>[t(w,{path:"activate_code",label:"激活码"},{default:s(()=>[t(h,{value:u.activate_code,"onUpdate:value":e[10]||(e[10]=l=>u.activate_code=l.trim()),placeholder:"请输入激活码",onKeydown:e[11]||(e[11]=R(S(()=>{},["prevent"]),["enter"]))},null,8,["value"])]),_:1}),t(w,{path:"img_captcha",label:"图形验证码"},{default:s(()=>[m("div",dt,[t(h,{value:u.imgCaptcha,"onUpdate:value":e[12]||(e[12]=l=>u.imgCaptcha=l),placeholder:"请输入图形验证码后获取验证码"},null,8,["value"]),m("div",pt,[u.b64s?(i(),g("img",{key:0,src:u.b64s,onClick:j},null,8,ct)):_("",!0)])])]),_:1}),t(V,{gutter:[0,24]},{default:s(()=>[t(O,{span:24},{default:s(()=>[m("div",_t,[t(c,{quaternary:"",round:"",onClick:e[13]||(e[13]=l=>b.value=!1)},{default:s(()=>[p(" 取消 ")]),_:1}),t(c,{secondary:"",round:"",type:"primary",loading:z.value,onClick:ue},{default:s(()=>[p(" 激活 ")]),_:1},8,["loading"])])]),_:1})]),_:1})]),_:1},8,["model"])])):_("",!0)]),_:1})):_("",!0),t(K,{title:"账户安全",size:"small",class:"setting-card"},{default:s(()=>[p(" 您已设置密码 "),P.value?_("",!0):(i(),k(c,{key:0,quaternary:"",round:"",type:"success",onClick:e[14]||(e[14]=l=>P.value=!0)},{default:s(()=>[p(" 重置密码 ")]),_:1})),P.value?(i(),g("div",mt,[t(E,{ref_key:"formRef",ref:H,model:a,rules:me},{default:s(()=>[t(w,{path:"old_password",label:"旧密码"},{default:s(()=>[t(h,{value:a.old_password,"onUpdate:value":e[15]||(e[15]=l=>a.old_password=l),type:"password",placeholder:"请输入当前密码",onKeydown:e[16]||(e[16]=R(S(()=>{},["prevent"]),["enter"]))},null,8,["value"])]),_:1}),t(w,{path:"password",label:"新密码"},{default:s(()=>[t(h,{value:a.password,"onUpdate:value":e[17]||(e[17]=l=>a.password=l),type:"password",placeholder:"请输入新密码",onInput:le,onKeydown:e[18]||(e[18]=R(S(()=>{},["prevent"]),["enter"]))},null,8,["value"])]),_:1}),t(w,{ref_key:"rPasswordFormItemRef",ref:J,first:"",path:"reenteredPassword",label:"重复密码"},{default:s(()=>[t(h,{value:a.reenteredPassword,"onUpdate:value":e[19]||(e[19]=l=>a.reenteredPassword=l),disabled:!a.password,type:"password",placeholder:"请再次输入密码",onKeydown:e[20]||(e[20]=R(S(()=>{},["prevent"]),["enter"]))},null,8,["value","disabled"])]),_:1},512),t(V,{gutter:[0,24]},{default:s(()=>[t(O,{span:24},{default:s(()=>[m("div",vt,[t(c,{quaternary:"",round:"",onClick:e[21]||(e[21]=l=>P.value=!1)},{default:s(()=>[p(" 取消 ")]),_:1}),t(c,{secondary:"",round:"",type:"primary",loading:x.value,onClick:re},{default:s(()=>[p(" 更新 ")]),_:1},8,["loading"])])]),_:1})]),_:1})]),_:1},8,["model"])])):_("",!0)]),_:1})])}}});const jt=Ae(ft,[["__scopeId","data-v-7bb19e7f"]]);export{jt as default}; diff --git a/web/dist/assets/Topic-18b4f053.js b/web/dist/assets/Topic-18b4f053.js deleted file mode 100644 index 25f045e6..00000000 --- a/web/dist/assets/Topic-18b4f053.js +++ /dev/null @@ -1 +0,0 @@ -import{E as U,F as A,G as M,H as O,I as x,_ as z}from"./index-1e276b8f.js";import{D}from"./@vicons-f0266f88.js";import{d as q,H as _,c as T,b as B,r as G,e as c,f as u,k as n,w as s,q as $,A as C,x as h,Y as r,bf as w,E as H,al as j,F as P,u as Y}from"./@vue-a481fc63.js";import{o as J,M as V,j as K,e as Q,P as R,O as W,G as X,f as Z,g as ee,a as oe,k as te}from"./naive-ui-eecf2ec3.js";import{_ as ne}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{u as se}from"./vuex-44de225f.js";import"./vue-router-e5a2430e.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./evtd-b614532e.js";import"./@css-render-7124a1a5.js";import"./vooks-6d99783e.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";const ae={key:0,class:"tag-item"},ce={key:0,class:"tag-quote"},le={key:1,class:"tag-quote tag-follow"},ie={key:0,class:"options"},_e=q({__name:"tag-item",props:{tag:{},showAction:{type:Boolean},checkFollowing:{type:Boolean}},setup(F){const o=F,m=_(!1),g=T(()=>o.tag.user?o.tag.user.avatar:U),i=T(()=>{let e=[];return o.tag.is_following===0?e.push({label:"关注",key:"follow"}):(o.tag.is_top===0?e.push({label:"置顶",key:"stick"}):e.push({label:"取消置顶",key:"unstick"}),e.push({label:"取消关注",key:"unfollow"})),e}),l=e=>{switch(e){case"follow":O({topic_id:o.tag.id}).then(t=>{o.tag.is_following=1,window.$message.success("关注成功")}).catch(t=>{console.log(t)});break;case"unfollow":M({topic_id:o.tag.id}).then(t=>{o.tag.is_following=0,window.$message.success("取消关注")}).catch(t=>{console.log(t)});break;case"stick":A({topic_id:o.tag.id}).then(t=>{o.tag.is_top=t.top_status,window.$message.success("置顶成功")}).catch(t=>{console.log(t)});break;case"unstick":A({topic_id:o.tag.id}).then(t=>{o.tag.is_top=t.top_status,window.$message.success("取消置顶")}).catch(t=>{console.log(t)});break}};return B(()=>{m.value=!1}),(e,t)=>{const d=G("router-link"),k=J,a=V,f=K,v=Q,p=R,y=W;return!e.checkFollowing||e.checkFollowing&&e.tag.is_following===1?(c(),u("div",ae,[n(y,null,{header:s(()=>[(c(),$(a,{type:"success",size:"large",round:"",key:e.tag.id},{avatar:s(()=>[n(k,{src:g.value},null,8,["src"])]),default:s(()=>[n(d,{class:"hash-link",to:{name:"home",query:{q:e.tag.tag,t:"tag"}}},{default:s(()=>[C(" #"+h(e.tag.tag),1)]),_:1},8,["to"]),e.showAction?r("",!0):(c(),u("span",ce,"("+h(e.tag.quote_num)+")",1)),e.showAction?(c(),u("span",le,"("+h(e.tag.quote_num)+")",1)):r("",!0)]),_:1}))]),"header-extra":s(()=>[e.showAction?(c(),u("div",ie,[n(p,{placement:"bottom-end",trigger:"click",size:"small",options:i.value,onSelect:l},{default:s(()=>[n(v,{type:"success",quaternary:"",circle:"",block:""},{icon:s(()=>[n(f,null,{default:s(()=>[n(w(D))]),_:1})]),_:1})]),_:1},8,["options"])])):r("",!0)]),_:1})])):r("",!0)}}});const ue=q({__name:"Topic",setup(F){const o=se(),m=_([]),g=_("hot"),i=_(!1),l=_(!1),e=_(!1);H(l,()=>{l.value||(window.$message.success("保存成功"),o.commit("refreshTopicFollow"))});const t=T({get:()=>{let a="编辑";return l.value&&(a="保存"),a},set:a=>{}}),d=()=>{i.value=!0,x({type:g.value,num:50}).then(a=>{m.value=a.topics,i.value=!1}).catch(a=>{console.log(a),i.value=!1})},k=a=>{g.value=a,a=="follow"?e.value=!0:e.value=!1,d()};return B(()=>{d()}),(a,f)=>{const v=ne,p=Z,y=V,E=ee,I=_e,L=oe,N=te,S=X;return c(),u("div",null,[n(v,{title:"话题"}),n(S,{class:"main-content-wrap tags-wrap",bordered:""},{default:s(()=>[n(E,{type:"line",animated:"","onUpdate:value":k},j({default:s(()=>[n(p,{name:"hot",tab:"热门"}),n(p,{name:"new",tab:"最新"}),w(o).state.userLogined?(c(),$(p,{key:0,name:"follow",tab:"关注"})):r("",!0)]),_:2},[w(o).state.userLogined?{name:"suffix",fn:s(()=>[n(y,{checked:l.value,"onUpdate:checked":f[0]||(f[0]=b=>l.value=b),checkable:""},{default:s(()=>[C(h(t.value),1)]),_:1},8,["checked"])]),key:"0"}:void 0]),1024),n(N,{show:i.value},{default:s(()=>[n(L,null,{default:s(()=>[(c(!0),u(P,null,Y(m.value,b=>(c(),$(I,{tag:b,showAction:w(o).state.userLogined&&l.value,checkFollowing:e.value},null,8,["tag","showAction","checkFollowing"]))),256))]),_:1})]),_:1},8,["show"])]),_:1})])}}});const Ne=z(ue,[["__scopeId","data-v-1fb31ecf"]]);export{Ne as default}; diff --git a/web/dist/assets/Topic-384e019e.css b/web/dist/assets/Topic-DRp1ytzc.css similarity index 59% rename from web/dist/assets/Topic-384e019e.css rename to web/dist/assets/Topic-DRp1ytzc.css index ab7de4e6..d3c89818 100644 --- a/web/dist/assets/Topic-384e019e.css +++ b/web/dist/assets/Topic-DRp1ytzc.css @@ -1 +1 @@ -.tag-item .tag-quote{margin-left:12px;font-size:14px;opacity:.75}.tag-item .tag-follow{margin-right:22px}.tag-item .options{margin-left:-32px;margin-bottom:4px;opacity:.55}.tag-item .n-thing .n-thing-header{margin-bottom:0}.tag-item .n-thing .n-thing-avatar-header-wrapper{align-items:center}.tags-wrap[data-v-1fb31ecf]{padding:20px}.dark .tags-wrap[data-v-1fb31ecf]{background-color:#101014bf} +.tag-item .tag-quote{margin-left:12px;font-size:14px;opacity:.75}.tag-item .tag-follow{margin-right:22px}.tag-item .options{margin-left:-32px;margin-bottom:4px;opacity:.55}.tag-item .n-thing .n-thing-header{margin-bottom:0}.tag-item .n-thing .n-thing-avatar-header-wrapper{align-items:center}.tags-wrap[data-v-f89944c3]{padding:20px}.dark .tags-wrap[data-v-f89944c3],.dark .empty-wrap[data-v-f89944c3]{background-color:#101014bf} diff --git a/web/dist/assets/Topic-rFad0zit.js b/web/dist/assets/Topic-rFad0zit.js new file mode 100644 index 00000000..f3dad6b3 --- /dev/null +++ b/web/dist/assets/Topic-rFad0zit.js @@ -0,0 +1 @@ +import{E as M,F as A,G as q,H as O,I as D,J as G,_ as H}from"./index-v3l9hw1O.js";import{D as J}from"./@vicons-C3A8jsfr.js";import{d as P,H as _,c as $,b as B,r as j,e as c,f as p,k as n,w as a,q as w,A as C,x as k,Z as u,bk as m,E as Z,ar as K,F as Q,u as R}from"./@vue-CQsYufSu.js";import{o as W,M as L,j as X,e as Y,P as x,O as ee,G as oe,f as te,g as ne,a as se,J as ae,k as ce}from"./naive-ui-DNcWoFGl.js";import{_ as ie}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{u as le}from"./vuex-DNAxYlmG.js";import"./vue-router-zwGLnBy5.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./evtd-CI_DDEu_.js";import"./@css-render-CQdyXCYJ.js";import"./vooks-BQzJqMzq.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";const _e={key:0,class:"tag-item"},pe={key:0,class:"tag-quote"},ue={key:1,class:"tag-quote tag-follow"},re={key:0,class:"options"},ge=P({__name:"tag-item",props:{tag:{},showAction:{type:Boolean},checkFollowing:{type:Boolean},checkPin:{type:Boolean}},setup(F){const l=_(!1),t=F,d=$(()=>t.tag.user?t.tag.user.avatar:M),r=$(()=>{let e=[];return t.tag.is_following===0?e.push({label:"关注",key:"follow"}):(t.tag.is_pin===0?e.push({label:"钉住",key:"pin"}):e.push({label:"取消钉住",key:"unpin"}),t.tag.is_top===0?e.push({label:"置顶",key:"stick"}):e.push({label:"取消置顶",key:"unstick"}),e.push({label:"取消关注",key:"unfollow"})),e}),i=e=>{switch(e){case"follow":D({topic_id:t.tag.id}).then(o=>{t.tag.is_following=1,window.$message.success("关注成功")}).catch(o=>{console.log(o)});break;case"unfollow":O({topic_id:t.tag.id}).then(o=>{t.tag.is_following=0,window.$message.success("取消关注")}).catch(o=>{console.log(o)});break;case"pin":q({topic_id:t.tag.id}).then(o=>{t.tag.is_pin=1,window.$message.success("钉住成功")}).catch(o=>{console.log(o)});break;case"unpin":q({topic_id:t.tag.id}).then(o=>{t.tag.is_pin=0,window.$message.success("取消钉住")}).catch(o=>{console.log(o)});break;case"stick":A({topic_id:t.tag.id}).then(o=>{t.tag.is_top=o.top_status,window.$message.success("置顶成功")}).catch(o=>{console.log(o)});break;case"unstick":A({topic_id:t.tag.id}).then(o=>{t.tag.is_top=o.top_status,window.$message.success("取消置顶")}).catch(o=>{console.log(o)});break}};return B(()=>{l.value=!1}),(e,o)=>{const v=j("router-link"),h=W,y=L,s=X,f=Y,b=x,g=ee;return!e.checkFollowing&&!e.checkPin||e.checkFollowing&&e.tag.is_following===1||e.checkPin&&e.tag.is_following===1&&e.tag.is_pin===1?(c(),p("div",_e,[n(g,null,{header:a(()=>[(c(),w(y,{type:"success",size:"large",round:"",key:e.tag.id},{avatar:a(()=>[n(h,{src:d.value},null,8,["src"])]),default:a(()=>[n(v,{class:"hash-link",to:{name:"home",query:{q:e.tag.tag,t:"tag"}}},{default:a(()=>[C(" #"+k(e.tag.tag),1)]),_:1},8,["to"]),e.showAction?u("",!0):(c(),p("span",pe,"("+k(e.tag.quote_num)+")",1)),e.showAction?(c(),p("span",ue,"("+k(e.tag.quote_num)+")",1)):u("",!0)]),_:1}))]),"header-extra":a(()=>[e.showAction?(c(),p("div",re,[n(b,{placement:"bottom-end",trigger:"click",size:"small",options:r.value,onSelect:i},{default:a(()=>[n(f,{type:"success",quaternary:"",circle:"",block:""},{icon:a(()=>[n(s,null,{default:a(()=>[n(m(J))]),_:1})]),_:1})]),_:1},8,["options"])])):u("",!0)]),_:1})])):u("",!0)}}}),me={key:0,class:"empty-wrap"},de=P({__name:"Topic",setup(F){const l=le(),t=_([]),d=_("hot"),r=_(!1),i=_(!1),e=_(!1),o=_(!1);Z(i,()=>{i.value||(window.$message.success("保存成功"),l.commit("refreshTopicFollow"))});const v=$({get:()=>{let s="编辑";return i.value&&(s="保存"),s},set:s=>{}}),h=()=>{r.value=!0,G({type:d.value,num:50}).then(s=>{t.value=s.topics,r.value=!1}).catch(s=>{t.value=[],console.log(s),r.value=!1})},y=s=>{d.value=s,e.value=s==="follow",o.value=s==="pin",h()};return B(()=>{h()}),(s,f)=>{const b=ie,g=te,V=L,E=ne,N=ge,S=se,U=ae,z=ce,I=oe;return c(),p("div",null,[n(b,{title:"话题"}),n(I,{class:"main-content-wrap tags-wrap",bordered:""},{default:a(()=>[n(E,{type:"line",animated:"","onUpdate:value":y},K({default:a(()=>[n(g,{name:"hot",tab:"热门"}),n(g,{name:"new",tab:"最新"}),m(l).state.userLogined?(c(),w(g,{key:0,name:"follow",tab:"关注"})):u("",!0),m(l).state.userLogined?(c(),w(g,{key:1,name:"pin",tab:"钉住"})):u("",!0)]),_:2},[m(l).state.userLogined?{name:"suffix",fn:a(()=>[n(V,{checked:i.value,"onUpdate:checked":f[0]||(f[0]=T=>i.value=T),checkable:""},{default:a(()=>[C(k(v.value),1)]),_:1},8,["checked"])]),key:"0"}:void 0]),1024),n(z,{show:r.value},{default:a(()=>[n(S,null,{default:a(()=>[(c(!0),p(Q,null,R(t.value,T=>(c(),w(N,{tag:T,showAction:m(l).state.userLogined&&i.value,checkFollowing:e.value,checkPin:o.value},null,8,["tag","showAction","checkFollowing","checkPin"]))),256))]),_:1}),t.value.length===0?(c(),p("div",me,[n(U,{size:"large",description:"暂无数据"})])):u("",!0)]),_:1},8,["show"])]),_:1})])}}}),Me=H(de,[["__scopeId","data-v-f89944c3"]]);export{Me as default}; diff --git a/web/dist/assets/User-2cbcc914.css b/web/dist/assets/User-2cbcc914.css deleted file mode 100644 index 4a00cd42..00000000 --- a/web/dist/assets/User-2cbcc914.css +++ /dev/null @@ -1 +0,0 @@ -.profile-tabs-wrap[data-v-00385319]{padding:0 16px}.profile-baseinfo[data-v-00385319]{display:flex;padding:16px}.profile-baseinfo .avatar[data-v-00385319]{width:72px}.profile-baseinfo .base-info[data-v-00385319]{position:relative;margin-left:12px;width:calc(100% - 84px)}.profile-baseinfo .base-info .username[data-v-00385319]{line-height:16px;font-size:16px}.profile-baseinfo .base-info .userinfo[data-v-00385319]{font-size:14px;line-height:14px;margin-top:10px;opacity:.75}.profile-baseinfo .base-info .userinfo .info-item[data-v-00385319]{margin-right:12px}.profile-baseinfo .base-info .top-tag[data-v-00385319]{transform:scale(.75)}.profile-baseinfo .user-opts[data-v-00385319]{position:absolute;top:16px;right:16px;opacity:.75}.load-more[data-v-00385319]{margin:20px}.load-more .load-more-wrap[data-v-00385319]{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:14px}.load-more .load-more-wrap .load-more-spinner[data-v-00385319]{font-size:14px;opacity:.65}.dark .profile-wrap[data-v-00385319],.dark .pagination-wrap[data-v-00385319]{background-color:#101014bf} diff --git a/web/dist/assets/User-5a318246.js b/web/dist/assets/User-5a318246.js deleted file mode 100644 index aedd0baa..00000000 --- a/web/dist/assets/User-5a318246.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as He,a as Ve}from"./post-item.vue_vue_type_style_index_0_lang-cb395a2b.js";import{_ as je}from"./post-skeleton-ae2be035.js";import{_ as Ee}from"./whisper-6a06efa4.js";import{_ as Ge}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{d as Je,H as i,R as Ke,c as Qe,b as Ye,E as Xe,r as Ze,f as u,k as o,w as c,q as g,Y as m,e as t,j as w,x,bf as r,A as R,y as me,F,u as T,h as fe}from"./@vue-a481fc63.js";import{u as ea}from"./vuex-44de225f.js";import{b as aa,u as ta}from"./vue-router-e5a2430e.js";import{L as sa,K as la,e as B,h as na,u as pe,f as he,M as oa,_ as ua}from"./index-1e276b8f.js";import{W as ia}from"./whisper-add-friend-e34f36ad.js";import{p as ce}from"./count-e2caa1c1.js";import{W as ra}from"./v3-infinite-loading-2c58ec2f.js";import{k as ca,a as va,r as _a,G as ge,s as da,t as ma,J as fa,R as pa}from"./@vicons-f0266f88.js";import{F as ha,G as ga,a as wa,j as we,o as ka,M as ya,e as ba,P as Pa,k as Oa,f as Fa,g as Ta,J as Ia,H as xa}from"./naive-ui-eecf2ec3.js";import"./content-68a3f6d0.js";import"./paopao-video-player-2fe58954.js";import"./copy-to-clipboard-4ef7d3eb.js";import"./@babel-725317a4.js";import"./toggle-selection-93f4ad84.js";import"./vooks-6d99783e.js";import"./evtd-b614532e.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./@css-render-7124a1a5.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";const Aa={key:0,class:"profile-baseinfo"},$a={class:"avatar"},qa={class:"base-info"},za={class:"username"},Ua={class:"userinfo"},Ma={class:"info-item"},Sa={class:"info-item"},Ca={class:"userinfo"},Wa={class:"info-item"},La={class:"info-item"},Da={class:"info-item"},Na={key:0,class:"user-opts"},Ra={key:0,class:"skeleton-wrap"},Ba={key:1},Ha={key:0,class:"empty-wrap"},Va={key:1},ja={key:0},Ea={key:1},Ga={key:2},Ja={key:3},Ka={key:4},Qa={key:2},Ya={key:0},Xa={key:1},Za={key:2},et={key:3},at={key:4},tt={class:"load-more-wrap"},st={class:"load-more-spinner"},lt=Je({__name:"User",setup(nt){const H=ha(),v=ea(),$=aa(),ke=ta(),f=i(!1),y=i(!1),a=Ke({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,tweets_count:0,status:1}),h=i(!1),V=i(!1),G=i(!1),l=i([]),q=i([]),z=i([]),U=i([]),M=i([]),S=i([]),A=i($.query.s||""),n=i(+$.query.p||1),p=i("post"),J=i(+$.query.p||1),K=i(1),Q=i(1),Y=i(1),X=i(1),k=i(20),d=i(0),Z=i(0),ee=i(0),ae=i(0),te=i(0),se=i(0),b=e=>{a.id=e.id,a.username=e.username,a.nickname=e.nickname,a.avatar=e.avatar,V.value=!0},P=e=>{H.success({title:"提示",content:"确定"+(e.user.is_following?"取消关注 @":"关注 @")+e.user.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{e.user.is_following?pe({user_id:e.user.id}).then(_=>{window.$message.success("操作成功"),ve(e.user_id,!1)}).catch(_=>{}):he({user_id:e.user.id}).then(_=>{window.$message.success("关注成功"),ve(e.user_id,!0)}).catch(_=>{})}})};function ve(e,_){C(q,e,_),C(z,e,_),C(U,e,_),C(M,e,_),C(S,e,_)}function C(e,_,ie){if(e.value&&e.value.length>0)for(let E in e.value)e.value[E].user_id==_&&(e.value[E].user.is_following=ie)}const ye=()=>{y.value=!1,l.value=[],q.value=[],z.value=[],U.value=[],M.value=[],S.value=[],p.value="post",n.value=1,J.value=1,K.value=1,Q.value=1,Y.value=1,X.value=1,d.value=0,Z.value=0,ee.value=0,ae.value=0,te.value=0,se.value=0},be=()=>{switch(p.value){case"post":j();break;case"comment":le();break;case"highlight":ne();break;case"media":oe();break;case"star":ue();break}},j=()=>{f.value=!0,B({username:A.value,style:"post",page:n.value,page_size:k.value}).then(e=>{f.value=!1,e.list.length===0&&(y.value=!0),n.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),d.value=Math.ceil(e.pager.total_rows/k.value),q.value=l.value,Z.value=d.value}).catch(e=>{l.value=[],n.value>1&&n.value--,f.value=!1})},le=()=>{f.value=!0,B({username:A.value,style:"comment",page:n.value,page_size:k.value}).then(e=>{f.value=!1,e.list.length===0&&(y.value=!0),n.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),d.value=Math.ceil(e.pager.total_rows/k.value),z.value=l.value,ee.value=d.value}).catch(e=>{l.value=[],n.value>1&&n.value--,f.value=!1})},ne=()=>{f.value=!0,B({username:A.value,style:"highlight",page:n.value,page_size:k.value}).then(e=>{f.value=!1,e.list.length===0&&(y.value=!0),n.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),d.value=Math.ceil(e.pager.total_rows/k.value),U.value=l.value,ae.value=d.value}).catch(e=>{l.value=[],n.value>1&&n.value--,f.value=!1})},oe=()=>{f.value=!0,B({username:A.value,style:"media",page:n.value,page_size:k.value}).then(e=>{f.value=!1,e.list.length===0&&(y.value=!0),n.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),d.value=Math.ceil(e.pager.total_rows/k.value),M.value=l.value,te.value=d.value}).catch(e=>{l.value=[],n.value>1&&n.value--,f.value=!1})},ue=()=>{f.value=!0,B({username:A.value,style:"star",page:n.value,page_size:k.value}).then(e=>{f.value=!1,e.list.length===0&&(y.value=!0),n.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),d.value=Math.ceil(e.pager.total_rows/k.value),S.value=l.value,se.value=d.value}).catch(e=>{l.value=[],n.value>1&&n.value--,f.value=!1})},Pe=e=>{switch(p.value=e,p.value){case"post":l.value=q.value,n.value=J.value,d.value=Z.value,j();break;case"comment":l.value=z.value,n.value=K.value,d.value=ee.value,le();break;case"highlight":l.value=U.value,n.value=Q.value,d.value=ae.value,ne();break;case"media":l.value=M.value,n.value=Y.value,d.value=te.value,oe();break;case"star":l.value=S.value,n.value=X.value,d.value=se.value,ue();break}},W=()=>{h.value=!0,sa({username:A.value}).then(e=>{h.value=!1,a.id=e.id,a.avatar=e.avatar,a.username=e.username,a.nickname=e.nickname,a.is_admin=e.is_admin,a.is_friend=e.is_friend,a.created_on=e.created_on,a.is_following=e.is_following,a.follows=e.follows,a.followings=e.followings,a.status=e.status,e.tweets_count&&(a.tweets_count=e.tweets_count),be()}).catch(e=>{h.value=!1,console.log(e)})},Oe=()=>{switch(p.value){case"post":J.value=n.value,j();break;case"comment":K.value=n.value,le();break;case"highlight":Q.value=n.value,ne();break;case"media":Y.value=n.value,oe();break;case"star":X.value=n.value,ue();break}},Fe=()=>{V.value=!0},Te=()=>{G.value=!0},Ie=()=>{V.value=!1},xe=()=>{G.value=!1},I=e=>()=>fe(we,null,{default:()=>fe(e)}),Ae=Qe(()=>{if(v.state.userInfo.username==a.username)return[{label:"设置",key:"setting",icon:I(va)}];let e=[{label:"私信",key:"whisper",icon:I(_a)}];return v.state.userInfo.is_admin&&(a.status===1?e.push({label:"禁言",key:"banned",icon:I(ge)}):e.push({label:"解封",key:"deblocking",icon:I(ge)})),a.is_following?e.push({label:"取消关注",key:"unfollow",icon:I(da)}):e.push({label:"关注",key:"follow",icon:I(ma)}),v.state.profile.useFriendship&&(a.is_friend?e.push({label:"删除好友",key:"delete",icon:I(fa)}):e.push({label:"添加朋友",key:"requesting",icon:I(pa)})),e}),$e=e=>{switch(e){case"whisper":Fe();break;case"delete":qe();break;case"requesting":Te();break;case"follow":case"unfollow":ze();break;case"banned":case"deblocking":Ue();break;case"setting":ke.push({name:"setting",query:{t:new Date().getTime()}});break}},qe=()=>{H.warning({title:"删除好友",content:"将好友 “"+a.nickname+"” 删除,将同时删除 点赞/收藏 列表中关于该朋友的 “好友可见” 推文",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{h.value=!0,na({user_id:a.id}).then(e=>{h.value=!1,a.is_friend=!1,j()}).catch(e=>{h.value=!1,console.log(e)})}})},ze=()=>{H.success({title:"提示",content:"确定"+(a.is_following?"取消关注 @":"关注 @")+a.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{h.value=!0,a.is_following?pe({user_id:a.id}).then(e=>{h.value=!1,window.$message.success("操作成功"),W()}).catch(e=>{h.value=!1,console.log(e)}):he({user_id:a.id}).then(e=>{h.value=!1,window.$message.success("操作成功"),W()}).catch(e=>{h.value=!1,console.log(e)})}})},Ue=()=>{H.warning({title:"警告",content:"确定对该用户进行"+(a.status===1?"禁言":"解封")+"处理吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{h.value=!0,oa({id:a.id,status:a.status===1?2:1}).then(e=>{h.value=!1,a.status===1?window.$message.success("禁言成功"):window.$message.success("解封成功"),W()}).catch(e=>{h.value=!1,console.log(e)})}})},Me=()=>{n.value{W()}),Xe(()=>({path:$.path,query:$.query}),(e,_)=>{_.path==="/u"&&e.path==="/u"&&(A.value=$.query.s||"",ye(),W())}),(e,_)=>{const ie=Ge,E=ka,re=ya,_e=Ze("router-link"),Se=ba,Ce=Pa,We=Ee,de=Oa,L=Fa,Le=Ta,De=je,Ne=Ia,D=He,O=xa,N=Ve,Re=ga,Be=wa;return t(),u("div",null,[o(ie,{title:"用户详情"}),o(Re,{class:"main-content-wrap profile-wrap",bordered:""},{default:c(()=>[o(de,{show:h.value},{default:c(()=>[a.id>0?(t(),u("div",Aa,[w("div",$a,[o(E,{size:72,src:a.avatar},null,8,["src"])]),w("div",qa,[w("div",za,[w("strong",null,x(a.nickname),1),w("span",null," @"+x(a.username),1),r(v).state.profile.useFriendship&&r(v).state.userInfo.id>0&&r(v).state.userInfo.username!=a.username&&a.is_friend?(t(),g(re,{key:0,class:"top-tag",type:"info",size:"small",round:""},{default:c(()=>[R(" 好友 ")]),_:1})):m("",!0),r(v).state.userInfo.id>0&&r(v).state.userInfo.username!=a.username&&a.is_following?(t(),g(re,{key:1,class:"top-tag",type:"success",size:"small",round:""},{default:c(()=>[R(" 已关注 ")]),_:1})):m("",!0),a.is_admin?(t(),g(re,{key:2,class:"top-tag",type:"error",size:"small",round:""},{default:c(()=>[R(" 管理员 ")]),_:1})):m("",!0)]),w("div",Ua,[w("span",Ma,"UID. "+x(a.id),1),w("span",Sa,x(r(la)(a.created_on))+" 加入",1)]),w("div",Ca,[w("span",Wa,[o(_e,{onClick:_[0]||(_[0]=me(()=>{},["stop"])),class:"following-link",to:{name:"following",query:{s:a.username,n:a.nickname,t:"follows"}}},{default:c(()=>[R(" 关注  "+x(r(ce)(a.follows)),1)]),_:1},8,["to"])]),w("span",La,[o(_e,{onClick:_[1]||(_[1]=me(()=>{},["stop"])),class:"following-link",to:{name:"following",query:{s:a.username,n:a.nickname,t:"followings"}}},{default:c(()=>[R(" 粉丝  "+x(r(ce)(a.followings)),1)]),_:1},8,["to"])]),w("span",Da," 泡泡  "+x(r(ce)(a.tweets_count||0)),1)])]),r(v).state.userInfo.id>0?(t(),u("div",Na,[o(Ce,{placement:"bottom-end",trigger:"click",size:"small",options:Ae.value,onSelect:$e},{default:c(()=>[o(Se,{quaternary:"",circle:""},{icon:c(()=>[o(r(we),null,{default:c(()=>[o(r(ca))]),_:1})]),_:1})]),_:1},8,["options"])])):m("",!0)])):m("",!0),o(We,{show:V.value,user:a,onSuccess:Ie},null,8,["show","user"]),o(ia,{show:G.value,user:a,onSuccess:xe},null,8,["show","user"])]),_:1},8,["show"]),o(Le,{class:"profile-tabs-wrap",type:"line",animated:"",value:p.value,"onUpdate:value":Pe},{default:c(()=>[o(L,{name:"post",tab:"泡泡"}),o(L,{name:"comment",tab:"评论"}),o(L,{name:"highlight",tab:"亮点"}),o(L,{name:"media",tab:"图文"}),o(L,{name:"star",tab:"喜欢"})]),_:1},8,["value"]),f.value&&l.value.length===0?(t(),u("div",Ra,[o(De,{num:k.value},null,8,["num"])])):(t(),u("div",Ba,[l.value.length===0?(t(),u("div",Ha,[o(Ne,{size:"large",description:"暂无数据"})])):m("",!0),r(v).state.desktopModelShow?(t(),u("div",Va,[p.value==="post"?(t(),u("div",ja,[(t(!0),u(F,null,T(q.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(D,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),p.value==="comment"?(t(),u("div",Ea,[(t(!0),u(F,null,T(z.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(D,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),p.value==="highlight"?(t(),u("div",Ga,[(t(!0),u(F,null,T(U.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(D,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),p.value==="media"?(t(),u("div",Ja,[(t(!0),u(F,null,T(M.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(D,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),p.value==="star"?(t(),u("div",Ka,[(t(!0),u(F,null,T(S.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(D,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0)])):(t(),u("div",Qa,[p.value==="post"?(t(),u("div",Ya,[(t(!0),u(F,null,T(q.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(N,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),p.value==="comment"?(t(),u("div",Xa,[(t(!0),u(F,null,T(z.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(N,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),p.value==="highlight"?(t(),u("div",Za,[(t(!0),u(F,null,T(U.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(N,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),p.value==="media"?(t(),u("div",et,[(t(!0),u(F,null,T(M.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(N,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),p.value==="star"?(t(),u("div",at,[(t(!0),u(F,null,T(S.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(N,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0)]))]))]),_:1}),d.value>0?(t(),g(Be,{key:0,justify:"center"},{default:c(()=>[o(r(ra),{class:"load-more",slots:{complete:"没有更多泡泡了",error:"加载出错"},onInfinite:_[2]||(_[2]=s=>Me())},{spinner:c(()=>[w("div",tt,[y.value?m("",!0):(t(),g(de,{key:0,size:14})),w("span",st,x(y.value?"没有更多泡泡了":"加载更多"),1)])]),_:1})]),_:1})):m("",!0)])}}});const Nt=ua(lt,[["__scopeId","data-v-00385319"]]);export{Nt as default}; diff --git a/web/dist/assets/User-BINZKVll.js b/web/dist/assets/User-BINZKVll.js new file mode 100644 index 00000000..536351ef --- /dev/null +++ b/web/dist/assets/User-BINZKVll.js @@ -0,0 +1 @@ +import{_ as Re,a as Ve}from"./post-item.vue_vue_type_style_index_0_lang-Dfn2xguO.js";import{_ as je}from"./post-skeleton-YfJeD-2o.js";import{_ as Ee}from"./whisper-DFhobfFF.js";import{_ as Ge}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{d as Je,H as i,S as Qe,c as Ze,b as Ke,E as Xe,f as u,k as o,w as c,q as g,Z as m,r as Ye,e as t,j as w,x as A,bk as r,A as B,y as me,F,u as T,h as fe}from"./@vue-CQsYufSu.js";import{u as ea}from"./vuex-DNAxYlmG.js";import{b as aa,u as ta}from"./vue-router-zwGLnBy5.js";import{M as sa,L as la,e as H,h as na,u as pe,f as he,N as oa,_ as ua}from"./index-v3l9hw1O.js";import{W as ia}from"./whisper-add-friend-CuQaAOYJ.js";import{p as ce}from"./count-BK58UQ2M.js";import{W as ra}from"./v3-infinite-loading-DK6TzcZc.js";import{k as ca,a as va,r as _a,G as ge,s as da,t as ma,J as fa,R as pa}from"./@vicons-C3A8jsfr.js";import{F as ha,G as ga,a as wa,j as we,o as ka,M as ya,e as ba,P as Pa,f as Oa,g as Fa,k as Ta,J as Ia,H as Aa}from"./naive-ui-DNcWoFGl.js";import"./content-BMjusBPS.js";import"./paopao-video-player-DAi68TC5.js";import"./copy-to-clipboard-CA7crPat.js";import"./@babel-Cpj98o6Y.js";import"./toggle-selection-BHUZwh74.js";import"./vooks-BQzJqMzq.js";import"./evtd-CI_DDEu_.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./@css-render-CQdyXCYJ.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";const xa={key:0,class:"profile-baseinfo"},$a={class:"avatar"},qa={class:"base-info"},za={class:"username"},Sa={class:"userinfo"},Ma={class:"info-item"},Ua={class:"info-item"},Ca={class:"userinfo"},Wa={class:"info-item"},La={class:"info-item"},Na={class:"info-item"},Da={key:0,class:"user-opts"},Ba={key:0,class:"skeleton-wrap"},Ha={key:1},Ra={key:0,class:"empty-wrap"},Va={key:1},ja={key:0},Ea={key:1},Ga={key:2},Ja={key:3},Qa={key:4},Za={key:2},Ka={key:0},Xa={key:1},Ya={key:2},et={key:3},at={key:4},tt={class:"load-more-wrap"},st={class:"load-more-spinner"},lt=Je({__name:"User",setup(nt){const R=ha(),v=ea(),$=aa(),ke=ta(),f=i(!1),y=i(!1),a=Qe({id:0,avatar:"",username:"",nickname:"",is_admin:!1,is_friend:!0,is_following:!1,created_on:0,follows:0,followings:0,tweets_count:0,status:1}),p=i(!1),V=i(!1),G=i(!1),l=i([]),q=i([]),z=i([]),S=i([]),M=i([]),U=i([]),x=i($.query.s||""),n=i(+$.query.p||1),h=i("post"),J=i(+$.query.p||1),Q=i(1),Z=i(1),K=i(1),X=i(1),k=i(20),d=i(0),Y=i(0),ee=i(0),ae=i(0),te=i(0),se=i(0),b=e=>{a.id=e.id,a.username=e.username,a.nickname=e.nickname,a.avatar=e.avatar,V.value=!0},P=e=>{R.success({title:"提示",content:"确定"+(e.user.is_following?"取消关注 @":"关注 @")+e.user.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{e.user.is_following?pe({user_id:e.user.id}).then(_=>{window.$message.success("操作成功"),ve(e.user_id,!1)}).catch(_=>{}):he({user_id:e.user.id}).then(_=>{window.$message.success("关注成功"),ve(e.user_id,!0)}).catch(_=>{})}})};function ve(e,_){C(q,e,_),C(z,e,_),C(S,e,_),C(M,e,_),C(U,e,_)}function C(e,_,ie){if(e.value&&e.value.length>0)for(let E in e.value)e.value[E].user_id==_&&(e.value[E].user.is_following=ie)}const ye=()=>{y.value=!1,l.value=[],q.value=[],z.value=[],S.value=[],M.value=[],U.value=[],h.value="post",n.value=1,J.value=1,Q.value=1,Z.value=1,K.value=1,X.value=1,d.value=0,Y.value=0,ee.value=0,ae.value=0,te.value=0,se.value=0},be=()=>{switch(h.value){case"post":j();break;case"comment":le();break;case"highlight":ne();break;case"media":oe();break;case"star":ue();break}},j=()=>{f.value=!0,H({username:x.value,style:"post",page:n.value,page_size:k.value}).then(e=>{f.value=!1,e.list.length===0&&(y.value=!0),n.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),d.value=Math.ceil(e.pager.total_rows/k.value),q.value=l.value,Y.value=d.value}).catch(e=>{l.value=[],n.value>1&&n.value--,f.value=!1})},le=()=>{f.value=!0,H({username:x.value,style:"comment",page:n.value,page_size:k.value}).then(e=>{f.value=!1,e.list.length===0&&(y.value=!0),n.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),d.value=Math.ceil(e.pager.total_rows/k.value),z.value=l.value,ee.value=d.value}).catch(e=>{l.value=[],n.value>1&&n.value--,f.value=!1})},ne=()=>{f.value=!0,H({username:x.value,style:"highlight",page:n.value,page_size:k.value}).then(e=>{f.value=!1,e.list.length===0&&(y.value=!0),n.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),d.value=Math.ceil(e.pager.total_rows/k.value),S.value=l.value,ae.value=d.value}).catch(e=>{l.value=[],n.value>1&&n.value--,f.value=!1})},oe=()=>{f.value=!0,H({username:x.value,style:"media",page:n.value,page_size:k.value}).then(e=>{f.value=!1,e.list.length===0&&(y.value=!0),n.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),d.value=Math.ceil(e.pager.total_rows/k.value),M.value=l.value,te.value=d.value}).catch(e=>{l.value=[],n.value>1&&n.value--,f.value=!1})},ue=()=>{f.value=!0,H({username:x.value,style:"star",page:n.value,page_size:k.value}).then(e=>{f.value=!1,e.list.length===0&&(y.value=!0),n.value>1?l.value=l.value.concat(e.list):(l.value=e.list||[],window.scrollTo(0,0)),d.value=Math.ceil(e.pager.total_rows/k.value),U.value=l.value,se.value=d.value}).catch(e=>{l.value=[],n.value>1&&n.value--,f.value=!1})},Pe=e=>{switch(h.value=e,h.value){case"post":l.value=q.value,n.value=J.value,d.value=Y.value,j();break;case"comment":l.value=z.value,n.value=Q.value,d.value=ee.value,le();break;case"highlight":l.value=S.value,n.value=Z.value,d.value=ae.value,ne();break;case"media":l.value=M.value,n.value=K.value,d.value=te.value,oe();break;case"star":l.value=U.value,n.value=X.value,d.value=se.value,ue();break}},W=()=>{p.value=!0,sa({username:x.value}).then(e=>{p.value=!1,a.id=e.id,a.avatar=e.avatar,a.username=e.username,a.nickname=e.nickname,a.is_admin=e.is_admin,a.is_friend=e.is_friend,a.created_on=e.created_on,a.is_following=e.is_following,a.follows=e.follows,a.followings=e.followings,a.status=e.status,e.tweets_count&&(a.tweets_count=e.tweets_count),be()}).catch(e=>{p.value=!1,console.log(e)})},Oe=()=>{switch(h.value){case"post":J.value=n.value,j();break;case"comment":Q.value=n.value,le();break;case"highlight":Z.value=n.value,ne();break;case"media":K.value=n.value,oe();break;case"star":X.value=n.value,ue();break}},Fe=()=>{V.value=!0},Te=()=>{G.value=!0},Ie=()=>{V.value=!1},Ae=()=>{G.value=!1},I=e=>()=>fe(we,null,{default:()=>fe(e)}),xe=Ze(()=>{if(v.state.userInfo.username==a.username)return[{label:"设置",key:"setting",icon:I(va)}];let e=[{label:"私信",key:"whisper",icon:I(_a)}];return v.state.userInfo.is_admin&&(a.status===1?e.push({label:"禁言",key:"banned",icon:I(ge)}):e.push({label:"解封",key:"deblocking",icon:I(ge)})),a.is_following?e.push({label:"取消关注",key:"unfollow",icon:I(da)}):e.push({label:"关注",key:"follow",icon:I(ma)}),v.state.profile.useFriendship&&(a.is_friend?e.push({label:"删除好友",key:"delete",icon:I(fa)}):e.push({label:"添加朋友",key:"requesting",icon:I(pa)})),e}),$e=e=>{switch(e){case"whisper":Fe();break;case"delete":qe();break;case"requesting":Te();break;case"follow":case"unfollow":ze();break;case"banned":case"deblocking":Se();break;case"setting":ke.push({name:"setting",query:{t:new Date().getTime()}});break}},qe=()=>{R.warning({title:"删除好友",content:"将好友 “"+a.nickname+"” 删除,将同时删除 点赞/收藏 列表中关于该朋友的 “好友可见” 推文",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{p.value=!0,na({user_id:a.id}).then(e=>{p.value=!1,a.is_friend=!1,j()}).catch(e=>{p.value=!1,console.log(e)})}})},ze=()=>{R.success({title:"提示",content:"确定"+(a.is_following?"取消关注 @":"关注 @")+a.username+" 吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{p.value=!0,a.is_following?pe({user_id:a.id}).then(e=>{p.value=!1,window.$message.success("操作成功"),W()}).catch(e=>{p.value=!1,console.log(e)}):he({user_id:a.id}).then(e=>{p.value=!1,window.$message.success("操作成功"),W()}).catch(e=>{p.value=!1,console.log(e)})}})},Se=()=>{R.warning({title:"警告",content:"确定对该用户进行"+(a.status===1?"禁言":"解封")+"处理吗?",positiveText:"确定",negativeText:"取消",onPositiveClick:()=>{p.value=!0,oa({id:a.id,status:a.status===1?2:1}).then(e=>{p.value=!1,a.status===1?window.$message.success("禁言成功"):window.$message.success("解封成功"),W()}).catch(e=>{p.value=!1,console.log(e)})}})},Me=()=>{n.value{W()}),Xe(()=>({path:$.path,query:$.query}),(e,_)=>{_.path==="/u"&&e.path==="/u"&&(x.value=$.query.s||"",ye(),W())}),(e,_)=>{const ie=Ge,E=ka,re=ya,_e=Ye("router-link"),Ue=ba,Ce=Pa,We=Ee,L=Oa,Le=Fa,de=Ta,Ne=je,De=Ia,N=Re,O=Aa,D=Ve,Be=ga,He=wa;return t(),u("div",null,[o(ie,{title:"用户详情"}),o(Be,{class:"main-content-wrap profile-wrap",bordered:""},{default:c(()=>[o(de,{show:p.value},{default:c(()=>[a.id>0?(t(),u("div",xa,[w("div",$a,[o(E,{size:72,src:a.avatar},null,8,["src"])]),w("div",qa,[w("div",za,[w("strong",null,A(a.nickname),1),w("span",null," @"+A(a.username),1),r(v).state.profile.useFriendship&&r(v).state.userInfo.id>0&&r(v).state.userInfo.username!=a.username&&a.is_friend?(t(),g(re,{key:0,class:"top-tag",type:"info",size:"small",round:""},{default:c(()=>[B(" 好友 ")]),_:1})):m("",!0),r(v).state.userInfo.id>0&&r(v).state.userInfo.username!=a.username&&a.is_following?(t(),g(re,{key:1,class:"top-tag",type:"success",size:"small",round:""},{default:c(()=>[B(" 已关注 ")]),_:1})):m("",!0),a.is_admin?(t(),g(re,{key:2,class:"top-tag",type:"error",size:"small",round:""},{default:c(()=>[B(" 管理员 ")]),_:1})):m("",!0)]),w("div",Sa,[w("span",Ma,"UID. "+A(a.id),1),w("span",Ua,A(r(la)(a.created_on))+" 加入",1)]),w("div",Ca,[w("span",Wa,[o(_e,{onClick:_[0]||(_[0]=me(()=>{},["stop"])),class:"following-link",to:{name:"following",query:{s:a.username,n:a.nickname,t:"follows"}}},{default:c(()=>[B(" 关注  "+A(r(ce)(a.follows)),1)]),_:1},8,["to"])]),w("span",La,[o(_e,{onClick:_[1]||(_[1]=me(()=>{},["stop"])),class:"following-link",to:{name:"following",query:{s:a.username,n:a.nickname,t:"followings"}}},{default:c(()=>[B(" 粉丝  "+A(r(ce)(a.followings)),1)]),_:1},8,["to"])]),w("span",Na," 泡泡  "+A(r(ce)(a.tweets_count||0)),1)])]),r(v).state.userInfo.id>0?(t(),u("div",Da,[o(Ce,{placement:"bottom-end",trigger:"click",size:"small",options:xe.value,onSelect:$e},{default:c(()=>[o(Ue,{quaternary:"",circle:""},{icon:c(()=>[o(r(we),null,{default:c(()=>[o(r(ca))]),_:1})]),_:1})]),_:1},8,["options"])])):m("",!0)])):m("",!0),o(We,{show:V.value,user:a,onSuccess:Ie},null,8,["show","user"]),o(ia,{show:G.value,user:a,onSuccess:Ae},null,8,["show","user"]),p.value?m("",!0):(t(),g(Le,{key:1,class:"profile-tabs-wrap",type:"line",animated:"",value:h.value,"onUpdate:value":Pe},{default:c(()=>[o(L,{name:"post",tab:"泡泡"}),o(L,{name:"comment",tab:"评论"}),o(L,{name:"highlight",tab:"亮点"}),o(L,{name:"media",tab:"图文"}),o(L,{name:"star",tab:"喜欢"})]),_:1},8,["value"]))]),_:1},8,["show"]),f.value&&l.value.length===0?(t(),u("div",Ba,[o(Ne,{num:k.value},null,8,["num"])])):(t(),u("div",Ha,[l.value.length===0?(t(),u("div",Ra,[o(De,{size:"large",description:"暂无数据"})])):m("",!0),r(v).state.desktopModelShow?(t(),u("div",Va,[h.value==="post"?(t(),u("div",ja,[(t(!0),u(F,null,T(q.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(N,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),h.value==="comment"?(t(),u("div",Ea,[(t(!0),u(F,null,T(z.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(N,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),h.value==="highlight"?(t(),u("div",Ga,[(t(!0),u(F,null,T(S.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(N,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),h.value==="media"?(t(),u("div",Ja,[(t(!0),u(F,null,T(M.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(N,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),h.value==="star"?(t(),u("div",Qa,[(t(!0),u(F,null,T(U.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(N,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0)])):(t(),u("div",Za,[h.value==="post"?(t(),u("div",Ka,[(t(!0),u(F,null,T(q.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(D,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),h.value==="comment"?(t(),u("div",Xa,[(t(!0),u(F,null,T(z.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(D,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),h.value==="highlight"?(t(),u("div",Ya,[(t(!0),u(F,null,T(S.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(D,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),h.value==="media"?(t(),u("div",et,[(t(!0),u(F,null,T(M.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(D,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0),h.value==="star"?(t(),u("div",at,[(t(!0),u(F,null,T(U.value,s=>(t(),g(O,{key:s.id},{default:c(()=>[o(D,{post:s,isOwner:r(v).state.userInfo.id==s.user_id,addFollowAction:!0,onSendWhisper:b,onHandleFollowAction:P},null,8,["post","isOwner"])]),_:2},1024))),128))])):m("",!0)]))]))]),_:1}),d.value>0?(t(),g(He,{key:0,justify:"center"},{default:c(()=>[o(r(ra),{class:"load-more",slots:{complete:"没有更多泡泡了",error:"加载出错"},onInfinite:_[2]||(_[2]=s=>Me())},{spinner:c(()=>[w("div",tt,[y.value?m("",!0):(t(),g(de,{key:0,size:14})),w("span",st,A(y.value?"没有更多泡泡了":"加载更多"),1)])]),_:1})]),_:1})):m("",!0)])}}}),Dt=ua(lt,[["__scopeId","data-v-00ab4b4e"]]);export{Dt as default}; diff --git a/web/dist/assets/User-CxGJqoyU.css b/web/dist/assets/User-CxGJqoyU.css new file mode 100644 index 00000000..4a040eda --- /dev/null +++ b/web/dist/assets/User-CxGJqoyU.css @@ -0,0 +1 @@ +.profile-tabs-wrap[data-v-00ab4b4e]{padding:0 16px}.profile-baseinfo[data-v-00ab4b4e]{display:flex;padding:16px}.profile-baseinfo .avatar[data-v-00ab4b4e]{width:72px}.profile-baseinfo .base-info[data-v-00ab4b4e]{position:relative;margin-left:12px;width:calc(100% - 84px)}.profile-baseinfo .base-info .username[data-v-00ab4b4e]{line-height:16px;font-size:16px}.profile-baseinfo .base-info .userinfo[data-v-00ab4b4e]{font-size:14px;line-height:14px;margin-top:10px;opacity:.75}.profile-baseinfo .base-info .userinfo .info-item[data-v-00ab4b4e]{margin-right:12px}.profile-baseinfo .base-info .top-tag[data-v-00ab4b4e]{transform:scale(.75)}.profile-baseinfo .user-opts[data-v-00ab4b4e]{position:absolute;top:16px;right:16px;opacity:.75}.load-more[data-v-00ab4b4e]{margin:20px}.load-more .load-more-wrap[data-v-00ab4b4e]{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:14px}.load-more .load-more-wrap .load-more-spinner[data-v-00ab4b4e]{font-size:14px;opacity:.65}.dark .profile-wrap[data-v-00ab4b4e],.dark .pagination-wrap[data-v-00ab4b4e]{background-color:#101014bf} diff --git a/web/dist/assets/Wallet-50fb7181.js b/web/dist/assets/Wallet-50fb7181.js deleted file mode 100644 index e85e5d0e..00000000 --- a/web/dist/assets/Wallet-50fb7181.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as K}from"./post-skeleton-ae2be035.js";import{_ as Q}from"./main-nav.vue_vue_type_style_index_0_lang-0ad26703.js";import{d as Z,H as c,b as X,f as _,k as e,w as o,e as n,bf as y,Y as w,j as a,A as k,F as q,u as z,O as ee,D as te,x as r,q as N,l as oe,y as ae,$ as ne,a0 as se}from"./@vue-a481fc63.js";import{u as le}from"./vuex-44de225f.js";import{b as ce}from"./vue-router-e5a2430e.js";import{b as ie}from"./qrcode-9719fc56.js";import{a0 as _e,a1 as re,a2 as ue,a3 as pe,J as de,_ as me}from"./index-1e276b8f.js";import{a1 as ge}from"./@vicons-f0266f88.js";import{G as ve,i as he,Y as fe,Z as ye,e as we,a as ke,R as be,J as xe,j as Ce,l as Se,h as Ie,H as Re}from"./naive-ui-eecf2ec3.js";import"./vooks-6d99783e.js";import"./evtd-b614532e.js";import"./encode-utf8-f813de00.js";import"./dijkstrajs-f906a09e.js";import"./axios-4a70c6fc.js";import"./moment-2ab8298d.js";/* empty css */import"./seemly-76b7b838.js";import"./vueuc-7c8d4b48.js";import"./@css-render-7124a1a5.js";import"./vdirs-b0483831.js";import"./@juggle-41516555.js";import"./css-render-6a5c5852.js";import"./@emotion-8a8e73f6.js";import"./lodash-es-8412e618.js";import"./treemate-25c27bff.js";import"./async-validator-dee29e8b.js";import"./date-fns-975a2d8f.js";const B=m=>(ne("data-v-870bd246"),m=m(),se(),m),Ae={class:"balance-wrap"},$e={class:"balance-line"},qe={class:"balance-opts"},ze={key:0,class:"pagination-wrap"},Ne={key:0,class:"skeleton-wrap"},Be={key:1},Oe={key:0,class:"empty-wrap"},Pe={class:"bill-line"},Te={key:0,class:"amount-options"},We={key:1,style:{"margin-top":"10px"}},De={class:"qrcode-wrap"},Ee=B(()=>a("canvas",{id:"qrcode-container"},null,-1)),Fe={class:"pay-tips"},Le={class:"pay-sub-tips"},Ue=B(()=>a("span",{style:{"margin-left":"6px"}}," 支付结果实时同步中... ",-1)),Ve=Z({__name:"Wallet",setup(m){const i=le(),O=ce(),g=c(!1),u=c(100),v=c(!1),p=c(""),h=c(!1),b=c([]),x=c(+O.query.p||1),C=c(20),S=c(0),P=c([100,200,300,500,1e3,3e3,5e3,1e4,5e4]),R=()=>{h.value=!0,re({page:x.value,page_size:C.value}).then(s=>{h.value=!1,b.value=s.list,S.value=Math.ceil(s.pager.total_rows/C.value),window.scrollTo(0,0)}).catch(s=>{h.value=!1})},T=s=>{x.value=s,R()},A=()=>{const s=localStorage.getItem("PAOPAO_TOKEN")||"";s?_e(s).then(l=>{i.commit("updateUserinfo",l),i.commit("triggerAuth",!1),R()}).catch(l=>{i.commit("triggerAuth",!0),i.commit("userLogout")}):(i.commit("triggerAuth",!0),i.commit("userLogout"))},W=()=>{g.value=!0},D=s=>{v.value=!0,ue({amount:u.value}).then(l=>{v.value=!1,p.value=l.pay,ie.toCanvas(document.querySelector("#qrcode-container"),l.pay,{width:150,margin:2});const I=setInterval(()=>{pe({id:l.id}).then(d=>{d.status==="TRADE_SUCCESS"&&(clearInterval(I),window.$message.success("充值成功"),g.value=!1,p.value="",A())}).catch(d=>{console.log(d)})},2e3)}).catch(l=>{v.value=!1})},E=()=>{i.state.userInfo.balance==0?window.$message.warning("您暂无可提现资金"):window.$message.warning("该功能即将开放")};return X(()=>{A()}),(s,l)=>{const I=Q,d=fe,F=ye,f=we,$=ke,L=be,U=K,V=xe,M=Re,j=ve,H=Ce,J=Se,Y=Ie,G=he;return n(),_("div",null,[e(I,{title:"钱包"}),e(j,{class:"main-content-wrap",bordered:""},{footer:o(()=>[S.value>1?(n(),_("div",ze,[e(L,{page:x.value,"onUpdate:page":T,"page-slot":y(i).state.collapsedRight?5:8,"page-count":S.value},null,8,["page","page-slot","page-count"])])):w("",!0)]),default:o(()=>[a("div",Ae,[a("div",$e,[e(F,{label:"账户余额 (元)"},{default:o(()=>[e(d,{from:0,to:(y(i).state.userInfo.balance||0)/100,duration:500,precision:2},null,8,["to"])]),_:1}),a("div",qe,[e($,{vertical:""},{default:o(()=>[e(f,{size:"small",secondary:"",type:"primary",onClick:W},{default:o(()=>[k(" 充值 ")]),_:1}),e(f,{size:"small",secondary:"",type:"tertiary",onClick:E},{default:o(()=>[k(" 提现 ")]),_:1})]),_:1})])])]),h.value?(n(),_("div",Ne,[e(U,{num:C.value},null,8,["num"])])):(n(),_("div",Be,[b.value.length===0?(n(),_("div",Oe,[e(V,{size:"large",description:"暂无数据"})])):w("",!0),(n(!0),_(q,null,z(b.value,t=>(n(),N(M,{key:t.id},{default:o(()=>[a("div",Pe,[a("div",null,"NO."+r(t.id),1),a("div",null,r(t.reason),1),a("div",{class:oe({income:t.change_amount>=0,out:t.change_amount<0})},r((t.change_amount>0?"+":"")+(t.change_amount/100).toFixed(2)),3),a("div",null,r(y(de)(t.created_on)),1)])]),_:2},1024))),128))]))]),_:1}),e(G,{show:g.value,"onUpdate:show":l[0]||(l[0]=t=>g.value=t)},{default:o(()=>[e(Y,{bordered:!1,title:"请选择充值金额",role:"dialog","aria-modal":"true",style:{width:"100%","max-width":"330px"}},{default:o(()=>[p.value.length===0?(n(),_("div",Te,[e($,{align:"baseline"},{default:o(()=>[(n(!0),_(q,null,z(P.value,t=>(n(),N(f,{key:t,size:"small",secondary:"",type:u.value===t?"info":"default",onClick:ae(Me=>u.value=t,["stop"])},{default:o(()=>[k(r(t/100)+"元 ",1)]),_:2},1032,["type","onClick"]))),128))]),_:1})])):w("",!0),u.value>0&&p.value.length===0?(n(),_("div",We,[e(f,{loading:v.value,strong:"",secondary:"",type:"info",style:{width:"100%"},onClick:D},{icon:o(()=>[e(H,null,{default:o(()=>[e(y(ge))]),_:1})]),default:o(()=>[k(" 前往支付 ")]),_:1},8,["loading"])])):w("",!0),ee(a("div",De,[Ee,a("div",Fe," 请使用支付宝扫码支付"+r((u.value/100).toFixed(2))+"元 ",1),a("div",Le,[e(J,{value:100,type:"info",dot:"",processing:""}),Ue])],512),[[te,p.value.length>0]])]),_:1})]),_:1},8,["show"])])}}});const ft=me(Ve,[["__scopeId","data-v-870bd246"]]);export{ft as default}; diff --git a/web/dist/assets/Wallet-77044929.css b/web/dist/assets/Wallet-CBEfdMFS.css similarity index 100% rename from web/dist/assets/Wallet-77044929.css rename to web/dist/assets/Wallet-CBEfdMFS.css diff --git a/web/dist/assets/Wallet-EQJ_rp0r.js b/web/dist/assets/Wallet-EQJ_rp0r.js new file mode 100644 index 00000000..fbc8fd01 --- /dev/null +++ b/web/dist/assets/Wallet-EQJ_rp0r.js @@ -0,0 +1 @@ +import{_ as J}from"./post-skeleton-YfJeD-2o.js";import{_ as Q}from"./main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js";import{d as Y,H as c,b as X,f as r,k as e,w as o,e as n,bk as y,Z as w,j as a,A as k,F as z,u as N,P as ee,D as te,x as _,q as $,l as oe,y as ae,a0 as ne,a1 as se}from"./@vue-CQsYufSu.js";import{u as le}from"./vuex-DNAxYlmG.js";import{b as ce}from"./vue-router-zwGLnBy5.js";import{b as ie}from"./qrcode-CGiDONbL.js";import{a1 as re,a2 as _e,a3 as ue,a4 as pe,K as me,_ as de}from"./index-v3l9hw1O.js";import{a1 as ge}from"./@vicons-C3A8jsfr.js";import{G as ve,i as he,Y as fe,Z as ye,e as we,a as ke,R as be,J as xe,j as Ce,l as Se,h as Ie,H as Re}from"./naive-ui-DNcWoFGl.js";import"./vooks-BQzJqMzq.js";import"./evtd-CI_DDEu_.js";import"./encode-utf8-Cn5aGd7v.js";import"./dijkstrajs-D_NXgYpA.js";import"./axios-Bo0ATomq.js";import"./moment-BqTRGcJI.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./@css-render-CQdyXCYJ.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";const P=d=>(ne("data-v-870bd246"),d=d(),se(),d),Ae={class:"balance-wrap"},qe={class:"balance-line"},ze={class:"balance-opts"},Ne={key:0,class:"pagination-wrap"},$e={key:0,class:"skeleton-wrap"},Pe={key:1},Be={key:0,class:"empty-wrap"},Te={class:"bill-line"},De={key:0,class:"amount-options"},Ee={key:1,style:{"margin-top":"10px"}},Fe={class:"qrcode-wrap"},Le=P(()=>a("canvas",{id:"qrcode-container"},null,-1)),Oe={class:"pay-tips"},Ue={class:"pay-sub-tips"},Ve=P(()=>a("span",{style:{"margin-left":"6px"}}," 支付结果实时同步中... ",-1)),We=Y({__name:"Wallet",setup(d){const i=le(),B=ce(),g=c(!1),u=c(100),v=c(!1),p=c(""),h=c(!1),b=c([]),x=c(+B.query.p||1),C=c(20),S=c(0),T=c([100,200,300,500,1e3,3e3,5e3,1e4,5e4]),R=()=>{h.value=!0,_e({page:x.value,page_size:C.value}).then(s=>{h.value=!1,b.value=s.list,S.value=Math.ceil(s.pager.total_rows/C.value),window.scrollTo(0,0)}).catch(s=>{h.value=!1})},D=s=>{x.value=s,R()},A=()=>{const s=localStorage.getItem("PAOPAO_TOKEN")||"";s?re(s).then(l=>{i.commit("updateUserinfo",l),i.commit("triggerAuth",!1),R()}).catch(l=>{i.commit("triggerAuth",!0),i.commit("userLogout")}):(i.commit("triggerAuth",!0),i.commit("userLogout"))},E=()=>{g.value=!0},F=s=>{v.value=!0,ue({amount:u.value}).then(l=>{v.value=!1,p.value=l.pay,ie.toCanvas(document.querySelector("#qrcode-container"),l.pay,{width:150,margin:2});const I=setInterval(()=>{pe({id:l.id}).then(m=>{m.status==="TRADE_SUCCESS"&&(clearInterval(I),window.$message.success("充值成功"),g.value=!1,p.value="",A())}).catch(m=>{console.log(m)})},2e3)}).catch(l=>{v.value=!1})},L=()=>{i.state.userInfo.balance==0?window.$message.warning("您暂无可提现资金"):window.$message.warning("该功能即将开放")};return X(()=>{A()}),(s,l)=>{const I=Q,m=fe,O=ye,f=we,q=ke,U=be,V=J,W=xe,M=Re,j=ve,H=Ce,K=Se,Z=Ie,G=he;return n(),r("div",null,[e(I,{title:"钱包"}),e(j,{class:"main-content-wrap",bordered:""},{footer:o(()=>[S.value>1?(n(),r("div",Ne,[e(U,{page:x.value,"onUpdate:page":D,"page-slot":y(i).state.collapsedRight?5:8,"page-count":S.value},null,8,["page","page-slot","page-count"])])):w("",!0)]),default:o(()=>[a("div",Ae,[a("div",qe,[e(O,{label:"账户余额 (元)"},{default:o(()=>[e(m,{from:0,to:(y(i).state.userInfo.balance||0)/100,duration:500,precision:2},null,8,["to"])]),_:1}),a("div",ze,[e(q,{vertical:""},{default:o(()=>[e(f,{size:"small",secondary:"",type:"primary",onClick:E},{default:o(()=>[k(" 充值 ")]),_:1}),e(f,{size:"small",secondary:"",type:"tertiary",onClick:L},{default:o(()=>[k(" 提现 ")]),_:1})]),_:1})])])]),h.value?(n(),r("div",$e,[e(V,{num:C.value},null,8,["num"])])):(n(),r("div",Pe,[b.value.length===0?(n(),r("div",Be,[e(W,{size:"large",description:"暂无数据"})])):w("",!0),(n(!0),r(z,null,N(b.value,t=>(n(),$(M,{key:t.id},{default:o(()=>[a("div",Te,[a("div",null,"NO."+_(t.id),1),a("div",null,_(t.reason),1),a("div",{class:oe({income:t.change_amount>=0,out:t.change_amount<0})},_((t.change_amount>0?"+":"")+(t.change_amount/100).toFixed(2)),3),a("div",null,_(y(me)(t.created_on)),1)])]),_:2},1024))),128))]))]),_:1}),e(G,{show:g.value,"onUpdate:show":l[0]||(l[0]=t=>g.value=t)},{default:o(()=>[e(Z,{bordered:!1,title:"请选择充值金额",role:"dialog","aria-modal":"true",style:{width:"100%","max-width":"330px"}},{default:o(()=>[p.value.length===0?(n(),r("div",De,[e(q,{align:"baseline"},{default:o(()=>[(n(!0),r(z,null,N(T.value,t=>(n(),$(f,{key:t,size:"small",secondary:"",type:u.value===t?"info":"default",onClick:ae(Me=>u.value=t,["stop"])},{default:o(()=>[k(_(t/100)+"元 ",1)]),_:2},1032,["type","onClick"]))),128))]),_:1})])):w("",!0),u.value>0&&p.value.length===0?(n(),r("div",Ee,[e(f,{loading:v.value,strong:"",secondary:"",type:"info",style:{width:"100%"},onClick:F},{icon:o(()=>[e(H,null,{default:o(()=>[e(y(ge))]),_:1})]),default:o(()=>[k(" 前往支付 ")]),_:1},8,["loading"])])):w("",!0),ee(a("div",Fe,[Le,a("div",Oe," 请使用支付宝扫码支付"+_((u.value/100).toFixed(2))+"元 ",1),a("div",Ue,[e(K,{value:100,type:"info",dot:"",processing:""}),Ve])],512),[[te,p.value.length>0]])]),_:1})]),_:1},8,["show"])])}}}),ft=de(We,[["__scopeId","data-v-870bd246"]]);export{ft as default}; diff --git a/web/dist/assets/async-validator-DKvM95Vc.js b/web/dist/assets/async-validator-DKvM95Vc.js new file mode 100644 index 00000000..1af9bf69 --- /dev/null +++ b/web/dist/assets/async-validator-DKvM95Vc.js @@ -0,0 +1,12 @@ +function R(){return R=Object.assign?Object.assign.bind():function(i){for(var e=1;e"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function M(i,e,r){return re()?M=Reflect.construct.bind():M=function(n,f,a){var s=[null];s.push.apply(s,f);var d=Function.bind.apply(n,s),q=new d;return a&&T(q,a.prototype),q},M.apply(null,arguments)}function te(i){return Function.toString.call(i).indexOf("[native code]")!==-1}function J(i){var e=typeof Map=="function"?new Map:void 0;return J=function(t){if(t===null||!te(t))return t;if(typeof t!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e<"u"){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return M(t,arguments,U(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),T(n,t)},J(i)}var ne=/%[sdj%]/g,ie=function(){};function W(i){if(!i||!i.length)return null;var e={};return i.forEach(function(r){var t=r.field;e[t]=e[t]||[],e[t].push(r)}),e}function F(i){for(var e=arguments.length,r=new Array(e>1?e-1:0),t=1;t=f)return s;switch(s){case"%s":return String(r[n++]);case"%d":return Number(r[n++]);case"%j":try{return JSON.stringify(r[n++])}catch{return"[Circular]"}break;default:return s}});return a}return i}function ae(i){return i==="string"||i==="url"||i==="hex"||i==="email"||i==="date"||i==="pattern"}function h(i,e){return!!(i==null||e==="array"&&Array.isArray(i)&&!i.length||ae(e)&&typeof i=="string"&&!i)}function fe(i,e,r){var t=[],n=0,f=i.length;function a(s){t.push.apply(t,s||[]),n++,n===f&&r(t)}i.forEach(function(s){e(s,a)})}function G(i,e,r){var t=0,n=i.length;function f(a){if(a&&a.length){r(a);return}var s=t;t=t+1,s()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+\.)+[a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{2,}))$/,hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},D={integer:function(e){return D.number(e)&&parseInt(e,10)===e},float:function(e){return D.number(e)&&!D.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch{return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!D.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&e.length<=320&&!!e.match(X.email)},url:function(e){return typeof e=="string"&&e.length<=2048&&!!e.match(pe())},hex:function(e){return typeof e=="string"&&!!e.match(X.hex)}},ye=function(e,r,t,n,f){if(e.required&&r===void 0){C(e,r,t,n,f);return}var a=["integer","float","array","regexp","object","method","email","number","date","url","hex"],s=e.type;a.indexOf(s)>-1?D[s](r)||n.push(F(f.messages.types[s],e.fullField,e.type)):s&&typeof r!==e.type&&n.push(F(f.messages.types[s],e.fullField,e.type))},ge=function(e,r,t,n,f){var a=typeof e.len=="number",s=typeof e.min=="number",d=typeof e.max=="number",q=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,v=r,m=null,l=typeof r=="number",O=typeof r=="string",x=Array.isArray(r);if(l?m="number":O?m="string":x&&(m="array"),!m)return!1;x&&(v=r.length),O&&(v=r.replace(q,"_").length),a?v!==e.len&&n.push(F(f.messages[m].len,e.fullField,e.len)):s&&!d&&ve.max?n.push(F(f.messages[m].max,e.fullField,e.max)):s&&d&&(ve.max)&&n.push(F(f.messages[m].range,e.fullField,e.min,e.max))},N="enum",ve=function(e,r,t,n,f){e[N]=Array.isArray(e[N])?e[N]:[],e[N].indexOf(r)===-1&&n.push(F(f.messages[N],e.fullField,e[N].join(", ")))},he=function(e,r,t,n,f){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(r)||n.push(F(f.messages.pattern.mismatch,e.fullField,r,e.pattern));else if(typeof e.pattern=="string"){var a=new RegExp(e.pattern);a.test(r)||n.push(F(f.messages.pattern.mismatch,e.fullField,r,e.pattern))}}},c={required:C,whitespace:ce,type:ye,range:ge,enum:ve,pattern:he},me=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(h(r,"string")&&!e.required)return t();c.required(e,r,n,a,f,"string"),h(r,"string")||(c.type(e,r,n,a,f),c.range(e,r,n,a,f),c.pattern(e,r,n,a,f),e.whitespace===!0&&c.whitespace(e,r,n,a,f))}t(a)},le=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(h(r)&&!e.required)return t();c.required(e,r,n,a,f),r!==void 0&&c.type(e,r,n,a,f)}t(a)},qe=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(r===""&&(r=void 0),h(r)&&!e.required)return t();c.required(e,r,n,a,f),r!==void 0&&(c.type(e,r,n,a,f),c.range(e,r,n,a,f))}t(a)},we=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(h(r)&&!e.required)return t();c.required(e,r,n,a,f),r!==void 0&&c.type(e,r,n,a,f)}t(a)},be=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(h(r)&&!e.required)return t();c.required(e,r,n,a,f),h(r)||c.type(e,r,n,a,f)}t(a)},Fe=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(h(r)&&!e.required)return t();c.required(e,r,n,a,f),r!==void 0&&(c.type(e,r,n,a,f),c.range(e,r,n,a,f))}t(a)},xe=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(h(r)&&!e.required)return t();c.required(e,r,n,a,f),r!==void 0&&(c.type(e,r,n,a,f),c.range(e,r,n,a,f))}t(a)},Oe=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(r==null&&!e.required)return t();c.required(e,r,n,a,f,"array"),r!=null&&(c.type(e,r,n,a,f),c.range(e,r,n,a,f))}t(a)},Ee=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(h(r)&&!e.required)return t();c.required(e,r,n,a,f),r!==void 0&&c.type(e,r,n,a,f)}t(a)},Ae="enum",Pe=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(h(r)&&!e.required)return t();c.required(e,r,n,a,f),r!==void 0&&c[Ae](e,r,n,a,f)}t(a)},je=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(h(r,"string")&&!e.required)return t();c.required(e,r,n,a,f),h(r,"string")||c.pattern(e,r,n,a,f)}t(a)},_e=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(h(r,"date")&&!e.required)return t();if(c.required(e,r,n,a,f),!h(r,"date")){var d;r instanceof Date?d=r:d=new Date(r),c.type(e,d,n,a,f),d&&c.range(e,d.getTime(),n,a,f)}}t(a)},Re=function(e,r,t,n,f){var a=[],s=Array.isArray(r)?"array":typeof r;c.required(e,r,n,a,f,s),t(a)},B=function(e,r,t,n,f){var a=e.type,s=[],d=e.required||!e.required&&n.hasOwnProperty(e.field);if(d){if(h(r,a)&&!e.required)return t();c.required(e,r,n,s,f,a),h(r,a)||c.type(e,r,n,s,f)}t(s)},Ne=function(e,r,t,n,f){var a=[],s=e.required||!e.required&&n.hasOwnProperty(e.field);if(s){if(h(r)&&!e.required)return t();c.required(e,r,n,a,f)}t(a)},S={string:me,method:le,number:qe,boolean:we,regexp:be,integer:Fe,float:xe,array:Oe,object:Ee,enum:Pe,pattern:je,date:_e,url:B,hex:B,email:B,required:Re,any:Ne};function Z(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var I=Z(),L=function(){function i(r){this.rules=null,this._messages=I,this.define(r)}var e=i.prototype;return e.define=function(t){var n=this;if(!t)throw new Error("Cannot configure a schema with no rules");if(typeof t!="object"||Array.isArray(t))throw new Error("Rules must be an object");this.rules={},Object.keys(t).forEach(function(f){var a=t[f];n.rules[f]=Array.isArray(a)?a:[a]})},e.messages=function(t){return t&&(this._messages=Q(Z(),t)),this._messages},e.validate=function(t,n,f){var a=this;n===void 0&&(n={}),f===void 0&&(f=function(){});var s=t,d=n,q=f;if(typeof d=="function"&&(q=d,d={}),!this.rules||Object.keys(this.rules).length===0)return q&&q(null,s),Promise.resolve(s);function v(u){var g=[],o={};function A(y){if(Array.isArray(y)){var b;g=(b=g).concat.apply(b,y)}else g.push(y)}for(var p=0;p"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function M(i,e,r){return re()?M=Reflect.construct.bind():M=function(t,f,a){var s=[null];s.push.apply(s,f);var d=Function.bind.apply(t,s),w=new d;return a&&T(w,a.prototype),w},M.apply(null,arguments)}function ne(i){return Function.toString.call(i).indexOf("[native code]")!==-1}function J(i){var e=typeof Map=="function"?new Map:void 0;return J=function(n){if(n===null||!ne(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e<"u"){if(e.has(n))return e.get(n);e.set(n,t)}function t(){return M(n,arguments,U(this).constructor)}return t.prototype=Object.create(n.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),T(t,n)},J(i)}var te=/%[sdj%]/g,ie=function(){};typeof process<"u"&&process.env;function W(i){if(!i||!i.length)return null;var e={};return i.forEach(function(r){var n=r.field;e[n]=e[n]||[],e[n].push(r)}),e}function F(i){for(var e=arguments.length,r=new Array(e>1?e-1:0),n=1;n=f)return s;switch(s){case"%s":return String(r[t++]);case"%d":return Number(r[t++]);case"%j":try{return JSON.stringify(r[t++])}catch{return"[Circular]"}break;default:return s}});return a}return i}function ae(i){return i==="string"||i==="url"||i==="hex"||i==="email"||i==="date"||i==="pattern"}function v(i,e){return!!(i==null||e==="array"&&Array.isArray(i)&&!i.length||ae(e)&&typeof i=="string"&&!i)}function fe(i,e,r){var n=[],t=0,f=i.length;function a(s){n.push.apply(n,s||[]),t++,t===f&&r(n)}i.forEach(function(s){e(s,a)})}function G(i,e,r){var n=0,t=i.length;function f(a){if(a&&a.length){r(a);return}var s=n;n=n+1,s()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+\.)+[a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{2,}))$/,hex:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i},D={integer:function(e){return D.number(e)&&parseInt(e,10)===e},float:function(e){return D.number(e)&&!D.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return!!new RegExp(e)}catch{return!1}},date:function(e){return typeof e.getTime=="function"&&typeof e.getMonth=="function"&&typeof e.getYear=="function"&&!isNaN(e.getTime())},number:function(e){return isNaN(e)?!1:typeof e=="number"},object:function(e){return typeof e=="object"&&!D.array(e)},method:function(e){return typeof e=="function"},email:function(e){return typeof e=="string"&&e.length<=320&&!!e.match(X.email)},url:function(e){return typeof e=="string"&&e.length<=2048&&!!e.match(pe())},hex:function(e){return typeof e=="string"&&!!e.match(X.hex)}},ye=function(e,r,n,t,f){if(e.required&&r===void 0){C(e,r,n,t,f);return}var a=["integer","float","array","regexp","object","method","email","number","date","url","hex"],s=e.type;a.indexOf(s)>-1?D[s](r)||t.push(F(f.messages.types[s],e.fullField,e.type)):s&&typeof r!==e.type&&t.push(F(f.messages.types[s],e.fullField,e.type))},ge=function(e,r,n,t,f){var a=typeof e.len=="number",s=typeof e.min=="number",d=typeof e.max=="number",w=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,h=r,m=null,l=typeof r=="number",O=typeof r=="string",x=Array.isArray(r);if(l?m="number":O?m="string":x&&(m="array"),!m)return!1;x&&(h=r.length),O&&(h=r.replace(w,"_").length),a?h!==e.len&&t.push(F(f.messages[m].len,e.fullField,e.len)):s&&!d&&he.max?t.push(F(f.messages[m].max,e.fullField,e.max)):s&&d&&(he.max)&&t.push(F(f.messages[m].range,e.fullField,e.min,e.max))},N="enum",he=function(e,r,n,t,f){e[N]=Array.isArray(e[N])?e[N]:[],e[N].indexOf(r)===-1&&t.push(F(f.messages[N],e.fullField,e[N].join(", ")))},ve=function(e,r,n,t,f){if(e.pattern){if(e.pattern instanceof RegExp)e.pattern.lastIndex=0,e.pattern.test(r)||t.push(F(f.messages.pattern.mismatch,e.fullField,r,e.pattern));else if(typeof e.pattern=="string"){var a=new RegExp(e.pattern);a.test(r)||t.push(F(f.messages.pattern.mismatch,e.fullField,r,e.pattern))}}},c={required:C,whitespace:ce,type:ye,range:ge,enum:he,pattern:ve},me=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(v(r,"string")&&!e.required)return n();c.required(e,r,t,a,f,"string"),v(r,"string")||(c.type(e,r,t,a,f),c.range(e,r,t,a,f),c.pattern(e,r,t,a,f),e.whitespace===!0&&c.whitespace(e,r,t,a,f))}n(a)},le=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(v(r)&&!e.required)return n();c.required(e,r,t,a,f),r!==void 0&&c.type(e,r,t,a,f)}n(a)},we=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(r===""&&(r=void 0),v(r)&&!e.required)return n();c.required(e,r,t,a,f),r!==void 0&&(c.type(e,r,t,a,f),c.range(e,r,t,a,f))}n(a)},qe=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(v(r)&&!e.required)return n();c.required(e,r,t,a,f),r!==void 0&&c.type(e,r,t,a,f)}n(a)},be=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(v(r)&&!e.required)return n();c.required(e,r,t,a,f),v(r)||c.type(e,r,t,a,f)}n(a)},Fe=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(v(r)&&!e.required)return n();c.required(e,r,t,a,f),r!==void 0&&(c.type(e,r,t,a,f),c.range(e,r,t,a,f))}n(a)},xe=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(v(r)&&!e.required)return n();c.required(e,r,t,a,f),r!==void 0&&(c.type(e,r,t,a,f),c.range(e,r,t,a,f))}n(a)},Oe=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(r==null&&!e.required)return n();c.required(e,r,t,a,f,"array"),r!=null&&(c.type(e,r,t,a,f),c.range(e,r,t,a,f))}n(a)},Ee=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(v(r)&&!e.required)return n();c.required(e,r,t,a,f),r!==void 0&&c.type(e,r,t,a,f)}n(a)},Ae="enum",Pe=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(v(r)&&!e.required)return n();c.required(e,r,t,a,f),r!==void 0&&c[Ae](e,r,t,a,f)}n(a)},je=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(v(r,"string")&&!e.required)return n();c.required(e,r,t,a,f),v(r,"string")||c.pattern(e,r,t,a,f)}n(a)},_e=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(v(r,"date")&&!e.required)return n();if(c.required(e,r,t,a,f),!v(r,"date")){var d;r instanceof Date?d=r:d=new Date(r),c.type(e,d,t,a,f),d&&c.range(e,d.getTime(),t,a,f)}}n(a)},Re=function(e,r,n,t,f){var a=[],s=Array.isArray(r)?"array":typeof r;c.required(e,r,t,a,f,s),n(a)},B=function(e,r,n,t,f){var a=e.type,s=[],d=e.required||!e.required&&t.hasOwnProperty(e.field);if(d){if(v(r,a)&&!e.required)return n();c.required(e,r,t,s,f,a),v(r,a)||c.type(e,r,t,s,f)}n(s)},Ne=function(e,r,n,t,f){var a=[],s=e.required||!e.required&&t.hasOwnProperty(e.field);if(s){if(v(r)&&!e.required)return n();c.required(e,r,t,a,f)}n(a)},S={string:me,method:le,number:we,boolean:qe,regexp:be,integer:Fe,float:xe,array:Oe,object:Ee,enum:Pe,pattern:je,date:_e,url:B,hex:B,email:B,required:Re,any:Ne};function Z(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var I=Z(),L=function(){function i(r){this.rules=null,this._messages=I,this.define(r)}var e=i.prototype;return e.define=function(n){var t=this;if(!n)throw new Error("Cannot configure a schema with no rules");if(typeof n!="object"||Array.isArray(n))throw new Error("Rules must be an object");this.rules={},Object.keys(n).forEach(function(f){var a=n[f];t.rules[f]=Array.isArray(a)?a:[a]})},e.messages=function(n){return n&&(this._messages=Q(Z(),n)),this._messages},e.validate=function(n,t,f){var a=this;t===void 0&&(t={}),f===void 0&&(f=function(){});var s=n,d=t,w=f;if(typeof d=="function"&&(w=d,d={}),!this.rules||Object.keys(this.rules).length===0)return w&&w(null,s),Promise.resolve(s);function h(u){var g=[],o={};function A(y){if(Array.isArray(y)){var b;g=(b=g).concat.apply(b,y)}else g.push(y)}for(var p=0;pt=>{const n=Le.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),O=e=>(e=e.toLowerCase(),t=>I(t)===e),M=e=>t=>typeof t===e,{isArray:P}=Array,F=M("undefined");function Ue(e){return e!==null&&!F(e)&&e.constructor!==null&&!F(e.constructor)&&b(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const me=O("ArrayBuffer");function je(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&me(e.buffer),t}const ke=M("string"),b=M("function"),ye=M("number"),q=e=>e!==null&&typeof e=="object",He=e=>e===!0||e===!1,L=e=>{if(I(e)!=="object")return!1;const t=Z(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},Ie=O("Date"),Me=O("File"),qe=O("Blob"),ze=O("FileList"),Je=e=>q(e)&&b(e.pipe),$e=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||b(e.append)&&((t=I(e))==="formdata"||t==="object"&&b(e.toString)&&e.toString()==="[object FormData]"))},Ve=O("URLSearchParams"),We=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function B(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),P(e))for(r=0,s=e.length;r0;)if(s=n[r],t===s.toLowerCase())return s;return null}const we=(()=>typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global)(),be=e=>!F(e)&&e!==we;function X(){const{caseless:e}=be(this)&&this||{},t={},n=(r,s)=>{const o=e&&Ee(t,s)||s;L(t[o])&&L(r)?t[o]=X(t[o],r):L(r)?t[o]=X({},r):P(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r(B(t,(s,o)=>{n&&b(s)?e[o]=he(s,n):e[o]=s},{allOwnKeys:r}),e),Ge=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Xe=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},ve=(e,t,n,r)=>{let s,o,i;const u={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!u[i]&&(t[i]=e[i],u[i]=!0);e=n!==!1&&Z(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},Qe=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},Ye=e=>{if(!e)return null;if(P(e))return e;let t=e.length;if(!ye(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},Ze=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Z(Uint8Array)),et=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},tt=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},nt=O("HTMLFormElement"),rt=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),se=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),st=O("RegExp"),Se=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};B(n,(s,o)=>{t(s,o,e)!==!1&&(r[o]=s)}),Object.defineProperties(e,r)},ot=e=>{Se(e,(t,n)=>{if(b(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(b(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},it=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return P(e)?r(e):r(String(e).split(t)),n},at=()=>{},ct=(e,t)=>(e=+e,Number.isFinite(e)?e:t),V="abcdefghijklmnopqrstuvwxyz",oe="0123456789",Re={DIGIT:oe,ALPHA:V,ALPHA_DIGIT:V+V.toUpperCase()+oe},ut=(e=16,t=Re.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function lt(e){return!!(e&&b(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const ft=e=>{const t=new Array(10),n=(r,s)=>{if(q(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=P(r)?[]:{};return B(r,(i,u)=>{const d=n(i,s+1);!F(d)&&(o[u]=d)}),t[s]=void 0,o}}return r};return n(e,0)},dt=O("AsyncFunction"),pt=e=>e&&(q(e)||b(e))&&b(e.then)&&b(e.catch),a={isArray:P,isArrayBuffer:me,isBuffer:Ue,isFormData:$e,isArrayBufferView:je,isString:ke,isNumber:ye,isBoolean:He,isObject:q,isPlainObject:L,isUndefined:F,isDate:Ie,isFile:Me,isBlob:qe,isRegExp:st,isFunction:b,isStream:Je,isURLSearchParams:Ve,isTypedArray:Ze,isFileList:ze,forEach:B,merge:X,extend:Ke,trim:We,stripBOM:Ge,inherits:Xe,toFlatObject:ve,kindOf:I,kindOfTest:O,endsWith:Qe,toArray:Ye,forEachEntry:et,matchAll:tt,isHTMLForm:nt,hasOwnProperty:se,hasOwnProp:se,reduceDescriptors:Se,freezeMethods:ot,toObjectSet:it,toCamelCase:rt,noop:at,toFiniteNumber:ct,findKey:Ee,global:we,isContextDefined:be,ALPHABET:Re,generateString:ut,isSpecCompliantForm:lt,toJSONObject:ft,isAsyncFn:dt,isThenable:pt};function m(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s)}a.inherits(m,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Oe=m.prototype,Ae={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Ae[e]={value:e}});Object.defineProperties(m,Ae);Object.defineProperty(Oe,"isAxiosError",{value:!0});m.from=(e,t,n,r,s,o)=>{const i=Object.create(Oe);return a.toFlatObject(e,i,function(d){return d!==Error.prototype},u=>u!=="isAxiosError"),m.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const ht=null;function v(e){return a.isPlainObject(e)||a.isArray(e)}function Te(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function ie(e,t,n){return e?e.concat(t).map(function(s,o){return s=Te(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function mt(e){return a.isArray(e)&&!e.some(v)}const yt=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function z(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(h,A){return!a.isUndefined(A[h])});const r=n.metaTokens,s=n.visitor||l,o=n.dots,i=n.indexes,d=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function c(f){if(f===null)return"";if(a.isDate(f))return f.toISOString();if(!d&&a.isBlob(f))throw new m("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(f)||a.isTypedArray(f)?d&&typeof Blob=="function"?new Blob([f]):Buffer.from(f):f}function l(f,h,A){let S=f;if(f&&!A&&typeof f=="object"){if(a.endsWith(h,"{}"))h=r?h:h.slice(0,-2),f=JSON.stringify(f);else if(a.isArray(f)&&mt(f)||(a.isFileList(f)||a.endsWith(h,"[]"))&&(S=a.toArray(f)))return h=Te(h),S.forEach(function(_,_e){!(a.isUndefined(_)||_===null)&&t.append(i===!0?ie([h],_e,o):i===null?h:h+"[]",c(_))}),!1}return v(f)?!0:(t.append(ie(A,h,o),c(f)),!1)}const p=[],w=Object.assign(yt,{defaultVisitor:l,convertValue:c,isVisitable:v});function y(f,h){if(!a.isUndefined(f)){if(p.indexOf(f)!==-1)throw Error("Circular reference detected in "+h.join("."));p.push(f),a.forEach(f,function(S,x){(!(a.isUndefined(S)||S===null)&&s.call(t,S,a.isString(x)?x.trim():x,h,w))===!0&&y(S,h?h.concat(x):[x])}),p.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return y(e),t}function ae(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function ee(e,t){this._pairs=[],e&&z(e,this,t)}const Ne=ee.prototype;Ne.append=function(t,n){this._pairs.push([t,n])};Ne.toString=function(t){const n=t?function(r){return t.call(this,r,ae)}:ae;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function Et(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function xe(e,t,n){if(!t)return e;const r=n&&n.encode||Et,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new ee(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class wt{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const ce=wt,ge={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},bt=typeof URLSearchParams<"u"?URLSearchParams:ee,St=typeof FormData<"u"?FormData:null,Rt=typeof Blob<"u"?Blob:null,Ot=(()=>{let e;return typeof navigator<"u"&&((e=navigator.product)==="ReactNative"||e==="NativeScript"||e==="NS")?!1:typeof window<"u"&&typeof document<"u"})(),At=(()=>typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function")(),R={isBrowser:!0,classes:{URLSearchParams:bt,FormData:St,Blob:Rt},isStandardBrowserEnv:Ot,isStandardBrowserWebWorkerEnv:At,protocols:["http","https","file","blob","url","data"]};function Tt(e,t){return z(e,new R.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return R.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function Nt(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function xt(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r=n.length;return i=!i&&a.isArray(s)?s.length:i,d?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!u):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=xt(s[i])),!u)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(Nt(r),s,n,0)}),n}return null}const gt={"Content-Type":void 0};function Pt(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const J={transitional:ge,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s&&s?JSON.stringify(Pe(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let u;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return Tt(t,this.formSerializer).toString();if((u=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const d=this.env&&this.env.FormData;return z(u?{"files[]":t}:t,d&&new d,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),Pt(t)):t}],transformResponse:[function(t){const n=this.transitional||J.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(u){if(i)throw u.name==="SyntaxError"?m.from(u,m.ERR_BAD_RESPONSE,this,null,this.response):u}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:R.classes.FormData,Blob:R.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};a.forEach(["delete","get","head"],function(t){J.headers[t]={}});a.forEach(["post","put","patch"],function(t){J.headers[t]=a.merge(gt)});const te=J,Ct=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Ft=e=>{const t={};let n,r,s;return e&&e.split(` -`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Ct[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},ue=Symbol("internals");function C(e){return e&&String(e).trim().toLowerCase()}function U(e){return e===!1||e==null?e:a.isArray(e)?e.map(U):String(e)}function Bt(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const Dt=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function W(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function _t(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function Lt(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}class ${constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(u,d,c){const l=C(d);if(!l)throw new Error("header name must be a non-empty string");const p=a.findKey(s,l);(!p||s[p]===void 0||c===!0||c===void 0&&s[p]!==!1)&&(s[p||d]=U(u))}const i=(u,d)=>a.forEach(u,(c,l)=>o(c,l,d));return a.isPlainObject(t)||t instanceof this.constructor?i(t,n):a.isString(t)&&(t=t.trim())&&!Dt(t)?i(Ft(t),n):t!=null&&o(n,t,r),this}get(t,n){if(t=C(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Bt(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=C(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||W(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=C(i),i){const u=a.findKey(r,i);u&&(!n||W(r,r[u],u,n))&&(delete r[u],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||W(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=U(s),delete n[o];return}const u=t?_t(o):String(o).trim();u!==o&&delete n[o],n[u]=U(s),r[u]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` -`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[ue]=this[ue]={accessors:{}}).accessors,s=this.prototype;function o(i){const u=C(i);r[u]||(Lt(s,i),r[u]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}}$.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);a.freezeMethods($.prototype);a.freezeMethods($);const T=$;function K(e,t){const n=this||te,r=t||n,s=T.from(r.headers);let o=r.data;return a.forEach(e,function(u){o=u.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function Ce(e){return!!(e&&e.__CANCEL__)}function D(e,t,n){m.call(this,e??"canceled",m.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(D,m,{__CANCEL__:!0});function Ut(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new m("Request failed with status code "+n.status,[m.ERR_BAD_REQUEST,m.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const jt=R.isStandardBrowserEnv?function(){return{write:function(n,r,s,o,i,u){const d=[];d.push(n+"="+encodeURIComponent(r)),a.isNumber(s)&&d.push("expires="+new Date(s).toGMTString()),a.isString(o)&&d.push("path="+o),a.isString(i)&&d.push("domain="+i),u===!0&&d.push("secure"),document.cookie=d.join("; ")},read:function(n){const r=document.cookie.match(new RegExp("(^|;\\s*)("+n+")=([^;]*)"));return r?decodeURIComponent(r[3]):null},remove:function(n){this.write(n,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}();function kt(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function Ht(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}function Fe(e,t){return e&&!kt(t)?Ht(e,t):t}const It=R.isStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const u=a.isString(i)?s(i):i;return u.protocol===r.protocol&&u.host===r.host}}():function(){return function(){return!0}}();function Mt(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function qt(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(d){const c=Date.now(),l=r[o];i||(i=c),n[s]=d,r[s]=c;let p=o,w=0;for(;p!==s;)w+=n[p++],p=p%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),c-i{const o=s.loaded,i=s.lengthComputable?s.total:void 0,u=o-n,d=r(u),c=o<=i;n=o;const l={loaded:o,total:i,progress:i?o/i:void 0,bytes:u,rate:d||void 0,estimated:d&&i&&c?(i-o)/d:void 0,event:s};l[t?"download":"upload"]=!0,e(l)}}const zt=typeof XMLHttpRequest<"u",Jt=zt&&function(e){return new Promise(function(n,r){let s=e.data;const o=T.from(e.headers).normalize(),i=e.responseType;let u;function d(){e.cancelToken&&e.cancelToken.unsubscribe(u),e.signal&&e.signal.removeEventListener("abort",u)}a.isFormData(s)&&(R.isStandardBrowserEnv||R.isStandardBrowserWebWorkerEnv?o.setContentType(!1):o.setContentType("multipart/form-data;",!1));let c=new XMLHttpRequest;if(e.auth){const y=e.auth.username||"",f=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";o.set("Authorization","Basic "+btoa(y+":"+f))}const l=Fe(e.baseURL,e.url);c.open(e.method.toUpperCase(),xe(l,e.params,e.paramsSerializer),!0),c.timeout=e.timeout;function p(){if(!c)return;const y=T.from("getAllResponseHeaders"in c&&c.getAllResponseHeaders()),h={data:!i||i==="text"||i==="json"?c.responseText:c.response,status:c.status,statusText:c.statusText,headers:y,config:e,request:c};Ut(function(S){n(S),d()},function(S){r(S),d()},h),c=null}if("onloadend"in c?c.onloadend=p:c.onreadystatechange=function(){!c||c.readyState!==4||c.status===0&&!(c.responseURL&&c.responseURL.indexOf("file:")===0)||setTimeout(p)},c.onabort=function(){c&&(r(new m("Request aborted",m.ECONNABORTED,e,c)),c=null)},c.onerror=function(){r(new m("Network Error",m.ERR_NETWORK,e,c)),c=null},c.ontimeout=function(){let f=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const h=e.transitional||ge;e.timeoutErrorMessage&&(f=e.timeoutErrorMessage),r(new m(f,h.clarifyTimeoutError?m.ETIMEDOUT:m.ECONNABORTED,e,c)),c=null},R.isStandardBrowserEnv){const y=(e.withCredentials||It(l))&&e.xsrfCookieName&&jt.read(e.xsrfCookieName);y&&o.set(e.xsrfHeaderName,y)}s===void 0&&o.setContentType(null),"setRequestHeader"in c&&a.forEach(o.toJSON(),function(f,h){c.setRequestHeader(h,f)}),a.isUndefined(e.withCredentials)||(c.withCredentials=!!e.withCredentials),i&&i!=="json"&&(c.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&c.addEventListener("progress",le(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&c.upload&&c.upload.addEventListener("progress",le(e.onUploadProgress)),(e.cancelToken||e.signal)&&(u=y=>{c&&(r(!y||y.type?new D(null,e,c):y),c.abort(),c=null)},e.cancelToken&&e.cancelToken.subscribe(u),e.signal&&(e.signal.aborted?u():e.signal.addEventListener("abort",u)));const w=Mt(l);if(w&&R.protocols.indexOf(w)===-1){r(new m("Unsupported protocol "+w+":",m.ERR_BAD_REQUEST,e));return}c.send(s||null)})},j={http:ht,xhr:Jt};a.forEach(j,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const $t={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;for(let s=0;se instanceof T?e.toJSON():e;function g(e,t){t=t||{};const n={};function r(c,l,p){return a.isPlainObject(c)&&a.isPlainObject(l)?a.merge.call({caseless:p},c,l):a.isPlainObject(l)?a.merge({},l):a.isArray(l)?l.slice():l}function s(c,l,p){if(a.isUndefined(l)){if(!a.isUndefined(c))return r(void 0,c,p)}else return r(c,l,p)}function o(c,l){if(!a.isUndefined(l))return r(void 0,l)}function i(c,l){if(a.isUndefined(l)){if(!a.isUndefined(c))return r(void 0,c)}else return r(void 0,l)}function u(c,l,p){if(p in t)return r(c,l);if(p in e)return r(void 0,c)}const d={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:u,headers:(c,l)=>s(de(c),de(l),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(l){const p=d[l]||s,w=p(e[l],t[l],l);a.isUndefined(w)&&p!==u||(n[l]=w)}),n}const Be="1.4.0",ne={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ne[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const pe={};ne.transitional=function(t,n,r){function s(o,i){return"[Axios v"+Be+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,u)=>{if(t===!1)throw new m(s(i," has been removed"+(n?" in "+n:"")),m.ERR_DEPRECATED);return n&&!pe[i]&&(pe[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,u):!0}};function Vt(e,t,n){if(typeof e!="object")throw new m("options must be an object",m.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const u=e[o],d=u===void 0||i(u,o,e);if(d!==!0)throw new m("option "+o+" must be "+d,m.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new m("Unknown option "+o,m.ERR_BAD_OPTION)}}const Q={assertOptions:Vt,validators:ne},N=Q.validators;class H{constructor(t){this.defaults=t,this.interceptors={request:new ce,response:new ce}}request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=g(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&Q.assertOptions(r,{silentJSONParsing:N.transitional(N.boolean),forcedJSONParsing:N.transitional(N.boolean),clarifyTimeoutError:N.transitional(N.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:Q.assertOptions(s,{encode:N.function,serialize:N.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i;i=o&&a.merge(o.common,o[n.method]),i&&a.forEach(["delete","get","head","post","put","patch","common"],f=>{delete o[f]}),n.headers=T.concat(i,o);const u=[];let d=!0;this.interceptors.request.forEach(function(h){typeof h.runWhen=="function"&&h.runWhen(n)===!1||(d=d&&h.synchronous,u.unshift(h.fulfilled,h.rejected))});const c=[];this.interceptors.response.forEach(function(h){c.push(h.fulfilled,h.rejected)});let l,p=0,w;if(!d){const f=[fe.bind(this),void 0];for(f.unshift.apply(f,u),f.push.apply(f,c),w=f.length,l=Promise.resolve(n);p{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(u=>{r.subscribe(u),o=u}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,u){r.reason||(r.reason=new D(o,i,u),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new re(function(s){t=s}),cancel:t}}}const Wt=re;function Kt(e){return function(n){return e.apply(null,n)}}function Gt(e){return a.isObject(e)&&e.isAxiosError===!0}const Y={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Y).forEach(([e,t])=>{Y[t]=e});const Xt=Y;function De(e){const t=new k(e),n=he(k.prototype.request,t);return a.extend(n,k.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return De(g(e,s))},n}const E=De(te);E.Axios=k;E.CanceledError=D;E.CancelToken=Wt;E.isCancel=Ce;E.VERSION=Be;E.toFormData=z;E.AxiosError=m;E.Cancel=E.CanceledError;E.all=function(t){return Promise.all(t)};E.spread=Kt;E.isAxiosError=Gt;E.mergeConfig=g;E.AxiosHeaders=T;E.formToJSON=e=>Pe(a.isHTMLForm(e)?new FormData(e):e);E.HttpStatusCode=Xt;E.default=E;const vt=E;export{vt as a}; diff --git a/web/dist/assets/axios-Bo0ATomq.js b/web/dist/assets/axios-Bo0ATomq.js new file mode 100644 index 00000000..fe064ced --- /dev/null +++ b/web/dist/assets/axios-Bo0ATomq.js @@ -0,0 +1,6 @@ +function me(e,t){return function(){return e.apply(t,arguments)}}const{toString:je}=Object.prototype,{getPrototypeOf:Z}=Object,H=(e=>t=>{const n=je.call(t);return e[n]||(e[n]=n.slice(8,-1).toLowerCase())})(Object.create(null)),A=e=>(e=e.toLowerCase(),t=>H(t)===e),I=e=>t=>typeof t===e,{isArray:C}=Array,_=I("undefined");function He(e){return e!==null&&!_(e)&&e.constructor!==null&&!_(e.constructor)&&R(e.constructor.isBuffer)&&e.constructor.isBuffer(e)}const ye=A("ArrayBuffer");function Ie(e){let t;return typeof ArrayBuffer<"u"&&ArrayBuffer.isView?t=ArrayBuffer.isView(e):t=e&&e.buffer&&ye(e.buffer),t}const qe=I("string"),R=I("function"),Ee=I("number"),q=e=>e!==null&&typeof e=="object",Me=e=>e===!0||e===!1,L=e=>{if(H(e)!=="object")return!1;const t=Z(e);return(t===null||t===Object.prototype||Object.getPrototypeOf(t)===null)&&!(Symbol.toStringTag in e)&&!(Symbol.iterator in e)},ze=A("Date"),Je=A("File"),$e=A("Blob"),Ve=A("FileList"),We=e=>q(e)&&R(e.pipe),Ke=e=>{let t;return e&&(typeof FormData=="function"&&e instanceof FormData||R(e.append)&&((t=H(e))==="formdata"||t==="object"&&R(e.toString)&&e.toString()==="[object FormData]"))},Ge=A("URLSearchParams"),Xe=e=>e.trim?e.trim():e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"");function B(e,t,{allOwnKeys:n=!1}={}){if(e===null||typeof e>"u")return;let r,s;if(typeof e!="object"&&(e=[e]),C(e))for(r=0,s=e.length;r0;)if(s=n[r],t===s.toLowerCase())return s;return null}const be=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof window<"u"?window:global,Se=e=>!_(e)&&e!==be;function K(){const{caseless:e}=Se(this)&&this||{},t={},n=(r,s)=>{const o=e&&we(t,s)||s;L(t[o])&&L(r)?t[o]=K(t[o],r):L(r)?t[o]=K({},r):C(r)?t[o]=r.slice():t[o]=r};for(let r=0,s=arguments.length;r(B(t,(s,o)=>{n&&R(s)?e[o]=me(s,n):e[o]=s},{allOwnKeys:r}),e),Qe=e=>(e.charCodeAt(0)===65279&&(e=e.slice(1)),e),Ze=(e,t,n,r)=>{e.prototype=Object.create(t.prototype,r),e.prototype.constructor=e,Object.defineProperty(e,"super",{value:t.prototype}),n&&Object.assign(e.prototype,n)},Ye=(e,t,n,r)=>{let s,o,i;const c={};if(t=t||{},e==null)return t;do{for(s=Object.getOwnPropertyNames(e),o=s.length;o-- >0;)i=s[o],(!r||r(i,e,t))&&!c[i]&&(t[i]=e[i],c[i]=!0);e=n!==!1&&Z(e)}while(e&&(!n||n(e,t))&&e!==Object.prototype);return t},et=(e,t,n)=>{e=String(e),(n===void 0||n>e.length)&&(n=e.length),n-=t.length;const r=e.indexOf(t,n);return r!==-1&&r===n},tt=e=>{if(!e)return null;if(C(e))return e;let t=e.length;if(!Ee(t))return null;const n=new Array(t);for(;t-- >0;)n[t]=e[t];return n},nt=(e=>t=>e&&t instanceof e)(typeof Uint8Array<"u"&&Z(Uint8Array)),rt=(e,t)=>{const r=(e&&e[Symbol.iterator]).call(e);let s;for(;(s=r.next())&&!s.done;){const o=s.value;t.call(e,o[0],o[1])}},st=(e,t)=>{let n;const r=[];for(;(n=e.exec(t))!==null;)r.push(n);return r},ot=A("HTMLFormElement"),it=e=>e.toLowerCase().replace(/[-_\s]([a-z\d])(\w*)/g,function(n,r,s){return r.toUpperCase()+s}),se=(({hasOwnProperty:e})=>(t,n)=>e.call(t,n))(Object.prototype),at=A("RegExp"),Re=(e,t)=>{const n=Object.getOwnPropertyDescriptors(e),r={};B(n,(s,o)=>{let i;(i=t(s,o,e))!==!1&&(r[o]=i||s)}),Object.defineProperties(e,r)},ct=e=>{Re(e,(t,n)=>{if(R(e)&&["arguments","caller","callee"].indexOf(n)!==-1)return!1;const r=e[n];if(R(r)){if(t.enumerable=!1,"writable"in t){t.writable=!1;return}t.set||(t.set=()=>{throw Error("Can not rewrite read-only method '"+n+"'")})}})},ut=(e,t)=>{const n={},r=s=>{s.forEach(o=>{n[o]=!0})};return C(e)?r(e):r(String(e).split(t)),n},lt=()=>{},ft=(e,t)=>(e=+e,Number.isFinite(e)?e:t),J="abcdefghijklmnopqrstuvwxyz",oe="0123456789",Oe={DIGIT:oe,ALPHA:J,ALPHA_DIGIT:J+J.toUpperCase()+oe},dt=(e=16,t=Oe.ALPHA_DIGIT)=>{let n="";const{length:r}=t;for(;e--;)n+=t[Math.random()*r|0];return n};function pt(e){return!!(e&&R(e.append)&&e[Symbol.toStringTag]==="FormData"&&e[Symbol.iterator])}const ht=e=>{const t=new Array(10),n=(r,s)=>{if(q(r)){if(t.indexOf(r)>=0)return;if(!("toJSON"in r)){t[s]=r;const o=C(r)?[]:{};return B(r,(i,c)=>{const p=n(i,s+1);!_(p)&&(o[c]=p)}),t[s]=void 0,o}}return r};return n(e,0)},mt=A("AsyncFunction"),yt=e=>e&&(q(e)||R(e))&&R(e.then)&&R(e.catch),a={isArray:C,isArrayBuffer:ye,isBuffer:He,isFormData:Ke,isArrayBufferView:Ie,isString:qe,isNumber:Ee,isBoolean:Me,isObject:q,isPlainObject:L,isUndefined:_,isDate:ze,isFile:Je,isBlob:$e,isRegExp:at,isFunction:R,isStream:We,isURLSearchParams:Ge,isTypedArray:nt,isFileList:Ve,forEach:B,merge:K,extend:ve,trim:Xe,stripBOM:Qe,inherits:Ze,toFlatObject:Ye,kindOf:H,kindOfTest:A,endsWith:et,toArray:tt,forEachEntry:rt,matchAll:st,isHTMLForm:ot,hasOwnProperty:se,hasOwnProp:se,reduceDescriptors:Re,freezeMethods:ct,toObjectSet:ut,toCamelCase:it,noop:lt,toFiniteNumber:ft,findKey:we,global:be,isContextDefined:Se,ALPHABET:Oe,generateString:dt,isSpecCompliantForm:pt,toJSONObject:ht,isAsyncFn:mt,isThenable:yt};function m(e,t,n,r,s){Error.call(this),Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error().stack,this.message=e,this.name="AxiosError",t&&(this.code=t),n&&(this.config=n),r&&(this.request=r),s&&(this.response=s)}a.inherits(m,Error,{toJSON:function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:a.toJSONObject(this.config),code:this.code,status:this.response&&this.response.status?this.response.status:null}}});const Ae=m.prototype,Te={};["ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","ECONNABORTED","ETIMEDOUT","ERR_NETWORK","ERR_FR_TOO_MANY_REDIRECTS","ERR_DEPRECATED","ERR_BAD_RESPONSE","ERR_BAD_REQUEST","ERR_CANCELED","ERR_NOT_SUPPORT","ERR_INVALID_URL"].forEach(e=>{Te[e]={value:e}});Object.defineProperties(m,Te);Object.defineProperty(Ae,"isAxiosError",{value:!0});m.from=(e,t,n,r,s,o)=>{const i=Object.create(Ae);return a.toFlatObject(e,i,function(p){return p!==Error.prototype},c=>c!=="isAxiosError"),m.call(i,e.message,t,n,r,s),i.cause=e,i.name=e.name,o&&Object.assign(i,o),i};const Et=null;function G(e){return a.isPlainObject(e)||a.isArray(e)}function ge(e){return a.endsWith(e,"[]")?e.slice(0,-2):e}function ie(e,t,n){return e?e.concat(t).map(function(s,o){return s=ge(s),!n&&o?"["+s+"]":s}).join(n?".":""):t}function wt(e){return a.isArray(e)&&!e.some(G)}const bt=a.toFlatObject(a,{},null,function(t){return/^is[A-Z]/.test(t)});function M(e,t,n){if(!a.isObject(e))throw new TypeError("target must be an object");t=t||new FormData,n=a.toFlatObject(n,{metaTokens:!0,dots:!1,indexes:!1},!1,function(d,w){return!a.isUndefined(w[d])});const r=n.metaTokens,s=n.visitor||l,o=n.dots,i=n.indexes,p=(n.Blob||typeof Blob<"u"&&Blob)&&a.isSpecCompliantForm(t);if(!a.isFunction(s))throw new TypeError("visitor must be a function");function h(f){if(f===null)return"";if(a.isDate(f))return f.toISOString();if(!p&&a.isBlob(f))throw new m("Blob is not supported. Use a Buffer instead.");return a.isArrayBuffer(f)||a.isTypedArray(f)?p&&typeof Blob=="function"?new Blob([f]):Buffer.from(f):f}function l(f,d,w){let b=f;if(f&&!w&&typeof f=="object"){if(a.endsWith(d,"{}"))d=r?d:d.slice(0,-2),f=JSON.stringify(f);else if(a.isArray(f)&&wt(f)||(a.isFileList(f)||a.endsWith(d,"[]"))&&(b=a.toArray(f)))return d=ge(d),b.forEach(function(x,ke){!(a.isUndefined(x)||x===null)&&t.append(i===!0?ie([d],ke,o):i===null?d:d+"[]",h(x))}),!1}return G(f)?!0:(t.append(ie(w,d,o),h(f)),!1)}const u=[],E=Object.assign(bt,{defaultVisitor:l,convertValue:h,isVisitable:G});function S(f,d){if(!a.isUndefined(f)){if(u.indexOf(f)!==-1)throw Error("Circular reference detected in "+d.join("."));u.push(f),a.forEach(f,function(b,g){(!(a.isUndefined(b)||b===null)&&s.call(t,b,a.isString(g)?g.trim():g,d,E))===!0&&S(b,d?d.concat(g):[g])}),u.pop()}}if(!a.isObject(e))throw new TypeError("data must be an object");return S(e),t}function ae(e){const t={"!":"%21","'":"%27","(":"%28",")":"%29","~":"%7E","%20":"+","%00":"\0"};return encodeURIComponent(e).replace(/[!'()~]|%20|%00/g,function(r){return t[r]})}function Y(e,t){this._pairs=[],e&&M(e,this,t)}const xe=Y.prototype;xe.append=function(t,n){this._pairs.push([t,n])};xe.toString=function(t){const n=t?function(r){return t.call(this,r,ae)}:ae;return this._pairs.map(function(s){return n(s[0])+"="+n(s[1])},"").join("&")};function St(e){return encodeURIComponent(e).replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}function Ne(e,t,n){if(!t)return e;const r=n&&n.encode||St,s=n&&n.serialize;let o;if(s?o=s(t,n):o=a.isURLSearchParams(t)?t.toString():new Y(t,n).toString(r),o){const i=e.indexOf("#");i!==-1&&(e=e.slice(0,i)),e+=(e.indexOf("?")===-1?"?":"&")+o}return e}class ce{constructor(){this.handlers=[]}use(t,n,r){return this.handlers.push({fulfilled:t,rejected:n,synchronous:r?r.synchronous:!1,runWhen:r?r.runWhen:null}),this.handlers.length-1}eject(t){this.handlers[t]&&(this.handlers[t]=null)}clear(){this.handlers&&(this.handlers=[])}forEach(t){a.forEach(this.handlers,function(r){r!==null&&t(r)})}}const Pe={silentJSONParsing:!0,forcedJSONParsing:!0,clarifyTimeoutError:!1},Rt=typeof URLSearchParams<"u"?URLSearchParams:Y,Ot=typeof FormData<"u"?FormData:null,At=typeof Blob<"u"?Blob:null,Tt={isBrowser:!0,classes:{URLSearchParams:Rt,FormData:Ot,Blob:At},protocols:["http","https","file","blob","url","data"]},Ce=typeof window<"u"&&typeof document<"u",gt=(e=>Ce&&["ReactNative","NativeScript","NS"].indexOf(e)<0)(typeof navigator<"u"&&navigator.product),xt=typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope&&typeof self.importScripts=="function",Nt=Object.freeze(Object.defineProperty({__proto__:null,hasBrowserEnv:Ce,hasStandardBrowserEnv:gt,hasStandardBrowserWebWorkerEnv:xt},Symbol.toStringTag,{value:"Module"})),O={...Nt,...Tt};function Pt(e,t){return M(e,new O.classes.URLSearchParams,Object.assign({visitor:function(n,r,s,o){return O.isNode&&a.isBuffer(n)?(this.append(r,n.toString("base64")),!1):o.defaultVisitor.apply(this,arguments)}},t))}function Ct(e){return a.matchAll(/\w+|\[(\w*)]/g,e).map(t=>t[0]==="[]"?"":t[1]||t[0])}function Ft(e){const t={},n=Object.keys(e);let r;const s=n.length;let o;for(r=0;r=n.length;return i=!i&&a.isArray(s)?s.length:i,p?(a.hasOwnProp(s,i)?s[i]=[s[i],r]:s[i]=r,!c):((!s[i]||!a.isObject(s[i]))&&(s[i]=[]),t(n,r,s[i],o)&&a.isArray(s[i])&&(s[i]=Ft(s[i])),!c)}if(a.isFormData(e)&&a.isFunction(e.entries)){const n={};return a.forEachEntry(e,(r,s)=>{t(Ct(r),s,n,0)}),n}return null}function _t(e,t,n){if(a.isString(e))try{return(t||JSON.parse)(e),a.trim(e)}catch(r){if(r.name!=="SyntaxError")throw r}return(n||JSON.stringify)(e)}const ee={transitional:Pe,adapter:["xhr","http"],transformRequest:[function(t,n){const r=n.getContentType()||"",s=r.indexOf("application/json")>-1,o=a.isObject(t);if(o&&a.isHTMLForm(t)&&(t=new FormData(t)),a.isFormData(t))return s?JSON.stringify(Fe(t)):t;if(a.isArrayBuffer(t)||a.isBuffer(t)||a.isStream(t)||a.isFile(t)||a.isBlob(t))return t;if(a.isArrayBufferView(t))return t.buffer;if(a.isURLSearchParams(t))return n.setContentType("application/x-www-form-urlencoded;charset=utf-8",!1),t.toString();let c;if(o){if(r.indexOf("application/x-www-form-urlencoded")>-1)return Pt(t,this.formSerializer).toString();if((c=a.isFileList(t))||r.indexOf("multipart/form-data")>-1){const p=this.env&&this.env.FormData;return M(c?{"files[]":t}:t,p&&new p,this.formSerializer)}}return o||s?(n.setContentType("application/json",!1),_t(t)):t}],transformResponse:[function(t){const n=this.transitional||ee.transitional,r=n&&n.forcedJSONParsing,s=this.responseType==="json";if(t&&a.isString(t)&&(r&&!this.responseType||s)){const i=!(n&&n.silentJSONParsing)&&s;try{return JSON.parse(t)}catch(c){if(i)throw c.name==="SyntaxError"?m.from(c,m.ERR_BAD_RESPONSE,this,null,this.response):c}}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,maxBodyLength:-1,env:{FormData:O.classes.FormData,Blob:O.classes.Blob},validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*","Content-Type":void 0}}};a.forEach(["delete","get","head","post","put","patch"],e=>{ee.headers[e]={}});const te=ee,Bt=a.toObjectSet(["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"]),Dt=e=>{const t={};let n,r,s;return e&&e.split(` +`).forEach(function(i){s=i.indexOf(":"),n=i.substring(0,s).trim().toLowerCase(),r=i.substring(s+1).trim(),!(!n||t[n]&&Bt[n])&&(n==="set-cookie"?t[n]?t[n].push(r):t[n]=[r]:t[n]=t[n]?t[n]+", "+r:r)}),t},ue=Symbol("internals");function F(e){return e&&String(e).trim().toLowerCase()}function U(e){return e===!1||e==null?e:a.isArray(e)?e.map(U):String(e)}function Lt(e){const t=Object.create(null),n=/([^\s,;=]+)\s*(?:=\s*([^,;]+))?/g;let r;for(;r=n.exec(e);)t[r[1]]=r[2];return t}const Ut=e=>/^[-_a-zA-Z0-9^`|~,!#$%&'*+.]+$/.test(e.trim());function $(e,t,n,r,s){if(a.isFunction(r))return r.call(this,t,n);if(s&&(t=n),!!a.isString(t)){if(a.isString(r))return t.indexOf(r)!==-1;if(a.isRegExp(r))return r.test(t)}}function kt(e){return e.trim().toLowerCase().replace(/([a-z\d])(\w*)/g,(t,n,r)=>n.toUpperCase()+r)}function jt(e,t){const n=a.toCamelCase(" "+t);["get","set","has"].forEach(r=>{Object.defineProperty(e,r+n,{value:function(s,o,i){return this[r].call(this,t,s,o,i)},configurable:!0})})}class z{constructor(t){t&&this.set(t)}set(t,n,r){const s=this;function o(c,p,h){const l=F(p);if(!l)throw new Error("header name must be a non-empty string");const u=a.findKey(s,l);(!u||s[u]===void 0||h===!0||h===void 0&&s[u]!==!1)&&(s[u||p]=U(c))}const i=(c,p)=>a.forEach(c,(h,l)=>o(h,l,p));return a.isPlainObject(t)||t instanceof this.constructor?i(t,n):a.isString(t)&&(t=t.trim())&&!Ut(t)?i(Dt(t),n):t!=null&&o(n,t,r),this}get(t,n){if(t=F(t),t){const r=a.findKey(this,t);if(r){const s=this[r];if(!n)return s;if(n===!0)return Lt(s);if(a.isFunction(n))return n.call(this,s,r);if(a.isRegExp(n))return n.exec(s);throw new TypeError("parser must be boolean|regexp|function")}}}has(t,n){if(t=F(t),t){const r=a.findKey(this,t);return!!(r&&this[r]!==void 0&&(!n||$(this,this[r],r,n)))}return!1}delete(t,n){const r=this;let s=!1;function o(i){if(i=F(i),i){const c=a.findKey(r,i);c&&(!n||$(r,r[c],c,n))&&(delete r[c],s=!0)}}return a.isArray(t)?t.forEach(o):o(t),s}clear(t){const n=Object.keys(this);let r=n.length,s=!1;for(;r--;){const o=n[r];(!t||$(this,this[o],o,t,!0))&&(delete this[o],s=!0)}return s}normalize(t){const n=this,r={};return a.forEach(this,(s,o)=>{const i=a.findKey(r,o);if(i){n[i]=U(s),delete n[o];return}const c=t?kt(o):String(o).trim();c!==o&&delete n[o],n[c]=U(s),r[c]=!0}),this}concat(...t){return this.constructor.concat(this,...t)}toJSON(t){const n=Object.create(null);return a.forEach(this,(r,s)=>{r!=null&&r!==!1&&(n[s]=t&&a.isArray(r)?r.join(", "):r)}),n}[Symbol.iterator](){return Object.entries(this.toJSON())[Symbol.iterator]()}toString(){return Object.entries(this.toJSON()).map(([t,n])=>t+": "+n).join(` +`)}get[Symbol.toStringTag](){return"AxiosHeaders"}static from(t){return t instanceof this?t:new this(t)}static concat(t,...n){const r=new this(t);return n.forEach(s=>r.set(s)),r}static accessor(t){const r=(this[ue]=this[ue]={accessors:{}}).accessors,s=this.prototype;function o(i){const c=F(i);r[c]||(jt(s,i),r[c]=!0)}return a.isArray(t)?t.forEach(o):o(t),this}}z.accessor(["Content-Type","Content-Length","Accept","Accept-Encoding","User-Agent","Authorization"]);a.reduceDescriptors(z.prototype,({value:e},t)=>{let n=t[0].toUpperCase()+t.slice(1);return{get:()=>e,set(r){this[n]=r}}});a.freezeMethods(z);const T=z;function V(e,t){const n=this||te,r=t||n,s=T.from(r.headers);let o=r.data;return a.forEach(e,function(c){o=c.call(n,o,s.normalize(),t?t.status:void 0)}),s.normalize(),o}function _e(e){return!!(e&&e.__CANCEL__)}function D(e,t,n){m.call(this,e??"canceled",m.ERR_CANCELED,t,n),this.name="CanceledError"}a.inherits(D,m,{__CANCEL__:!0});function Ht(e,t,n){const r=n.config.validateStatus;!n.status||!r||r(n.status)?e(n):t(new m("Request failed with status code "+n.status,[m.ERR_BAD_REQUEST,m.ERR_BAD_RESPONSE][Math.floor(n.status/100)-4],n.config,n.request,n))}const It=O.hasStandardBrowserEnv?{write(e,t,n,r,s,o){const i=[e+"="+encodeURIComponent(t)];a.isNumber(n)&&i.push("expires="+new Date(n).toGMTString()),a.isString(r)&&i.push("path="+r),a.isString(s)&&i.push("domain="+s),o===!0&&i.push("secure"),document.cookie=i.join("; ")},read(e){const t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove(e){this.write(e,"",Date.now()-864e5)}}:{write(){},read(){return null},remove(){}};function qt(e){return/^([a-z][a-z\d+\-.]*:)?\/\//i.test(e)}function Mt(e,t){return t?e.replace(/\/?\/$/,"")+"/"+t.replace(/^\/+/,""):e}function Be(e,t){return e&&!qt(t)?Mt(e,t):t}const zt=O.hasStandardBrowserEnv?function(){const t=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");let r;function s(o){let i=o;return t&&(n.setAttribute("href",i),i=n.href),n.setAttribute("href",i),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:n.pathname.charAt(0)==="/"?n.pathname:"/"+n.pathname}}return r=s(window.location.href),function(i){const c=a.isString(i)?s(i):i;return c.protocol===r.protocol&&c.host===r.host}}():function(){return function(){return!0}}();function Jt(e){const t=/^([-+\w]{1,25})(:?\/\/|:)/.exec(e);return t&&t[1]||""}function $t(e,t){e=e||10;const n=new Array(e),r=new Array(e);let s=0,o=0,i;return t=t!==void 0?t:1e3,function(p){const h=Date.now(),l=r[o];i||(i=h),n[s]=p,r[s]=h;let u=o,E=0;for(;u!==s;)E+=n[u++],u=u%e;if(s=(s+1)%e,s===o&&(o=(o+1)%e),h-i{const o=s.loaded,i=s.lengthComputable?s.total:void 0,c=o-n,p=r(c),h=o<=i;n=o;const l={loaded:o,total:i,progress:i?o/i:void 0,bytes:c,rate:p||void 0,estimated:p&&i&&h?(i-o)/p:void 0,event:s};l[t?"download":"upload"]=!0,e(l)}}const Vt=typeof XMLHttpRequest<"u",Wt=Vt&&function(e){return new Promise(function(n,r){let s=e.data;const o=T.from(e.headers).normalize();let{responseType:i,withXSRFToken:c}=e,p;function h(){e.cancelToken&&e.cancelToken.unsubscribe(p),e.signal&&e.signal.removeEventListener("abort",p)}let l;if(a.isFormData(s)){if(O.hasStandardBrowserEnv||O.hasStandardBrowserWebWorkerEnv)o.setContentType(!1);else if((l=o.getContentType())!==!1){const[d,...w]=l?l.split(";").map(b=>b.trim()).filter(Boolean):[];o.setContentType([d||"multipart/form-data",...w].join("; "))}}let u=new XMLHttpRequest;if(e.auth){const d=e.auth.username||"",w=e.auth.password?unescape(encodeURIComponent(e.auth.password)):"";o.set("Authorization","Basic "+btoa(d+":"+w))}const E=Be(e.baseURL,e.url);u.open(e.method.toUpperCase(),Ne(E,e.params,e.paramsSerializer),!0),u.timeout=e.timeout;function S(){if(!u)return;const d=T.from("getAllResponseHeaders"in u&&u.getAllResponseHeaders()),b={data:!i||i==="text"||i==="json"?u.responseText:u.response,status:u.status,statusText:u.statusText,headers:d,config:e,request:u};Ht(function(x){n(x),h()},function(x){r(x),h()},b),u=null}if("onloadend"in u?u.onloadend=S:u.onreadystatechange=function(){!u||u.readyState!==4||u.status===0&&!(u.responseURL&&u.responseURL.indexOf("file:")===0)||setTimeout(S)},u.onabort=function(){u&&(r(new m("Request aborted",m.ECONNABORTED,e,u)),u=null)},u.onerror=function(){r(new m("Network Error",m.ERR_NETWORK,e,u)),u=null},u.ontimeout=function(){let w=e.timeout?"timeout of "+e.timeout+"ms exceeded":"timeout exceeded";const b=e.transitional||Pe;e.timeoutErrorMessage&&(w=e.timeoutErrorMessage),r(new m(w,b.clarifyTimeoutError?m.ETIMEDOUT:m.ECONNABORTED,e,u)),u=null},O.hasStandardBrowserEnv&&(c&&a.isFunction(c)&&(c=c(e)),c||c!==!1&&zt(E))){const d=e.xsrfHeaderName&&e.xsrfCookieName&&It.read(e.xsrfCookieName);d&&o.set(e.xsrfHeaderName,d)}s===void 0&&o.setContentType(null),"setRequestHeader"in u&&a.forEach(o.toJSON(),function(w,b){u.setRequestHeader(b,w)}),a.isUndefined(e.withCredentials)||(u.withCredentials=!!e.withCredentials),i&&i!=="json"&&(u.responseType=e.responseType),typeof e.onDownloadProgress=="function"&&u.addEventListener("progress",le(e.onDownloadProgress,!0)),typeof e.onUploadProgress=="function"&&u.upload&&u.upload.addEventListener("progress",le(e.onUploadProgress)),(e.cancelToken||e.signal)&&(p=d=>{u&&(r(!d||d.type?new D(null,e,u):d),u.abort(),u=null)},e.cancelToken&&e.cancelToken.subscribe(p),e.signal&&(e.signal.aborted?p():e.signal.addEventListener("abort",p)));const f=Jt(E);if(f&&O.protocols.indexOf(f)===-1){r(new m("Unsupported protocol "+f+":",m.ERR_BAD_REQUEST,e));return}u.send(s||null)})},X={http:Et,xhr:Wt};a.forEach(X,(e,t)=>{if(e){try{Object.defineProperty(e,"name",{value:t})}catch{}Object.defineProperty(e,"adapterName",{value:t})}});const fe=e=>`- ${e}`,Kt=e=>a.isFunction(e)||e===null||e===!1,De={getAdapter:e=>{e=a.isArray(e)?e:[e];const{length:t}=e;let n,r;const s={};for(let o=0;o`adapter ${c} `+(p===!1?"is not supported by the environment":"is not available in the build"));let i=t?o.length>1?`since : +`+o.map(fe).join(` +`):" "+fe(o[0]):"as no adapter specified";throw new m("There is no suitable adapter to dispatch the request "+i,"ERR_NOT_SUPPORT")}return r},adapters:X};function W(e){if(e.cancelToken&&e.cancelToken.throwIfRequested(),e.signal&&e.signal.aborted)throw new D(null,e)}function de(e){return W(e),e.headers=T.from(e.headers),e.data=V.call(e,e.transformRequest),["post","put","patch"].indexOf(e.method)!==-1&&e.headers.setContentType("application/x-www-form-urlencoded",!1),De.getAdapter(e.adapter||te.adapter)(e).then(function(r){return W(e),r.data=V.call(e,e.transformResponse,r),r.headers=T.from(r.headers),r},function(r){return _e(r)||(W(e),r&&r.response&&(r.response.data=V.call(e,e.transformResponse,r.response),r.response.headers=T.from(r.response.headers))),Promise.reject(r)})}const pe=e=>e instanceof T?e.toJSON():e;function P(e,t){t=t||{};const n={};function r(h,l,u){return a.isPlainObject(h)&&a.isPlainObject(l)?a.merge.call({caseless:u},h,l):a.isPlainObject(l)?a.merge({},l):a.isArray(l)?l.slice():l}function s(h,l,u){if(a.isUndefined(l)){if(!a.isUndefined(h))return r(void 0,h,u)}else return r(h,l,u)}function o(h,l){if(!a.isUndefined(l))return r(void 0,l)}function i(h,l){if(a.isUndefined(l)){if(!a.isUndefined(h))return r(void 0,h)}else return r(void 0,l)}function c(h,l,u){if(u in t)return r(h,l);if(u in e)return r(void 0,h)}const p={url:o,method:o,data:o,baseURL:i,transformRequest:i,transformResponse:i,paramsSerializer:i,timeout:i,timeoutMessage:i,withCredentials:i,withXSRFToken:i,adapter:i,responseType:i,xsrfCookieName:i,xsrfHeaderName:i,onUploadProgress:i,onDownloadProgress:i,decompress:i,maxContentLength:i,maxBodyLength:i,beforeRedirect:i,transport:i,httpAgent:i,httpsAgent:i,cancelToken:i,socketPath:i,responseEncoding:i,validateStatus:c,headers:(h,l)=>s(pe(h),pe(l),!0)};return a.forEach(Object.keys(Object.assign({},e,t)),function(l){const u=p[l]||s,E=u(e[l],t[l],l);a.isUndefined(E)&&u!==c||(n[l]=E)}),n}const Le="1.6.7",ne={};["object","boolean","number","function","string","symbol"].forEach((e,t)=>{ne[e]=function(r){return typeof r===e||"a"+(t<1?"n ":" ")+e}});const he={};ne.transitional=function(t,n,r){function s(o,i){return"[Axios v"+Le+"] Transitional option '"+o+"'"+i+(r?". "+r:"")}return(o,i,c)=>{if(t===!1)throw new m(s(i," has been removed"+(n?" in "+n:"")),m.ERR_DEPRECATED);return n&&!he[i]&&(he[i]=!0,console.warn(s(i," has been deprecated since v"+n+" and will be removed in the near future"))),t?t(o,i,c):!0}};function Gt(e,t,n){if(typeof e!="object")throw new m("options must be an object",m.ERR_BAD_OPTION_VALUE);const r=Object.keys(e);let s=r.length;for(;s-- >0;){const o=r[s],i=t[o];if(i){const c=e[o],p=c===void 0||i(c,o,e);if(p!==!0)throw new m("option "+o+" must be "+p,m.ERR_BAD_OPTION_VALUE);continue}if(n!==!0)throw new m("Unknown option "+o,m.ERR_BAD_OPTION)}}const v={assertOptions:Gt,validators:ne},N=v.validators;class j{constructor(t){this.defaults=t,this.interceptors={request:new ce,response:new ce}}async request(t,n){try{return await this._request(t,n)}catch(r){if(r instanceof Error){let s;Error.captureStackTrace?Error.captureStackTrace(s={}):s=new Error;const o=s.stack?s.stack.replace(/^.+\n/,""):"";r.stack?o&&!String(r.stack).endsWith(o.replace(/^.+\n.+\n/,""))&&(r.stack+=` +`+o):r.stack=o}throw r}}_request(t,n){typeof t=="string"?(n=n||{},n.url=t):n=t||{},n=P(this.defaults,n);const{transitional:r,paramsSerializer:s,headers:o}=n;r!==void 0&&v.assertOptions(r,{silentJSONParsing:N.transitional(N.boolean),forcedJSONParsing:N.transitional(N.boolean),clarifyTimeoutError:N.transitional(N.boolean)},!1),s!=null&&(a.isFunction(s)?n.paramsSerializer={serialize:s}:v.assertOptions(s,{encode:N.function,serialize:N.function},!0)),n.method=(n.method||this.defaults.method||"get").toLowerCase();let i=o&&a.merge(o.common,o[n.method]);o&&a.forEach(["delete","get","head","post","put","patch","common"],f=>{delete o[f]}),n.headers=T.concat(i,o);const c=[];let p=!0;this.interceptors.request.forEach(function(d){typeof d.runWhen=="function"&&d.runWhen(n)===!1||(p=p&&d.synchronous,c.unshift(d.fulfilled,d.rejected))});const h=[];this.interceptors.response.forEach(function(d){h.push(d.fulfilled,d.rejected)});let l,u=0,E;if(!p){const f=[de.bind(this),void 0];for(f.unshift.apply(f,c),f.push.apply(f,h),E=f.length,l=Promise.resolve(n);u{if(!r._listeners)return;let o=r._listeners.length;for(;o-- >0;)r._listeners[o](s);r._listeners=null}),this.promise.then=s=>{let o;const i=new Promise(c=>{r.subscribe(c),o=c}).then(s);return i.cancel=function(){r.unsubscribe(o)},i},t(function(o,i,c){r.reason||(r.reason=new D(o,i,c),n(r.reason))})}throwIfRequested(){if(this.reason)throw this.reason}subscribe(t){if(this.reason){t(this.reason);return}this._listeners?this._listeners.push(t):this._listeners=[t]}unsubscribe(t){if(!this._listeners)return;const n=this._listeners.indexOf(t);n!==-1&&this._listeners.splice(n,1)}static source(){let t;return{token:new re(function(s){t=s}),cancel:t}}}const Xt=re;function vt(e){return function(n){return e.apply(null,n)}}function Qt(e){return a.isObject(e)&&e.isAxiosError===!0}const Q={Continue:100,SwitchingProtocols:101,Processing:102,EarlyHints:103,Ok:200,Created:201,Accepted:202,NonAuthoritativeInformation:203,NoContent:204,ResetContent:205,PartialContent:206,MultiStatus:207,AlreadyReported:208,ImUsed:226,MultipleChoices:300,MovedPermanently:301,Found:302,SeeOther:303,NotModified:304,UseProxy:305,Unused:306,TemporaryRedirect:307,PermanentRedirect:308,BadRequest:400,Unauthorized:401,PaymentRequired:402,Forbidden:403,NotFound:404,MethodNotAllowed:405,NotAcceptable:406,ProxyAuthenticationRequired:407,RequestTimeout:408,Conflict:409,Gone:410,LengthRequired:411,PreconditionFailed:412,PayloadTooLarge:413,UriTooLong:414,UnsupportedMediaType:415,RangeNotSatisfiable:416,ExpectationFailed:417,ImATeapot:418,MisdirectedRequest:421,UnprocessableEntity:422,Locked:423,FailedDependency:424,TooEarly:425,UpgradeRequired:426,PreconditionRequired:428,TooManyRequests:429,RequestHeaderFieldsTooLarge:431,UnavailableForLegalReasons:451,InternalServerError:500,NotImplemented:501,BadGateway:502,ServiceUnavailable:503,GatewayTimeout:504,HttpVersionNotSupported:505,VariantAlsoNegotiates:506,InsufficientStorage:507,LoopDetected:508,NotExtended:510,NetworkAuthenticationRequired:511};Object.entries(Q).forEach(([e,t])=>{Q[t]=e});const Zt=Q;function Ue(e){const t=new k(e),n=me(k.prototype.request,t);return a.extend(n,k.prototype,t,{allOwnKeys:!0}),a.extend(n,t,null,{allOwnKeys:!0}),n.create=function(s){return Ue(P(e,s))},n}const y=Ue(te);y.Axios=k;y.CanceledError=D;y.CancelToken=Xt;y.isCancel=_e;y.VERSION=Le;y.toFormData=M;y.AxiosError=m;y.Cancel=y.CanceledError;y.all=function(t){return Promise.all(t)};y.spread=vt;y.isAxiosError=Qt;y.mergeConfig=P;y.AxiosHeaders=T;y.formToJSON=e=>Fe(a.isHTMLForm(e)?new FormData(e):e);y.getAdapter=De.getAdapter;y.HttpStatusCode=Zt;y.default=y;export{y as a}; diff --git a/web/dist/assets/content-68a3f6d0.js b/web/dist/assets/content-68a3f6d0.js deleted file mode 100644 index 50156cd0..00000000 --- a/web/dist/assets/content-68a3f6d0.js +++ /dev/null @@ -1 +0,0 @@ -import{d as E,e,f as l,F as i,u as k,k as r,w as s,bf as c,j as C,y,x as I,q as g,Y as m,H as j,A as D,h}from"./@vue-a481fc63.js";import{$ as N,a0 as U}from"./@vicons-f0266f88.js";import{j as $,V as A,W as V,m as R,X as L,e as P,i as T}from"./naive-ui-eecf2ec3.js";import{_ as B,V as M,W as O}from"./index-1e276b8f.js";import{e as W}from"./paopao-video-player-2fe58954.js";const Z={class:"link-wrap"},q={class:"link-txt-wrap"},z=["href"],F={class:"link-txt"},H=E({__name:"post-link",props:{links:{default:()=>[]}},setup(f){const o=f;return(u,a)=>{const x=$;return e(),l("div",Z,[(e(!0),l(i,null,k(o.links,n=>(e(),l("div",{class:"link-item",key:n.id},[r(x,{class:"hash-link"},{default:s(()=>[r(c(N))]),_:1}),C("div",q,[C("a",{href:n.content,class:"hash-link",target:"_blank",onClick:a[0]||(a[0]=y(()=>{},["stop"]))},[C("span",F,I(n.content),1)],8,z)])]))),128))])}}});const st=B(H,[["__scopeId","data-v-36eef76b"]]),X={key:0},rt=E({__name:"post-video",props:{videos:{default:()=>[]},full:{type:Boolean,default:!1}},setup(f){const o=f;return(u,a)=>{const x=A,n=V;return o.videos.length>0?(e(),l("div",X,[r(n,{"x-gap":4,"y-gap":4,cols:u.full?1:5},{default:s(()=>[r(x,{span:u.full?1:3},{default:s(()=>[(e(!0),l(i,null,k(o.videos,v=>(e(),g(c(W),{onClick:a[0]||(a[0]=y(()=>{},["stop"])),key:v.id,src:v.content,colors:["#18a058","#2aca75"],hoverable:!0,theme:"gradient"},null,8,["src"]))),128))]),_:1},8,["span"])]),_:1},8,["cols"])])):m("",!0)}}}),Y={class:"images-wrap"},ot=E({__name:"post-image",props:{imgs:{default:()=>[]}},setup(f){const o=f,u="https://paopao-assets.oss-cn-shanghai.aliyuncs.com/public/404.png",a="?x-oss-process=image/resize,m_fill,w_300,h_300,limit_0/auto-orient,1/format,png";return(x,n)=>{const v=R,_=A,p=V,w=L;return e(),l("div",Y,[[1].includes(o.imgs.length)?(e(),g(w,{key:0},{default:s(()=>[r(p,{"x-gap":4,"y-gap":4,cols:2},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,t=>(e(),g(_,{key:t.id},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[0]||(n[0]=y(()=>{},["stop"])),class:"post-img x1","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024))),128))]),_:1})]),_:1})):m("",!0),[2,3].includes(o.imgs.length)?(e(),g(w,{key:1},{default:s(()=>[r(p,{"x-gap":4,"y-gap":4,cols:3},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,t=>(e(),g(_,{key:t.id},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[1]||(n[1]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024))),128))]),_:1})]),_:1})):m("",!0),[4].includes(o.imgs.length)?(e(),g(w,{key:2},{default:s(()=>[r(p,{"x-gap":4,"y-gap":4,cols:4},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,t=>(e(),g(_,{key:t.id},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[2]||(n[2]=y(()=>{},["stop"])),class:"post-img x3","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024))),128))]),_:1})]),_:1})):m("",!0),[5].includes(o.imgs.length)?(e(),g(w,{key:3},{default:s(()=>[r(p,{"x-gap":4,"y-gap":4,cols:3},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,(t,d)=>(e(),l(i,{key:t.id},[d<3?(e(),g(_,{key:0},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[3]||(n[3]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),128))]),_:1}),r(p,{"x-gap":4,"y-gap":4,cols:2,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,(t,d)=>(e(),l(i,{key:t.id},[d>=3?(e(),g(_,{key:0},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[4]||(n[4]=y(()=>{},["stop"])),class:"post-img x1","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),128))]),_:1})]),_:1})):m("",!0),[6].includes(o.imgs.length)?(e(),g(w,{key:4},{default:s(()=>[r(p,{"x-gap":4,"y-gap":4,cols:3},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,(t,d)=>(e(),l(i,{key:t.id},[d<3?(e(),g(_,{key:0},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[5]||(n[5]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),128))]),_:1}),r(p,{"x-gap":4,"y-gap":4,cols:3,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,(t,d)=>(e(),l(i,{key:t.id},[d>=3?(e(),g(_,{key:0},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[6]||(n[6]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),128))]),_:1})]),_:1})):m("",!0),o.imgs.length===7?(e(),g(w,{key:5},{default:s(()=>[r(p,{"x-gap":4,"y-gap":4,cols:4},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,(t,d)=>(e(),l(i,null,[d<4?(e(),g(_,{key:t.id},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[7]||(n[7]=y(()=>{},["stop"])),class:"post-img x3","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1}),r(p,{"x-gap":4,"y-gap":4,cols:3,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,(t,d)=>(e(),l(i,null,[d>=4?(e(),g(_,{key:t.id},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[8]||(n[8]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1})]),_:1})):m("",!0),o.imgs.length===8?(e(),g(w,{key:6},{default:s(()=>[r(p,{"x-gap":4,"y-gap":4,cols:4},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,(t,d)=>(e(),l(i,null,[d<4?(e(),g(_,{key:t.id},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[9]||(n[9]=y(()=>{},["stop"])),class:"post-img x3","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1}),r(p,{"x-gap":4,"y-gap":4,cols:4,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,(t,d)=>(e(),l(i,null,[d>=4?(e(),g(_,{key:t.id},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[10]||(n[10]=y(()=>{},["stop"])),class:"post-img x3","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1})]),_:1})):m("",!0),o.imgs.length===9?(e(),g(w,{key:7},{default:s(()=>[r(p,{"x-gap":4,"y-gap":4,cols:3},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,(t,d)=>(e(),l(i,null,[d<3?(e(),g(_,{key:t.id},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[11]||(n[11]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1}),r(p,{"x-gap":4,"y-gap":4,cols:3,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,(t,d)=>(e(),l(i,null,[d>=3&&d<6?(e(),g(_,{key:t.id},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[12]||(n[12]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1}),r(p,{"x-gap":4,"y-gap":4,cols:3,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(i,null,k(o.imgs,(t,d)=>(e(),l(i,null,[d>=6?(e(),g(_,{key:t.id},{default:s(()=>[r(v,{onError:()=>t.content=c(u),onClick:n[13]||(n[13]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+c(a),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1})]),_:1})):m("",!0)])}}});const G={class:"attachment-wrap"},J=E({__name:"post-attachment",props:{attachments:{default:()=>[]},price:{default:0}},setup(f){const o=f,u=j(!1),a=j(""),x=j(0),n=_=>{u.value=!0,x.value=_.id,a.value="这是一个免费附件,您可以直接下载?",_.type===8&&(a.value=()=>h("div",{},[h("p",{},"这是一个收费附件,下载将收取"+(o.price/100).toFixed(2)+"元")]),M({id:x.value}).then(p=>{p.paid&&(a.value=()=>h("div",{},[h("p",{},"此次下载您已支付或无需付费,请确认下载")]))}).catch(p=>{u.value=!1}))},v=()=>{O({id:x.value}).then(_=>{window.open(_.signed_url.replace("http://","https://"),"_blank")}).catch(_=>{console.log(_)})};return(_,p)=>{const w=$,t=P,d=T;return e(),l("div",G,[(e(!0),l(i,null,k(_.attachments,b=>(e(),l("div",{class:"attach-item",key:b.id},[r(t,{onClick:y(K=>n(b),["stop"]),type:"primary",size:"tiny",dashed:""},{icon:s(()=>[r(w,null,{default:s(()=>[r(c(U))]),_:1})]),default:s(()=>[D(" "+I(b.type===8?"收费":"免费")+"附件 ",1)]),_:2},1032,["onClick"])]))),128)),r(d,{show:u.value,"onUpdate:show":p[0]||(p[0]=b=>u.value=b),"mask-closable":!1,preset:"dialog",title:"下载提示",content:a.value,"positive-text":"确认下载","negative-text":"取消","icon-placement":"top",onPositiveClick:v},null,8,["show","content"])])}}});const lt=B(J,[["__scopeId","data-v-22563084"]]),at=f=>{const o=[],u=[];var a=/(#|#)([^#@\s])+?\s+?/g,x=/@([a-zA-Z0-9])+?\s+?/g;return f=f.replace(/<[^>]*?>/gi,"").replace(/(.*?)<\/[^>]*?>/gi,"").replace(a,n=>(o.push(n.substr(1).trim()),''+n.trim()+" ")).replace(x,n=>(u.push(n.substr(1).trim()),''+n.trim()+" ")),{content:f,tags:o,users:u}},ct=(f,o,u,a,x=!0)=>{const n=f.length>a;if(x&&n){f=f.substring(0,a);let p=f.charAt(a-1);(p=="#"||p=="#"||p=="@")&&(f=f.substring(0,a-1))}const v=/(#|#)([^#@\s])+?\s+?/g,_=/@([a-zA-Z0-9])+?\s+?/g;return f=f.replace(/<[^>]*?>/gi,"").replace(/(.*?)<\/[^>]*?>/gi,"").replace(v,p=>''+p.trim()+" ").replace(_,p=>''+p.trim()+" "),n&&(f=f.trimEnd()+(x?"... ":" ")+''+(x?o:u)+" "),f};export{ot as _,lt as a,rt as b,st as c,ct as d,at as p}; diff --git a/web/dist/assets/content-BMjusBPS.js b/web/dist/assets/content-BMjusBPS.js new file mode 100644 index 00000000..96059000 --- /dev/null +++ b/web/dist/assets/content-BMjusBPS.js @@ -0,0 +1 @@ +import{d as h,e,f as l,F as u,u as k,k as o,w as s,bk as a,j as C,y,x as I,q as g,Z as m,H as j,A as N,h as E}from"./@vue-CQsYufSu.js";import{$ as U,a0 as V}from"./@vicons-C3A8jsfr.js";import{j as $,V as A,W as B,m as R,X as P,e as T,i as Z}from"./naive-ui-DNcWoFGl.js";import{_ as D,W as L,X as M}from"./index-v3l9hw1O.js";import{e as O}from"./paopao-video-player-DAi68TC5.js";const W={class:"link-wrap"},X={class:"link-txt-wrap"},q=["href"],z={class:"link-txt"},F=h({__name:"post-link",props:{links:{default:()=>[]}},setup(f){const i=f;return(p,r)=>{const w=$;return e(),l("div",W,[(e(!0),l(u,null,k(i.links,n=>(e(),l("div",{class:"link-item",key:n.id},[o(w,{class:"hash-link"},{default:s(()=>[o(a(U))]),_:1}),C("div",X,[C("a",{href:n.content,class:"hash-link",target:"_blank",onClick:r[0]||(r[0]=y(()=>{},["stop"]))},[C("span",z,I(n.content),1)],8,q)])]))),128))])}}}),st=D(F,[["__scopeId","data-v-36eef76b"]]),H={key:0},rt=h({__name:"post-video",props:{videos:{default:()=>[]},full:{type:Boolean,default:!1}},setup(f){const i=f;return(p,r)=>{const w=A,n=B;return i.videos.length>0?(e(),l("div",H,[o(n,{"x-gap":4,"y-gap":4,cols:p.full?1:5},{default:s(()=>[o(w,{span:p.full?1:3},{default:s(()=>[(e(!0),l(u,null,k(i.videos,v=>(e(),g(a(O),{onClick:r[0]||(r[0]=y(()=>{},["stop"])),key:v.id,src:v.content,colors:["#18a058","#2aca75"],hoverable:!0,theme:"gradient"},null,8,["src"]))),128))]),_:1},8,["span"])]),_:1},8,["cols"])])):m("",!0)}}}),G={class:"images-wrap"},ot=h({__name:"post-image",props:{imgs:{default:()=>[]}},setup(f){const i="https://paopao-assets.oss-cn-shanghai.aliyuncs.com/public/404.png",p="?x-oss-process=image/resize,m_fill,w_300,h_300,limit_0/auto-orient,1/format,webp",r=f;return(w,n)=>{const v=R,d=A,c=B,x=P;return e(),l("div",G,[[1].includes(r.imgs.length)?(e(),g(x,{key:0},{default:s(()=>[o(c,{"x-gap":4,"y-gap":4,cols:2},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,t=>(e(),g(d,{key:t.id},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[0]||(n[0]=y(()=>{},["stop"])),class:"post-img x1","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024))),128))]),_:1})]),_:1})):m("",!0),[2,3].includes(r.imgs.length)?(e(),g(x,{key:1},{default:s(()=>[o(c,{"x-gap":4,"y-gap":4,cols:3},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,t=>(e(),g(d,{key:t.id},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[1]||(n[1]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024))),128))]),_:1})]),_:1})):m("",!0),[4].includes(r.imgs.length)?(e(),g(x,{key:2},{default:s(()=>[o(c,{"x-gap":4,"y-gap":4,cols:4},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,t=>(e(),g(d,{key:t.id},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[2]||(n[2]=y(()=>{},["stop"])),class:"post-img x3","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024))),128))]),_:1})]),_:1})):m("",!0),[5].includes(r.imgs.length)?(e(),g(x,{key:3},{default:s(()=>[o(c,{"x-gap":4,"y-gap":4,cols:3},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,(t,_)=>(e(),l(u,{key:t.id},[_<3?(e(),g(d,{key:0},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[3]||(n[3]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),128))]),_:1}),o(c,{"x-gap":4,"y-gap":4,cols:2,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,(t,_)=>(e(),l(u,{key:t.id},[_>=3?(e(),g(d,{key:0},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[4]||(n[4]=y(()=>{},["stop"])),class:"post-img x1","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),128))]),_:1})]),_:1})):m("",!0),[6].includes(r.imgs.length)?(e(),g(x,{key:4},{default:s(()=>[o(c,{"x-gap":4,"y-gap":4,cols:3},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,(t,_)=>(e(),l(u,{key:t.id},[_<3?(e(),g(d,{key:0},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[5]||(n[5]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),128))]),_:1}),o(c,{"x-gap":4,"y-gap":4,cols:3,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,(t,_)=>(e(),l(u,{key:t.id},[_>=3?(e(),g(d,{key:0},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[6]||(n[6]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),128))]),_:1})]),_:1})):m("",!0),r.imgs.length===7?(e(),g(x,{key:5},{default:s(()=>[o(c,{"x-gap":4,"y-gap":4,cols:4},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,(t,_)=>(e(),l(u,null,[_<4?(e(),g(d,{key:t.id},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[7]||(n[7]=y(()=>{},["stop"])),class:"post-img x3","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1}),o(c,{"x-gap":4,"y-gap":4,cols:3,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,(t,_)=>(e(),l(u,null,[_>=4?(e(),g(d,{key:t.id},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[8]||(n[8]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1})]),_:1})):m("",!0),r.imgs.length===8?(e(),g(x,{key:6},{default:s(()=>[o(c,{"x-gap":4,"y-gap":4,cols:4},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,(t,_)=>(e(),l(u,null,[_<4?(e(),g(d,{key:t.id},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[9]||(n[9]=y(()=>{},["stop"])),class:"post-img x3","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1}),o(c,{"x-gap":4,"y-gap":4,cols:4,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,(t,_)=>(e(),l(u,null,[_>=4?(e(),g(d,{key:t.id},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[10]||(n[10]=y(()=>{},["stop"])),class:"post-img x3","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1})]),_:1})):m("",!0),r.imgs.length===9?(e(),g(x,{key:7},{default:s(()=>[o(c,{"x-gap":4,"y-gap":4,cols:3},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,(t,_)=>(e(),l(u,null,[_<3?(e(),g(d,{key:t.id},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[11]||(n[11]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1}),o(c,{"x-gap":4,"y-gap":4,cols:3,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,(t,_)=>(e(),l(u,null,[_>=3&&_<6?(e(),g(d,{key:t.id},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[12]||(n[12]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1}),o(c,{"x-gap":4,"y-gap":4,cols:3,style:{"margin-top":"4px"}},{default:s(()=>[(e(!0),l(u,null,k(r.imgs,(t,_)=>(e(),l(u,null,[_>=6?(e(),g(d,{key:t.id},{default:s(()=>[o(v,{onError:()=>t.content=a(i),onClick:n[13]||(n[13]=y(()=>{},["stop"])),class:"post-img x2","object-fit":"cover",src:t.content+a(p),"preview-src":t.content},null,8,["onError","src","preview-src"])]),_:2},1024)):m("",!0)],64))),256))]),_:1})]),_:1})):m("",!0)])}}}),J={class:"attachment-wrap"},K=h({__name:"post-attachment",props:{attachments:{default:()=>[]},price:{default:0}},setup(f){const i=f,p=j(!1),r=j(""),w=j(0),n=d=>{p.value=!0,w.value=d.id,r.value="这是一个免费附件,您可以直接下载?",d.type===8&&(r.value=()=>E("div",{},[E("p",{},"这是一个收费附件,下载将收取"+(i.price/100).toFixed(2)+"元")]),L({id:w.value}).then(c=>{c.paid&&(r.value=()=>E("div",{},[E("p",{},"此次下载您已支付或无需付费,请确认下载")]))}).catch(c=>{p.value=!1}))},v=()=>{M({id:w.value}).then(d=>{window.open(d.signed_url.replace("http://","https://"),"_blank")}).catch(d=>{console.log(d)})};return(d,c)=>{const x=$,t=T,_=Z;return e(),l("div",J,[(e(!0),l(u,null,k(d.attachments,b=>(e(),l("div",{class:"attach-item",key:b.id},[o(t,{onClick:y(Q=>n(b),["stop"]),type:"primary",size:"tiny",dashed:""},{icon:s(()=>[o(x,null,{default:s(()=>[o(a(V))]),_:1})]),default:s(()=>[N(" "+I(b.type===8?"收费":"免费")+"附件 ",1)]),_:2},1032,["onClick"])]))),128)),o(_,{show:p.value,"onUpdate:show":c[0]||(c[0]=b=>p.value=b),"mask-closable":!1,preset:"dialog",title:"下载提示",content:r.value,"positive-text":"确认下载","negative-text":"取消","icon-placement":"top",onPositiveClick:v},null,8,["show","content"])])}}}),lt=D(K,[["__scopeId","data-v-22563084"]]),at=f=>{const i=[],p=[];var r=/(#|#)([^#@\s])+?\s+?/g,w=/@([a-zA-Z0-9])+?\s+?/g;return f=f.replace(/<[^>]*?>/gi,"").replace(/(.*?)<\/[^>]*?>/gi,"").replace(r,n=>(i.push(n.substr(1).trim()),''+n.trim()+" ")).replace(w,n=>(p.push(n.substr(1).trim()),''+n.trim()+" ")),{content:f,tags:i,users:p}},ct=(f,i,p,r,w=!0)=>{const n=f.length>r;if(w&&n){f=f.substring(0,r);let c=f.charAt(r-1);(c=="#"||c=="#"||c=="@")&&(f=f.substring(0,r-1))}const v=/(#|#)([^#@\s])+?\s+?/g,d=/@([a-zA-Z0-9])+?\s+?/g;return f=f.replace(/<[^>]*?>/gi,"").replace(/(.*?)<\/[^>]*?>/gi,"").replace(v,c=>''+c.trim()+" ").replace(d,c=>''+c.trim()+" "),n&&(f=f.trimEnd()+(w?"... ":" ")+''+(w?i:p)+" "),f};export{ot as _,lt as a,rt as b,st as c,ct as d,at as p}; diff --git a/web/dist/assets/content-a8987469.css b/web/dist/assets/content-DBy8w6ml.css similarity index 61% rename from web/dist/assets/content-a8987469.css rename to web/dist/assets/content-DBy8w6ml.css index a72f4653..2dc35962 100644 --- a/web/dist/assets/content-a8987469.css +++ b/web/dist/assets/content-DBy8w6ml.css @@ -1 +1 @@ -.link-wrap[data-v-36eef76b]{margin-bottom:10px;position:relative}.link-wrap .link-item[data-v-36eef76b]{height:22px;display:flex;align-items:center;position:relative}.link-wrap .link-item .link-txt-wrap[data-v-36eef76b]{left:calc(1em + 4px);width:calc(100% - 1em);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;position:absolute}.link-wrap .link-item .link-txt-wrap .hash-link .link-txt[data-v-36eef76b]{word-break:break-all}.images-wrap{margin-top:10px}.post-img{display:flex;margin:0;border-radius:3px;overflow:hidden;background:rgba(0,0,0,.1);border:1px solid #eee}.post-img img{width:100%;height:100%}.x1{height:174px}.x2{height:112px}.x3{height:100px}.dark .post-img{border:1px solid #333}@media screen and (max-width: 821px){.x1{height:100px}.x2{height:70px}.x3{height:50px}}.attach-item[data-v-22563084]{margin:10px 0} +.link-wrap[data-v-36eef76b]{margin-bottom:10px;position:relative}.link-wrap .link-item[data-v-36eef76b]{height:22px;display:flex;align-items:center;position:relative}.link-wrap .link-item .link-txt-wrap[data-v-36eef76b]{left:calc(1em + 4px);width:calc(100% - 1em);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;position:absolute}.link-wrap .link-item .link-txt-wrap .hash-link .link-txt[data-v-36eef76b]{word-break:break-all}.images-wrap{margin-top:10px}.post-img{display:flex;margin:0;border-radius:3px;overflow:hidden;background:#0000001a;border:1px solid #eee}.post-img img{width:100%;height:100%}.x1{height:174px}.x2{height:112px}.x3{height:100px}.dark .post-img{border:1px solid #333}@media screen and (max-width: 821px){.x1{height:100px}.x2{height:70px}.x3{height:50px}}.attach-item[data-v-22563084]{margin:10px 0} diff --git a/web/dist/assets/copy-to-clipboard-4ef7d3eb.js b/web/dist/assets/copy-to-clipboard-CA7crPat.js similarity index 93% rename from web/dist/assets/copy-to-clipboard-4ef7d3eb.js rename to web/dist/assets/copy-to-clipboard-CA7crPat.js index 3a6ca15f..43ee0f61 100644 --- a/web/dist/assets/copy-to-clipboard-4ef7d3eb.js +++ b/web/dist/assets/copy-to-clipboard-CA7crPat.js @@ -1 +1 @@ -import{g as f}from"./@babel-725317a4.js";import{t as m}from"./toggle-selection-93f4ad84.js";var y=m,p={"text/plain":"Text","text/html":"Url",default:"Text"},g="Copy to clipboard: #{key}, Enter";function b(r){var t=(/mac os x/i.test(navigator.userAgent)?"⌘":"Ctrl")+"+C";return r.replace(/#{\s*key\s*}/g,t)}function w(r,t){var o,i,d,l,c,e,n=!1;t||(t={}),o=t.debug||!1;try{d=y(),l=document.createRange(),c=document.getSelection(),e=document.createElement("span"),e.textContent=r,e.ariaHidden="true",e.style.all="unset",e.style.position="fixed",e.style.top=0,e.style.clip="rect(0, 0, 0, 0)",e.style.whiteSpace="pre",e.style.webkitUserSelect="text",e.style.MozUserSelect="text",e.style.msUserSelect="text",e.style.userSelect="text",e.addEventListener("copy",function(a){if(a.stopPropagation(),t.format)if(a.preventDefault(),typeof a.clipboardData>"u"){o&&console.warn("unable to use e.clipboardData"),o&&console.warn("trying IE specific stuff"),window.clipboardData.clearData();var s=p[t.format]||p.default;window.clipboardData.setData(s,r)}else a.clipboardData.clearData(),a.clipboardData.setData(t.format,r);t.onCopy&&(a.preventDefault(),t.onCopy(a.clipboardData))}),document.body.appendChild(e),l.selectNodeContents(e),c.addRange(l);var u=document.execCommand("copy");if(!u)throw new Error("copy command was unsuccessful");n=!0}catch(a){o&&console.error("unable to copy using execCommand: ",a),o&&console.warn("trying IE specific stuff");try{window.clipboardData.setData(t.format||"text",r),t.onCopy&&t.onCopy(window.clipboardData),n=!0}catch(s){o&&console.error("unable to copy using clipboardData: ",s),o&&console.error("falling back to prompt"),i=b("message"in t?t.message:g),window.prompt(i,r)}}finally{c&&(typeof c.removeRange=="function"?c.removeRange(l):c.removeAllRanges()),e&&document.body.removeChild(e),d()}return n}var D=w;const x=f(D);export{x as c}; +import{g as f}from"./@babel-Cpj98o6Y.js";import{t as m}from"./toggle-selection-BHUZwh74.js";var y=m,p={"text/plain":"Text","text/html":"Url",default:"Text"},g="Copy to clipboard: #{key}, Enter";function b(r){var t=(/mac os x/i.test(navigator.userAgent)?"⌘":"Ctrl")+"+C";return r.replace(/#{\s*key\s*}/g,t)}function w(r,t){var o,i,d,l,c,e,n=!1;t||(t={}),o=t.debug||!1;try{d=y(),l=document.createRange(),c=document.getSelection(),e=document.createElement("span"),e.textContent=r,e.ariaHidden="true",e.style.all="unset",e.style.position="fixed",e.style.top=0,e.style.clip="rect(0, 0, 0, 0)",e.style.whiteSpace="pre",e.style.webkitUserSelect="text",e.style.MozUserSelect="text",e.style.msUserSelect="text",e.style.userSelect="text",e.addEventListener("copy",function(a){if(a.stopPropagation(),t.format)if(a.preventDefault(),typeof a.clipboardData>"u"){o&&console.warn("unable to use e.clipboardData"),o&&console.warn("trying IE specific stuff"),window.clipboardData.clearData();var s=p[t.format]||p.default;window.clipboardData.setData(s,r)}else a.clipboardData.clearData(),a.clipboardData.setData(t.format,r);t.onCopy&&(a.preventDefault(),t.onCopy(a.clipboardData))}),document.body.appendChild(e),l.selectNodeContents(e),c.addRange(l);var u=document.execCommand("copy");if(!u)throw new Error("copy command was unsuccessful");n=!0}catch(a){o&&console.error("unable to copy using execCommand: ",a),o&&console.warn("trying IE specific stuff");try{window.clipboardData.setData(t.format||"text",r),t.onCopy&&t.onCopy(window.clipboardData),n=!0}catch(s){o&&console.error("unable to copy using clipboardData: ",s),o&&console.error("falling back to prompt"),i=b("message"in t?t.message:g),window.prompt(i,r)}}finally{c&&(typeof c.removeRange=="function"?c.removeRange(l):c.removeAllRanges()),e&&document.body.removeChild(e),d()}return n}var D=w;const x=f(D);export{x as c}; diff --git a/web/dist/assets/count-e2caa1c1.js b/web/dist/assets/count-BK58UQ2M.js similarity index 100% rename from web/dist/assets/count-e2caa1c1.js rename to web/dist/assets/count-BK58UQ2M.js diff --git a/web/dist/assets/css-render-6a5c5852.js b/web/dist/assets/css-render-Ct37b3-v.js similarity index 81% rename from web/dist/assets/css-render-6a5c5852.js rename to web/dist/assets/css-render-Ct37b3-v.js index 7481621a..316558bb 100644 --- a/web/dist/assets/css-render-6a5c5852.js +++ b/web/dist/assets/css-render-Ct37b3-v.js @@ -1,4 +1,4 @@ -import{m as b}from"./@emotion-8a8e73f6.js";function v(n){let e=0;for(let t=0;t{let u=v(r);if(u){if(u===1){n.forEach(f=>{t.push(r.replace("&",f))});return}}else{n.forEach(f=>{t.push((f&&f+" ")+r)});return}let i=[r];for(;u--;){const f=[];i.forEach(o=>{n.forEach(l=>{f.push(o.replace("&",l))})}),i=f}i.forEach(f=>t.push(f))}),t}function R(n,e){const t=[];return e.split($).forEach(r=>{n.forEach(u=>{t.push((u&&u+" ")+r)})}),t}function q(n){let e=[""];return n.forEach(t=>{t=t&&t.trim(),t&&(t.includes("&")?e=j(e,t):e=R(e,t))}),e.join(", ").replace(_," ")}function x(n){if(!n)return;const e=n.parentElement;e&&e.removeChild(n)}function m(n){return document.querySelector(`style[cssr-id="${n}"]`)}function k(n){const e=document.createElement("style");return e.setAttribute("cssr-id",n),e}function h(n){return n?/^\s*@(s|m)/.test(n):!1}const S=/[A-Z]/g;function C(n){return n.replace(S,e=>"-"+e.toLowerCase())}function B(n,e=" "){return typeof n=="object"&&n!==null?` { +import{m as b}from"./@emotion-WldOFDRm.js";function _(n){let e=0;for(let t=0;t{let u=_(r);if(u){if(u===1){n.forEach(f=>{t.push(r.replace("&",f))});return}}else{n.forEach(f=>{t.push((f&&f+" ")+r)});return}let i=[r];for(;u--;){const f=[];i.forEach(o=>{n.forEach(l=>{f.push(o.replace("&",l))})}),i=f}i.forEach(f=>t.push(f))}),t}function q(n,e){const t=[];return e.split($).forEach(r=>{n.forEach(u=>{t.push((u&&u+" ")+r)})}),t}function v(n){let e=[""];return n.forEach(t=>{t=t&&t.trim(),t&&(t.includes("&")?e=R(e,t):e=q(e,t))}),e.join(", ").replace(j," ")}function x(n){if(!n)return;const e=n.parentElement;e&&e.removeChild(n)}function m(n){return document.querySelector(`style[cssr-id="${n}"]`)}function k(n){const e=document.createElement("style");return e.setAttribute("cssr-id",n),e}function h(n){return n?/^\s*@(s|m)/.test(n):!1}const S=/[A-Z]/g;function C(n){return n.replace(S,e=>"-"+e.toLowerCase())}function B(n,e=" "){return typeof n=="object"&&n!==null?` { `+Object.entries(n).map(t=>e+` ${C(t[0])}: ${t[1]};`).join(` `)+` `+e+"}":`: ${n};`}function L(n,e,t){return typeof n=="function"?n({context:e.context,props:t}):n}function E(n,e,t,r){if(!e)return"";const u=L(e,t,r);if(!u)return"";if(typeof u=="string")return`${n} { @@ -7,7 +7,7 @@ ${u} }`:"";const f=n?[n+" {"]:[];return i.forEach(o=>{const l=u[o];if(o==="raw"){f.push(` `+l+` `);return}o=C(o),l!=null&&f.push(` ${o}${B(l)}`)}),n&&f.push("}"),f.join(` -`)}function y(n,e,t){n&&n.forEach(r=>{if(Array.isArray(r))y(r,e,t);else if(typeof r=="function"){const u=r(e);Array.isArray(u)?y(u,e,t):u&&t(u)}else r&&t(r)})}function w(n,e,t,r,u,i){const f=n.$;let o="";if(!f||typeof f=="string")h(f)?o=f:e.push(f);else if(typeof f=="function"){const s={context:r.context,props:u};h(s.value)?o=s.value:e.push(s.value)}else if(f.before&&f.before(r.context),!f.$||typeof f.$=="string")h(f.$)?o=f.$:e.push(f.$);else if(f.$){const s=f.$({context:r.context,props:u});h(s)?o=s:e.push(s)}const l=q(e),c=E(l,n.props,r,u);o?(t.push(`${o} {`),i&&c&&i.insertRule(`${o} { +`)}function y(n,e,t){n&&n.forEach(r=>{if(Array.isArray(r))y(r,e,t);else if(typeof r=="function"){const u=r(e);Array.isArray(u)?y(u,e,t):u&&t(u)}else r&&t(r)})}function w(n,e,t,r,u,i){const f=n.$;let o="";if(!f||typeof f=="string")h(f)?o=f:e.push(f);else if(typeof f=="function"){const s=f({context:r.context,props:u});h(s)?o=s:e.push(s)}else if(f.before&&f.before(r.context),!f.$||typeof f.$=="string")h(f.$)?o=f.$:e.push(f.$);else if(f.$){const s=f.$({context:r.context,props:u});h(s)?o=s:e.push(s)}const l=v(e),c=E(l,n.props,r,u);o?(t.push(`${o} {`),i&&c&&i.insertRule(`${o} { ${c} } `)):(i&&c&&i.insertRule(c),!i&&c.length&&t.push(c)),n.children&&y(n.children,{context:r.context,props:u},s=>{if(typeof s=="string"){const a=E(l,{raw:s},r,u);i?i.insertRule(a):t.push(a)}else w(s,e,t,r,u,i)}),e.pop(),o&&t.push("}"),f&&f.after&&f.after(r.context)}function A(n,e,t,r=!1){const u=[];return w(n,[],u,e,t,r?n.instance.__styleSheet:void 0),r?"":u.join(` diff --git a/web/dist/assets/cssfilter-af71ba68.js b/web/dist/assets/cssfilter-af71ba68.js deleted file mode 100644 index 55600e9a..00000000 --- a/web/dist/assets/cssfilter-af71ba68.js +++ /dev/null @@ -1,2 +0,0 @@ -var w={exports:{}},g={};function k(){var e={};return e["align-content"]=!1,e["align-items"]=!1,e["align-self"]=!1,e["alignment-adjust"]=!1,e["alignment-baseline"]=!1,e.all=!1,e["anchor-point"]=!1,e.animation=!1,e["animation-delay"]=!1,e["animation-direction"]=!1,e["animation-duration"]=!1,e["animation-fill-mode"]=!1,e["animation-iteration-count"]=!1,e["animation-name"]=!1,e["animation-play-state"]=!1,e["animation-timing-function"]=!1,e.azimuth=!1,e["backface-visibility"]=!1,e.background=!0,e["background-attachment"]=!0,e["background-clip"]=!0,e["background-color"]=!0,e["background-image"]=!0,e["background-origin"]=!0,e["background-position"]=!0,e["background-repeat"]=!0,e["background-size"]=!0,e["baseline-shift"]=!1,e.binding=!1,e.bleed=!1,e["bookmark-label"]=!1,e["bookmark-level"]=!1,e["bookmark-state"]=!1,e.border=!0,e["border-bottom"]=!0,e["border-bottom-color"]=!0,e["border-bottom-left-radius"]=!0,e["border-bottom-right-radius"]=!0,e["border-bottom-style"]=!0,e["border-bottom-width"]=!0,e["border-collapse"]=!0,e["border-color"]=!0,e["border-image"]=!0,e["border-image-outset"]=!0,e["border-image-repeat"]=!0,e["border-image-slice"]=!0,e["border-image-source"]=!0,e["border-image-width"]=!0,e["border-left"]=!0,e["border-left-color"]=!0,e["border-left-style"]=!0,e["border-left-width"]=!0,e["border-radius"]=!0,e["border-right"]=!0,e["border-right-color"]=!0,e["border-right-style"]=!0,e["border-right-width"]=!0,e["border-spacing"]=!0,e["border-style"]=!0,e["border-top"]=!0,e["border-top-color"]=!0,e["border-top-left-radius"]=!0,e["border-top-right-radius"]=!0,e["border-top-style"]=!0,e["border-top-width"]=!0,e["border-width"]=!0,e.bottom=!1,e["box-decoration-break"]=!0,e["box-shadow"]=!0,e["box-sizing"]=!0,e["box-snap"]=!0,e["box-suppress"]=!0,e["break-after"]=!0,e["break-before"]=!0,e["break-inside"]=!0,e["caption-side"]=!1,e.chains=!1,e.clear=!0,e.clip=!1,e["clip-path"]=!1,e["clip-rule"]=!1,e.color=!0,e["color-interpolation-filters"]=!0,e["column-count"]=!1,e["column-fill"]=!1,e["column-gap"]=!1,e["column-rule"]=!1,e["column-rule-color"]=!1,e["column-rule-style"]=!1,e["column-rule-width"]=!1,e["column-span"]=!1,e["column-width"]=!1,e.columns=!1,e.contain=!1,e.content=!1,e["counter-increment"]=!1,e["counter-reset"]=!1,e["counter-set"]=!1,e.crop=!1,e.cue=!1,e["cue-after"]=!1,e["cue-before"]=!1,e.cursor=!1,e.direction=!1,e.display=!0,e["display-inside"]=!0,e["display-list"]=!0,e["display-outside"]=!0,e["dominant-baseline"]=!1,e.elevation=!1,e["empty-cells"]=!1,e.filter=!1,e.flex=!1,e["flex-basis"]=!1,e["flex-direction"]=!1,e["flex-flow"]=!1,e["flex-grow"]=!1,e["flex-shrink"]=!1,e["flex-wrap"]=!1,e.float=!1,e["float-offset"]=!1,e["flood-color"]=!1,e["flood-opacity"]=!1,e["flow-from"]=!1,e["flow-into"]=!1,e.font=!0,e["font-family"]=!0,e["font-feature-settings"]=!0,e["font-kerning"]=!0,e["font-language-override"]=!0,e["font-size"]=!0,e["font-size-adjust"]=!0,e["font-stretch"]=!0,e["font-style"]=!0,e["font-synthesis"]=!0,e["font-variant"]=!0,e["font-variant-alternates"]=!0,e["font-variant-caps"]=!0,e["font-variant-east-asian"]=!0,e["font-variant-ligatures"]=!0,e["font-variant-numeric"]=!0,e["font-variant-position"]=!0,e["font-weight"]=!0,e.grid=!1,e["grid-area"]=!1,e["grid-auto-columns"]=!1,e["grid-auto-flow"]=!1,e["grid-auto-rows"]=!1,e["grid-column"]=!1,e["grid-column-end"]=!1,e["grid-column-start"]=!1,e["grid-row"]=!1,e["grid-row-end"]=!1,e["grid-row-start"]=!1,e["grid-template"]=!1,e["grid-template-areas"]=!1,e["grid-template-columns"]=!1,e["grid-template-rows"]=!1,e["hanging-punctuation"]=!1,e.height=!0,e.hyphens=!1,e.icon=!1,e["image-orientation"]=!1,e["image-resolution"]=!1,e["ime-mode"]=!1,e["initial-letters"]=!1,e["inline-box-align"]=!1,e["justify-content"]=!1,e["justify-items"]=!1,e["justify-self"]=!1,e.left=!1,e["letter-spacing"]=!0,e["lighting-color"]=!0,e["line-box-contain"]=!1,e["line-break"]=!1,e["line-grid"]=!1,e["line-height"]=!1,e["line-snap"]=!1,e["line-stacking"]=!1,e["line-stacking-ruby"]=!1,e["line-stacking-shift"]=!1,e["line-stacking-strategy"]=!1,e["list-style"]=!0,e["list-style-image"]=!0,e["list-style-position"]=!0,e["list-style-type"]=!0,e.margin=!0,e["margin-bottom"]=!0,e["margin-left"]=!0,e["margin-right"]=!0,e["margin-top"]=!0,e["marker-offset"]=!1,e["marker-side"]=!1,e.marks=!1,e.mask=!1,e["mask-box"]=!1,e["mask-box-outset"]=!1,e["mask-box-repeat"]=!1,e["mask-box-slice"]=!1,e["mask-box-source"]=!1,e["mask-box-width"]=!1,e["mask-clip"]=!1,e["mask-image"]=!1,e["mask-origin"]=!1,e["mask-position"]=!1,e["mask-repeat"]=!1,e["mask-size"]=!1,e["mask-source-type"]=!1,e["mask-type"]=!1,e["max-height"]=!0,e["max-lines"]=!1,e["max-width"]=!0,e["min-height"]=!0,e["min-width"]=!0,e["move-to"]=!1,e["nav-down"]=!1,e["nav-index"]=!1,e["nav-left"]=!1,e["nav-right"]=!1,e["nav-up"]=!1,e["object-fit"]=!1,e["object-position"]=!1,e.opacity=!1,e.order=!1,e.orphans=!1,e.outline=!1,e["outline-color"]=!1,e["outline-offset"]=!1,e["outline-style"]=!1,e["outline-width"]=!1,e.overflow=!1,e["overflow-wrap"]=!1,e["overflow-x"]=!1,e["overflow-y"]=!1,e.padding=!0,e["padding-bottom"]=!0,e["padding-left"]=!0,e["padding-right"]=!0,e["padding-top"]=!0,e.page=!1,e["page-break-after"]=!1,e["page-break-before"]=!1,e["page-break-inside"]=!1,e["page-policy"]=!1,e.pause=!1,e["pause-after"]=!1,e["pause-before"]=!1,e.perspective=!1,e["perspective-origin"]=!1,e.pitch=!1,e["pitch-range"]=!1,e["play-during"]=!1,e.position=!1,e["presentation-level"]=!1,e.quotes=!1,e["region-fragment"]=!1,e.resize=!1,e.rest=!1,e["rest-after"]=!1,e["rest-before"]=!1,e.richness=!1,e.right=!1,e.rotation=!1,e["rotation-point"]=!1,e["ruby-align"]=!1,e["ruby-merge"]=!1,e["ruby-position"]=!1,e["shape-image-threshold"]=!1,e["shape-outside"]=!1,e["shape-margin"]=!1,e.size=!1,e.speak=!1,e["speak-as"]=!1,e["speak-header"]=!1,e["speak-numeral"]=!1,e["speak-punctuation"]=!1,e["speech-rate"]=!1,e.stress=!1,e["string-set"]=!1,e["tab-size"]=!1,e["table-layout"]=!1,e["text-align"]=!0,e["text-align-last"]=!0,e["text-combine-upright"]=!0,e["text-decoration"]=!0,e["text-decoration-color"]=!0,e["text-decoration-line"]=!0,e["text-decoration-skip"]=!0,e["text-decoration-style"]=!0,e["text-emphasis"]=!0,e["text-emphasis-color"]=!0,e["text-emphasis-position"]=!0,e["text-emphasis-style"]=!0,e["text-height"]=!0,e["text-indent"]=!0,e["text-justify"]=!0,e["text-orientation"]=!0,e["text-overflow"]=!0,e["text-shadow"]=!0,e["text-space-collapse"]=!0,e["text-transform"]=!0,e["text-underline-position"]=!0,e["text-wrap"]=!0,e.top=!1,e.transform=!1,e["transform-origin"]=!1,e["transform-style"]=!1,e.transition=!1,e["transition-delay"]=!1,e["transition-duration"]=!1,e["transition-property"]=!1,e["transition-timing-function"]=!1,e["unicode-bidi"]=!1,e["vertical-align"]=!1,e.visibility=!1,e["voice-balance"]=!1,e["voice-duration"]=!1,e["voice-family"]=!1,e["voice-pitch"]=!1,e["voice-range"]=!1,e["voice-rate"]=!1,e["voice-stress"]=!1,e["voice-volume"]=!1,e.volume=!1,e["white-space"]=!1,e.widows=!1,e.width=!0,e["will-change"]=!1,e["word-break"]=!0,e["word-spacing"]=!0,e["word-wrap"]=!0,e["wrap-flow"]=!1,e["wrap-through"]=!1,e["writing-mode"]=!1,e["z-index"]=!1,e}function S(e,r,t){}function L(e,r,t){}var z=/javascript\s*\:/img;function C(e,r){return z.test(r)?"":r}g.whiteList=k();g.getDefaultWhiteList=k;g.onAttr=S;g.onIgnoreAttr=L;g.safeAttrValue=C;var E={indexOf:function(e,r){var t,a;if(Array.prototype.indexOf)return e.indexOf(r);for(t=0,a=e.length;t{for(const l of n)if(l.type==="childList")for(const c of l.addedNodes)c.tagName==="LINK"&&c.rel==="modulepreload"&&h(c)}).observe(document,{childList:!0,subtree:!0});function r(n){const l={};return n.integrity&&(l.integrity=n.integrity),n.referrerPolicy&&(l.referrerPolicy=n.referrerPolicy),n.crossOrigin==="use-credentials"?l.credentials="include":n.crossOrigin==="anonymous"?l.credentials="omit":l.credentials="same-origin",l}function h(n){if(n.ep)return;n.ep=!0;const l=r(n);fetch(n.href,l)}})();const Je="modulepreload",Xe=function(e){return"/"+e},ae={},P=function(t,r,h){if(!r||r.length===0)return t();const n=document.getElementsByTagName("link");return Promise.all(r.map(l=>{if(l=Xe(l),l in ae)return;ae[l]=!0;const c=l.endsWith(".css"),O=c?'[rel="stylesheet"]':"";if(!!h)for(let _=n.length-1;_>=0;_--){const i=n[_];if(i.href===l&&(!c||i.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${l}"]${O}`))return;const g=document.createElement("link");if(g.rel=c?"stylesheet":Je,c||(g.as="script",g.crossOrigin=""),g.href=l,document.head.appendChild(g),c)return new Promise((_,i)=>{g.addEventListener("load",_),g.addEventListener("error",()=>i(new Error(`Unable to preload CSS for ${l}`)))})})).then(()=>t()).catch(l=>{const c=new Event("vite:preloadError",{cancelable:!0});if(c.payload=l,window.dispatchEvent(c),!c.defaultPrevented)throw l})},et=[{path:"/",name:"home",meta:{title:"广场",keepAlive:!0},component:()=>P(()=>import("./Home-a4b26d35.js"),["assets/Home-a4b26d35.js","assets/whisper-add-friend-e34f36ad.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/@vue-a481fc63.js","assets/vueuc-7c8d4b48.js","assets/evtd-b614532e.js","assets/@css-render-7124a1a5.js","assets/vooks-6d99783e.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/whisper-add-friend-01aea97d.css","assets/whisper-6a06efa4.js","assets/whisper-61451957.css","assets/post-item.vue_vue_type_style_index_0_lang-cb395a2b.js","assets/content-68a3f6d0.js","assets/@vicons-f0266f88.js","assets/paopao-video-player-2fe58954.js","assets/content-a8987469.css","assets/vuex-44de225f.js","assets/vue-router-e5a2430e.js","assets/copy-to-clipboard-4ef7d3eb.js","assets/@babel-725317a4.js","assets/toggle-selection-93f4ad84.js","assets/post-item-d81938d1.css","assets/post-skeleton-ae2be035.js","assets/post-skeleton-f1900002.css","assets/lodash-e0b37ac3.js","assets/IEnum-5453a777.js","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/main-nav-569a7b0c.css","assets/v3-infinite-loading-2c58ec2f.js","assets/v3-infinite-loading-1ff9ffe7.css","assets/@opentiny-d73a2d67.js","assets/vue-1e3b54ec.js","assets/xss-a5544f63.js","assets/cssfilter-af71ba68.js","assets/@opentiny-0f942bd4.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/Home-bed4fc16.css","assets/vfonts-7afd136d.css"])},{path:"/post",name:"post",meta:{title:"泡泡详情"},component:()=>P(()=>import("./Post-834734af.js"),["assets/Post-834734af.js","assets/@vue-a481fc63.js","assets/vuex-44de225f.js","assets/IEnum-5453a777.js","assets/@vicons-f0266f88.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/vueuc-7c8d4b48.js","assets/evtd-b614532e.js","assets/@css-render-7124a1a5.js","assets/vooks-6d99783e.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/content-68a3f6d0.js","assets/paopao-video-player-2fe58954.js","assets/content-a8987469.css","assets/vue-router-e5a2430e.js","assets/post-skeleton-ae2be035.js","assets/post-skeleton-f1900002.css","assets/lodash-e0b37ac3.js","assets/@babel-725317a4.js","assets/whisper-6a06efa4.js","assets/whisper-61451957.css","assets/copy-to-clipboard-4ef7d3eb.js","assets/toggle-selection-93f4ad84.js","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/main-nav-569a7b0c.css","assets/v3-infinite-loading-2c58ec2f.js","assets/v3-infinite-loading-1ff9ffe7.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/Post-39447b75.css","assets/vfonts-7afd136d.css"])},{path:"/topic",name:"topic",meta:{title:"话题"},component:()=>P(()=>import("./Topic-18b4f053.js"),["assets/Topic-18b4f053.js","assets/@vicons-f0266f88.js","assets/@vue-a481fc63.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/vueuc-7c8d4b48.js","assets/evtd-b614532e.js","assets/@css-render-7124a1a5.js","assets/vooks-6d99783e.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/vuex-44de225f.js","assets/vue-router-e5a2430e.js","assets/main-nav-569a7b0c.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/Topic-384e019e.css","assets/vfonts-7afd136d.css"])},{path:"/anouncement",name:"anouncement",meta:{title:"公告"},component:()=>P(()=>import("./Anouncement-ffc6370f.js"),["assets/Anouncement-ffc6370f.js","assets/post-skeleton-ae2be035.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/@vue-a481fc63.js","assets/vueuc-7c8d4b48.js","assets/evtd-b614532e.js","assets/@css-render-7124a1a5.js","assets/vooks-6d99783e.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/post-skeleton-f1900002.css","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/vuex-44de225f.js","assets/vue-router-e5a2430e.js","assets/@vicons-f0266f88.js","assets/main-nav-569a7b0c.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/Anouncement-662e2d95.css","assets/vfonts-7afd136d.css"])},{path:"/profile",name:"profile",meta:{title:"主页"},component:()=>P(()=>import("./Profile-516bc8e9.js"),["assets/Profile-516bc8e9.js","assets/whisper-6a06efa4.js","assets/@vue-a481fc63.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/vueuc-7c8d4b48.js","assets/evtd-b614532e.js","assets/@css-render-7124a1a5.js","assets/vooks-6d99783e.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/whisper-61451957.css","assets/post-item.vue_vue_type_style_index_0_lang-cb395a2b.js","assets/content-68a3f6d0.js","assets/@vicons-f0266f88.js","assets/paopao-video-player-2fe58954.js","assets/content-a8987469.css","assets/vuex-44de225f.js","assets/vue-router-e5a2430e.js","assets/copy-to-clipboard-4ef7d3eb.js","assets/@babel-725317a4.js","assets/toggle-selection-93f4ad84.js","assets/post-item-d81938d1.css","assets/post-skeleton-ae2be035.js","assets/post-skeleton-f1900002.css","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/main-nav-569a7b0c.css","assets/count-e2caa1c1.js","assets/v3-infinite-loading-2c58ec2f.js","assets/v3-infinite-loading-1ff9ffe7.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/Profile-909e78bc.css","assets/vfonts-7afd136d.css"])},{path:"/u",name:"user",meta:{title:"用户详情"},component:()=>P(()=>import("./User-5a318246.js"),["assets/User-5a318246.js","assets/post-item.vue_vue_type_style_index_0_lang-cb395a2b.js","assets/content-68a3f6d0.js","assets/@vue-a481fc63.js","assets/@vicons-f0266f88.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/vueuc-7c8d4b48.js","assets/evtd-b614532e.js","assets/@css-render-7124a1a5.js","assets/vooks-6d99783e.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/paopao-video-player-2fe58954.js","assets/content-a8987469.css","assets/vuex-44de225f.js","assets/vue-router-e5a2430e.js","assets/copy-to-clipboard-4ef7d3eb.js","assets/@babel-725317a4.js","assets/toggle-selection-93f4ad84.js","assets/post-item-d81938d1.css","assets/post-skeleton-ae2be035.js","assets/post-skeleton-f1900002.css","assets/whisper-6a06efa4.js","assets/whisper-61451957.css","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/main-nav-569a7b0c.css","assets/whisper-add-friend-e34f36ad.js","assets/whisper-add-friend-01aea97d.css","assets/count-e2caa1c1.js","assets/v3-infinite-loading-2c58ec2f.js","assets/v3-infinite-loading-1ff9ffe7.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/User-2cbcc914.css","assets/vfonts-7afd136d.css"])},{path:"/messages",name:"messages",meta:{title:"消息"},component:()=>P(()=>import("./Messages-5a324cdf.js"),["assets/Messages-5a324cdf.js","assets/@vue-a481fc63.js","assets/vuex-44de225f.js","assets/vue-router-e5a2430e.js","assets/@vicons-f0266f88.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/vueuc-7c8d4b48.js","assets/evtd-b614532e.js","assets/@css-render-7124a1a5.js","assets/vooks-6d99783e.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/whisper-6a06efa4.js","assets/whisper-61451957.css","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/main-nav-569a7b0c.css","assets/v3-infinite-loading-2c58ec2f.js","assets/v3-infinite-loading-1ff9ffe7.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/Messages-a71f605f.css","assets/vfonts-7afd136d.css"])},{path:"/collection",name:"collection",meta:{title:"收藏"},component:()=>P(()=>import("./Collection-c204e163.js"),["assets/Collection-c204e163.js","assets/whisper-6a06efa4.js","assets/@vue-a481fc63.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/vueuc-7c8d4b48.js","assets/evtd-b614532e.js","assets/@css-render-7124a1a5.js","assets/vooks-6d99783e.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/whisper-61451957.css","assets/post-item.vue_vue_type_style_index_0_lang-cb395a2b.js","assets/content-68a3f6d0.js","assets/@vicons-f0266f88.js","assets/paopao-video-player-2fe58954.js","assets/content-a8987469.css","assets/vuex-44de225f.js","assets/vue-router-e5a2430e.js","assets/copy-to-clipboard-4ef7d3eb.js","assets/@babel-725317a4.js","assets/toggle-selection-93f4ad84.js","assets/post-item-d81938d1.css","assets/post-skeleton-ae2be035.js","assets/post-skeleton-f1900002.css","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/main-nav-569a7b0c.css","assets/v3-infinite-loading-2c58ec2f.js","assets/v3-infinite-loading-1ff9ffe7.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/Collection-e605040f.css","assets/vfonts-7afd136d.css"])},{path:"/contacts",name:"contacts",meta:{title:"好友"},component:()=>P(()=>import("./Contacts-1c38b9d9.js"),["assets/Contacts-1c38b9d9.js","assets/whisper-6a06efa4.js","assets/@vue-a481fc63.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/vueuc-7c8d4b48.js","assets/evtd-b614532e.js","assets/@css-render-7124a1a5.js","assets/vooks-6d99783e.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/whisper-61451957.css","assets/@vicons-f0266f88.js","assets/post-skeleton-ae2be035.js","assets/post-skeleton-f1900002.css","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/vuex-44de225f.js","assets/vue-router-e5a2430e.js","assets/main-nav-569a7b0c.css","assets/v3-infinite-loading-2c58ec2f.js","assets/v3-infinite-loading-1ff9ffe7.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/Contacts-4b1622b8.css","assets/vfonts-7afd136d.css"])},{path:"/following",name:"following",meta:{title:"关注"},component:()=>P(()=>import("./Following-2d3776ee.js"),["assets/Following-2d3776ee.js","assets/whisper-6a06efa4.js","assets/@vue-a481fc63.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/vueuc-7c8d4b48.js","assets/evtd-b614532e.js","assets/@css-render-7124a1a5.js","assets/vooks-6d99783e.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/whisper-61451957.css","assets/@vicons-f0266f88.js","assets/post-skeleton-ae2be035.js","assets/post-skeleton-f1900002.css","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/vuex-44de225f.js","assets/vue-router-e5a2430e.js","assets/main-nav-569a7b0c.css","assets/v3-infinite-loading-2c58ec2f.js","assets/v3-infinite-loading-1ff9ffe7.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/Following-b11fb642.css","assets/vfonts-7afd136d.css"])},{path:"/wallet",name:"wallet",meta:{title:"钱包"},component:()=>P(()=>import("./Wallet-50fb7181.js"),["assets/Wallet-50fb7181.js","assets/post-skeleton-ae2be035.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/@vue-a481fc63.js","assets/vueuc-7c8d4b48.js","assets/evtd-b614532e.js","assets/@css-render-7124a1a5.js","assets/vooks-6d99783e.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/post-skeleton-f1900002.css","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/vuex-44de225f.js","assets/vue-router-e5a2430e.js","assets/@vicons-f0266f88.js","assets/main-nav-569a7b0c.css","assets/qrcode-9719fc56.js","assets/encode-utf8-f813de00.js","assets/dijkstrajs-f906a09e.js","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/Wallet-77044929.css","assets/vfonts-7afd136d.css"])},{path:"/setting",name:"setting",meta:{title:"设置"},component:()=>P(()=>import("./Setting-a557ce66.js"),["assets/Setting-a557ce66.js","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/vuex-44de225f.js","assets/@vue-a481fc63.js","assets/vue-router-e5a2430e.js","assets/vooks-6d99783e.js","assets/evtd-b614532e.js","assets/@vicons-f0266f88.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/vueuc-7c8d4b48.js","assets/@css-render-7124a1a5.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/main-nav-569a7b0c.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/Setting-94ec4c57.css","assets/vfonts-7afd136d.css"])},{path:"/404",name:"404",meta:{title:"404"},component:()=>P(()=>import("./404-3870dbb4.js"),["assets/404-3870dbb4.js","assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js","assets/vuex-44de225f.js","assets/@vue-a481fc63.js","assets/vue-router-e5a2430e.js","assets/vooks-6d99783e.js","assets/evtd-b614532e.js","assets/@vicons-f0266f88.js","assets/naive-ui-eecf2ec3.js","assets/seemly-76b7b838.js","assets/vueuc-7c8d4b48.js","assets/@css-render-7124a1a5.js","assets/vdirs-b0483831.js","assets/@juggle-41516555.js","assets/css-render-6a5c5852.js","assets/@emotion-8a8e73f6.js","assets/lodash-es-8412e618.js","assets/treemate-25c27bff.js","assets/async-validator-dee29e8b.js","assets/date-fns-975a2d8f.js","assets/main-nav-569a7b0c.css","assets/axios-4a70c6fc.js","assets/moment-2ab8298d.js","assets/404-020b2afd.css","assets/vfonts-7afd136d.css"])},{path:"/:pathMatch(.*)",redirect:"/404"}],he=be({history:ke(),routes:et});he.beforeEach((e,t,r)=>{document.title=`${e.meta.title} | 泡泡 - 一个清新文艺的微社区`,r()});const tt=Te({state:{refresh:Date.now(),refreshTopicFollow:Date.now(),theme:localStorage.getItem("PAOPAO_THEME"),collapsedLeft:document.body.clientWidth<=821,collapsedRight:document.body.clientWidth<=821,drawerModelShow:document.body.clientWidth<=821,desktopModelShow:document.body.clientWidth>821,authModalShow:!1,authModelTab:"signin",unreadMsgCount:0,userLogined:!1,userInfo:{id:0,username:"",nickname:"",created_on:0,follows:0,followings:0,tweets_count:0,is_admin:!1},profile:{useFriendship:!0,enableTrendsBar:!0,enableWallet:!1,allowTweetAttachment:!0,allowTweetAttachmentPrice:!0,allowTweetVideo:!0,allowUserRegister:!0,allowPhoneBind:!0,defaultTweetMaxLength:2e3,tweetWebEllipsisSize:400,tweetMobileEllipsisSize:300,defaultTweetVisibility:"friend",defaultMsgLoopInterval:5e3,copyrightTop:"2023 paopao.info",copyrightLeft:"Roc's Me",copyrightLeftLink:"",copyrightRight:"泡泡(PaoPao)开源社区",copyrightRightLink:"https://www.paopao.info"}},mutations:{refresh(e,t){e.refresh=t||Date.now()},refreshTopicFollow(e){e.refreshTopicFollow=Date.now()},updateUnreadMsgCount(e,t){e.unreadMsgCount=t},triggerTheme(e,t){e.theme=t},triggerAuth(e,t){e.authModalShow=t},triggerAuthKey(e,t){e.authModelTab=t},triggerCollapsedLeft(e,t){e.collapsedLeft=t,e.drawerModelShow=t,e.desktopModelShow=!t},triggerCollapsedRight(e,t){e.collapsedRight=t},updateUserinfo(e,t){e.userInfo=t,e.userInfo.id>0&&(e.userLogined=!0)},loadDefaultSiteProfile(e){e.profile.useFriendship="true".toLowerCase()==="true",e.profile.enableTrendsBar="true".toLowerCase()==="true",e.profile.enableWallet="false".toLocaleLowerCase()==="true",e.profile.allowTweetAttachment="true".toLowerCase()==="true",e.profile.allowTweetAttachmentPrice="false".toLowerCase()==="true",e.profile.allowTweetVideo="true".toLowerCase()==="true",e.profile.allowUserRegister="true".toLowerCase()==="true",e.profile.allowPhoneBind="true".toLowerCase()==="true",e.profile.defaultTweetMaxLength=+"2000",e.profile.tweetWebEllipsisSize=+"400",e.profile.tweetMobileEllipsisSize=+"300",e.profile.defaultTweetVisibility="friend".toLowerCase(),e.profile.defaultMsgLoopInterval=+"5000",e.profile.copyrightTop="2023 paopao.info",e.profile.copyrightLeft="Roc's Me",e.profile.copyrightLeftLink="",e.profile.copyrightRight="泡泡(PaoPao)开源社区",e.profile.copyrightRightLink="https://www.paopao.info"},updateSiteProfile(e,t){const r=e.profile;e.profile.useFriendship=t.use_friendship??r.useFriendship,e.profile.enableTrendsBar=t.enable_trends_bar??r.enableTrendsBar,e.profile.enableWallet=t.enable_wallet??r.enableWallet,e.profile.allowTweetAttachment=t.allow_tweet_attachment??r.allowTweetAttachment,e.profile.allowTweetAttachmentPrice=t.allow_tweet_attachment_price??r.allowTweetAttachmentPrice,e.profile.allowTweetVideo=t.allow_tweet_video??r.allowTweetVideo,e.profile.allowUserRegister=t.allow_user_register??r.allowUserRegister,e.profile.allowPhoneBind=t.allow_phone_bind??r.allowPhoneBind,e.profile.defaultTweetMaxLength=t.default_tweet_max_length??r.defaultTweetMaxLength,e.profile.tweetWebEllipsisSize=t.tweet_web_ellipsis_size??r.tweetWebEllipsisSize,e.profile.tweetMobileEllipsisSize=t.tweet_mobile_ellipsis_size??r.tweetMobileEllipsisSize,e.profile.defaultTweetVisibility=t.default_tweet_visibility??r.defaultTweetVisibility,e.profile.defaultMsgLoopInterval=t.default_msg_loop_interval??r.defaultMsgLoopInterval,e.profile.copyrightTop=t.copyright_top??r.copyrightTop,e.profile.copyrightLeft=t.copyright_left??r.copyrightLeft,e.profile.copyrightLeftLink=t.copyright_left_link??r.copyrightLeftLink,e.profile.copyrightRight=t.copyright_right??r.copyrightRight,e.profile.copyrightRightLink=t.copyright_right_link??r.copyrightRightLink},userLogout(e){localStorage.removeItem("PAOPAO_TOKEN"),e.userInfo={id:0,nickname:"",username:"",created_on:0,follows:0,followings:0,tweets_count:0,is_admin:!1},e.userLogined=!1}},actions:{},modules:{}}),Z=Pe.create({baseURL:"",timeout:3e4});Z.interceptors.request.use(e=>(localStorage.getItem("PAOPAO_TOKEN")&&(e.headers.Authorization="Bearer "+localStorage.getItem("PAOPAO_TOKEN")),e),e=>Promise.reject(e));Z.interceptors.response.use(e=>{const{data:t={},code:r=0}=(e==null?void 0:e.data)||{};if(+r==0)return t||{};Promise.reject((e==null?void 0:e.data)||{})},(e={})=>{var r;const{response:t={}}=e||{};return+(t==null?void 0:t.status)==401?(localStorage.removeItem("PAOPAO_TOKEN"),(t==null?void 0:t.data.code)!==10005?window.$message.warning((t==null?void 0:t.data.msg)||"鉴权失败"):window.$store.commit("triggerAuth",!0)):window.$message.error(((r=t==null?void 0:t.data)==null?void 0:r.msg)||"请求失败"),Promise.reject((t==null?void 0:t.data)||{})});function o(e){return Z(e)}const le=e=>o({method:"post",url:"/v1/auth/login",data:e}),ot=e=>o({method:"post",url:"/v1/auth/register",data:e}),Y=(e="")=>o({method:"get",url:"/v1/user/info",headers:{Authorization:`Bearer ${e}`}}),rt={class:"auth-wrap"},st={key:0},nt=K({__name:"auth",setup(e){const t=W(),r=L(!1),h=L(),n=X({username:"",password:""}),l=L(),c=X({username:"",password:"",repassword:""}),O={username:{required:!0,message:"请输入账户名"},password:{required:!0,message:"请输入密码"},repassword:[{required:!0,message:"请输入密码"},{validator:(_,i)=>!!c.password&&c.password.startsWith(i)&&c.password.length>=i.length,message:"两次密码输入不一致",trigger:"input"}]},T=_=>{var i;_.preventDefault(),_.stopPropagation(),(i=h.value)==null||i.validate(M=>{M||(r.value=!0,le({username:n.username,password:n.password}).then(m=>{const b=(m==null?void 0:m.token)||"";return localStorage.setItem("PAOPAO_TOKEN",b),Y(b)}).then(m=>{window.$message.success("登录成功"),r.value=!1,t.commit("updateUserinfo",m),t.commit("triggerAuth",!1),t.commit("refresh"),n.username="",n.password=""}).catch(m=>{r.value=!1}))})},g=_=>{var i;_.preventDefault(),_.stopPropagation(),(i=l.value)==null||i.validate(M=>{M||(r.value=!0,ot({username:c.username,password:c.password}).then(m=>le({username:c.username,password:c.password})).then(m=>{const b=(m==null?void 0:m.token)||"";return localStorage.setItem("PAOPAO_TOKEN",b),Y(b)}).then(m=>{window.$message.success("注册成功"),r.value=!1,t.commit("updateUserinfo",m),t.commit("triggerAuth",!1),c.username="",c.password="",c.repassword=""}).catch(m=>{r.value=!1}))})};return V(()=>{const _=localStorage.getItem("PAOPAO_TOKEN")||"";_?Y(_).then(i=>{t.commit("updateUserinfo",i),t.commit("triggerAuth",!1)}).catch(i=>{t.commit("userLogout")}):t.commit("userLogout")}),(_,i)=>{const M=Ae,m=Re,b=pe,a=de,v=Me,D=Ee,$=me,x=Ce,p=Oe,E=_e,B=Ie;return f(),z(B,{show:d(t).state.authModalShow,"onUpdate:show":i[7]||(i[7]=y=>d(t).state.authModalShow=y),class:"auth-card",preset:"card",size:"small","mask-closable":!1,bordered:!1,style:{width:"360px"}},{default:u(()=>[w("div",rt,[s(E,{bordered:!1},{default:u(()=>[d(t).state.profile.allowUserRegister?I("",!0):(f(),R("div",st,[s(b,{justify:"center"},{default:u(()=>[s(m,null,{default:u(()=>[s(M,{type:"success"},{default:u(()=>[S("账号登录")]),_:1})]),_:1})]),_:1}),s(D,{ref_key:"loginRef",ref:h,model:n,rules:{username:{required:!0,message:"请输入账户名"},password:{required:!0,message:"请输入密码"}}},{default:u(()=>[s(v,{label:"账户",path:"username"},{default:u(()=>[s(a,{value:n.username,"onUpdate:value":i[0]||(i[0]=y=>n.username=y),placeholder:"请输入用户名",onKeyup:N(q(T,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1}),s(v,{label:"密码",path:"password"},{default:u(()=>[s(a,{type:"password","show-password-on":"mousedown",value:n.password,"onUpdate:value":i[1]||(i[1]=y=>n.password=y),placeholder:"请输入账户密码",onKeyup:N(q(T,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1})]),_:1},8,["model"]),s($,{type:"primary",block:"",secondary:"",strong:"",loading:r.value,onClick:T},{default:u(()=>[S(" 登录 ")]),_:1},8,["loading"])])),d(t).state.profile.allowUserRegister?(f(),z(p,{key:1,"default-value":d(t).state.authModelTab,size:"large","justify-content":"space-evenly"},{default:u(()=>[s(x,{name:"signin",tab:"登录"},{default:u(()=>[s(D,{ref_key:"loginRef",ref:h,model:n,rules:{username:{required:!0,message:"请输入账户名"},password:{required:!0,message:"请输入密码"}}},{default:u(()=>[s(v,{label:"账户",path:"username"},{default:u(()=>[s(a,{value:n.username,"onUpdate:value":i[2]||(i[2]=y=>n.username=y),placeholder:"请输入用户名",onKeyup:N(q(T,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1}),s(v,{label:"密码",path:"password"},{default:u(()=>[s(a,{type:"password","show-password-on":"mousedown",value:n.password,"onUpdate:value":i[3]||(i[3]=y=>n.password=y),placeholder:"请输入账户密码",onKeyup:N(q(T,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1})]),_:1},8,["model"]),s($,{type:"primary",block:"",secondary:"",strong:"",loading:r.value,onClick:T},{default:u(()=>[S(" 登录 ")]),_:1},8,["loading"])]),_:1}),s(x,{name:"signup",tab:"注册"},{default:u(()=>[s(D,{ref_key:"registerRef",ref:l,model:c,rules:O},{default:u(()=>[s(v,{label:"用户名",path:"username"},{default:u(()=>[s(a,{value:c.username,"onUpdate:value":i[4]||(i[4]=y=>c.username=y),placeholder:"用户名注册后无法修改"},null,8,["value"])]),_:1}),s(v,{label:"密码",path:"password"},{default:u(()=>[s(a,{type:"password","show-password-on":"mousedown",placeholder:"密码不少于6位",value:c.password,"onUpdate:value":i[5]||(i[5]=y=>c.password=y),onKeyup:N(q(g,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1}),s(v,{label:"重复密码",path:"repassword"},{default:u(()=>[s(a,{type:"password","show-password-on":"mousedown",placeholder:"请再次输入密码",value:c.repassword,"onUpdate:value":i[6]||(i[6]=y=>c.repassword=y),onKeyup:N(q(g,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1})]),_:1},8,["model"]),s($,{type:"primary",block:"",secondary:"",strong:"",loading:r.value,onClick:g},{default:u(()=>[S(" 注册 ")]),_:1},8,["loading"])]),_:1})]),_:1},8,["default-value"])):I("",!0)]),_:1})])]),_:1},8,["show"])}}});const fe=(e,t)=>{const r=e.__vccOpts||e;for(const[h,n]of t)r[h]=n;return r},at=fe(nt,[["__scopeId","data-v-6f778fc4"]]),no=e=>o({method:"get",url:"/v1/posts",params:e}),lt=e=>o({method:"get",url:"/v1/tags",params:e}),ao=e=>o({method:"get",url:"/v1/post",params:e}),lo=e=>o({method:"get",url:"/v1/post/star",params:e}),io=e=>o({method:"post",url:"/v1/post/star",data:e}),uo=e=>o({method:"get",url:"/v1/post/collection",params:e}),co=e=>o({method:"post",url:"/v1/post/collection",data:e}),po=e=>o({method:"get",url:"/v1/post/comments",params:e}),mo=e=>o({method:"get",url:"/v1/user/contacts",params:e}),_o=e=>o({method:"get",url:"/v1/trends/index",params:e}),ho=e=>o({method:"post",url:"/v1/post",data:e}),fo=e=>o({method:"delete",url:"/v1/post",data:e}),go=e=>o({method:"post",url:"/v1/post/lock",data:e}),vo=e=>o({method:"post",url:"/v1/post/stick",data:e}),wo=e=>o({method:"post",url:"/v1/post/highlight",data:e}),yo=e=>o({method:"post",url:"/v1/post/visibility",data:e}),bo=e=>o({method:"post",url:"/v1/tweet/comment/thumbsup",data:e}),ko=e=>o({method:"post",url:"/v1/tweet/comment/thumbsdown",data:e}),Lo=e=>o({method:"post",url:"/v1/tweet/reply/thumbsup",data:e}),To=e=>o({method:"post",url:"/v1/tweet/reply/thumbsdown",data:e}),Po=e=>o({method:"post",url:"/v1/post/comment",data:e}),Ao=e=>o({method:"delete",url:"/v1/post/comment",data:e}),Ro=e=>o({method:"post",url:"/v1/post/comment/highlight",data:e}),Mo=e=>o({method:"post",url:"/v1/post/comment/reply",data:e}),Eo=e=>o({method:"delete",url:"/v1/post/comment/reply",data:e}),Co=e=>o({method:"post",url:"/v1/topic/stick",data:e}),Oo=e=>o({method:"post",url:"/v1/topic/follow",data:e}),Io=e=>o({method:"post",url:"/v1/topic/unfollow",data:e}),So=(e={})=>o({method:"get",url:"/v1/captcha",params:e}),Uo=e=>o({method:"post",url:"/v1/captcha",data:e}),$o=e=>o({method:"post",url:"/v1/user/whisper",data:e}),Do=e=>o({method:"post",url:"/v1/friend/requesting",data:e}),xo=e=>o({method:"post",url:"/v1/friend/add",data:e}),No=e=>o({method:"post",url:"/v1/user/follow",data:e}),qo=e=>o({method:"post",url:"/v1/user/unfollow",data:e}),zo=e=>o({method:"get",url:"/v1/user/follows",params:e}),Fo=e=>o({method:"get",url:"/v1/user/followings",params:e}),Ko=e=>o({method:"post",url:"/v1/friend/reject",data:e}),Vo=e=>o({method:"post",url:"/v1/friend/delete",data:e}),Wo=e=>o({method:"post",url:"/v1/user/phone",data:e}),Bo=e=>o({method:"post",url:"/v1/user/activate",data:e}),Ho=e=>o({method:"post",url:"/v1/user/password",data:e}),Yo=e=>o({method:"post",url:"/v1/user/nickname",data:e}),jo=e=>o({method:"post",url:"/v1/user/avatar",data:e}),ie=(e={})=>o({method:"get",url:"/v1/user/msgcount/unread",params:e}),Qo=e=>o({method:"get",url:"/v1/user/messages",params:e}),Zo=e=>o({method:"post",url:"/v1/user/message/read",data:e}),Go=()=>o({method:"post",url:"/v1/user/message/readall"}),Jo=e=>o({method:"get",url:"/v1/user/collections",params:e}),Xo=e=>o({method:"get",url:"/v1/user/profile",params:e}),er=e=>o({method:"get",url:"/v1/user/posts",params:e}),tr=e=>o({method:"get",url:"/v1/user/wallet/bills",params:e}),or=e=>o({method:"post",url:"/v1/user/recharge",data:e}),rr=e=>o({method:"get",url:"/v1/user/recharge",params:e}),sr=e=>o({method:"get",url:"/v1/suggest/users",params:e}),nr=e=>o({method:"get",url:"/v1/suggest/tags",params:e}),ar=e=>o({method:"get",url:"/v1/attachment/precheck",params:e}),lr=e=>o({method:"get",url:"/v1/attachment",params:e}),ir=e=>o({method:"post",url:"/v1/admin/user/status",data:e}),it=()=>o({method:"get",url:"/v1/admin/site/status"});U.locale("zh-cn");const ut=e=>U.unix(e).fromNow(),ur=e=>{let t=U.unix(e),r=U();return t.year()!=r.year()?t.utc(!0).format("YYYY-MM-DD HH:mm"):U().diff(t,"month")>3?t.utc(!0).format("MM-DD HH:mm"):t.fromNow()},cr=e=>{let t=U.unix(e),r=U();return t.year()!=r.year()?t.utc(!0).format("YYYY-MM-DD"):U().diff(t,"month")>3?t.utc(!0).format("MM-DD"):t.fromNow()},pr=e=>U.unix(e).utc(!0).format("YYYY年MM月"),ct={key:0,class:"rightbar-wrap"},pt={class:"search-wrap"},dt={class:"post-num"},mt={class:"post-num"},_t={class:"copyright"},ht=["href"],ft=["href"],gt={class:"site-info-item"},vt=K({__name:"rightbar",setup(e){const t=L([]),r=L([]),h=L(!1),n=L(""),l=W(),c=ce(),O=L(0),T=L(0),g=L(0),_=L(0),i=L(null),M=+"6",m=+"12",b=()=>{it().then(p=>{O.value=p.register_user_count,T.value=p.online_user_count,g.value=p.history_max_online,_.value=p.server_up_time}).catch(p=>{}),x.disconnect()},a=()=>{h.value=!0,lt({type:"hot_extral",num:m,extral_num:M}).then(p=>{t.value=p.topics,r.value=p.extral_topics??[],$.value=!0,h.value=!1}).catch(p=>{h.value=!1})},v=p=>p>=1e3?(p/1e3).toFixed(1)+"k":p,D=()=>{c.push({name:"home",query:{q:n.value}})},$=Q({get:()=>l.state.userLogined&&r.value.length!==0,set:p=>{}});j(()=>({refreshTopicFollow:l.state.refreshTopicFollow,userLogined:l.state.userLogined}),(p,E)=>{(p.refreshTopicFollow!==E.refreshTopicFollow||p.userLogined)&&a(),l.state.userInfo.is_admin&&b()});const x=new IntersectionObserver(p=>{p.forEach(E=>{E.isIntersecting&&b()})},{root:null,rootMargin:"0px",threshold:1});return V(()=>{i.value&&x.observe(i.value),a()}),(p,E)=>{const B=F,y=de,G=ue("router-link"),J=Se,H=_e,ge=pe;return d(l).state.collapsedRight?I("",!0):(f(),R("div",ct,[w("div",pt,[s(y,{round:"",clearable:"",placeholder:"搜一搜...",value:n.value,"onUpdate:value":E[0]||(E[0]=C=>n.value=C),onKeyup:N(q(D,["prevent"]),["enter"])},{prefix:u(()=>[s(B,{component:d(We)},null,8,["component"])]),_:1},8,["value","onKeyup"])]),$.value?(f(),z(H,{key:0,class:"hottopic-wrap",title:"关注话题",embedded:"",bordered:!1,size:"small"},{default:u(()=>[s(J,{show:h.value},{default:u(()=>[(f(!0),R(ee,null,te(r.value,C=>(f(),R("div",{class:"hot-tag-item",key:C.id},[s(G,{class:"hash-link",to:{name:"home",query:{q:C.tag,t:"tag"}}},{default:u(()=>[S(" #"+A(C.tag),1)]),_:2},1032,["to"]),w("div",dt,A(v(C.quote_num)),1)]))),128))]),_:1},8,["show"])]),_:1})):I("",!0),s(H,{class:"hottopic-wrap",title:"热门话题",embedded:"",bordered:!1,size:"small"},{default:u(()=>[s(J,{show:h.value},{default:u(()=>[(f(!0),R(ee,null,te(t.value,C=>(f(),R("div",{class:"hot-tag-item",key:C.id},[s(G,{class:"hash-link",to:{name:"home",query:{q:C.tag,t:"tag"}}},{default:u(()=>[S(" #"+A(C.tag),1)]),_:2},1032,["to"]),w("div",mt,A(v(C.quote_num)),1)]))),128))]),_:1},8,["show"])]),_:1}),s(H,{class:"copyright-wrap",embedded:"",bordered:!1,size:"small"},{default:u(()=>[w("div",_t,"© "+A(d(l).state.profile.copyrightTop),1),w("div",null,[s(ge,null,{default:u(()=>[w("a",{href:d(l).state.profile.copyrightLeftLink,target:"_blank",class:"hash-link"},A(d(l).state.profile.copyrightLeft),9,ht),w("a",{href:d(l).state.profile.copyrightRightLink,target:"_blank",class:"hash-link"},A(d(l).state.profile.copyrightRight),9,ft)]),_:1})])]),_:1}),d(l).state.userInfo.is_admin?(f(),R("div",{key:1,class:"site-info",ref_key:"userInfoElement",ref:i},[w("span",gt,A(O.value)+" 注册用户,"+A(T.value)+" 人在线,最高在线 "+A(g.value)+" 人,站点上线于 "+A(d(ut)(_.value)),1)],512)):I("",!0)]))}}});const wt=fe(vt,[["__scopeId","data-v-181f8063"]]),yt="/assets/logo-52afee68.png",bt={class:"sidebar-wrap"},kt={class:"logo-wrap"},Lt={key:0,class:"user-wrap"},Tt={class:"user-info"},Pt={class:"nickname"},At={class:"nickname-txt"},Rt={class:"username"},Mt={class:"user-mini-wrap"},Et={key:1,class:"user-wrap"},Ct={key:0,class:"login-only-wrap"},Ot={key:1,class:"login-wrap"},It=K({__name:"sidebar",setup(e){const t=W(),r=Le(),h=ce(),n=L(!1),l=L(r.name||""),c=L(),O="false".toLowerCase()==="true";j(r,()=>{l.value=r.name}),j(t.state,()=>{n.value=t.state.unreadMsgCount>0,t.state.userInfo.id>0?c.value||(ie().then(a=>{n.value=a.count>0,t.commit("updateUnreadMsgCount",a.count)}).catch(a=>{console.log(a)}),c.value=setInterval(()=>{ie().then(a=>{n.value=a.count>0,t.commit("updateUnreadMsgCount",a.count)}).catch(a=>{console.log(a)})},t.state.profile.defaultMsgLoopInterval)):c.value&&clearInterval(c.value)}),V(()=>{window.onresize=()=>{t.commit("triggerCollapsedLeft",document.body.clientWidth<=821),t.commit("triggerCollapsedRight",document.body.clientWidth<=821)}});const T=Q(()=>{const a=[{label:"广场",key:"home",icon:()=>k(re),href:"/"},{label:"话题",key:"topic",icon:()=>k(se),href:"/topic"}];return O&&a.push({label:"公告",key:"anouncement",icon:()=>k(Be),href:"/anouncement"}),a.push({label:"主页",key:"profile",icon:()=>k(He),href:"/profile"}),a.push({label:"消息",key:"messages",icon:()=>k(Ye),href:"/messages"}),a.push({label:"收藏",key:"collection",icon:()=>k(je),href:"/collection"}),t.state.profile.useFriendship&&a.push({label:"好友",key:"contacts",icon:()=>k(Qe),href:"/contacts"}),t.state.profile.enableWallet&&a.push({label:"钱包",key:"wallet",icon:()=>k(Ze),href:"/wallet"}),a.push({label:"设置",key:"setting",icon:()=>k(Ge),href:"/setting"}),t.state.userInfo.id>0?a:[{label:"广场",key:"home",icon:()=>k(re),href:"/"},{label:"话题",key:"topic",icon:()=>k(se),href:"/topic"}]}),g=a=>"href"in a?k("div",{},a.label):a.label,_=a=>a.key==="messages"?k($e,{dot:!0,show:n.value,processing:!0},{default:()=>k(F,{color:a.key===l.value?"var(--n-item-icon-color-active)":"var(--n-item-icon-color)"},{default:a.icon})}):k(F,null,{default:a.icon}),i=(a,v={})=>{l.value=a,h.push({name:a,query:{t:new Date().getTime()}})},M=()=>{r.path==="/"&&t.commit("refresh"),i("home")},m=a=>{t.commit("triggerAuth",!0),t.commit("triggerAuthKey",a)},b=()=>{t.commit("userLogout"),t.commit("refresh"),M()};return window.$store=t,window.$message=Ue(),(a,v)=>{const D=De,$=xe,x=Ne,p=me;return f(),R("div",bt,[w("div",kt,[s(D,{class:"logo-img",width:"36",src:d(yt),"preview-disabled":!0,onClick:M},null,8,["src"])]),s($,{accordion:!0,"icon-size":24,options:T.value,"render-label":g,"render-icon":_,value:l.value,"onUpdate:value":i},null,8,["options","value"]),d(t).state.userInfo.id>0?(f(),R("div",Lt,[s(x,{class:"user-avatar",round:"",size:34,src:d(t).state.userInfo.avatar},null,8,["src"]),w("div",Tt,[w("div",Pt,[w("span",At,A(d(t).state.userInfo.nickname),1),s(p,{class:"logout",quaternary:"",circle:"",size:"tiny",onClick:b},{icon:u(()=>[s(d(F),null,{default:u(()=>[s(d(ne))]),_:1})]),_:1})]),w("div",Rt,"@"+A(d(t).state.userInfo.username),1)]),w("div",Mt,[s(p,{class:"logout",quaternary:"",circle:"",onClick:b},{icon:u(()=>[s(d(F),{size:24},{default:u(()=>[s(d(ne))]),_:1})]),_:1})])])):(f(),R("div",Et,[d(t).state.profile.allowUserRegister?I("",!0):(f(),R("div",Ct,[s(p,{strong:"",secondary:"",round:"",type:"primary",onClick:v[0]||(v[0]=E=>m("signin"))},{default:u(()=>[S(" 登录 ")]),_:1})])),d(t).state.profile.allowUserRegister?(f(),R("div",Ot,[s(p,{strong:"",secondary:"",round:"",type:"primary",onClick:v[1]||(v[1]=E=>m("signin"))},{default:u(()=>[S(" 登录 ")]),_:1}),s(p,{strong:"",secondary:"",round:"",type:"info",onClick:v[2]||(v[2]=E=>m("signup"))},{default:u(()=>[S(" 注册 ")]),_:1})])):I("",!0)]))])}}});const St=()=>o({method:"get",url:"/v1/site/profile"}),Ut={"has-sider":"",class:"main-wrap",position:"static"},$t={key:0},Dt={class:"content-wrap"},xt=K({__name:"App",setup(e){const t=W(),r=Q(()=>t.state.theme==="dark"?ze:null);function h(){t.commit("loadDefaultSiteProfile"),"true".toLowerCase()==="true"&&St().then(n=>{t.commit("updateSiteProfile",n)}).catch(n=>{console.log(n)})}return V(()=>{h()}),(n,l)=>{const c=It,O=ue("router-view"),T=wt,g=at,_=Fe,i=Ke,M=Ve,m=qe;return f(),z(m,{theme:r.value},{default:u(()=>[s(i,null,{default:u(()=>[s(_,null,{default:u(()=>{var b;return[w("div",{class:we(["app-container",{dark:((b=r.value)==null?void 0:b.name)==="dark",mobile:!d(t).state.desktopModelShow}])},[w("div",Ut,[d(t).state.desktopModelShow?(f(),R("div",$t,[s(c)])):I("",!0),w("div",Dt,[s(O,{class:"app-wrap"},{default:u(({Component:a})=>[(f(),z(ve,null,[n.$route.meta.keepAlive?(f(),z(oe(a),{key:0})):I("",!0)],1024)),n.$route.meta.keepAlive?I("",!0):(f(),z(oe(a),{key:0}))]),_:1})]),s(T)]),s(g)],2)]}),_:1})]),_:1}),s(M)]),_:1},8,["theme"])}}});ye(xt).use(he).use(tt).mount("#app");export{$o as $,io as A,co as B,ao as C,po as D,yt as E,Co as F,Io as G,Oo as H,lt as I,ut as J,pr as K,Xo as L,ir as M,Do as N,xo as O,Ko as P,Zo as Q,Qo as R,Go as S,Jo as T,cr as U,ar as V,lr as W,mo as X,zo as Y,Fo as Z,fe as _,nr as a,Y as a0,tr as a1,or as a2,rr as a3,So as a4,jo as a5,Ho as a6,Wo as a7,Bo as a8,Yo as a9,Uo as aa,It as ab,_o as b,ho as c,no as d,er as e,No as f,sr as g,Vo as h,ur as i,To as j,Eo as k,bo as l,ko as m,Mo as n,Ao as o,Ro as p,Po as q,lo as r,uo as s,Lo as t,qo as u,fo as v,go as w,vo as x,wo as y,yo as z}; diff --git a/web/dist/assets/index-ea5660b6.css b/web/dist/assets/index-CTBSE2BG.css similarity index 100% rename from web/dist/assets/index-ea5660b6.css rename to web/dist/assets/index-CTBSE2BG.css diff --git a/web/dist/assets/index-v3l9hw1O.js b/web/dist/assets/index-v3l9hw1O.js new file mode 100644 index 00000000..d4762afe --- /dev/null +++ b/web/dist/assets/index-v3l9hw1O.js @@ -0,0 +1,7 @@ +import{d as F,H as T,S as X,b as V,e as f,q as K,w as u,j as w,k as s,bk as d,f as R,A as I,_ as N,y as q,Z as S,c as Q,E as j,r as ue,F as ee,u as te,x as A,h as L,a9 as we,s as oe,l as ve,am as ye}from"./@vue-CQsYufSu.js";import{c as be,a as ke,u as ce,b as Le}from"./vue-router-zwGLnBy5.js";import{c as Te,u as W}from"./vuex-DNAxYlmG.js";import{a as Pe}from"./axios-Bo0ATomq.js";import{_ as Me,N as Ae,a as pe,b as de,c as Re,d as Ee,e as me,f as Oe,g as Ce,h as he,i as Se,j as z,k as Ie,u as Ue,l as $e,m as De,n as xe,o as Ne,p as qe,q as Ke,r as ze,s as Fe,t as Ve}from"./naive-ui-DNcWoFGl.js";import{h as U}from"./moment-BqTRGcJI.js";import{S as We,M as Be,L as He,C as Ye,B as je,P as Qe,W as Ze,a as Ge,H as re,b as se,c as ne}from"./@vicons-C3A8jsfr.js";/* empty css */import"./seemly-B7f2tHrf.js";import"./vueuc-CbQ6ZCvR.js";import"./evtd-CI_DDEu_.js";import"./@css-render-CQdyXCYJ.js";import"./vooks-BQzJqMzq.js";import"./vdirs-DL8EOfHr.js";import"./@juggle-C8OzoCMD.js";import"./css-render-Ct37b3-v.js";import"./@emotion-WldOFDRm.js";import"./lodash-es-i05dkx59.js";import"./treemate-HRdUPn5m.js";import"./async-validator-DKvM95Vc.js";import"./date-fns-x7VUUoCw.js";(function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const n of document.querySelectorAll('link[rel="modulepreload"]'))_(n);new MutationObserver(n=>{for(const c of n)if(c.type==="childList")for(const l of c.addedNodes)l.tagName==="LINK"&&l.rel==="modulepreload"&&_(l)}).observe(document,{childList:!0,subtree:!0});function r(n){const c={};return n.integrity&&(c.integrity=n.integrity),n.referrerPolicy&&(c.referrerPolicy=n.referrerPolicy),n.crossOrigin==="use-credentials"?c.credentials="include":n.crossOrigin==="anonymous"?c.credentials="omit":c.credentials="same-origin",c}function _(n){if(n.ep)return;n.ep=!0;const c=r(n);fetch(n.href,c)}})();const Je="modulepreload",Xe=function(e){return"/"+e},ae={},M=function(t,r,_){let n=Promise.resolve();if(r&&r.length>0){const c=document.getElementsByTagName("link");n=Promise.all(r.map(l=>{if(l=Xe(l),l in ae)return;ae[l]=!0;const P=l.endsWith(".css"),k=P?'[rel="stylesheet"]':"";if(!!_)for(let i=c.length-1;i>=0;i--){const v=c[i];if(v.href===l&&(!P||v.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${l}"]${k}`))return;const m=document.createElement("link");if(m.rel=P?"stylesheet":Je,P||(m.as="script",m.crossOrigin=""),m.href=l,document.head.appendChild(m),P)return new Promise((i,v)=>{m.addEventListener("load",i),m.addEventListener("error",()=>v(new Error(`Unable to preload CSS for ${l}`)))})}))}return n.then(()=>t()).catch(c=>{const l=new Event("vite:preloadError",{cancelable:!0});if(l.payload=c,window.dispatchEvent(l),!l.defaultPrevented)throw c})},et=[{path:"/",name:"home",meta:{title:"广场",keepAlive:!0},component:()=>M(()=>import("./Home-0ukNlDWW.js"),__vite__mapDeps([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45]))},{path:"/post",name:"post",meta:{title:"泡泡详情"},component:()=>M(()=>import("./Post-qFQOJJiu.js"),__vite__mapDeps([46,4,25,34,22,2,3,5,6,7,8,9,10,11,12,13,14,15,16,21,23,24,26,31,32,33,28,18,19,27,29,35,36,37,38,42,43,47,45]))},{path:"/topic",name:"topic",meta:{title:"话题"},component:()=>M(()=>import("./Topic-rFad0zit.js"),__vite__mapDeps([48,22,4,2,3,5,6,7,8,9,10,11,12,13,14,15,16,35,25,26,36,42,43,49,45]))},{path:"/anouncement",name:"anouncement",meta:{title:"公告"},component:()=>M(()=>import("./Anouncement-BBExDZeq.js"),__vite__mapDeps([50,31,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,32,35,25,26,22,36,42,43,51,45]))},{path:"/profile",name:"profile",meta:{title:"主页"},component:()=>M(()=>import("./Profile-oanYBP0F.js"),__vite__mapDeps([52,18,4,2,3,5,6,7,8,9,10,11,12,13,14,15,16,19,20,21,22,23,24,25,26,27,28,29,30,31,32,35,36,53,37,38,42,43,54,45]))},{path:"/u",name:"user",meta:{title:"用户详情"},component:()=>M(()=>import("./User-BINZKVll.js"),__vite__mapDeps([55,20,21,4,22,2,3,5,6,7,8,9,10,11,12,13,14,15,16,23,24,25,26,27,28,29,30,31,32,18,19,35,36,1,17,53,37,38,42,43,56,45]))},{path:"/messages",name:"messages",meta:{title:"消息"},component:()=>M(()=>import("./Messages-pR9E7fXn.js"),__vite__mapDeps([57,4,25,26,22,2,3,5,6,7,8,9,10,11,12,13,14,15,16,18,19,35,36,37,38,42,43,58,45]))},{path:"/collection",name:"collection",meta:{title:"收藏"},component:()=>M(()=>import("./Collection-DdDm05Jj.js"),__vite__mapDeps([59,18,4,2,3,5,6,7,8,9,10,11,12,13,14,15,16,19,20,21,22,23,24,25,26,27,28,29,30,31,32,35,36,37,38,42,43,60,45]))},{path:"/contacts",name:"contacts",meta:{title:"好友"},component:()=>M(()=>import("./Contacts-BMe_G0jw.js"),__vite__mapDeps([61,18,4,2,3,5,6,7,8,9,10,11,12,13,14,15,16,19,22,31,32,35,25,26,36,37,38,42,43,62,45]))},{path:"/following",name:"following",meta:{title:"关注"},component:()=>M(()=>import("./Following-iHn0NcLi.js"),__vite__mapDeps([63,18,4,2,3,5,6,7,8,9,10,11,12,13,14,15,16,19,22,31,32,35,25,26,36,37,38,42,43,64,45]))},{path:"/wallet",name:"wallet",meta:{title:"钱包"},component:()=>M(()=>import("./Wallet-EQJ_rp0r.js"),__vite__mapDeps([65,31,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,32,35,25,26,22,36,66,67,68,42,43,69,45]))},{path:"/setting",name:"setting",meta:{title:"设置"},component:()=>M(()=>import("./Setting-C0pZ4LXF.js"),__vite__mapDeps([70,35,25,4,26,8,6,22,2,3,5,7,9,10,11,12,13,14,15,16,36,42,43,71,45]))},{path:"/404",name:"404",meta:{title:"404"},component:()=>M(()=>import("./404-jFEq1ucs.js"),__vite__mapDeps([72,35,25,4,26,8,6,22,2,3,5,7,9,10,11,12,13,14,15,16,36,42,43,73,45]))},{path:"/:pathMatch(.*)",redirect:"/404"}],_e=be({history:ke(),routes:et});_e.beforeEach((e,t,r)=>{document.title=`${e.meta.title} | 泡泡 - 一个清新文艺的微社区`,r()});const tt=Te({state:{refresh:Date.now(),refreshTopicFollow:Date.now(),theme:localStorage.getItem("PAOPAO_THEME"),collapsedLeft:document.body.clientWidth<=821,collapsedRight:document.body.clientWidth<=821,drawerModelShow:document.body.clientWidth<=821,desktopModelShow:document.body.clientWidth>821,authModalShow:!1,authModelTab:"signin",unreadMsgCount:0,userLogined:!1,userInfo:{id:0,username:"",nickname:"",created_on:0,follows:0,followings:0,tweets_count:0,is_admin:!1},profile:{useFriendship:!0,enableTrendsBar:!0,enableWallet:!1,allowTweetAttachment:!0,allowTweetAttachmentPrice:!0,allowTweetVideo:!0,allowUserRegister:!0,allowPhoneBind:!0,defaultTweetMaxLength:2e3,tweetWebEllipsisSize:400,tweetMobileEllipsisSize:300,defaultTweetVisibility:"friend",defaultMsgLoopInterval:5e3,copyrightTop:"2023 paopao.info",copyrightLeft:"Roc's Me",copyrightLeftLink:"",copyrightRight:"泡泡(PaoPao)开源社区",copyrightRightLink:"https://www.paopao.info"}},mutations:{refresh(e,t){e.refresh=t||Date.now()},refreshTopicFollow(e){e.refreshTopicFollow=Date.now()},updateUnreadMsgCount(e,t){e.unreadMsgCount=t},triggerTheme(e,t){e.theme=t},triggerAuth(e,t){e.authModalShow=t},triggerAuthKey(e,t){e.authModelTab=t},triggerCollapsedLeft(e,t){e.collapsedLeft=t,e.drawerModelShow=t,e.desktopModelShow=!t},triggerCollapsedRight(e,t){e.collapsedRight=t},updateUserinfo(e,t){e.userInfo=t,e.userInfo.id>0&&(e.userLogined=!0)},loadDefaultSiteProfile(e){e.profile.useFriendship="true".toLowerCase()==="true",e.profile.enableTrendsBar="false".toLowerCase()==="true",e.profile.enableWallet="false".toLocaleLowerCase()==="true",e.profile.allowTweetAttachment="true".toLowerCase()==="true",e.profile.allowTweetAttachmentPrice="false".toLowerCase()==="true",e.profile.allowTweetVideo="true".toLowerCase()==="true",e.profile.allowUserRegister="true".toLowerCase()==="true",e.profile.allowPhoneBind="true".toLowerCase()==="true",e.profile.defaultTweetMaxLength=2e3,e.profile.tweetWebEllipsisSize=400,e.profile.tweetMobileEllipsisSize=300,e.profile.defaultTweetVisibility="friend".toLowerCase(),e.profile.defaultMsgLoopInterval=5e3,e.profile.copyrightTop="2023 paopao.info",e.profile.copyrightLeft="Roc's Me",e.profile.copyrightLeftLink="",e.profile.copyrightRight="泡泡(PaoPao)开源社区",e.profile.copyrightRightLink="https://www.paopao.info"},updateSiteProfile(e,t){const r=e.profile;e.profile.useFriendship=t.use_friendship??r.useFriendship,e.profile.enableTrendsBar=t.enable_trends_bar??r.enableTrendsBar,e.profile.enableWallet=t.enable_wallet??r.enableWallet,e.profile.allowTweetAttachment=t.allow_tweet_attachment??r.allowTweetAttachment,e.profile.allowTweetAttachmentPrice=t.allow_tweet_attachment_price??r.allowTweetAttachmentPrice,e.profile.allowTweetVideo=t.allow_tweet_video??r.allowTweetVideo,e.profile.allowUserRegister=t.allow_user_register??r.allowUserRegister,e.profile.allowPhoneBind=t.allow_phone_bind??r.allowPhoneBind,e.profile.defaultTweetMaxLength=t.default_tweet_max_length??r.defaultTweetMaxLength,e.profile.tweetWebEllipsisSize=t.tweet_web_ellipsis_size??r.tweetWebEllipsisSize,e.profile.tweetMobileEllipsisSize=t.tweet_mobile_ellipsis_size??r.tweetMobileEllipsisSize,e.profile.defaultTweetVisibility=t.default_tweet_visibility??r.defaultTweetVisibility,e.profile.defaultMsgLoopInterval=t.default_msg_loop_interval??r.defaultMsgLoopInterval,e.profile.copyrightTop=t.copyright_top??r.copyrightTop,e.profile.copyrightLeft=t.copyright_left??r.copyrightLeft,e.profile.copyrightLeftLink=t.copyright_left_link??r.copyrightLeftLink,e.profile.copyrightRight=t.copyright_right??r.copyrightRight,e.profile.copyrightRightLink=t.copyright_right_link??r.copyrightRightLink},userLogout(e){localStorage.removeItem("PAOPAO_TOKEN"),e.userInfo={id:0,nickname:"",username:"",created_on:0,follows:0,followings:0,tweets_count:0,is_admin:!1},e.userLogined=!1}},actions:{},modules:{}}),Z=Pe.create({baseURL:"",timeout:3e4});Z.interceptors.request.use(e=>(localStorage.getItem("PAOPAO_TOKEN")&&(e.headers.Authorization="Bearer "+localStorage.getItem("PAOPAO_TOKEN")),e),e=>Promise.reject(e));Z.interceptors.response.use(e=>{const{data:t={},code:r=0}=(e==null?void 0:e.data)||{};if(+r==0)return t||{};Promise.reject((e==null?void 0:e.data)||{})},(e={})=>{var r;const{response:t={}}=e||{};return+(t==null?void 0:t.status)==401?(localStorage.removeItem("PAOPAO_TOKEN"),(t==null?void 0:t.data.code)!==10005?window.$message.warning((t==null?void 0:t.data.msg)||"鉴权失败"):window.$store.commit("triggerAuth",!0)):window.$message.error(((r=t==null?void 0:t.data)==null?void 0:r.msg)||"请求失败"),Promise.reject((t==null?void 0:t.data)||{})});function o(e){return Z(e)}const le=e=>o({method:"post",url:"/v1/auth/login",data:e}),ot=e=>o({method:"post",url:"/v1/auth/register",data:e}),Y=(e="")=>o({method:"get",url:"/v1/user/info",headers:{Authorization:`Bearer ${e}`}}),rt={class:"auth-wrap"},st={key:0},nt=F({__name:"auth",setup(e){const t=W(),r=T(!1),_=T(),n=X({username:"",password:""}),c=T(),l=X({username:"",password:"",repassword:""}),P={username:{required:!0,message:"请输入账户名"},password:{required:!0,message:"请输入密码"},repassword:[{required:!0,message:"请输入密码"},{validator:(m,i)=>!!l.password&&l.password.startsWith(i)&&l.password.length>=i.length,message:"两次密码输入不一致",trigger:"input"}]},k=m=>{var i;m.preventDefault(),m.stopPropagation(),(i=_.value)==null||i.validate(v=>{v||(r.value=!0,le({username:n.username,password:n.password}).then(h=>{const b=(h==null?void 0:h.token)||"";return localStorage.setItem("PAOPAO_TOKEN",b),Y(b)}).then(h=>{window.$message.success("登录成功"),r.value=!1,t.commit("updateUserinfo",h),t.commit("triggerAuth",!1),t.commit("refresh"),n.username="",n.password=""}).catch(h=>{r.value=!1}))})},E=m=>{var i;m.preventDefault(),m.stopPropagation(),(i=c.value)==null||i.validate(v=>{v||(r.value=!0,ot({username:l.username,password:l.password}).then(h=>le({username:l.username,password:l.password})).then(h=>{const b=(h==null?void 0:h.token)||"";return localStorage.setItem("PAOPAO_TOKEN",b),Y(b)}).then(h=>{window.$message.success("注册成功"),r.value=!1,t.commit("updateUserinfo",h),t.commit("triggerAuth",!1),l.username="",l.password="",l.repassword=""}).catch(h=>{r.value=!1}))})};return V(()=>{const m=localStorage.getItem("PAOPAO_TOKEN")||"";m?Y(m).then(i=>{t.commit("updateUserinfo",i),t.commit("triggerAuth",!1)}).catch(i=>{t.commit("userLogout")}):t.commit("userLogout")}),(m,i)=>{const v=Me,h=Ae,b=pe,a=de,g=Re,D=Ee,$=me,x=Oe,p=Ce,O=he,B=Se;return f(),K(B,{show:d(t).state.authModalShow,"onUpdate:show":i[7]||(i[7]=y=>d(t).state.authModalShow=y),class:"auth-card",preset:"card",size:"small","mask-closable":!1,bordered:!1,style:{width:"360px"}},{default:u(()=>[w("div",rt,[s(O,{bordered:!1},{default:u(()=>[d(t).state.profile.allowUserRegister?S("",!0):(f(),R("div",st,[s(b,{justify:"center"},{default:u(()=>[s(h,null,{default:u(()=>[s(v,{type:"success"},{default:u(()=>[I("账号登录")]),_:1})]),_:1})]),_:1}),s(D,{ref_key:"loginRef",ref:_,model:n,rules:{username:{required:!0,message:"请输入账户名"},password:{required:!0,message:"请输入密码"}}},{default:u(()=>[s(g,{label:"账户",path:"username"},{default:u(()=>[s(a,{value:n.username,"onUpdate:value":i[0]||(i[0]=y=>n.username=y),placeholder:"请输入用户名",onKeyup:N(q(k,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1}),s(g,{label:"密码",path:"password"},{default:u(()=>[s(a,{type:"password","show-password-on":"mousedown",value:n.password,"onUpdate:value":i[1]||(i[1]=y=>n.password=y),placeholder:"请输入账户密码",onKeyup:N(q(k,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1})]),_:1},8,["model"]),s($,{type:"primary",block:"",secondary:"",strong:"",loading:r.value,onClick:k},{default:u(()=>[I(" 登录 ")]),_:1},8,["loading"])])),d(t).state.profile.allowUserRegister?(f(),K(p,{key:1,"default-value":d(t).state.authModelTab,size:"large","justify-content":"space-evenly"},{default:u(()=>[s(x,{name:"signin",tab:"登录"},{default:u(()=>[s(D,{ref_key:"loginRef",ref:_,model:n,rules:{username:{required:!0,message:"请输入账户名"},password:{required:!0,message:"请输入密码"}}},{default:u(()=>[s(g,{label:"账户",path:"username"},{default:u(()=>[s(a,{value:n.username,"onUpdate:value":i[2]||(i[2]=y=>n.username=y),placeholder:"请输入用户名",onKeyup:N(q(k,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1}),s(g,{label:"密码",path:"password"},{default:u(()=>[s(a,{type:"password","show-password-on":"mousedown",value:n.password,"onUpdate:value":i[3]||(i[3]=y=>n.password=y),placeholder:"请输入账户密码",onKeyup:N(q(k,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1})]),_:1},8,["model"]),s($,{type:"primary",block:"",secondary:"",strong:"",loading:r.value,onClick:k},{default:u(()=>[I(" 登录 ")]),_:1},8,["loading"])]),_:1}),s(x,{name:"signup",tab:"注册"},{default:u(()=>[s(D,{ref_key:"registerRef",ref:c,model:l,rules:P},{default:u(()=>[s(g,{label:"用户名",path:"username"},{default:u(()=>[s(a,{value:l.username,"onUpdate:value":i[4]||(i[4]=y=>l.username=y),placeholder:"用户名注册后无法修改"},null,8,["value"])]),_:1}),s(g,{label:"密码",path:"password"},{default:u(()=>[s(a,{type:"password","show-password-on":"mousedown",placeholder:"密码不少于6位",value:l.password,"onUpdate:value":i[5]||(i[5]=y=>l.password=y),onKeyup:N(q(E,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1}),s(g,{label:"重复密码",path:"repassword"},{default:u(()=>[s(a,{type:"password","show-password-on":"mousedown",placeholder:"请再次输入密码",value:l.repassword,"onUpdate:value":i[6]||(i[6]=y=>l.repassword=y),onKeyup:N(q(E,["prevent"]),["enter"])},null,8,["value","onKeyup"])]),_:1})]),_:1},8,["model"]),s($,{type:"primary",block:"",secondary:"",strong:"",loading:r.value,onClick:E},{default:u(()=>[I(" 注册 ")]),_:1},8,["loading"])]),_:1})]),_:1},8,["default-value"])):S("",!0)]),_:1})])]),_:1},8,["show"])}}}),fe=(e,t)=>{const r=e.__vccOpts||e;for(const[_,n]of t)r[_]=n;return r},at=fe(nt,[["__scopeId","data-v-6f778fc4"]]),no=e=>o({method:"get",url:"/v1/posts",params:e}),lt=e=>o({method:"get",url:"/v1/tags",params:e}),ao=e=>o({method:"get",url:"/v1/post",params:e}),lo=e=>o({method:"get",url:"/v1/post/star",params:e}),io=e=>o({method:"post",url:"/v1/post/star",data:e}),uo=e=>o({method:"get",url:"/v1/post/collection",params:e}),co=e=>o({method:"post",url:"/v1/post/collection",data:e}),po=e=>o({method:"get",url:"/v1/post/comments",params:e}),mo=e=>o({method:"get",url:"/v1/user/contacts",params:e}),ho=e=>o({method:"get",url:"/v1/trends/index",params:e}),_o=e=>o({method:"post",url:"/v1/post",data:e}),fo=e=>o({method:"delete",url:"/v1/post",data:e}),go=e=>o({method:"post",url:"/v1/post/lock",data:e}),wo=e=>o({method:"post",url:"/v1/post/stick",data:e}),vo=e=>o({method:"post",url:"/v1/post/highlight",data:e}),yo=e=>o({method:"post",url:"/v1/post/visibility",data:e}),bo=e=>o({method:"post",url:"/v1/tweet/comment/thumbsup",data:e}),ko=e=>o({method:"post",url:"/v1/tweet/comment/thumbsdown",data:e}),Lo=e=>o({method:"post",url:"/v1/tweet/reply/thumbsup",data:e}),To=e=>o({method:"post",url:"/v1/tweet/reply/thumbsdown",data:e}),Po=e=>o({method:"post",url:"/v1/post/comment",data:e}),Mo=e=>o({method:"delete",url:"/v1/post/comment",data:e}),Ao=e=>o({method:"post",url:"/v1/post/comment/highlight",data:e}),Ro=e=>o({method:"post",url:"/v1/post/comment/reply",data:e}),Eo=e=>o({method:"delete",url:"/v1/post/comment/reply",data:e}),Oo=e=>o({method:"post",url:"/v1/topic/stick",data:e}),Co=e=>o({method:"post",url:"/v1/topic/pin",data:e}),So=e=>o({method:"post",url:"/v1/topic/follow",data:e}),Io=e=>o({method:"post",url:"/v1/topic/unfollow",data:e}),Uo=(e={})=>o({method:"get",url:"/v1/captcha",params:e}),$o=e=>o({method:"post",url:"/v1/captcha",data:e}),Do=e=>o({method:"post",url:"/v1/user/whisper",data:e}),xo=e=>o({method:"post",url:"/v1/friend/requesting",data:e}),No=e=>o({method:"post",url:"/v1/friend/add",data:e}),qo=e=>o({method:"post",url:"/v1/user/follow",data:e}),Ko=e=>o({method:"post",url:"/v1/user/unfollow",data:e}),zo=e=>o({method:"get",url:"/v1/user/follows",params:e}),Fo=e=>o({method:"get",url:"/v1/user/followings",params:e}),Vo=e=>o({method:"post",url:"/v1/friend/reject",data:e}),Wo=e=>o({method:"post",url:"/v1/friend/delete",data:e}),Bo=e=>o({method:"post",url:"/v1/user/phone",data:e}),Ho=e=>o({method:"post",url:"/v1/user/activate",data:e}),Yo=e=>o({method:"post",url:"/v1/user/password",data:e}),jo=e=>o({method:"post",url:"/v1/user/nickname",data:e}),Qo=e=>o({method:"post",url:"/v1/user/avatar",data:e}),ie=(e={})=>o({method:"get",url:"/v1/user/msgcount/unread",params:e}),Zo=e=>o({method:"get",url:"/v1/user/messages",params:e}),Go=e=>o({method:"post",url:"/v1/user/message/read",data:e}),Jo=()=>o({method:"post",url:"/v1/user/message/readall"}),Xo=e=>o({method:"get",url:"/v1/user/collections",params:e}),er=e=>o({method:"get",url:"/v1/user/profile",params:e}),tr=e=>o({method:"get",url:"/v1/user/posts",params:e}),or=e=>o({method:"get",url:"/v1/user/wallet/bills",params:e}),rr=e=>o({method:"post",url:"/v1/user/recharge",data:e}),sr=e=>o({method:"get",url:"/v1/user/recharge",params:e}),nr=e=>o({method:"get",url:"/v1/suggest/users",params:e}),ar=e=>o({method:"get",url:"/v1/suggest/tags",params:e}),lr=e=>o({method:"get",url:"/v1/attachment/precheck",params:e}),ir=e=>o({method:"get",url:"/v1/attachment",params:e}),ur=e=>o({method:"post",url:"/v1/admin/user/status",data:e}),it=()=>o({method:"get",url:"/v1/admin/site/status"});U.locale("zh-cn");const ut=e=>U.unix(e).fromNow(),cr=e=>{let t=U.unix(e),r=U();return t.year()!=r.year()?t.utc(!0).format("YYYY-MM-DD HH:mm"):U().diff(t,"month")>3?t.utc(!0).format("MM-DD HH:mm"):t.fromNow()},pr=e=>{let t=U.unix(e),r=U();return t.year()!=r.year()?t.utc(!0).format("YYYY-MM-DD"):U().diff(t,"month")>3?t.utc(!0).format("MM-DD"):t.fromNow()},dr=e=>U.unix(e).utc(!0).format("YYYY年MM月"),ct={key:0,class:"rightbar-wrap"},pt={class:"search-wrap"},dt={class:"post-num"},mt={class:"post-num"},ht={class:"copyright"},_t=["href"],ft=["href"],gt={class:"site-info-item"},wt=F({__name:"rightbar",setup(e){const t=T([]),r=T([]),_=T(!1),n=T(""),c=W(),l=ce(),P=T(0),k=T(0),E=T(0),m=T(0),i=T(null),v=6,h=12,b=()=>{it().then(p=>{P.value=p.register_user_count,k.value=p.online_user_count,E.value=p.history_max_online,m.value=p.server_up_time}).catch(p=>{}),x.disconnect()},a=()=>{_.value=!0,lt({type:"hot_extral",num:h,extral_num:v}).then(p=>{t.value=p.topics,r.value=p.extral_topics??[],$.value=!0,_.value=!1}).catch(p=>{_.value=!1})},g=p=>p>=1e3?(p/1e3).toFixed(1)+"k":p,D=()=>{l.push({name:"home",query:{q:n.value}})},$=Q({get:()=>c.state.userLogined&&r.value.length!==0,set:p=>{}});j(()=>({refreshTopicFollow:c.state.refreshTopicFollow,userLogined:c.state.userLogined}),(p,O)=>{(p.refreshTopicFollow!==O.refreshTopicFollow||p.userLogined)&&a(),c.state.userInfo.is_admin&&b()});const x=new IntersectionObserver(p=>{p.forEach(O=>{O.isIntersecting&&b()})},{root:null,rootMargin:"0px",threshold:1});return V(()=>{i.value&&x.observe(i.value),a()}),(p,O)=>{const B=z,y=de,G=ue("router-link"),J=Ie,H=he,ge=pe;return d(c).state.collapsedRight?S("",!0):(f(),R("div",ct,[w("div",pt,[s(y,{round:"",clearable:"",placeholder:"搜一搜...",value:n.value,"onUpdate:value":O[0]||(O[0]=C=>n.value=C),onKeyup:N(q(D,["prevent"]),["enter"])},{prefix:u(()=>[s(B,{component:d(We)},null,8,["component"])]),_:1},8,["value","onKeyup"])]),$.value?(f(),K(H,{key:0,class:"hottopic-wrap",title:"关注话题",embedded:"",bordered:!1,size:"small"},{default:u(()=>[s(J,{show:_.value},{default:u(()=>[(f(!0),R(ee,null,te(r.value,C=>(f(),R("div",{class:"hot-tag-item",key:C.id},[s(G,{class:"hash-link",to:{name:"home",query:{q:C.tag,t:"tag"}}},{default:u(()=>[I(" #"+A(C.tag),1)]),_:2},1032,["to"]),w("div",dt,A(g(C.quote_num)),1)]))),128))]),_:1},8,["show"])]),_:1})):S("",!0),s(H,{class:"hottopic-wrap",title:"热门话题",embedded:"",bordered:!1,size:"small"},{default:u(()=>[s(J,{show:_.value},{default:u(()=>[(f(!0),R(ee,null,te(t.value,C=>(f(),R("div",{class:"hot-tag-item",key:C.id},[s(G,{class:"hash-link",to:{name:"home",query:{q:C.tag,t:"tag"}}},{default:u(()=>[I(" #"+A(C.tag),1)]),_:2},1032,["to"]),w("div",mt,A(g(C.quote_num)),1)]))),128))]),_:1},8,["show"])]),_:1}),s(H,{class:"copyright-wrap",embedded:"",bordered:!1,size:"small"},{default:u(()=>[w("div",ht,"© "+A(d(c).state.profile.copyrightTop),1),w("div",null,[s(ge,null,{default:u(()=>[w("a",{href:d(c).state.profile.copyrightLeftLink,target:"_blank",class:"hash-link"},A(d(c).state.profile.copyrightLeft),9,_t),w("a",{href:d(c).state.profile.copyrightRightLink,target:"_blank",class:"hash-link"},A(d(c).state.profile.copyrightRight),9,ft)]),_:1})])]),_:1}),d(c).state.userInfo.is_admin?(f(),R("div",{key:1,class:"site-info",ref_key:"userInfoElement",ref:i},[w("span",gt,A(P.value)+" 注册用户,"+A(k.value)+" 人在线,最高在线 "+A(E.value)+" 人,站点上线于 "+A(d(ut)(m.value)),1)],512)):S("",!0)]))}}}),vt=fe(wt,[["__scopeId","data-v-181f8063"]]),yt="/assets/logo-wT_OfKx5.png",bt={class:"sidebar-wrap"},kt={class:"logo-wrap"},Lt={key:0,class:"user-wrap"},Tt={class:"user-info"},Pt={class:"nickname"},Mt={class:"nickname-txt"},At={class:"username"},Rt={class:"user-mini-wrap"},Et={key:1,class:"user-wrap"},Ot={key:0,class:"login-only-wrap"},Ct={key:1,class:"login-wrap"},St=F({__name:"sidebar",setup(e){const t=W(),r=Le(),_=ce(),n=T(!1),c=T(r.name||""),l=T(),P="false".toLowerCase()==="true";j(r,()=>{c.value=r.name}),j(t.state,()=>{n.value=t.state.unreadMsgCount>0,t.state.userInfo.id>0?l.value||(ie().then(a=>{n.value=a.count>0,t.commit("updateUnreadMsgCount",a.count)}).catch(a=>{console.log(a)}),l.value=setInterval(()=>{ie().then(a=>{n.value=a.count>0,t.commit("updateUnreadMsgCount",a.count)}).catch(a=>{console.log(a)})},t.state.profile.defaultMsgLoopInterval)):l.value&&clearInterval(l.value)}),V(()=>{window.onresize=()=>{t.commit("triggerCollapsedLeft",document.body.clientWidth<=821),t.commit("triggerCollapsedRight",document.body.clientWidth<=821)}});const k=Q(()=>{const a=[{label:"广场",key:"home",icon:()=>L(re),href:"/"},{label:"话题",key:"topic",icon:()=>L(se),href:"/topic"}];return P&&a.push({label:"公告",key:"anouncement",icon:()=>L(Be),href:"/anouncement"}),a.push({label:"主页",key:"profile",icon:()=>L(He),href:"/profile"}),a.push({label:"消息",key:"messages",icon:()=>L(Ye),href:"/messages"}),a.push({label:"收藏",key:"collection",icon:()=>L(je),href:"/collection"}),t.state.profile.useFriendship&&a.push({label:"好友",key:"contacts",icon:()=>L(Qe),href:"/contacts"}),t.state.profile.enableWallet&&a.push({label:"钱包",key:"wallet",icon:()=>L(Ze),href:"/wallet"}),a.push({label:"设置",key:"setting",icon:()=>L(Ge),href:"/setting"}),t.state.userInfo.id>0?a:[{label:"广场",key:"home",icon:()=>L(re),href:"/"},{label:"话题",key:"topic",icon:()=>L(se),href:"/topic"}]}),E=a=>"href"in a?L("div",{},a.label):a.label,m=a=>a.key==="messages"?L($e,{dot:!0,show:n.value,processing:!0},{default:()=>L(z,{color:a.key===c.value?"var(--n-item-icon-color-active)":"var(--n-item-icon-color)"},{default:a.icon})}):L(z,null,{default:a.icon}),i=(a,g={})=>{c.value=a,_.push({name:a,query:{t:new Date().getTime()}})},v=()=>{r.path==="/"&&t.commit("refresh"),i("home")},h=a=>{t.commit("triggerAuth",!0),t.commit("triggerAuthKey",a)},b=()=>{t.commit("userLogout"),t.commit("refresh"),v()};return window.$store=t,window.$message=Ue(),(a,g)=>{const D=De,$=xe,x=Ne,p=me;return f(),R("div",bt,[w("div",kt,[s(D,{class:"logo-img",width:"36",src:d(yt),"preview-disabled":!0,onClick:v},null,8,["src"])]),s($,{accordion:!0,"icon-size":24,options:k.value,"render-label":E,"render-icon":m,value:c.value,"onUpdate:value":i},null,8,["options","value"]),d(t).state.userInfo.id>0?(f(),R("div",Lt,[s(x,{class:"user-avatar",round:"",size:34,src:d(t).state.userInfo.avatar},null,8,["src"]),w("div",Tt,[w("div",Pt,[w("span",Mt,A(d(t).state.userInfo.nickname),1),s(p,{class:"logout",quaternary:"",circle:"",size:"tiny",onClick:b},{icon:u(()=>[s(d(z),null,{default:u(()=>[s(d(ne))]),_:1})]),_:1})]),w("div",At,"@"+A(d(t).state.userInfo.username),1)]),w("div",Rt,[s(p,{class:"logout",quaternary:"",circle:"",onClick:b},{icon:u(()=>[s(d(z),{size:24},{default:u(()=>[s(d(ne))]),_:1})]),_:1})])])):(f(),R("div",Et,[d(t).state.profile.allowUserRegister?S("",!0):(f(),R("div",Ot,[s(p,{strong:"",secondary:"",round:"",type:"primary",onClick:g[0]||(g[0]=O=>h("signin"))},{default:u(()=>[I(" 登录 ")]),_:1})])),d(t).state.profile.allowUserRegister?(f(),R("div",Ct,[s(p,{strong:"",secondary:"",round:"",type:"primary",onClick:g[1]||(g[1]=O=>h("signin"))},{default:u(()=>[I(" 登录 ")]),_:1}),s(p,{strong:"",secondary:"",round:"",type:"info",onClick:g[2]||(g[2]=O=>h("signup"))},{default:u(()=>[I(" 注册 ")]),_:1})])):S("",!0)]))])}}}),It=()=>o({method:"get",url:"/v1/site/profile"}),Ut={"has-sider":"",class:"main-wrap",position:"static"},$t={key:0},Dt={class:"content-wrap"},xt=F({__name:"App",setup(e){const t=W(),r=Q(()=>t.state.theme==="dark"?Ke:null);function _(){t.commit("loadDefaultSiteProfile"),"true".toLowerCase()==="true"&&It().then(n=>{t.commit("updateSiteProfile",n)}).catch(n=>{console.log(n)})}return V(()=>{_()}),(n,c)=>{const l=St,P=ue("router-view"),k=vt,E=at,m=ze,i=Fe,v=Ve,h=qe;return f(),K(h,{theme:r.value},{default:u(()=>[s(i,null,{default:u(()=>[s(m,null,{default:u(()=>{var b;return[w("div",{class:ve(["app-container",{dark:((b=r.value)==null?void 0:b.name)==="dark",mobile:!d(t).state.desktopModelShow}])},[w("div",Ut,[d(t).state.desktopModelShow?(f(),R("div",$t,[s(l)])):S("",!0),w("div",Dt,[s(P,{class:"app-wrap"},{default:u(({Component:a})=>[(f(),K(we,null,[n.$route.meta.keepAlive?(f(),K(oe(a),{key:0})):S("",!0)],1024)),n.$route.meta.keepAlive?S("",!0):(f(),K(oe(a),{key:0}))]),_:1})]),s(k)]),s(E)],2)]}),_:1})]),_:1}),s(v)]),_:1},8,["theme"])}}});ye(xt).use(_e).use(tt).mount("#app");export{Fo as $,io as A,co as B,ao as C,po as D,yt as E,Oo as F,Co as G,Io as H,So as I,lt as J,ut as K,dr as L,er as M,ur as N,xo as O,No as P,Vo as Q,Go as R,Zo as S,Jo as T,Xo as U,pr as V,lr as W,ir as X,mo as Y,zo as Z,fe as _,ar as a,Do as a0,Y as a1,or as a2,rr as a3,sr as a4,Uo as a5,Qo as a6,Yo as a7,Bo as a8,Ho as a9,jo as aa,$o as ab,St as ac,ho as b,_o as c,no as d,tr as e,qo as f,nr as g,Wo as h,cr as i,To as j,Eo as k,bo as l,ko as m,Ro as n,Mo as o,Ao as p,Po as q,lo as r,uo as s,Lo as t,Ko as u,fo as v,go as w,wo as x,vo as y,yo as z}; +function __vite__mapDeps(indexes) { + if (!__vite__mapDeps.viteFileDeps) { + __vite__mapDeps.viteFileDeps = ["assets/Home-0ukNlDWW.js","assets/whisper-add-friend-CuQaAOYJ.js","assets/naive-ui-DNcWoFGl.js","assets/seemly-B7f2tHrf.js","assets/@vue-CQsYufSu.js","assets/vueuc-CbQ6ZCvR.js","assets/evtd-CI_DDEu_.js","assets/@css-render-CQdyXCYJ.js","assets/vooks-BQzJqMzq.js","assets/vdirs-DL8EOfHr.js","assets/@juggle-C8OzoCMD.js","assets/css-render-Ct37b3-v.js","assets/@emotion-WldOFDRm.js","assets/lodash-es-i05dkx59.js","assets/treemate-HRdUPn5m.js","assets/async-validator-DKvM95Vc.js","assets/date-fns-x7VUUoCw.js","assets/whisper-add-friend-BHdbaWOh.css","assets/whisper-DFhobfFF.js","assets/whisper-BRTlBWW_.css","assets/post-item.vue_vue_type_style_index_0_lang-Dfn2xguO.js","assets/content-BMjusBPS.js","assets/@vicons-C3A8jsfr.js","assets/paopao-video-player-DAi68TC5.js","assets/content-DBy8w6ml.css","assets/vuex-DNAxYlmG.js","assets/vue-router-zwGLnBy5.js","assets/copy-to-clipboard-CA7crPat.js","assets/@babel-Cpj98o6Y.js","assets/toggle-selection-BHUZwh74.js","assets/post-item-DBTlFgxm.css","assets/post-skeleton-YfJeD-2o.js","assets/post-skeleton-C1jKcoiQ.css","assets/lodash-YI8ZzHBK.js","assets/IEnum-B3rDUvtK.js","assets/main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js","assets/main-nav-J3fW308k.css","assets/v3-infinite-loading-DK6TzcZc.js","assets/v3-infinite-loading-BnjmmxFu.css","assets/@opentiny-BMB0hRxY.js","assets/vue-C5uo8kQw.js","assets/@opentiny-B9LeG2Mi.css","assets/axios-Bo0ATomq.js","assets/moment-BqTRGcJI.js","assets/Home-U0_yubfz.css","assets/vfonts-BlXx2pb-.css","assets/Post-qFQOJJiu.js","assets/Post-DVMMdt_w.css","assets/Topic-rFad0zit.js","assets/Topic-DRp1ytzc.css","assets/Anouncement-BBExDZeq.js","assets/Anouncement-D9-ntkc4.css","assets/Profile-oanYBP0F.js","assets/count-BK58UQ2M.js","assets/Profile-Dogk38nM.css","assets/User-BINZKVll.js","assets/User-CxGJqoyU.css","assets/Messages-pR9E7fXn.js","assets/Messages-CGktZWmD.css","assets/Collection-DdDm05Jj.js","assets/Collection-CzPqeCvY.css","assets/Contacts-BMe_G0jw.js","assets/Contacts-DmwRVG9U.css","assets/Following-iHn0NcLi.js","assets/Following-z-lhddd0.css","assets/Wallet-EQJ_rp0r.js","assets/qrcode-CGiDONbL.js","assets/encode-utf8-Cn5aGd7v.js","assets/dijkstrajs-D_NXgYpA.js","assets/Wallet-CBEfdMFS.css","assets/Setting-C0pZ4LXF.js","assets/Setting-D32M9eQI.css","assets/404-jFEq1ucs.js","assets/404-BDKIy91-.css"] + } + return indexes.map((i) => __vite__mapDeps.viteFileDeps[i]) +} diff --git a/web/dist/assets/lodash-e0b37ac3.js b/web/dist/assets/lodash-YI8ZzHBK.js similarity index 99% rename from web/dist/assets/lodash-e0b37ac3.js rename to web/dist/assets/lodash-YI8ZzHBK.js index 5bda85eb..7eb2be67 100644 --- a/web/dist/assets/lodash-e0b37ac3.js +++ b/web/dist/assets/lodash-YI8ZzHBK.js @@ -1,11 +1,11 @@ -import{c as jt}from"./@babel-725317a4.js";var Je={exports:{}};/** +import{c as jt}from"./@babel-Cpj98o6Y.js";var Je={exports:{}};/** * @license * Lodash * Copyright OpenJS Foundation and other contributors * Released under MIT license * Based on Underscore.js 1.8.3 * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */Je.exports;(function(Qe,Ve){(function(){var o,rl="4.17.21",ke=200,il="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",sn="Expected a function",ul="Invalid `variable` option passed into `_.template`",je="__lodash_hash_undefined__",fl=500,ne="__lodash_placeholder__",qn=1,Ii=2,at=4,ct=1,te=2,an=1,jn=2,Si=4,Tn=8,ht=16,Ln=32,gt=64,Wn=128,Ot=256,nr=512,ll=30,ol="...",sl=800,al=16,Ei=1,cl=2,hl=3,nt=1/0,Kn=9007199254740991,gl=17976931348623157e292,ee=0/0,yn=4294967295,_l=yn-1,pl=yn>>>1,vl=[["ary",Wn],["bind",an],["bindKey",jn],["curry",Tn],["curryRight",ht],["flip",nr],["partial",Ln],["partialRight",gt],["rearg",Ot]],_t="[object Arguments]",re="[object Array]",dl="[object AsyncFunction]",Wt="[object Boolean]",Pt="[object Date]",wl="[object DOMException]",ie="[object Error]",ue="[object Function]",Ti="[object GeneratorFunction]",xn="[object Map]",Bt="[object Number]",xl="[object Null]",Pn="[object Object]",Li="[object Promise]",Al="[object Proxy]",bt="[object RegExp]",An="[object Set]",Ft="[object String]",fe="[object Symbol]",Rl="[object Undefined]",Mt="[object WeakMap]",Il="[object WeakSet]",Ut="[object ArrayBuffer]",pt="[object DataView]",tr="[object Float32Array]",er="[object Float64Array]",rr="[object Int8Array]",ir="[object Int16Array]",ur="[object Int32Array]",fr="[object Uint8Array]",lr="[object Uint8ClampedArray]",or="[object Uint16Array]",sr="[object Uint32Array]",Sl=/\b__p \+= '';/g,El=/\b(__p \+=) '' \+/g,Tl=/(__e\(.*?\)|\b__t\)) \+\n'';/g,yi=/&(?:amp|lt|gt|quot|#39);/g,Ci=/[&<>"']/g,Ll=RegExp(yi.source),yl=RegExp(Ci.source),Cl=/<%-([\s\S]+?)%>/g,ml=/<%([\s\S]+?)%>/g,mi=/<%=([\s\S]+?)%>/g,Ol=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Wl=/^\w*$/,Pl=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,ar=/[\\^$.*+?()[\]{}|]/g,Bl=RegExp(ar.source),cr=/^\s+/,bl=/\s/,Fl=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Ml=/\{\n\/\* \[wrapped with (.+)\] \*/,Ul=/,? & /,Dl=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Nl=/[()=,{}\[\]\/\s]/,Gl=/\\(\\)?/g,Hl=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Oi=/\w*$/,ql=/^[-+]0x[0-9a-f]+$/i,Kl=/^0b[01]+$/i,$l=/^\[object .+?Constructor\]$/,zl=/^0o[0-7]+$/i,Zl=/^(?:0|[1-9]\d*)$/,Yl=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,le=/($^)/,Xl=/['\n\r\u2028\u2029\\]/g,oe="\\ud800-\\udfff",Jl="\\u0300-\\u036f",Ql="\\ufe20-\\ufe2f",Vl="\\u20d0-\\u20ff",Wi=Jl+Ql+Vl,Pi="\\u2700-\\u27bf",Bi="a-z\\xdf-\\xf6\\xf8-\\xff",kl="\\xac\\xb1\\xd7\\xf7",jl="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",no="\\u2000-\\u206f",to=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",bi="A-Z\\xc0-\\xd6\\xd8-\\xde",Fi="\\ufe0e\\ufe0f",Mi=kl+jl+no+to,hr="['’]",eo="["+oe+"]",Ui="["+Mi+"]",se="["+Wi+"]",Di="\\d+",ro="["+Pi+"]",Ni="["+Bi+"]",Gi="[^"+oe+Mi+Di+Pi+Bi+bi+"]",gr="\\ud83c[\\udffb-\\udfff]",io="(?:"+se+"|"+gr+")",Hi="[^"+oe+"]",_r="(?:\\ud83c[\\udde6-\\uddff]){2}",pr="[\\ud800-\\udbff][\\udc00-\\udfff]",vt="["+bi+"]",qi="\\u200d",Ki="(?:"+Ni+"|"+Gi+")",uo="(?:"+vt+"|"+Gi+")",$i="(?:"+hr+"(?:d|ll|m|re|s|t|ve))?",zi="(?:"+hr+"(?:D|LL|M|RE|S|T|VE))?",Zi=io+"?",Yi="["+Fi+"]?",fo="(?:"+qi+"(?:"+[Hi,_r,pr].join("|")+")"+Yi+Zi+")*",lo="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",oo="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",Xi=Yi+Zi+fo,so="(?:"+[ro,_r,pr].join("|")+")"+Xi,ao="(?:"+[Hi+se+"?",se,_r,pr,eo].join("|")+")",co=RegExp(hr,"g"),ho=RegExp(se,"g"),vr=RegExp(gr+"(?="+gr+")|"+ao+Xi,"g"),go=RegExp([vt+"?"+Ni+"+"+$i+"(?="+[Ui,vt,"$"].join("|")+")",uo+"+"+zi+"(?="+[Ui,vt+Ki,"$"].join("|")+")",vt+"?"+Ki+"+"+$i,vt+"+"+zi,oo,lo,Di,so].join("|"),"g"),_o=RegExp("["+qi+oe+Wi+Fi+"]"),po=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,vo=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],wo=-1,M={};M[tr]=M[er]=M[rr]=M[ir]=M[ur]=M[fr]=M[lr]=M[or]=M[sr]=!0,M[_t]=M[re]=M[Ut]=M[Wt]=M[pt]=M[Pt]=M[ie]=M[ue]=M[xn]=M[Bt]=M[Pn]=M[bt]=M[An]=M[Ft]=M[Mt]=!1;var F={};F[_t]=F[re]=F[Ut]=F[pt]=F[Wt]=F[Pt]=F[tr]=F[er]=F[rr]=F[ir]=F[ur]=F[xn]=F[Bt]=F[Pn]=F[bt]=F[An]=F[Ft]=F[fe]=F[fr]=F[lr]=F[or]=F[sr]=!0,F[ie]=F[ue]=F[Mt]=!1;var xo={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"},Ao={"&":"&","<":"<",">":">",'"':""","'":"'"},Ro={"&":"&","<":"<",">":">",""":'"',"'":"'"},Io={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},So=parseFloat,Eo=parseInt,Ji=typeof jt=="object"&&jt&&jt.Object===Object&&jt,To=typeof self=="object"&&self&&self.Object===Object&&self,z=Ji||To||Function("return this")(),dr=Ve&&!Ve.nodeType&&Ve,tt=dr&&!0&&Qe&&!Qe.nodeType&&Qe,Qi=tt&&tt.exports===dr,wr=Qi&&Ji.process,cn=function(){try{var a=tt&&tt.require&&tt.require("util").types;return a||wr&&wr.binding&&wr.binding("util")}catch{}}(),Vi=cn&&cn.isArrayBuffer,ki=cn&&cn.isDate,ji=cn&&cn.isMap,nu=cn&&cn.isRegExp,tu=cn&&cn.isSet,eu=cn&&cn.isTypedArray;function en(a,g,h){switch(h.length){case 0:return a.call(g);case 1:return a.call(g,h[0]);case 2:return a.call(g,h[0],h[1]);case 3:return a.call(g,h[0],h[1],h[2])}return a.apply(g,h)}function Lo(a,g,h,w){for(var S=-1,W=a==null?0:a.length;++S-1}function xr(a,g,h){for(var w=-1,S=a==null?0:a.length;++w-1;);return h}function au(a,g){for(var h=a.length;h--&&dt(g,a[h],0)>-1;);return h}function Fo(a,g){for(var h=a.length,w=0;h--;)a[h]===g&&++w;return w}var Mo=Sr(xo),Uo=Sr(Ao);function Do(a){return"\\"+Io[a]}function No(a,g){return a==null?o:a[g]}function wt(a){return _o.test(a)}function Go(a){return po.test(a)}function Ho(a){for(var g,h=[];!(g=a.next()).done;)h.push(g.value);return h}function yr(a){var g=-1,h=Array(a.size);return a.forEach(function(w,S){h[++g]=[S,w]}),h}function cu(a,g){return function(h){return a(g(h))}}function Zn(a,g){for(var h=-1,w=a.length,S=0,W=[];++h-1}function Cs(n,t){var e=this.__data__,r=ye(e,n);return r<0?(++this.size,e.push([n,t])):e[r][1]=t,this}Bn.prototype.clear=Es,Bn.prototype.delete=Ts,Bn.prototype.get=Ls,Bn.prototype.has=ys,Bn.prototype.set=Cs;function bn(n){var t=-1,e=n==null?0:n.length;for(this.clear();++t=t?n:t)),n}function pn(n,t,e,r,i,f){var l,s=t&qn,c=t&Ii,_=t&at;if(e&&(l=i?e(n,r,i,f):e(n)),l!==o)return l;if(!D(n))return n;var p=E(n);if(p){if(l=Pa(n),!s)return k(n,l)}else{var v=X(n),d=v==ue||v==Ti;if(kn(n))return Yu(n,s);if(v==Pn||v==_t||d&&!i){if(l=c||d?{}:gf(n),!s)return c?Ra(n,$s(l,n)):Aa(n,Su(l,n))}else{if(!F[v])return i?n:{};l=Ba(n,v,s)}}f||(f=new In);var x=f.get(n);if(x)return x;f.set(n,l),qf(n)?n.forEach(function(I){l.add(pn(I,t,e,I,n,f))}):Gf(n)&&n.forEach(function(I,C){l.set(C,pn(I,t,e,C,n,f))});var R=_?c?jr:kr:c?nn:$,L=p?o:R(n);return hn(L||n,function(I,C){L&&(C=I,I=n[C]),$t(l,C,pn(I,t,e,C,n,f))}),l}function zs(n){var t=$(n);return function(e){return Eu(e,n,t)}}function Eu(n,t,e){var r=e.length;if(n==null)return!r;for(n=b(n);r--;){var i=e[r],f=t[i],l=n[i];if(l===o&&!(i in n)||!f(l))return!1}return!0}function Tu(n,t,e){if(typeof n!="function")throw new gn(sn);return Vt(function(){n.apply(o,e)},t)}function zt(n,t,e,r){var i=-1,f=ae,l=!0,s=n.length,c=[],_=t.length;if(!s)return c;e&&(t=U(t,rn(e))),r?(f=xr,l=!1):t.length>=ke&&(f=Dt,l=!1,t=new it(t));n:for(;++ii?0:i+e),r=r===o||r>i?i:T(r),r<0&&(r+=i),r=e>r?0:$f(r);e0&&e(s)?t>1?Z(s,t-1,e,r,i):zn(i,s):r||(i[i.length]=s)}return i}var br=ju(),Cu=ju(!0);function Cn(n,t){return n&&br(n,t,$)}function Fr(n,t){return n&&Cu(n,t,$)}function me(n,t){return $n(t,function(e){return Nn(n[e])})}function ft(n,t){t=Qn(t,n);for(var e=0,r=t.length;n!=null&&et}function Xs(n,t){return n!=null&&B.call(n,t)}function Js(n,t){return n!=null&&t in b(n)}function Qs(n,t,e){return n>=Y(t,e)&&n=120&&p.length>=120)?new it(l&&p):o}p=n[0];var v=-1,d=s[0];n:for(;++v-1;)s!==n&&Ae.call(s,c,1),Ae.call(n,c,1);return n}function Nu(n,t){for(var e=n?t.length:0,r=e-1;e--;){var i=t[e];if(e==r||i!==f){var f=i;Dn(i)?Ae.call(n,i,1):zr(n,i)}}return n}function qr(n,t){return n+Se(xu()*(t-n+1))}function sa(n,t,e,r){for(var i=-1,f=K(Ie((t-n)/(e||1)),0),l=h(f);f--;)l[r?f:++i]=n,n+=e;return l}function Kr(n,t){var e="";if(!n||t<1||t>Kn)return e;do t%2&&(e+=n),t=Se(t/2),t&&(n+=n);while(t);return e}function y(n,t){return fi(vf(n,t,tn),n+"")}function aa(n){return Iu(mt(n))}function ca(n,t){var e=mt(n);return Ge(e,ut(t,0,e.length))}function Xt(n,t,e,r){if(!D(n))return n;t=Qn(t,n);for(var i=-1,f=t.length,l=f-1,s=n;s!=null&&++ii?0:i+t),e=e>i?i:e,e<0&&(e+=i),i=t>e?0:e-t>>>0,t>>>=0;for(var f=h(i);++r>>1,l=n[f];l!==null&&!fn(l)&&(e?l<=t:l=ke){var _=t?null:Ta(n);if(_)return he(_);l=!1,i=Dt,c=new it}else c=t?[]:s;n:for(;++r=r?n:vn(n,t,e)}var Zu=es||function(n){return z.clearTimeout(n)};function Yu(n,t){if(t)return n.slice();var e=n.length,r=_u?_u(e):new n.constructor(e);return n.copy(r),r}function Jr(n){var t=new n.constructor(n.byteLength);return new we(t).set(new we(n)),t}function va(n,t){var e=t?Jr(n.buffer):n.buffer;return new n.constructor(e,n.byteOffset,n.byteLength)}function da(n){var t=new n.constructor(n.source,Oi.exec(n));return t.lastIndex=n.lastIndex,t}function wa(n){return Kt?b(Kt.call(n)):{}}function Xu(n,t){var e=t?Jr(n.buffer):n.buffer;return new n.constructor(e,n.byteOffset,n.length)}function Ju(n,t){if(n!==t){var e=n!==o,r=n===null,i=n===n,f=fn(n),l=t!==o,s=t===null,c=t===t,_=fn(t);if(!s&&!_&&!f&&n>t||f&&l&&c&&!s&&!_||r&&l&&c||!e&&c||!i)return 1;if(!r&&!f&&!_&&n=s)return c;var _=e[r];return c*(_=="desc"?-1:1)}}return n.index-t.index}function Qu(n,t,e,r){for(var i=-1,f=n.length,l=e.length,s=-1,c=t.length,_=K(f-l,0),p=h(c+_),v=!r;++s1?e[i-1]:o,l=i>2?e[2]:o;for(f=n.length>3&&typeof f=="function"?(i--,f):o,l&&Q(e[0],e[1],l)&&(f=i<3?o:f,i=1),t=b(t);++r-1?i[f?t[l]:l]:o}}function ef(n){return Un(function(t){var e=t.length,r=e,i=_n.prototype.thru;for(n&&t.reverse();r--;){var f=t[r];if(typeof f!="function")throw new gn(sn);if(i&&!l&&De(f)=="wrapper")var l=new _n([],!0)}for(r=l?r:e;++r1&&O.reverse(),p&&cs))return!1;var _=f.get(n),p=f.get(t);if(_&&p)return _==t&&p==n;var v=-1,d=!0,x=e&te?new it:o;for(f.set(n,t),f.set(t,n);++v1?"& ":"")+t[r],t=t.join(e>2?", ":" "),n.replace(Fl,`{ + */Je.exports;(function(Qe,Ve){(function(){var o,rl="4.17.21",ke=200,il="Unsupported core-js use. Try https://npms.io/search?q=ponyfill.",sn="Expected a function",ul="Invalid `variable` option passed into `_.template`",je="__lodash_hash_undefined__",fl=500,ne="__lodash_placeholder__",qn=1,Ii=2,at=4,ct=1,te=2,an=1,jn=2,Si=4,Tn=8,ht=16,Ln=32,gt=64,Wn=128,Ot=256,nr=512,ll=30,ol="...",sl=800,al=16,Ei=1,cl=2,hl=3,nt=1/0,Kn=9007199254740991,gl=17976931348623157e292,ee=NaN,yn=4294967295,_l=yn-1,pl=yn>>>1,vl=[["ary",Wn],["bind",an],["bindKey",jn],["curry",Tn],["curryRight",ht],["flip",nr],["partial",Ln],["partialRight",gt],["rearg",Ot]],_t="[object Arguments]",re="[object Array]",dl="[object AsyncFunction]",Wt="[object Boolean]",Pt="[object Date]",wl="[object DOMException]",ie="[object Error]",ue="[object Function]",Ti="[object GeneratorFunction]",xn="[object Map]",Bt="[object Number]",xl="[object Null]",Pn="[object Object]",Li="[object Promise]",Al="[object Proxy]",bt="[object RegExp]",An="[object Set]",Ft="[object String]",fe="[object Symbol]",Rl="[object Undefined]",Mt="[object WeakMap]",Il="[object WeakSet]",Ut="[object ArrayBuffer]",pt="[object DataView]",tr="[object Float32Array]",er="[object Float64Array]",rr="[object Int8Array]",ir="[object Int16Array]",ur="[object Int32Array]",fr="[object Uint8Array]",lr="[object Uint8ClampedArray]",or="[object Uint16Array]",sr="[object Uint32Array]",Sl=/\b__p \+= '';/g,El=/\b(__p \+=) '' \+/g,Tl=/(__e\(.*?\)|\b__t\)) \+\n'';/g,yi=/&(?:amp|lt|gt|quot|#39);/g,Ci=/[&<>"']/g,Ll=RegExp(yi.source),yl=RegExp(Ci.source),Cl=/<%-([\s\S]+?)%>/g,ml=/<%([\s\S]+?)%>/g,mi=/<%=([\s\S]+?)%>/g,Ol=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Wl=/^\w*$/,Pl=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,ar=/[\\^$.*+?()[\]{}|]/g,Bl=RegExp(ar.source),cr=/^\s+/,bl=/\s/,Fl=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Ml=/\{\n\/\* \[wrapped with (.+)\] \*/,Ul=/,? & /,Dl=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,Nl=/[()=,{}\[\]\/\s]/,Gl=/\\(\\)?/g,Hl=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,Oi=/\w*$/,ql=/^[-+]0x[0-9a-f]+$/i,Kl=/^0b[01]+$/i,$l=/^\[object .+?Constructor\]$/,zl=/^0o[0-7]+$/i,Zl=/^(?:0|[1-9]\d*)$/,Yl=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,le=/($^)/,Xl=/['\n\r\u2028\u2029\\]/g,oe="\\ud800-\\udfff",Jl="\\u0300-\\u036f",Ql="\\ufe20-\\ufe2f",Vl="\\u20d0-\\u20ff",Wi=Jl+Ql+Vl,Pi="\\u2700-\\u27bf",Bi="a-z\\xdf-\\xf6\\xf8-\\xff",kl="\\xac\\xb1\\xd7\\xf7",jl="\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf",no="\\u2000-\\u206f",to=" \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",bi="A-Z\\xc0-\\xd6\\xd8-\\xde",Fi="\\ufe0e\\ufe0f",Mi=kl+jl+no+to,hr="['’]",eo="["+oe+"]",Ui="["+Mi+"]",se="["+Wi+"]",Di="\\d+",ro="["+Pi+"]",Ni="["+Bi+"]",Gi="[^"+oe+Mi+Di+Pi+Bi+bi+"]",gr="\\ud83c[\\udffb-\\udfff]",io="(?:"+se+"|"+gr+")",Hi="[^"+oe+"]",_r="(?:\\ud83c[\\udde6-\\uddff]){2}",pr="[\\ud800-\\udbff][\\udc00-\\udfff]",vt="["+bi+"]",qi="\\u200d",Ki="(?:"+Ni+"|"+Gi+")",uo="(?:"+vt+"|"+Gi+")",$i="(?:"+hr+"(?:d|ll|m|re|s|t|ve))?",zi="(?:"+hr+"(?:D|LL|M|RE|S|T|VE))?",Zi=io+"?",Yi="["+Fi+"]?",fo="(?:"+qi+"(?:"+[Hi,_r,pr].join("|")+")"+Yi+Zi+")*",lo="\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",oo="\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])",Xi=Yi+Zi+fo,so="(?:"+[ro,_r,pr].join("|")+")"+Xi,ao="(?:"+[Hi+se+"?",se,_r,pr,eo].join("|")+")",co=RegExp(hr,"g"),ho=RegExp(se,"g"),vr=RegExp(gr+"(?="+gr+")|"+ao+Xi,"g"),go=RegExp([vt+"?"+Ni+"+"+$i+"(?="+[Ui,vt,"$"].join("|")+")",uo+"+"+zi+"(?="+[Ui,vt+Ki,"$"].join("|")+")",vt+"?"+Ki+"+"+$i,vt+"+"+zi,oo,lo,Di,so].join("|"),"g"),_o=RegExp("["+qi+oe+Wi+Fi+"]"),po=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,vo=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],wo=-1,M={};M[tr]=M[er]=M[rr]=M[ir]=M[ur]=M[fr]=M[lr]=M[or]=M[sr]=!0,M[_t]=M[re]=M[Ut]=M[Wt]=M[pt]=M[Pt]=M[ie]=M[ue]=M[xn]=M[Bt]=M[Pn]=M[bt]=M[An]=M[Ft]=M[Mt]=!1;var F={};F[_t]=F[re]=F[Ut]=F[pt]=F[Wt]=F[Pt]=F[tr]=F[er]=F[rr]=F[ir]=F[ur]=F[xn]=F[Bt]=F[Pn]=F[bt]=F[An]=F[Ft]=F[fe]=F[fr]=F[lr]=F[or]=F[sr]=!0,F[ie]=F[ue]=F[Mt]=!1;var xo={À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"},Ao={"&":"&","<":"<",">":">",'"':""","'":"'"},Ro={"&":"&","<":"<",">":">",""":'"',"'":"'"},Io={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},So=parseFloat,Eo=parseInt,Ji=typeof jt=="object"&&jt&&jt.Object===Object&&jt,To=typeof self=="object"&&self&&self.Object===Object&&self,z=Ji||To||Function("return this")(),dr=Ve&&!Ve.nodeType&&Ve,tt=dr&&!0&&Qe&&!Qe.nodeType&&Qe,Qi=tt&&tt.exports===dr,wr=Qi&&Ji.process,cn=function(){try{var a=tt&&tt.require&&tt.require("util").types;return a||wr&&wr.binding&&wr.binding("util")}catch{}}(),Vi=cn&&cn.isArrayBuffer,ki=cn&&cn.isDate,ji=cn&&cn.isMap,nu=cn&&cn.isRegExp,tu=cn&&cn.isSet,eu=cn&&cn.isTypedArray;function en(a,g,h){switch(h.length){case 0:return a.call(g);case 1:return a.call(g,h[0]);case 2:return a.call(g,h[0],h[1]);case 3:return a.call(g,h[0],h[1],h[2])}return a.apply(g,h)}function Lo(a,g,h,w){for(var S=-1,W=a==null?0:a.length;++S-1}function xr(a,g,h){for(var w=-1,S=a==null?0:a.length;++w-1;);return h}function au(a,g){for(var h=a.length;h--&&dt(g,a[h],0)>-1;);return h}function Fo(a,g){for(var h=a.length,w=0;h--;)a[h]===g&&++w;return w}var Mo=Sr(xo),Uo=Sr(Ao);function Do(a){return"\\"+Io[a]}function No(a,g){return a==null?o:a[g]}function wt(a){return _o.test(a)}function Go(a){return po.test(a)}function Ho(a){for(var g,h=[];!(g=a.next()).done;)h.push(g.value);return h}function yr(a){var g=-1,h=Array(a.size);return a.forEach(function(w,S){h[++g]=[S,w]}),h}function cu(a,g){return function(h){return a(g(h))}}function Zn(a,g){for(var h=-1,w=a.length,S=0,W=[];++h-1}function Cs(n,t){var e=this.__data__,r=ye(e,n);return r<0?(++this.size,e.push([n,t])):e[r][1]=t,this}Bn.prototype.clear=Es,Bn.prototype.delete=Ts,Bn.prototype.get=Ls,Bn.prototype.has=ys,Bn.prototype.set=Cs;function bn(n){var t=-1,e=n==null?0:n.length;for(this.clear();++t=t?n:t)),n}function pn(n,t,e,r,i,f){var l,s=t&qn,c=t&Ii,_=t&at;if(e&&(l=i?e(n,r,i,f):e(n)),l!==o)return l;if(!D(n))return n;var p=E(n);if(p){if(l=Pa(n),!s)return k(n,l)}else{var v=X(n),d=v==ue||v==Ti;if(kn(n))return Yu(n,s);if(v==Pn||v==_t||d&&!i){if(l=c||d?{}:gf(n),!s)return c?Ra(n,$s(l,n)):Aa(n,Su(l,n))}else{if(!F[v])return i?n:{};l=Ba(n,v,s)}}f||(f=new In);var x=f.get(n);if(x)return x;f.set(n,l),qf(n)?n.forEach(function(I){l.add(pn(I,t,e,I,n,f))}):Gf(n)&&n.forEach(function(I,C){l.set(C,pn(I,t,e,C,n,f))});var R=_?c?jr:kr:c?nn:$,L=p?o:R(n);return hn(L||n,function(I,C){L&&(C=I,I=n[C]),$t(l,C,pn(I,t,e,C,n,f))}),l}function zs(n){var t=$(n);return function(e){return Eu(e,n,t)}}function Eu(n,t,e){var r=e.length;if(n==null)return!r;for(n=b(n);r--;){var i=e[r],f=t[i],l=n[i];if(l===o&&!(i in n)||!f(l))return!1}return!0}function Tu(n,t,e){if(typeof n!="function")throw new gn(sn);return Vt(function(){n.apply(o,e)},t)}function zt(n,t,e,r){var i=-1,f=ae,l=!0,s=n.length,c=[],_=t.length;if(!s)return c;e&&(t=U(t,rn(e))),r?(f=xr,l=!1):t.length>=ke&&(f=Dt,l=!1,t=new it(t));n:for(;++ii?0:i+e),r=r===o||r>i?i:T(r),r<0&&(r+=i),r=e>r?0:$f(r);e0&&e(s)?t>1?Z(s,t-1,e,r,i):zn(i,s):r||(i[i.length]=s)}return i}var br=ju(),Cu=ju(!0);function Cn(n,t){return n&&br(n,t,$)}function Fr(n,t){return n&&Cu(n,t,$)}function me(n,t){return $n(t,function(e){return Nn(n[e])})}function ft(n,t){t=Qn(t,n);for(var e=0,r=t.length;n!=null&&et}function Xs(n,t){return n!=null&&B.call(n,t)}function Js(n,t){return n!=null&&t in b(n)}function Qs(n,t,e){return n>=Y(t,e)&&n=120&&p.length>=120)?new it(l&&p):o}p=n[0];var v=-1,d=s[0];n:for(;++v-1;)s!==n&&Ae.call(s,c,1),Ae.call(n,c,1);return n}function Nu(n,t){for(var e=n?t.length:0,r=e-1;e--;){var i=t[e];if(e==r||i!==f){var f=i;Dn(i)?Ae.call(n,i,1):zr(n,i)}}return n}function qr(n,t){return n+Se(xu()*(t-n+1))}function sa(n,t,e,r){for(var i=-1,f=K(Ie((t-n)/(e||1)),0),l=h(f);f--;)l[r?f:++i]=n,n+=e;return l}function Kr(n,t){var e="";if(!n||t<1||t>Kn)return e;do t%2&&(e+=n),t=Se(t/2),t&&(n+=n);while(t);return e}function y(n,t){return fi(vf(n,t,tn),n+"")}function aa(n){return Iu(mt(n))}function ca(n,t){var e=mt(n);return Ge(e,ut(t,0,e.length))}function Xt(n,t,e,r){if(!D(n))return n;t=Qn(t,n);for(var i=-1,f=t.length,l=f-1,s=n;s!=null&&++ii?0:i+t),e=e>i?i:e,e<0&&(e+=i),i=t>e?0:e-t>>>0,t>>>=0;for(var f=h(i);++r>>1,l=n[f];l!==null&&!fn(l)&&(e?l<=t:l=ke){var _=t?null:Ta(n);if(_)return he(_);l=!1,i=Dt,c=new it}else c=t?[]:s;n:for(;++r=r?n:vn(n,t,e)}var Zu=es||function(n){return z.clearTimeout(n)};function Yu(n,t){if(t)return n.slice();var e=n.length,r=_u?_u(e):new n.constructor(e);return n.copy(r),r}function Jr(n){var t=new n.constructor(n.byteLength);return new we(t).set(new we(n)),t}function va(n,t){var e=t?Jr(n.buffer):n.buffer;return new n.constructor(e,n.byteOffset,n.byteLength)}function da(n){var t=new n.constructor(n.source,Oi.exec(n));return t.lastIndex=n.lastIndex,t}function wa(n){return Kt?b(Kt.call(n)):{}}function Xu(n,t){var e=t?Jr(n.buffer):n.buffer;return new n.constructor(e,n.byteOffset,n.length)}function Ju(n,t){if(n!==t){var e=n!==o,r=n===null,i=n===n,f=fn(n),l=t!==o,s=t===null,c=t===t,_=fn(t);if(!s&&!_&&!f&&n>t||f&&l&&c&&!s&&!_||r&&l&&c||!e&&c||!i)return 1;if(!r&&!f&&!_&&n=s)return c;var _=e[r];return c*(_=="desc"?-1:1)}}return n.index-t.index}function Qu(n,t,e,r){for(var i=-1,f=n.length,l=e.length,s=-1,c=t.length,_=K(f-l,0),p=h(c+_),v=!r;++s1?e[i-1]:o,l=i>2?e[2]:o;for(f=n.length>3&&typeof f=="function"?(i--,f):o,l&&Q(e[0],e[1],l)&&(f=i<3?o:f,i=1),t=b(t);++r-1?i[f?t[l]:l]:o}}function ef(n){return Un(function(t){var e=t.length,r=e,i=_n.prototype.thru;for(n&&t.reverse();r--;){var f=t[r];if(typeof f!="function")throw new gn(sn);if(i&&!l&&De(f)=="wrapper")var l=new _n([],!0)}for(r=l?r:e;++r1&&O.reverse(),p&&cs))return!1;var _=f.get(n),p=f.get(t);if(_&&p)return _==t&&p==n;var v=-1,d=!0,x=e&te?new it:o;for(f.set(n,t),f.set(t,n);++v1?"& ":"")+t[r],t=t.join(e>2?", ":" "),n.replace(Fl,`{ /* [wrapped with `+t+`] */ `)}function Fa(n){return E(n)||st(n)||!!(du&&n&&n[du])}function Dn(n,t){var e=typeof n;return t=t??Kn,!!t&&(e=="number"||e!="symbol"&&Zl.test(n))&&n>-1&&n%1==0&&n0){if(++t>=sl)return arguments[0]}else t=0;return n.apply(o,arguments)}}function Ge(n,t){var e=-1,r=n.length,i=r-1;for(t=t===o?r:t;++e1?n[t-1]:o;return e=typeof e=="function"?(n.pop(),e):o,Cf(n,e)});function mf(n){var t=u(n);return t.__chain__=!0,t}function Zc(n,t){return t(n),n}function He(n,t){return t(n)}var Yc=Un(function(n){var t=n.length,e=t?n[0]:0,r=this.__wrapped__,i=function(f){return Br(f,n)};return t>1||this.__actions__.length||!(r instanceof m)||!Dn(e)?this.thru(i):(r=r.slice(e,+e+(t?1:0)),r.__actions__.push({func:He,args:[i],thisArg:o}),new _n(r,this.__chain__).thru(function(f){return t&&!f.length&&f.push(o),f}))});function Xc(){return mf(this)}function Jc(){return new _n(this.value(),this.__chain__)}function Qc(){this.__values__===o&&(this.__values__=Kf(this.value()));var n=this.__index__>=this.__values__.length,t=n?o:this.__values__[this.__index__++];return{done:n,value:t}}function Vc(){return this}function kc(n){for(var t,e=this;e instanceof Le;){var r=If(e);r.__index__=0,r.__values__=o,t?i.__wrapped__=r:t=r;var i=r;e=e.__wrapped__}return i.__wrapped__=n,t}function jc(){var n=this.__wrapped__;if(n instanceof m){var t=n;return this.__actions__.length&&(t=new m(this)),t=t.reverse(),t.__actions__.push({func:He,args:[li],thisArg:o}),new _n(t,this.__chain__)}return this.thru(li)}function nh(){return $u(this.__wrapped__,this.__actions__)}var th=Be(function(n,t,e){B.call(n,e)?++n[e]:Fn(n,e,1)});function eh(n,t,e){var r=E(n)?ru:Zs;return e&&Q(n,t,e)&&(t=o),r(n,A(t,3))}function rh(n,t){var e=E(n)?$n:yu;return e(n,A(t,3))}var ih=tf(Sf),uh=tf(Ef);function fh(n,t){return Z(qe(n,t),1)}function lh(n,t){return Z(qe(n,t),nt)}function oh(n,t,e){return e=e===o?1:T(e),Z(qe(n,t),e)}function Of(n,t){var e=E(n)?hn:Xn;return e(n,A(t,3))}function Wf(n,t){var e=E(n)?yo:Lu;return e(n,A(t,3))}var sh=Be(function(n,t,e){B.call(n,e)?n[e].push(t):Fn(n,e,[t])});function ah(n,t,e,r){n=j(n)?n:mt(n),e=e&&!r?T(e):0;var i=n.length;return e<0&&(e=K(i+e,0)),Ye(n)?e<=i&&n.indexOf(t,e)>-1:!!i&&dt(n,t,e)>-1}var ch=y(function(n,t,e){var r=-1,i=typeof t=="function",f=j(n)?h(n.length):[];return Xn(n,function(l){f[++r]=i?en(t,l,e):Zt(l,t,e)}),f}),hh=Be(function(n,t,e){Fn(n,e,t)});function qe(n,t){var e=E(n)?U:Bu;return e(n,A(t,3))}function gh(n,t,e,r){return n==null?[]:(E(t)||(t=t==null?[]:[t]),e=r?o:e,E(e)||(e=e==null?[]:[e]),Uu(n,t,e))}var _h=Be(function(n,t,e){n[e?0:1].push(t)},function(){return[[],[]]});function ph(n,t,e){var r=E(n)?Ar:lu,i=arguments.length<3;return r(n,A(t,4),e,i,Xn)}function vh(n,t,e){var r=E(n)?Co:lu,i=arguments.length<3;return r(n,A(t,4),e,i,Lu)}function dh(n,t){var e=E(n)?$n:yu;return e(n,ze(A(t,3)))}function wh(n){var t=E(n)?Iu:aa;return t(n)}function xh(n,t,e){(e?Q(n,t,e):t===o)?t=1:t=T(t);var r=E(n)?Hs:ca;return r(n,t)}function Ah(n){var t=E(n)?qs:ga;return t(n)}function Rh(n){if(n==null)return 0;if(j(n))return Ye(n)?xt(n):n.length;var t=X(n);return t==xn||t==An?n.size:Nr(n).length}function Ih(n,t,e){var r=E(n)?Rr:_a;return e&&Q(n,t,e)&&(t=o),r(n,A(t,3))}var Sh=y(function(n,t){if(n==null)return[];var e=t.length;return e>1&&Q(n,t[0],t[1])?t=[]:e>2&&Q(t[0],t[1],t[2])&&(t=[t[0]]),Uu(n,Z(t,1),[])}),Ke=rs||function(){return z.Date.now()};function Eh(n,t){if(typeof t!="function")throw new gn(sn);return n=T(n),function(){if(--n<1)return t.apply(this,arguments)}}function Pf(n,t,e){return t=e?o:t,t=n&&t==null?n.length:t,Mn(n,Wn,o,o,o,o,t)}function Bf(n,t){var e;if(typeof t!="function")throw new gn(sn);return n=T(n),function(){return--n>0&&(e=t.apply(this,arguments)),n<=1&&(t=o),e}}var si=y(function(n,t,e){var r=an;if(e.length){var i=Zn(e,yt(si));r|=Ln}return Mn(n,r,t,e,i)}),bf=y(function(n,t,e){var r=an|jn;if(e.length){var i=Zn(e,yt(bf));r|=Ln}return Mn(t,r,n,e,i)});function Ff(n,t,e){t=e?o:t;var r=Mn(n,Tn,o,o,o,o,o,t);return r.placeholder=Ff.placeholder,r}function Mf(n,t,e){t=e?o:t;var r=Mn(n,ht,o,o,o,o,o,t);return r.placeholder=Mf.placeholder,r}function Uf(n,t,e){var r,i,f,l,s,c,_=0,p=!1,v=!1,d=!0;if(typeof n!="function")throw new gn(sn);t=wn(t)||0,D(e)&&(p=!!e.leading,v="maxWait"in e,f=v?K(wn(e.maxWait)||0,t):f,d="trailing"in e?!!e.trailing:d);function x(H){var En=r,Hn=i;return r=i=o,_=H,l=n.apply(Hn,En),l}function R(H){return _=H,s=Vt(C,t),p?x(H):l}function L(H){var En=H-c,Hn=H-_,el=t-En;return v?Y(el,f-Hn):el}function I(H){var En=H-c,Hn=H-_;return c===o||En>=t||En<0||v&&Hn>=f}function C(){var H=Ke();if(I(H))return O(H);s=Vt(C,L(H))}function O(H){return s=o,d&&r?x(H):(r=i=o,l)}function ln(){s!==o&&Zu(s),_=0,r=c=i=s=o}function V(){return s===o?l:O(Ke())}function on(){var H=Ke(),En=I(H);if(r=arguments,i=this,c=H,En){if(s===o)return R(c);if(v)return Zu(s),s=Vt(C,t),x(c)}return s===o&&(s=Vt(C,t)),l}return on.cancel=ln,on.flush=V,on}var Th=y(function(n,t){return Tu(n,1,t)}),Lh=y(function(n,t,e){return Tu(n,wn(t)||0,e)});function yh(n){return Mn(n,nr)}function $e(n,t){if(typeof n!="function"||t!=null&&typeof t!="function")throw new gn(sn);var e=function(){var r=arguments,i=t?t.apply(this,r):r[0],f=e.cache;if(f.has(i))return f.get(i);var l=n.apply(this,r);return e.cache=f.set(i,l)||f,l};return e.cache=new($e.Cache||bn),e}$e.Cache=bn;function ze(n){if(typeof n!="function")throw new gn(sn);return function(){var t=arguments;switch(t.length){case 0:return!n.call(this);case 1:return!n.call(this,t[0]);case 2:return!n.call(this,t[0],t[1]);case 3:return!n.call(this,t[0],t[1],t[2])}return!n.apply(this,t)}}function Ch(n){return Bf(2,n)}var mh=pa(function(n,t){t=t.length==1&&E(t[0])?U(t[0],rn(A())):U(Z(t,1),rn(A()));var e=t.length;return y(function(r){for(var i=-1,f=Y(r.length,e);++i=t}),st=Ou(function(){return arguments}())?Ou:function(n){return N(n)&&B.call(n,"callee")&&!vu.call(n,"callee")},E=h.isArray,$h=Vi?rn(Vi):ks;function j(n){return n!=null&&Ze(n.length)&&!Nn(n)}function G(n){return N(n)&&j(n)}function zh(n){return n===!0||n===!1||N(n)&&J(n)==Wt}var kn=us||Ri,Zh=ki?rn(ki):js;function Yh(n){return N(n)&&n.nodeType===1&&!kt(n)}function Xh(n){if(n==null)return!0;if(j(n)&&(E(n)||typeof n=="string"||typeof n.splice=="function"||kn(n)||Ct(n)||st(n)))return!n.length;var t=X(n);if(t==xn||t==An)return!n.size;if(Qt(n))return!Nr(n).length;for(var e in n)if(B.call(n,e))return!1;return!0}function Jh(n,t){return Yt(n,t)}function Qh(n,t,e){e=typeof e=="function"?e:o;var r=e?e(n,t):o;return r===o?Yt(n,t,o,e):!!r}function ci(n){if(!N(n))return!1;var t=J(n);return t==ie||t==wl||typeof n.message=="string"&&typeof n.name=="string"&&!kt(n)}function Vh(n){return typeof n=="number"&&wu(n)}function Nn(n){if(!D(n))return!1;var t=J(n);return t==ue||t==Ti||t==dl||t==Al}function Nf(n){return typeof n=="number"&&n==T(n)}function Ze(n){return typeof n=="number"&&n>-1&&n%1==0&&n<=Kn}function D(n){var t=typeof n;return n!=null&&(t=="object"||t=="function")}function N(n){return n!=null&&typeof n=="object"}var Gf=ji?rn(ji):ta;function kh(n,t){return n===t||Dr(n,t,ti(t))}function jh(n,t,e){return e=typeof e=="function"?e:o,Dr(n,t,ti(t),e)}function ng(n){return Hf(n)&&n!=+n}function tg(n){if(Da(n))throw new S(il);return Wu(n)}function eg(n){return n===null}function rg(n){return n==null}function Hf(n){return typeof n=="number"||N(n)&&J(n)==Bt}function kt(n){if(!N(n)||J(n)!=Pn)return!1;var t=xe(n);if(t===null)return!0;var e=B.call(t,"constructor")&&t.constructor;return typeof e=="function"&&e instanceof e&&pe.call(e)==jo}var hi=nu?rn(nu):ea;function ig(n){return Nf(n)&&n>=-Kn&&n<=Kn}var qf=tu?rn(tu):ra;function Ye(n){return typeof n=="string"||!E(n)&&N(n)&&J(n)==Ft}function fn(n){return typeof n=="symbol"||N(n)&&J(n)==fe}var Ct=eu?rn(eu):ia;function ug(n){return n===o}function fg(n){return N(n)&&X(n)==Mt}function lg(n){return N(n)&&J(n)==Il}var og=Ue(Gr),sg=Ue(function(n,t){return n<=t});function Kf(n){if(!n)return[];if(j(n))return Ye(n)?Rn(n):k(n);if(Nt&&n[Nt])return Ho(n[Nt]());var t=X(n),e=t==xn?yr:t==An?he:mt;return e(n)}function Gn(n){if(!n)return n===0?n:0;if(n=wn(n),n===nt||n===-nt){var t=n<0?-1:1;return t*gl}return n===n?n:0}function T(n){var t=Gn(n),e=t%1;return t===t?e?t-e:t:0}function $f(n){return n?ut(T(n),0,yn):0}function wn(n){if(typeof n=="number")return n;if(fn(n))return ee;if(D(n)){var t=typeof n.valueOf=="function"?n.valueOf():n;n=D(t)?t+"":t}if(typeof n!="string")return n===0?n:+n;n=ou(n);var e=Kl.test(n);return e||zl.test(n)?Eo(n.slice(2),e?2:8):ql.test(n)?ee:+n}function zf(n){return mn(n,nn(n))}function ag(n){return n?ut(T(n),-Kn,Kn):n===0?n:0}function P(n){return n==null?"":un(n)}var cg=Tt(function(n,t){if(Qt(t)||j(t)){mn(t,$(t),n);return}for(var e in t)B.call(t,e)&&$t(n,e,t[e])}),Zf=Tt(function(n,t){mn(t,nn(t),n)}),Xe=Tt(function(n,t,e,r){mn(t,nn(t),n,r)}),hg=Tt(function(n,t,e,r){mn(t,$(t),n,r)}),gg=Un(Br);function _g(n,t){var e=Et(n);return t==null?e:Su(e,t)}var pg=y(function(n,t){n=b(n);var e=-1,r=t.length,i=r>2?t[2]:o;for(i&&Q(t[0],t[1],i)&&(r=1);++e1),f}),mn(n,jr(n),e),r&&(e=pn(e,qn|Ii|at,La));for(var i=t.length;i--;)zr(e,t[i]);return e});function Bg(n,t){return Xf(n,ze(A(t)))}var bg=Un(function(n,t){return n==null?{}:la(n,t)});function Xf(n,t){if(n==null)return{};var e=U(jr(n),function(r){return[r]});return t=A(t),Du(n,e,function(r,i){return t(r,i[0])})}function Fg(n,t,e){t=Qn(t,n);var r=-1,i=t.length;for(i||(i=1,n=o);++rt){var r=n;n=t,t=r}if(e||n%1||t%1){var i=xu();return Y(n+i*(t-n+So("1e-"+((i+"").length-1))),t)}return qr(n,t)}var Zg=Lt(function(n,t,e){return t=t.toLowerCase(),n+(e?Vf(t):t)});function Vf(n){return pi(P(n).toLowerCase())}function kf(n){return n=P(n),n&&n.replace(Yl,Mo).replace(ho,"")}function Yg(n,t,e){n=P(n),t=un(t);var r=n.length;e=e===o?r:ut(T(e),0,r);var i=e;return e-=t.length,e>=0&&n.slice(e,i)==t}function Xg(n){return n=P(n),n&&yl.test(n)?n.replace(Ci,Uo):n}function Jg(n){return n=P(n),n&&Bl.test(n)?n.replace(ar,"\\$&"):n}var Qg=Lt(function(n,t,e){return n+(e?"-":"")+t.toLowerCase()}),Vg=Lt(function(n,t,e){return n+(e?" ":"")+t.toLowerCase()}),kg=nf("toLowerCase");function jg(n,t,e){n=P(n),t=T(t);var r=t?xt(n):0;if(!t||r>=t)return n;var i=(t-r)/2;return Me(Se(i),e)+n+Me(Ie(i),e)}function n_(n,t,e){n=P(n),t=T(t);var r=t?xt(n):0;return t&&r>>0,e?(n=P(n),n&&(typeof t=="string"||t!=null&&!hi(t))&&(t=un(t),!t&&wt(n))?Vn(Rn(n),0,e):n.split(t,e)):[]}var l_=Lt(function(n,t,e){return n+(e?" ":"")+pi(t)});function o_(n,t,e){return n=P(n),e=e==null?0:ut(T(e),0,n.length),t=un(t),n.slice(e,e+t.length)==t}function s_(n,t,e){var r=u.templateSettings;e&&Q(n,t,e)&&(t=o),n=P(n),t=Xe({},t,r,of);var i=Xe({},t.imports,r.imports,of),f=$(i),l=Lr(i,f),s,c,_=0,p=t.interpolate||le,v="__p += '",d=Cr((t.escape||le).source+"|"+p.source+"|"+(p===mi?Hl:le).source+"|"+(t.evaluate||le).source+"|$","g"),x="//# sourceURL="+(B.call(t,"sourceURL")?(t.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++wo+"]")+` `;n.replace(d,function(I,C,O,ln,V,on){return O||(O=ln),v+=n.slice(_,on).replace(Xl,Do),C&&(s=!0,v+=`' + diff --git a/web/dist/assets/lodash-es-8412e618.js b/web/dist/assets/lodash-es-8412e618.js deleted file mode 100644 index a975ff70..00000000 --- a/web/dist/assets/lodash-es-8412e618.js +++ /dev/null @@ -1 +0,0 @@ -var Ke=typeof global=="object"&&global&&global.Object===Object&&global;const ue=Ke;var Je=typeof self=="object"&&self&&self.Object===Object&&self,Xe=ue||Je||Function("return this")();const $=Xe;var Ye=$.Symbol;const C=Ye;var oe=Object.prototype,qe=oe.hasOwnProperty,Qe=oe.toString,H=C?C.toStringTag:void 0;function Ve(r){var e=qe.call(r,H),n=r[H];try{r[H]=void 0;var t=!0}catch{}var a=Qe.call(r);return t&&(e?r[H]=n:delete r[H]),a}var ke=Object.prototype,rn=ke.toString;function en(r){return rn.call(r)}var nn="[object Null]",tn="[object Undefined]",Sr=C?C.toStringTag:void 0;function M(r){return r==null?r===void 0?tn:nn:Sr&&Sr in Object(r)?Ve(r):en(r)}function E(r){return r!=null&&typeof r=="object"}var an="[object Symbol]";function rr(r){return typeof r=="symbol"||E(r)&&M(r)==an}function fe(r,e){for(var n=-1,t=r==null?0:r.length,a=Array(t);++n0){if(++e>=Hn)return arguments[0]}else e=0;return r.apply(void 0,arguments)}}function Zn(r){return function(){return r}}var Kn=function(){try{var r=U(Object,"defineProperty");return r({},"",{}),r}catch{}}();const Y=Kn;var Jn=Y?function(r,e){return Y(r,"toString",{configurable:!0,enumerable:!1,value:Zn(e),writable:!0})}:vr;const Xn=Jn;var Yn=Wn(Xn);const qn=Yn;var Qn=9007199254740991,Vn=/^(?:0|[1-9]\d*)$/;function yr(r,e){var n=typeof r;return e=e??Qn,!!e&&(n=="number"||n!="symbol"&&Vn.test(r))&&r>-1&&r%1==0&&r-1&&r%1==0&&r<=it}function j(r){return r!=null&&_r(r.length)&&!br(r)}function ut(r,e,n){if(!_(n))return!1;var t=typeof e;return(t=="number"?j(n)&&yr(e,n.length):t=="string"&&e in n)?Z(n[e],r):!1}function ot(r){return at(function(e,n){var t=-1,a=n.length,i=a>1?n[a-1]:void 0,o=a>2?n[2]:void 0;for(i=r.length>3&&typeof i=="function"?(a--,i):void 0,o&&ut(n[0],n[1],o)&&(i=a<3?void 0:i,a=1),e=Object(e);++t-1}function ma(r,e){var n=this.__data__,t=er(n,r);return t<0?(++this.size,n.push([r,e])):n[t][1]=e,this}function A(r){var e=-1,n=r==null?0:r.length;for(this.clear();++ea?0:a+e),n=n>a?a:n,n<0&&(n+=a),a=e>n?0:n-e>>>0,e>>>=0;for(var i=Array(a);++t=t?r:Ya(r,e,n)}var Qa="\\ud800-\\udfff",Va="\\u0300-\\u036f",ka="\\ufe20-\\ufe2f",ri="\\u20d0-\\u20ff",ei=Va+ka+ri,ni="\\ufe0e\\ufe0f",ti="\\u200d",ai=RegExp("["+ti+Qa+ei+ni+"]");function _e(r){return ai.test(r)}function ii(r){return r.split("")}var $e="\\ud800-\\udfff",ui="\\u0300-\\u036f",oi="\\ufe20-\\ufe2f",fi="\\u20d0-\\u20ff",si=ui+oi+fi,ci="\\ufe0e\\ufe0f",di="["+$e+"]",sr="["+si+"]",cr="\\ud83c[\\udffb-\\udfff]",li="(?:"+sr+"|"+cr+")",Te="[^"+$e+"]",Oe="(?:\\ud83c[\\udde6-\\uddff]){2}",me="[\\ud800-\\udbff][\\udc00-\\udfff]",pi="\\u200d",Ae=li+"?",we="["+ci+"]?",gi="(?:"+pi+"(?:"+[Te,Oe,me].join("|")+")"+we+Ae+")*",hi=we+Ae+gi,vi="(?:"+[Te+sr+"?",sr,Oe,me,di].join("|")+")",bi=RegExp(cr+"(?="+cr+")|"+vi+hi,"g");function yi(r){return r.match(bi)||[]}function xi(r){return _e(r)?yi(r):ii(r)}function _i(r){return function(e){e=F(e);var n=_e(e)?xi(e):void 0,t=n?n[0]:e.charAt(0),a=n?qa(n,1).join(""):e.slice(1);return t[r]()+a}}var $i=_i("toUpperCase");const rf=$i;function Ti(r,e,n,t){var a=-1,i=r==null?0:r.length;for(t&&i&&(n=r[++a]);++au))return!1;var s=i.get(r),c=i.get(e);if(s&&c)return s==e&&c==r;var l=-1,d=!0,h=n&Yu?new k:void 0;for(i.set(r,e),i.set(e,r);++l=e||S<0||l&&G>=i}function y(){var g=or();if(T(g))return O(g);u=setTimeout(y,b(g))}function O(g){return u=void 0,d&&t?h(g):(t=a=void 0,o)}function K(){u!==void 0&&clearTimeout(u),s=0,t=f=a=u=void 0}function N(){return u===void 0?o:O(or())}function P(){var g=or(),S=T(g);if(t=arguments,a=this,f=g,S){if(u===void 0)return v(f);if(l)return clearTimeout(u),u=setTimeout(y,e),h(f)}return u===void 0&&(u=setTimeout(y,e)),o}return P.cancel=K,P.flush=N,P}function gr(r,e,n){(n!==void 0&&!Z(r[e],n)||n===void 0&&!(e in r))&&xr(r,e,n)}function Ko(r){return E(r)&&j(r)}function hr(r,e){if(!(e==="constructor"&&typeof r[e]=="function")&&e!="__proto__")return r[e]}function Jo(r){return nt(r,he(r))}function Xo(r,e,n,t,a,i,o){var u=hr(r,n),f=hr(e,n),s=o.get(f);if(s){gr(r,n,s);return}var c=i?i(u,f,n+"",r,e,o):void 0,l=c===void 0;if(l){var d=x(f),h=!d&&Q(f),v=!d&&!h&&Tr(f);c=f,d||h||v?x(u)?c=u:Ko(u)?c=Gn(u):h?(l=!1,c=Tu(f,!0)):v?(l=!1,c=Hu(f,!0)):c=[]:Xa(f)||q(f)?(c=u,q(u)?c=Jo(u):(!_(u)||br(u))&&(c=zu(f))):l=!1}l&&(o.set(f,c),a(c,f,t,i,o),o.delete(f)),gr(r,n,c)}function Ze(r,e,n,t,a){r!==e&&We(e,function(i,o){if(a||(a=new m),_(i))Xo(r,e,o,n,Ze,t,a);else{var u=t?t(hr(r,o),i,o+"",r,e,a):void 0;u===void 0&&(u=i),gr(r,o,u)}},he)}function Yo(r,e){var n=-1,t=j(r)?Array(r.length):[];return Go(r,function(a,i,o){t[++n]=e(a,i,o)}),t}function ef(r,e){var n=x(r)?fe:Yo;return n(r,Lo(e))}var qo=du(function(r,e,n){return r+(n?"-":"")+e.toLowerCase()});const nf=qo;var Qo=ot(function(r,e,n){Ze(r,e,n)});const tf=Qo;var Vo=gu("round");const af=Vo;var ko="Expected a function";function uf(r,e,n){var t=!0,a=!0;if(typeof r!="function")throw new TypeError(ko);return _(n)&&(t="leading"in n?!!n.leading:t,a="trailing"in n?!!n.trailing:a),Zo(r,e,{leading:t,maxWait:e,trailing:a})}export{ef as a,Ga as g,nf as k,tf as m,af as r,uf as t,rf as u}; diff --git a/web/dist/assets/lodash-es-i05dkx59.js b/web/dist/assets/lodash-es-i05dkx59.js new file mode 100644 index 00000000..c43e4650 --- /dev/null +++ b/web/dist/assets/lodash-es-i05dkx59.js @@ -0,0 +1 @@ +var ie=typeof global=="object"&&global&&global.Object===Object&&global,Ke=typeof self=="object"&&self&&self.Object===Object&&self,O=ie||Ke||Function("return this")(),E=O.Symbol,fe=Object.prototype,Je=fe.hasOwnProperty,Xe=fe.toString,H=E?E.toStringTag:void 0;function Ye(r){var e=Je.call(r,H),n=r[H];try{r[H]=void 0;var t=!0}catch{}var a=Xe.call(r);return t&&(e?r[H]=n:delete r[H]),a}var qe=Object.prototype,Qe=qe.toString;function Ve(r){return Qe.call(r)}var ke="[object Null]",rn="[object Undefined]",Pr=E?E.toStringTag:void 0;function M(r){return r==null?r===void 0?rn:ke:Pr&&Pr in Object(r)?Ye(r):Ve(r)}function C(r){return r!=null&&typeof r=="object"}var en="[object Symbol]";function rr(r){return typeof r=="symbol"||C(r)&&M(r)==en}function oe(r,e){for(var n=-1,t=r==null?0:r.length,a=Array(t);++n0){if(++e>=Ln)return arguments[0]}else e=0;return r.apply(void 0,arguments)}}function Fn(r){return function(){return r}}var Y=function(){try{var r=U(Object,"defineProperty");return r({},"",{}),r}catch{}}(),jn=Y?function(r,e){return Y(r,"toString",{configurable:!0,enumerable:!1,value:Fn(e),writable:!0})}:vr;const Gn=jn;var Hn=Dn(Gn),zn=9007199254740991,Bn=/^(?:0|[1-9]\d*)$/;function xr(r,e){var n=typeof r;return e=e??zn,!!e&&(n=="number"||n!="symbol"&&Bn.test(r))&&r>-1&&r%1==0&&r-1&&r%1==0&&r<=qn}function j(r){return r!=null&&_r(r.length)&&!br(r)}function Qn(r,e,n){if(!_(n))return!1;var t=typeof e;return(t=="number"?j(n)&&xr(e,n.length):t=="string"&&e in n)?Z(n[e],r):!1}function Vn(r){return Yn(function(e,n){var t=-1,a=n.length,u=a>1?n[a-1]:void 0,f=a>2?n[2]:void 0;for(u=r.length>3&&typeof u=="function"?(a--,u):void 0,f&&Qn(n[0],n[1],f)&&(u=a<3?void 0:u,a=1),e=Object(e);++t-1}function sa(r,e){var n=this.__data__,t=er(n,r);return t<0?(++this.size,n.push([r,e])):n[t][1]=e,this}function $(r){var e=-1,n=r==null?0:r.length;for(this.clear();++ea?0:a+e),n=n>a?a:n,n<0&&(n+=a),a=e>n?0:n-e>>>0,e>>>=0;for(var u=Array(a);++t=t?r:Ra(r,e,n)}var Ma="\\ud800-\\udfff",La="\\u0300-\\u036f",Ua="\\ufe20-\\ufe2f",Na="\\u20d0-\\u20ff",Da=La+Ua+Na,Fa="\\ufe0e\\ufe0f",ja="\\u200d",Ga=RegExp("["+ja+Ma+Da+Fa+"]");function _e(r){return Ga.test(r)}function Ha(r){return r.split("")}var Oe="\\ud800-\\udfff",za="\\u0300-\\u036f",Ba="\\ufe20-\\ufe2f",Wa="\\u20d0-\\u20ff",Za=za+Ba+Wa,Ka="\\ufe0e\\ufe0f",Ja="["+Oe+"]",sr="["+Za+"]",cr="\\ud83c[\\udffb-\\udfff]",Xa="(?:"+sr+"|"+cr+")",Te="[^"+Oe+"]",me="(?:\\ud83c[\\udde6-\\uddff]){2}",Ae="[\\ud800-\\udbff][\\udc00-\\udfff]",Ya="\\u200d",$e=Xa+"?",we="["+Ka+"]?",qa="(?:"+Ya+"(?:"+[Te,me,Ae].join("|")+")"+we+$e+")*",Qa=we+$e+qa,Va="(?:"+[Te+sr+"?",sr,me,Ae,Ja].join("|")+")",ka=RegExp(cr+"(?="+cr+")|"+Va+Qa,"g");function ru(r){return r.match(ka)||[]}function eu(r){return _e(r)?ru(r):Ha(r)}function nu(r){return function(e){e=F(e);var n=_e(e)?eu(e):void 0,t=n?n[0]:e.charAt(0),a=n?Ia(n,1).join(""):e.slice(1);return t[r]()+a}}var wf=nu("toUpperCase");function tu(r,e,n,t){var a=-1,u=r==null?0:r.length;for(t&&u&&(n=r[++a]);++ai))return!1;var s=u.get(r),c=u.get(e);if(s&&c)return s==e&&c==r;var l=-1,d=!0,h=n&Si?new k:void 0;for(u.set(r,e),u.set(e,r);++l=e||P<0||l&&G>=u}function x(){var g=fr();if(T(g))return m(g);i=setTimeout(x,b(g))}function m(g){return i=void 0,d&&t?h(g):(t=a=void 0,f)}function K(){i!==void 0&&clearTimeout(i),s=0,t=o=a=i=void 0}function N(){return i===void 0?f:m(fr())}function S(){var g=fr(),P=T(g);if(t=arguments,a=this,o=g,P){if(i===void 0)return v(o);if(l)return clearTimeout(i),i=setTimeout(x,e),h(o)}return i===void 0&&(i=setTimeout(x,e)),f}return S.cancel=K,S.flush=N,S}function gr(r,e,n){(n!==void 0&&!Z(r[e],n)||n===void 0&&!(e in r))&&yr(r,e,n)}function Of(r){return C(r)&&j(r)}function hr(r,e){if(!(e==="constructor"&&typeof r[e]=="function")&&e!="__proto__")return r[e]}function Tf(r){return Jn(r,he(r))}function mf(r,e,n,t,a,u,f){var i=hr(r,n),o=hr(e,n),s=f.get(o);if(s){gr(r,n,s);return}var c=u?u(i,o,n+"",r,e,f):void 0,l=c===void 0;if(l){var d=y(o),h=!d&&Q(o),v=!d&&!h&&Tr(o);c=o,d||h||v?y(i)?c=i:Of(i)?c=Mn(i):h?(l=!1,c=ti(o,!0)):v?(l=!1,c=yi(o,!0)):c=[]:Ca(o)||q(o)?(c=i,q(i)?c=Tf(i):(!_(i)||br(i))&&(c=_i(o))):l=!1}l&&(f.set(o,c),a(c,o,t,u,f),f.delete(o)),gr(r,n,c)}function Ze(r,e,n,t,a){r!==e&&We(e,function(u,f){if(a||(a=new A),_(u))mf(r,e,f,n,Ze,t,a);else{var i=t?t(hr(r,f),u,f+"",r,e,a):void 0;i===void 0&&(i=u),gr(r,f,i)}},he)}function Af(r,e){var n=-1,t=j(r)?Array(r.length):[];return vf(r,function(a,u,f){t[++n]=e(a,u,f)}),t}function Sf(r,e){var n=y(r)?oe:Af;return n(r,lf(e))}var Pf=Ku(function(r,e,n){return r+(n?"-":"")+e.toLowerCase()}),Ef=Vn(function(r,e,n){Ze(r,e,n)}),Cf=Yu("round"),$f="Expected a function";function Rf(r,e,n){var t=!0,a=!0;if(typeof r!="function")throw new TypeError($f);return _(n)&&(t="leading"in n?!!n.leading:t,a="trailing"in n?!!n.trailing:a),_f(r,e,{leading:t,maxWait:e,trailing:a})}export{Sf as a,ma as g,Pf as k,Ef as m,Cf as r,Rf as t,wf as u}; diff --git a/web/dist/assets/logo-52afee68.png b/web/dist/assets/logo-wT_OfKx5.png similarity index 100% rename from web/dist/assets/logo-52afee68.png rename to web/dist/assets/logo-wT_OfKx5.png diff --git a/web/dist/assets/main-nav-569a7b0c.css b/web/dist/assets/main-nav-J3fW308k.css similarity index 100% rename from web/dist/assets/main-nav-569a7b0c.css rename to web/dist/assets/main-nav-J3fW308k.css diff --git a/web/dist/assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js b/web/dist/assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js deleted file mode 100644 index 77e5fedf..00000000 --- a/web/dist/assets/main-nav.vue_vue_type_style_index_0_lang-0ad26703.js +++ /dev/null @@ -1 +0,0 @@ -import{ab as A}from"./index-1e276b8f.js";import{u as B}from"./vuex-44de225f.js";import{u as E}from"./vue-router-e5a2430e.js";import{j as z}from"./vooks-6d99783e.js";import{a3 as C,a4 as N,a5 as P,a6 as D}from"./@vicons-f0266f88.js";import{u as R,a3 as x,a4 as H,j as I,e as V,a5 as $,h as j}from"./naive-ui-eecf2ec3.js";import{d as q,H as h,b as F,e as n,f,bf as a,k as e,w as t,Y as c,j as L,q as _,A as U,x as Y,F as G}from"./@vue-a481fc63.js";const J={key:0},K={class:"navbar"},ae=q({__name:"main-nav",props:{title:{default:""},back:{type:Boolean,default:!1},theme:{type:Boolean,default:!0}},setup(w){const i=w,o=B(),m=E(),l=h(!1),g=h("left"),u=s=>{s?(localStorage.setItem("PAOPAO_THEME","dark"),o.commit("triggerTheme","dark")):(localStorage.setItem("PAOPAO_THEME","light"),o.commit("triggerTheme","light"))},k=()=>{window.history.length<=1?m.push({path:"/"}):m.go(-1)},v=()=>{l.value=!0};return F(()=>{localStorage.getItem("PAOPAO_THEME")||u(z()==="dark"),o.state.desktopModelShow||(window.$store=o,window.$message=R())}),(s,d)=>{const b=A,y=x,M=H,r=I,p=V,O=$,S=j;return n(),f(G,null,[a(o).state.drawerModelShow?(n(),f("div",J,[e(M,{show:l.value,"onUpdate:show":d[0]||(d[0]=T=>l.value=T),width:212,placement:g.value,resizable:""},{default:t(()=>[e(y,null,{default:t(()=>[e(b)]),_:1})]),_:1},8,["show","placement"])])):c("",!0),e(S,{size:"small",bordered:!0,class:"nav-title-card"},{header:t(()=>[L("div",K,[a(o).state.drawerModelShow&&!s.back?(n(),_(p,{key:0,class:"drawer-btn",onClick:v,quaternary:"",circle:"",size:"medium"},{icon:t(()=>[e(r,null,{default:t(()=>[e(a(C))]),_:1})]),_:1})):c("",!0),s.back?(n(),_(p,{key:1,class:"back-btn",onClick:k,quaternary:"",circle:"",size:"small"},{icon:t(()=>[e(r,null,{default:t(()=>[e(a(N))]),_:1})]),_:1})):c("",!0),U(" "+Y(i.title)+" ",1),i.theme?(n(),_(O,{key:2,value:a(o).state.theme==="dark","onUpdate:value":u,size:"small",class:"theme-switch-wrap"},{"checked-icon":t(()=>[e(r,{component:a(P)},null,8,["component"])]),"unchecked-icon":t(()=>[e(r,{component:a(D)},null,8,["component"])]),_:1},8,["value"])):c("",!0)])]),_:1})],64)}}});export{ae as _}; diff --git a/web/dist/assets/main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js b/web/dist/assets/main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js new file mode 100644 index 00000000..a050f7c9 --- /dev/null +++ b/web/dist/assets/main-nav.vue_vue_type_style_index_0_lang-DmAlkpQJ.js @@ -0,0 +1 @@ +import{ac as A}from"./index-v3l9hw1O.js";import{u as B}from"./vuex-DNAxYlmG.js";import{u as E}from"./vue-router-zwGLnBy5.js";import{j as z}from"./vooks-BQzJqMzq.js";import{a3 as C,a4 as P,a5 as D,a6 as N}from"./@vicons-C3A8jsfr.js";import{u as R,a3 as H,a4 as I,j as V,e as $,a5 as j,h as q}from"./naive-ui-DNcWoFGl.js";import{d as x,H as h,b as F,e as n,f,bk as a,k as e,w as t,Z as c,j as L,q as i,A as U,x as Z,F as G}from"./@vue-CQsYufSu.js";const J={key:0},K={class:"navbar"},ae=x({__name:"main-nav",props:{title:{default:""},back:{type:Boolean,default:!1},theme:{type:Boolean,default:!0}},setup(w){const o=B(),m=E(),l=h(!1),k=h("left"),u=w,_=s=>{s?(localStorage.setItem("PAOPAO_THEME","dark"),o.commit("triggerTheme","dark")):(localStorage.setItem("PAOPAO_THEME","light"),o.commit("triggerTheme","light"))},g=()=>{window.history.length<=1?m.push({path:"/"}):m.go(-1)},v=()=>{l.value=!0};return F(()=>{localStorage.getItem("PAOPAO_THEME")||_(z()==="dark"),o.state.desktopModelShow||(window.$store=o,window.$message=R())}),(s,d)=>{const b=A,y=H,M=I,r=V,p=$,O=j,S=q;return n(),f(G,null,[a(o).state.drawerModelShow?(n(),f("div",J,[e(M,{show:l.value,"onUpdate:show":d[0]||(d[0]=T=>l.value=T),width:212,placement:k.value,resizable:""},{default:t(()=>[e(y,null,{default:t(()=>[e(b)]),_:1})]),_:1},8,["show","placement"])])):c("",!0),e(S,{size:"small",bordered:!0,class:"nav-title-card"},{header:t(()=>[L("div",K,[a(o).state.drawerModelShow&&!s.back?(n(),i(p,{key:0,class:"drawer-btn",onClick:v,quaternary:"",circle:"",size:"medium"},{icon:t(()=>[e(r,null,{default:t(()=>[e(a(C))]),_:1})]),_:1})):c("",!0),s.back?(n(),i(p,{key:1,class:"back-btn",onClick:g,quaternary:"",circle:"",size:"small"},{icon:t(()=>[e(r,null,{default:t(()=>[e(a(P))]),_:1})]),_:1})):c("",!0),U(" "+Z(u.title)+" ",1),u.theme?(n(),i(O,{key:2,value:a(o).state.theme==="dark","onUpdate:value":_,size:"small",class:"theme-switch-wrap"},{"checked-icon":t(()=>[e(r,{component:a(D)},null,8,["component"])]),"unchecked-icon":t(()=>[e(r,{component:a(N)},null,8,["component"])]),_:1},8,["value"])):c("",!0)])]),_:1})],64)}}});export{ae as _}; diff --git a/web/dist/assets/moment-2ab8298d.js b/web/dist/assets/moment-2ab8298d.js deleted file mode 100644 index 96ae27c3..00000000 --- a/web/dist/assets/moment-2ab8298d.js +++ /dev/null @@ -1,15 +0,0 @@ -//! moment.js -//! version : 2.29.4 -//! authors : Tim Wood, Iskren Chernev, Moment.js contributors -//! license : MIT -//! momentjs.com -var Wt;function l(){return Wt.apply(null,arguments)}function Ds(e){Wt=e}function I(e){return e instanceof Array||Object.prototype.toString.call(e)==="[object Array]"}function ae(e){return e!=null&&Object.prototype.toString.call(e)==="[object Object]"}function y(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function nt(e){if(Object.getOwnPropertyNames)return Object.getOwnPropertyNames(e).length===0;var t;for(t in e)if(y(e,t))return!1;return!0}function b(e){return e===void 0}function q(e){return typeof e=="number"||Object.prototype.toString.call(e)==="[object Number]"}function De(e){return e instanceof Date||Object.prototype.toString.call(e)==="[object Date]"}function Pt(e,t){var s=[],r,a=e.length;for(r=0;r>>0,r;for(r=0;r0)for(s=0;s=0;return(n?s?"+":"":"-")+Math.pow(10,Math.max(0,a)).toString().substr(1)+r}var ut=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,pe=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,qe={},ue={};function h(e,t,s,r){var a=r;typeof r=="string"&&(a=function(){return this[r]()}),e&&(ue[e]=a),t&&(ue[t[0]]=function(){return E(a.apply(this,arguments),t[1],t[2])}),s&&(ue[s]=function(){return this.localeData().ordinal(a.apply(this,arguments),e)})}function Os(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function Ts(e){var t=e.match(ut),s,r;for(s=0,r=t.length;s=0&&pe.test(e);)e=e.replace(pe,r),pe.lastIndex=0,s-=1;return e}var xs={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};function bs(e){var t=this._longDateFormat[e],s=this._longDateFormat[e.toUpperCase()];return t||!s?t:(this._longDateFormat[e]=s.match(ut).map(function(r){return r==="MMMM"||r==="MM"||r==="DD"||r==="dddd"?r.slice(1):r}).join(""),this._longDateFormat[e])}var Ws="Invalid date";function Ps(){return this._invalidDate}var Ns="%d",Rs=/\d{1,2}/;function Fs(e){return this._ordinal.replace("%d",e)}var Ls={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function Is(e,t,s,r){var a=this._relativeTime[s];return V(a)?a(e,t,s,r):a.replace(/%d/i,e)}function Cs(e,t){var s=this._relativeTime[e>0?"future":"past"];return V(s)?s(t):s.replace(/%s/i,t)}var ye={};function O(e,t){var s=e.toLowerCase();ye[s]=ye[s+"s"]=ye[t]=e}function F(e){return typeof e=="string"?ye[e]||ye[e.toLowerCase()]:void 0}function dt(e){var t={},s,r;for(r in e)y(e,r)&&(s=F(r),s&&(t[s]=e[r]));return t}var Lt={};function T(e,t){Lt[e]=t}function Us(e){var t=[],s;for(s in e)y(e,s)&&t.push({unit:s,priority:Lt[s]});return t.sort(function(r,a){return r.priority-a.priority}),t}function Ce(e){return e%4===0&&e%100!==0||e%400===0}function N(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function _(e){var t=+e,s=0;return t!==0&&isFinite(t)&&(s=N(t)),s}function fe(e,t){return function(s){return s!=null?(It(this,e,s),l.updateOffset(this,t),this):We(this,e)}}function We(e,t){return e.isValid()?e._d["get"+(e._isUTC?"UTC":"")+t]():NaN}function It(e,t,s){e.isValid()&&!isNaN(s)&&(t==="FullYear"&&Ce(e.year())&&e.month()===1&&e.date()===29?(s=_(s),e._d["set"+(e._isUTC?"UTC":"")+t](s,e.month(),Ge(s,e.month()))):e._d["set"+(e._isUTC?"UTC":"")+t](s))}function Hs(e){return e=F(e),V(this[e])?this[e]():this}function Es(e,t){if(typeof e=="object"){e=dt(e);var s=Us(e),r,a=s.length;for(r=0;r68?1900:2e3)};var Zt=fe("FullYear",!0);function nr(){return Ce(this.year())}function ir(e,t,s,r,a,n,i){var d;return e<100&&e>=0?(d=new Date(e+400,t,s,r,a,n,i),isFinite(d.getFullYear())&&d.setFullYear(e)):d=new Date(e,t,s,r,a,n,i),d}function ke(e){var t,s;return e<100&&e>=0?(s=Array.prototype.slice.call(arguments),s[0]=e+400,t=new Date(Date.UTC.apply(null,s)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function Ne(e,t,s){var r=7+t-s,a=(7+ke(e,0,r).getUTCDay()-t)%7;return-a+r-1}function $t(e,t,s,r,a){var n=(7+s-r)%7,i=Ne(e,r,a),d=1+7*(t-1)+n+i,c,k;return d<=0?(c=e-1,k=we(c)+d):d>we(e)?(c=e+1,k=d-we(e)):(c=e,k=d),{year:c,dayOfYear:k}}function Me(e,t,s){var r=Ne(e.year(),t,s),a=Math.floor((e.dayOfYear()-r-1)/7)+1,n,i;return a<1?(i=e.year()-1,n=a+B(i,t,s)):a>B(e.year(),t,s)?(n=a-B(e.year(),t,s),i=e.year()+1):(i=e.year(),n=a),{week:n,year:i}}function B(e,t,s){var r=Ne(e,t,s),a=Ne(e+1,t,s);return(we(e)-r+a)/7}h("w",["ww",2],"wo","week");h("W",["WW",2],"Wo","isoWeek");O("week","w");O("isoWeek","W");T("week",5);T("isoWeek",5);u("w",D);u("ww",D,P);u("W",D);u("WW",D,P);ve(["w","ww","W","WW"],function(e,t,s,r){t[r.substr(0,1)]=_(e)});function or(e){return Me(e,this._week.dow,this._week.doy).week}var lr={dow:0,doy:6};function ur(){return this._week.dow}function dr(){return this._week.doy}function hr(e){var t=this.localeData().week(this);return e==null?t:this.add((e-t)*7,"d")}function fr(e){var t=Me(this,1,4).week;return e==null?t:this.add((e-t)*7,"d")}h("d",0,"do","day");h("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)});h("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)});h("dddd",0,0,function(e){return this.localeData().weekdays(this,e)});h("e",0,0,"weekday");h("E",0,0,"isoWeekday");O("day","d");O("weekday","e");O("isoWeekday","E");T("day",11);T("weekday",11);T("isoWeekday",11);u("d",D);u("e",D);u("E",D);u("dd",function(e,t){return t.weekdaysMinRegex(e)});u("ddd",function(e,t){return t.weekdaysShortRegex(e)});u("dddd",function(e,t){return t.weekdaysRegex(e)});ve(["dd","ddd","dddd"],function(e,t,s,r){var a=s._locale.weekdaysParse(e,r,s._strict);a!=null?t.d=a:f(s).invalidWeekday=e});ve(["d","e","E"],function(e,t,s,r){t[r]=_(e)});function cr(e,t){return typeof e!="string"?e:isNaN(e)?(e=t.weekdaysParse(e),typeof e=="number"?e:null):parseInt(e,10)}function _r(e,t){return typeof e=="string"?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function ct(e,t){return e.slice(t,7).concat(e.slice(0,t))}var mr="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Bt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),yr="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),wr=ge,kr=ge,Mr=ge;function Sr(e,t){var s=I(this._weekdays)?this._weekdays:this._weekdays[e&&e!==!0&&this._weekdays.isFormat.test(t)?"format":"standalone"];return e===!0?ct(s,this._week.dow):e?s[e.day()]:s}function Dr(e){return e===!0?ct(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function Yr(e){return e===!0?ct(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function gr(e,t,s){var r,a,n,i=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)n=A([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(n,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(n,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(n,"").toLocaleLowerCase();return s?t==="dddd"?(a=g.call(this._weekdaysParse,i),a!==-1?a:null):t==="ddd"?(a=g.call(this._shortWeekdaysParse,i),a!==-1?a:null):(a=g.call(this._minWeekdaysParse,i),a!==-1?a:null):t==="dddd"?(a=g.call(this._weekdaysParse,i),a!==-1||(a=g.call(this._shortWeekdaysParse,i),a!==-1)?a:(a=g.call(this._minWeekdaysParse,i),a!==-1?a:null)):t==="ddd"?(a=g.call(this._shortWeekdaysParse,i),a!==-1||(a=g.call(this._weekdaysParse,i),a!==-1)?a:(a=g.call(this._minWeekdaysParse,i),a!==-1?a:null)):(a=g.call(this._minWeekdaysParse,i),a!==-1||(a=g.call(this._weekdaysParse,i),a!==-1)?a:(a=g.call(this._shortWeekdaysParse,i),a!==-1?a:null))}function vr(e,t,s){var r,a,n;if(this._weekdaysParseExact)return gr.call(this,e,t,s);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(a=A([2e3,1]).day(r),s&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(a,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(a,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(a,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(n="^"+this.weekdays(a,"")+"|^"+this.weekdaysShort(a,"")+"|^"+this.weekdaysMin(a,""),this._weekdaysParse[r]=new RegExp(n.replace(".",""),"i")),s&&t==="dddd"&&this._fullWeekdaysParse[r].test(e))return r;if(s&&t==="ddd"&&this._shortWeekdaysParse[r].test(e))return r;if(s&&t==="dd"&&this._minWeekdaysParse[r].test(e))return r;if(!s&&this._weekdaysParse[r].test(e))return r}}function pr(e){if(!this.isValid())return e!=null?this:NaN;var t=this._isUTC?this._d.getUTCDay():this._d.getDay();return e!=null?(e=cr(e,this.localeData()),this.add(e-t,"d")):t}function Or(e){if(!this.isValid())return e!=null?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return e==null?t:this.add(e-t,"d")}function Tr(e){if(!this.isValid())return e!=null?this:NaN;if(e!=null){var t=_r(e,this.localeData());return this.day(this.day()%7?t:t-7)}else return this.day()||7}function xr(e){return this._weekdaysParseExact?(y(this,"_weekdaysRegex")||_t.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(y(this,"_weekdaysRegex")||(this._weekdaysRegex=wr),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function br(e){return this._weekdaysParseExact?(y(this,"_weekdaysRegex")||_t.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(y(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=kr),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Wr(e){return this._weekdaysParseExact?(y(this,"_weekdaysRegex")||_t.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(y(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Mr),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function _t(){function e(x,G){return G.length-x.length}var t=[],s=[],r=[],a=[],n,i,d,c,k;for(n=0;n<7;n++)i=A([2e3,1]).day(n),d=W(this.weekdaysMin(i,"")),c=W(this.weekdaysShort(i,"")),k=W(this.weekdays(i,"")),t.push(d),s.push(c),r.push(k),a.push(d),a.push(c),a.push(k);t.sort(e),s.sort(e),r.sort(e),a.sort(e),this._weekdaysRegex=new RegExp("^("+a.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+r.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+t.join("|")+")","i")}function mt(){return this.hours()%12||12}function Pr(){return this.hours()||24}h("H",["HH",2],0,"hour");h("h",["hh",2],0,mt);h("k",["kk",2],0,Pr);h("hmm",0,0,function(){return""+mt.apply(this)+E(this.minutes(),2)});h("hmmss",0,0,function(){return""+mt.apply(this)+E(this.minutes(),2)+E(this.seconds(),2)});h("Hmm",0,0,function(){return""+this.hours()+E(this.minutes(),2)});h("Hmmss",0,0,function(){return""+this.hours()+E(this.minutes(),2)+E(this.seconds(),2)});function qt(e,t){h(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}qt("a",!0);qt("A",!1);O("hour","h");T("hour",13);function Jt(e,t){return t._meridiemParse}u("a",Jt);u("A",Jt);u("H",D);u("h",D);u("k",D);u("HH",D,P);u("hh",D,P);u("kk",D,P);u("hmm",Ht);u("hmmss",Et);u("Hmm",Ht);u("Hmmss",Et);M(["H","HH"],v);M(["k","kk"],function(e,t,s){var r=_(e);t[v]=r===24?0:r});M(["a","A"],function(e,t,s){s._isPm=s._locale.isPM(e),s._meridiem=e});M(["h","hh"],function(e,t,s){t[v]=_(e),f(s).bigHour=!0});M("hmm",function(e,t,s){var r=e.length-2;t[v]=_(e.substr(0,r)),t[L]=_(e.substr(r)),f(s).bigHour=!0});M("hmmss",function(e,t,s){var r=e.length-4,a=e.length-2;t[v]=_(e.substr(0,r)),t[L]=_(e.substr(r,2)),t[$]=_(e.substr(a)),f(s).bigHour=!0});M("Hmm",function(e,t,s){var r=e.length-2;t[v]=_(e.substr(0,r)),t[L]=_(e.substr(r))});M("Hmmss",function(e,t,s){var r=e.length-4,a=e.length-2;t[v]=_(e.substr(0,r)),t[L]=_(e.substr(r,2)),t[$]=_(e.substr(a))});function Nr(e){return(e+"").toLowerCase().charAt(0)==="p"}var Rr=/[ap]\.?m?\.?/i,Fr=fe("Hours",!0);function Lr(e,t,s){return e>11?s?"pm":"PM":s?"am":"AM"}var Qt={calendar:vs,longDateFormat:xs,invalidDate:Ws,ordinal:Ns,dayOfMonthOrdinalParse:Rs,relativeTime:Ls,months:qs,monthsShort:At,week:lr,weekdays:mr,weekdaysMin:yr,weekdaysShort:Bt,meridiemParse:Rr},Y={},_e={},Se;function Ir(e,t){var s,r=Math.min(e.length,t.length);for(s=0;s0;){if(a=je(n.slice(0,s).join("-")),a)return a;if(r&&r.length>=s&&Ir(n,r)>=s-1)break;s--}t++}return Se}function Ur(e){return e.match("^[^/\\\\]*$")!=null}function je(e){var t=null,s;if(Y[e]===void 0&&typeof module<"u"&&module&&module.exports&&Ur(e))try{t=Se._abbr,s=require,s("./locale/"+e),te(t)}catch{Y[e]=null}return Y[e]}function te(e,t){var s;return e&&(b(t)?s=J(e):s=yt(e,t),s?Se=s:typeof console<"u"&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),Se._abbr}function yt(e,t){if(t!==null){var s,r=Qt;if(t.abbr=e,Y[e]!=null)Rt("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),r=Y[e]._config;else if(t.parentLocale!=null)if(Y[t.parentLocale]!=null)r=Y[t.parentLocale]._config;else if(s=je(t.parentLocale),s!=null)r=s._config;else return _e[t.parentLocale]||(_e[t.parentLocale]=[]),_e[t.parentLocale].push({name:e,config:t}),null;return Y[e]=new lt(Ke(r,t)),_e[e]&&_e[e].forEach(function(a){yt(a.name,a.config)}),te(e),Y[e]}else return delete Y[e],null}function Hr(e,t){if(t!=null){var s,r,a=Qt;Y[e]!=null&&Y[e].parentLocale!=null?Y[e].set(Ke(Y[e]._config,t)):(r=je(e),r!=null&&(a=r._config),t=Ke(a,t),r==null&&(t.abbr=e),s=new lt(t),s.parentLocale=Y[e],Y[e]=s),te(e)}else Y[e]!=null&&(Y[e].parentLocale!=null?(Y[e]=Y[e].parentLocale,e===te()&&te(e)):Y[e]!=null&&delete Y[e]);return Y[e]}function J(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Se;if(!I(e)){if(t=je(e),t)return t;e=[e]}return Cr(e)}function Er(){return et(Y)}function wt(e){var t,s=e._a;return s&&f(e).overflow===-2&&(t=s[Z]<0||s[Z]>11?Z:s[H]<1||s[H]>Ge(s[p],s[Z])?H:s[v]<0||s[v]>24||s[v]===24&&(s[L]!==0||s[$]!==0||s[re]!==0)?v:s[L]<0||s[L]>59?L:s[$]<0||s[$]>59?$:s[re]<0||s[re]>999?re:-1,f(e)._overflowDayOfYear&&(tH)&&(t=H),f(e)._overflowWeeks&&t===-1&&(t=Zs),f(e)._overflowWeekday&&t===-1&&(t=$s),f(e).overflow=t),e}var Ar=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Vr=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Gr=/Z|[+-]\d\d(?::?\d\d)?/,Oe=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],Je=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],jr=/^\/?Date\((-?\d+)/i,zr=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,Zr={UT:0,GMT:0,EDT:-4*60,EST:-5*60,CDT:-5*60,CST:-6*60,MDT:-6*60,MST:-7*60,PDT:-7*60,PST:-8*60};function Xt(e){var t,s,r=e._i,a=Ar.exec(r)||Vr.exec(r),n,i,d,c,k=Oe.length,x=Je.length;if(a){for(f(e).iso=!0,t=0,s=k;twe(i)||e._dayOfYear===0)&&(f(e)._overflowDayOfYear=!0),s=ke(i,0,e._dayOfYear),e._a[Z]=s.getUTCMonth(),e._a[H]=s.getUTCDate()),t=0;t<3&&e._a[t]==null;++t)e._a[t]=r[t]=a[t];for(;t<7;t++)e._a[t]=r[t]=e._a[t]==null?t===2?1:0:e._a[t];e._a[v]===24&&e._a[L]===0&&e._a[$]===0&&e._a[re]===0&&(e._nextDay=!0,e._a[v]=0),e._d=(e._useUTC?ke:ir).apply(null,r),n=e._useUTC?e._d.getUTCDay():e._d.getDay(),e._tzm!=null&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[v]=24),e._w&&typeof e._w.d<"u"&&e._w.d!==n&&(f(e).weekdayMismatch=!0)}}function ea(e){var t,s,r,a,n,i,d,c,k;t=e._w,t.GG!=null||t.W!=null||t.E!=null?(n=1,i=4,s=oe(t.GG,e._a[p],Me(S(),1,4).year),r=oe(t.W,1),a=oe(t.E,1),(a<1||a>7)&&(c=!0)):(n=e._locale._week.dow,i=e._locale._week.doy,k=Me(S(),n,i),s=oe(t.gg,e._a[p],k.year),r=oe(t.w,k.week),t.d!=null?(a=t.d,(a<0||a>6)&&(c=!0)):t.e!=null?(a=t.e+n,(t.e<0||t.e>6)&&(c=!0)):a=n),r<1||r>B(s,n,i)?f(e)._overflowWeeks=!0:c!=null?f(e)._overflowWeekday=!0:(d=$t(s,r,a,n,i),e._a[p]=d.year,e._dayOfYear=d.dayOfYear)}l.ISO_8601=function(){};l.RFC_2822=function(){};function Mt(e){if(e._f===l.ISO_8601){Xt(e);return}if(e._f===l.RFC_2822){Kt(e);return}e._a=[],f(e).empty=!0;var t=""+e._i,s,r,a,n,i,d=t.length,c=0,k,x;for(a=Ft(e._f,e._locale).match(ut)||[],x=a.length,s=0;s0&&f(e).unusedInput.push(i),t=t.slice(t.indexOf(r)+r.length),c+=r.length),ue[n]?(r?f(e).empty=!1:f(e).unusedTokens.push(n),zs(n,r,e)):e._strict&&!r&&f(e).unusedTokens.push(n);f(e).charsLeftOver=d-c,t.length>0&&f(e).unusedInput.push(t),e._a[v]<=12&&f(e).bigHour===!0&&e._a[v]>0&&(f(e).bigHour=void 0),f(e).parsedDateParts=e._a.slice(0),f(e).meridiem=e._meridiem,e._a[v]=ta(e._locale,e._a[v],e._meridiem),k=f(e).era,k!==null&&(e._a[p]=e._locale.erasConvertYear(k,e._a[p])),kt(e),wt(e)}function ta(e,t,s){var r;return s==null?t:e.meridiemHour!=null?e.meridiemHour(t,s):(e.isPM!=null&&(r=e.isPM(s),r&&t<12&&(t+=12),!r&&t===12&&(t=0)),t)}function sa(e){var t,s,r,a,n,i,d=!1,c=e._f.length;if(c===0){f(e).invalidFormat=!0,e._d=new Date(NaN);return}for(a=0;athis?this:e:Ie()});function ss(e,t){var s,r;if(t.length===1&&I(t[0])&&(t=t[0]),!t.length)return S();for(s=t[0],r=1;rthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function ga(){if(!b(this._isDSTShifted))return this._isDSTShifted;var e={},t;return ot(e,this),e=es(e),e._a?(t=e._isUTC?A(e._a):S(e._a),this._isDSTShifted=this.isValid()&&_a(e._a,t.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function va(){return this.isValid()?!this._isUTC:!1}function pa(){return this.isValid()?this._isUTC:!1}function as(){return this.isValid()?this._isUTC&&this._offset===0:!1}var Oa=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,Ta=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function U(e,t){var s=e,r=null,a,n,i;return xe(e)?s={ms:e._milliseconds,d:e._days,M:e._months}:q(e)||!isNaN(+e)?(s={},t?s[t]=+e:s.milliseconds=+e):(r=Oa.exec(e))?(a=r[1]==="-"?-1:1,s={y:0,d:_(r[H])*a,h:_(r[v])*a,m:_(r[L])*a,s:_(r[$])*a,ms:_(st(r[re]*1e3))*a}):(r=Ta.exec(e))?(a=r[1]==="-"?-1:1,s={y:se(r[2],a),M:se(r[3],a),w:se(r[4],a),d:se(r[5],a),h:se(r[6],a),m:se(r[7],a),s:se(r[8],a)}):s==null?s={}:typeof s=="object"&&("from"in s||"to"in s)&&(i=xa(S(s.from),S(s.to)),s={},s.ms=i.milliseconds,s.M=i.months),n=new ze(s),xe(e)&&y(e,"_locale")&&(n._locale=e._locale),xe(e)&&y(e,"_isValid")&&(n._isValid=e._isValid),n}U.fn=ze.prototype;U.invalid=ca;function se(e,t){var s=e&&parseFloat(e.replace(",","."));return(isNaN(s)?0:s)*t}function xt(e,t){var s={};return s.months=t.month()-e.month()+(t.year()-e.year())*12,e.clone().add(s.months,"M").isAfter(t)&&--s.months,s.milliseconds=+t-+e.clone().add(s.months,"M"),s}function xa(e,t){var s;return e.isValid()&&t.isValid()?(t=Dt(t,e),e.isBefore(t)?s=xt(e,t):(s=xt(t,e),s.milliseconds=-s.milliseconds,s.months=-s.months),s):{milliseconds:0,months:0}}function ns(e,t){return function(s,r){var a,n;return r!==null&&!isNaN(+r)&&(Rt(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),n=s,s=r,r=n),a=U(s,r),is(this,a,e),this}}function is(e,t,s,r){var a=t._milliseconds,n=st(t._days),i=st(t._months);e.isValid()&&(r=r??!0,i&&Gt(e,We(e,"Month")+i*s),n&&It(e,"Date",We(e,"Date")+n*s),a&&e._d.setTime(e._d.valueOf()+a*s),r&&l.updateOffset(e,n||i))}var ba=ns(1,"add"),Wa=ns(-1,"subtract");function os(e){return typeof e=="string"||e instanceof String}function Pa(e){return C(e)||De(e)||os(e)||q(e)||Ra(e)||Na(e)||e===null||e===void 0}function Na(e){var t=ae(e)&&!nt(e),s=!1,r=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"],a,n,i=r.length;for(a=0;as.valueOf():s.valueOf()9999?Te(s,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):V(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+this.utcOffset()*60*1e3).toISOString().replace("Z",Te(s,"Z")):Te(s,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function $a(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e="moment",t="",s,r,a,n;return this.isLocal()||(e=this.utcOffset()===0?"moment.utc":"moment.parseZone",t="Z"),s="["+e+'("]',r=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",a="-MM-DD[T]HH:mm:ss.SSS",n=t+'[")]',this.format(s+r+a+n)}function Ba(e){e||(e=this.isUtc()?l.defaultFormatUtc:l.defaultFormat);var t=Te(this,e);return this.localeData().postformat(t)}function qa(e,t){return this.isValid()&&(C(e)&&e.isValid()||S(e).isValid())?U({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function Ja(e){return this.from(S(),e)}function Qa(e,t){return this.isValid()&&(C(e)&&e.isValid()||S(e).isValid())?U({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function Xa(e){return this.to(S(),e)}function ls(e){var t;return e===void 0?this._locale._abbr:(t=J(e),t!=null&&(this._locale=t),this)}var us=R("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return e===void 0?this.localeData():this.locale(e)});function ds(){return this._locale}var Re=1e3,de=60*Re,Fe=60*de,hs=(365*400+97)*24*Fe;function he(e,t){return(e%t+t)%t}function fs(e,t,s){return e<100&&e>=0?new Date(e+400,t,s)-hs:new Date(e,t,s).valueOf()}function cs(e,t,s){return e<100&&e>=0?Date.UTC(e+400,t,s)-hs:Date.UTC(e,t,s)}function Ka(e){var t,s;if(e=F(e),e===void 0||e==="millisecond"||!this.isValid())return this;switch(s=this._isUTC?cs:fs,e){case"year":t=s(this.year(),0,1);break;case"quarter":t=s(this.year(),this.month()-this.month()%3,1);break;case"month":t=s(this.year(),this.month(),1);break;case"week":t=s(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=s(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=s(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=he(t+(this._isUTC?0:this.utcOffset()*de),Fe);break;case"minute":t=this._d.valueOf(),t-=he(t,de);break;case"second":t=this._d.valueOf(),t-=he(t,Re);break}return this._d.setTime(t),l.updateOffset(this,!0),this}function en(e){var t,s;if(e=F(e),e===void 0||e==="millisecond"||!this.isValid())return this;switch(s=this._isUTC?cs:fs,e){case"year":t=s(this.year()+1,0,1)-1;break;case"quarter":t=s(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=s(this.year(),this.month()+1,1)-1;break;case"week":t=s(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=s(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=s(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=Fe-he(t+(this._isUTC?0:this.utcOffset()*de),Fe)-1;break;case"minute":t=this._d.valueOf(),t+=de-he(t,de)-1;break;case"second":t=this._d.valueOf(),t+=Re-he(t,Re)-1;break}return this._d.setTime(t),l.updateOffset(this,!0),this}function tn(){return this._d.valueOf()-(this._offset||0)*6e4}function sn(){return Math.floor(this.valueOf()/1e3)}function rn(){return new Date(this.valueOf())}function an(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function nn(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function on(){return this.isValid()?this.toISOString():null}function ln(){return it(this)}function un(){return K({},f(this))}function dn(){return f(this).overflow}function hn(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}h("N",0,0,"eraAbbr");h("NN",0,0,"eraAbbr");h("NNN",0,0,"eraAbbr");h("NNNN",0,0,"eraName");h("NNNNN",0,0,"eraNarrow");h("y",["y",1],"yo","eraYear");h("y",["yy",2],0,"eraYear");h("y",["yyy",3],0,"eraYear");h("y",["yyyy",4],0,"eraYear");u("N",Yt);u("NN",Yt);u("NNN",Yt);u("NNNN",Yn);u("NNNNN",gn);M(["N","NN","NNN","NNNN","NNNNN"],function(e,t,s,r){var a=s._locale.erasParse(e,r,s._strict);a?f(s).era=a:f(s).invalidEra=e});u("y",ce);u("yy",ce);u("yyy",ce);u("yyyy",ce);u("yo",vn);M(["y","yy","yyy","yyyy"],p);M(["yo"],function(e,t,s,r){var a;s._locale._eraYearOrdinalRegex&&(a=e.match(s._locale._eraYearOrdinalRegex)),s._locale.eraYearOrdinalParse?t[p]=s._locale.eraYearOrdinalParse(e,a):t[p]=parseInt(e,10)});function fn(e,t){var s,r,a,n=this._eras||J("en")._eras;for(s=0,r=n.length;s=0)return n[r]}function _n(e,t){var s=e.since<=e.until?1:-1;return t===void 0?l(e.since).year():l(e.since).year()+(t-e.offset)*s}function mn(){var e,t,s,r=this.localeData().eras();for(e=0,t=r.length;en&&(t=n),Pn.call(this,e,t,s,r,a))}function Pn(e,t,s,r,a){var n=$t(e,t,s,r,a),i=ke(n.year,0,n.dayOfYear);return this.year(i.getUTCFullYear()),this.month(i.getUTCMonth()),this.date(i.getUTCDate()),this}h("Q",0,"Qo","quarter");O("quarter","Q");T("quarter",7);u("Q",Ct);M("Q",function(e,t){t[Z]=(_(e)-1)*3});function Nn(e){return e==null?Math.ceil((this.month()+1)/3):this.month((e-1)*3+this.month()%3)}h("D",["DD",2],"Do","date");O("date","D");T("date",9);u("D",D);u("DD",D,P);u("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient});M(["D","DD"],H);M("Do",function(e,t){t[H]=_(e.match(D)[0])});var ms=fe("Date",!0);h("DDD",["DDDD",3],"DDDo","dayOfYear");O("dayOfYear","DDD");T("dayOfYear",4);u("DDD",He);u("DDDD",Ut);M(["DDD","DDDD"],function(e,t,s){s._dayOfYear=_(e)});function Rn(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return e==null?t:this.add(e-t,"d")}h("m",["mm",2],0,"minute");O("minute","m");T("minute",14);u("m",D);u("mm",D,P);M(["m","mm"],L);var Fn=fe("Minutes",!1);h("s",["ss",2],0,"second");O("second","s");T("second",15);u("s",D);u("ss",D,P);M(["s","ss"],$);var Ln=fe("Seconds",!1);h("S",0,0,function(){return~~(this.millisecond()/100)});h(0,["SS",2],0,function(){return~~(this.millisecond()/10)});h(0,["SSS",3],0,"millisecond");h(0,["SSSS",4],0,function(){return this.millisecond()*10});h(0,["SSSSS",5],0,function(){return this.millisecond()*100});h(0,["SSSSSS",6],0,function(){return this.millisecond()*1e3});h(0,["SSSSSSS",7],0,function(){return this.millisecond()*1e4});h(0,["SSSSSSSS",8],0,function(){return this.millisecond()*1e5});h(0,["SSSSSSSSS",9],0,function(){return this.millisecond()*1e6});O("millisecond","ms");T("millisecond",16);u("S",He,Ct);u("SS",He,P);u("SSS",He,Ut);var ee,ys;for(ee="SSSS";ee.length<=9;ee+="S")u(ee,ce);function In(e,t){t[re]=_(("0."+e)*1e3)}for(ee="S";ee.length<=9;ee+="S")M(ee,In);ys=fe("Milliseconds",!1);h("z",0,0,"zoneAbbr");h("zz",0,0,"zoneName");function Cn(){return this._isUTC?"UTC":""}function Un(){return this._isUTC?"Coordinated Universal Time":""}var o=Ye.prototype;o.add=ba;o.calendar=Ia;o.clone=Ca;o.diff=ja;o.endOf=en;o.format=Ba;o.from=qa;o.fromNow=Ja;o.to=Qa;o.toNow=Xa;o.get=Hs;o.invalidAt=dn;o.isAfter=Ua;o.isBefore=Ha;o.isBetween=Ea;o.isSame=Aa;o.isSameOrAfter=Va;o.isSameOrBefore=Ga;o.isValid=ln;o.lang=us;o.locale=ls;o.localeData=ds;o.max=oa;o.min=ia;o.parsingFlags=un;o.set=Es;o.startOf=Ka;o.subtract=Wa;o.toArray=an;o.toObject=nn;o.toDate=rn;o.toISOString=Za;o.inspect=$a;typeof Symbol<"u"&&Symbol.for!=null&&(o[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"});o.toJSON=on;o.toString=za;o.unix=sn;o.valueOf=tn;o.creationData=hn;o.eraName=mn;o.eraNarrow=yn;o.eraAbbr=wn;o.eraYear=kn;o.year=Zt;o.isLeapYear=nr;o.weekYear=pn;o.isoWeekYear=On;o.quarter=o.quarters=Nn;o.month=jt;o.daysInMonth=sr;o.week=o.weeks=hr;o.isoWeek=o.isoWeeks=fr;o.weeksInYear=bn;o.weeksInWeekYear=Wn;o.isoWeeksInYear=Tn;o.isoWeeksInISOWeekYear=xn;o.date=ms;o.day=o.days=pr;o.weekday=Or;o.isoWeekday=Tr;o.dayOfYear=Rn;o.hour=o.hours=Fr;o.minute=o.minutes=Fn;o.second=o.seconds=Ln;o.millisecond=o.milliseconds=ys;o.utcOffset=ya;o.utc=ka;o.local=Ma;o.parseZone=Sa;o.hasAlignedHourOffset=Da;o.isDST=Ya;o.isLocal=va;o.isUtcOffset=pa;o.isUtc=as;o.isUTC=as;o.zoneAbbr=Cn;o.zoneName=Un;o.dates=R("dates accessor is deprecated. Use date instead.",ms);o.months=R("months accessor is deprecated. Use month instead",jt);o.years=R("years accessor is deprecated. Use year instead",Zt);o.zone=R("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",wa);o.isDSTShifted=R("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",ga);function Hn(e){return S(e*1e3)}function En(){return S.apply(null,arguments).parseZone()}function ws(e){return e}var w=lt.prototype;w.calendar=ps;w.longDateFormat=bs;w.invalidDate=Ps;w.ordinal=Fs;w.preparse=ws;w.postformat=ws;w.relativeTime=Is;w.pastFuture=Cs;w.set=gs;w.eras=fn;w.erasParse=cn;w.erasConvertYear=_n;w.erasAbbrRegex=Sn;w.erasNameRegex=Mn;w.erasNarrowRegex=Dn;w.months=Xs;w.monthsShort=Ks;w.monthsParse=tr;w.monthsRegex=ar;w.monthsShortRegex=rr;w.week=or;w.firstDayOfYear=dr;w.firstDayOfWeek=ur;w.weekdays=Sr;w.weekdaysMin=Yr;w.weekdaysShort=Dr;w.weekdaysParse=vr;w.weekdaysRegex=xr;w.weekdaysShortRegex=br;w.weekdaysMinRegex=Wr;w.isPM=Nr;w.meridiem=Lr;function Le(e,t,s,r){var a=J(),n=A().set(r,t);return a[s](n,e)}function ks(e,t,s){if(q(e)&&(t=e,e=void 0),e=e||"",t!=null)return Le(e,t,s,"month");var r,a=[];for(r=0;r<12;r++)a[r]=Le(e,r,s,"month");return a}function vt(e,t,s,r){typeof e=="boolean"?(q(t)&&(s=t,t=void 0),t=t||""):(t=e,s=t,e=!1,q(t)&&(s=t,t=void 0),t=t||"");var a=J(),n=e?a._week.dow:0,i,d=[];if(s!=null)return Le(t,(s+n)%7,r,"day");for(i=0;i<7;i++)d[i]=Le(t,(i+n)%7,r,"day");return d}function An(e,t){return ks(e,t,"months")}function Vn(e,t){return ks(e,t,"monthsShort")}function Gn(e,t,s){return vt(e,t,s,"weekdays")}function jn(e,t,s){return vt(e,t,s,"weekdaysShort")}function zn(e,t,s){return vt(e,t,s,"weekdaysMin")}te("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10,s=_(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+s}});l.lang=R("moment.lang is deprecated. Use moment.locale instead.",te);l.langData=R("moment.langData is deprecated. Use moment.localeData instead.",J);var j=Math.abs;function Zn(){var e=this._data;return this._milliseconds=j(this._milliseconds),this._days=j(this._days),this._months=j(this._months),e.milliseconds=j(e.milliseconds),e.seconds=j(e.seconds),e.minutes=j(e.minutes),e.hours=j(e.hours),e.months=j(e.months),e.years=j(e.years),this}function Ms(e,t,s,r){var a=U(t,s);return e._milliseconds+=r*a._milliseconds,e._days+=r*a._days,e._months+=r*a._months,e._bubble()}function $n(e,t){return Ms(this,e,t,1)}function Bn(e,t){return Ms(this,e,t,-1)}function bt(e){return e<0?Math.floor(e):Math.ceil(e)}function qn(){var e=this._milliseconds,t=this._days,s=this._months,r=this._data,a,n,i,d,c;return e>=0&&t>=0&&s>=0||e<=0&&t<=0&&s<=0||(e+=bt(at(s)+t)*864e5,t=0,s=0),r.milliseconds=e%1e3,a=N(e/1e3),r.seconds=a%60,n=N(a/60),r.minutes=n%60,i=N(n/60),r.hours=i%24,t+=N(i/24),c=N(Ss(t)),s+=c,t-=bt(at(c)),d=N(s/12),s%=12,r.days=t,r.months=s,r.years=d,this}function Ss(e){return e*4800/146097}function at(e){return e*146097/4800}function Jn(e){if(!this.isValid())return NaN;var t,s,r=this._milliseconds;if(e=F(e),e==="month"||e==="quarter"||e==="year")switch(t=this._days+r/864e5,s=this._months+Ss(t),e){case"month":return s;case"quarter":return s/3;case"year":return s/12}else switch(t=this._days+Math.round(at(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return t*24+r/36e5;case"minute":return t*1440+r/6e4;case"second":return t*86400+r/1e3;case"millisecond":return Math.floor(t*864e5)+r;default:throw new Error("Unknown unit "+e)}}function Qn(){return this.isValid()?this._milliseconds+this._days*864e5+this._months%12*2592e6+_(this._months/12)*31536e6:NaN}function Q(e){return function(){return this.as(e)}}var Xn=Q("ms"),Kn=Q("s"),ei=Q("m"),ti=Q("h"),si=Q("d"),ri=Q("w"),ai=Q("M"),ni=Q("Q"),ii=Q("y");function oi(){return U(this)}function li(e){return e=F(e),this.isValid()?this[e+"s"]():NaN}function ne(e){return function(){return this.isValid()?this._data[e]:NaN}}var ui=ne("milliseconds"),di=ne("seconds"),hi=ne("minutes"),fi=ne("hours"),ci=ne("days"),_i=ne("months"),mi=ne("years");function yi(){return N(this.days()/7)}var z=Math.round,le={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function wi(e,t,s,r,a){return a.relativeTime(t||1,!!s,e,r)}function ki(e,t,s,r){var a=U(e).abs(),n=z(a.as("s")),i=z(a.as("m")),d=z(a.as("h")),c=z(a.as("d")),k=z(a.as("M")),x=z(a.as("w")),G=z(a.as("y")),X=n<=s.ss&&["s",n]||n0,X[4]=r,wi.apply(null,X)}function Mi(e){return e===void 0?z:typeof e=="function"?(z=e,!0):!1}function Si(e,t){return le[e]===void 0?!1:t===void 0?le[e]:(le[e]=t,e==="s"&&(le.ss=t-1),!0)}function Di(e,t){if(!this.isValid())return this.localeData().invalidDate();var s=!1,r=le,a,n;return typeof e=="object"&&(t=e,e=!1),typeof e=="boolean"&&(s=e),typeof t=="object"&&(r=Object.assign({},le,t),t.s!=null&&t.ss==null&&(r.ss=t.s-1)),a=this.localeData(),n=ki(this,!s,r,a),s&&(n=a.pastFuture(+this,n)),a.postformat(n)}var Qe=Math.abs;function ie(e){return(e>0)-(e<0)||+e}function $e(){if(!this.isValid())return this.localeData().invalidDate();var e=Qe(this._milliseconds)/1e3,t=Qe(this._days),s=Qe(this._months),r,a,n,i,d=this.asSeconds(),c,k,x,G;return d?(r=N(e/60),a=N(r/60),e%=60,r%=60,n=N(s/12),s%=12,i=e?e.toFixed(3).replace(/\.?0+$/,""):"",c=d<0?"-":"",k=ie(this._months)!==ie(d)?"-":"",x=ie(this._days)!==ie(d)?"-":"",G=ie(this._milliseconds)!==ie(d)?"-":"",c+"P"+(n?k+n+"Y":"")+(s?k+s+"M":"")+(t?x+t+"D":"")+(a||r||e?"T":"")+(a?G+a+"H":"")+(r?G+r+"M":"")+(e?G+i+"S":"")):"P0D"}var m=ze.prototype;m.isValid=fa;m.abs=Zn;m.add=$n;m.subtract=Bn;m.as=Jn;m.asMilliseconds=Xn;m.asSeconds=Kn;m.asMinutes=ei;m.asHours=ti;m.asDays=si;m.asWeeks=ri;m.asMonths=ai;m.asQuarters=ni;m.asYears=ii;m.valueOf=Qn;m._bubble=qn;m.clone=oi;m.get=li;m.milliseconds=ui;m.seconds=di;m.minutes=hi;m.hours=fi;m.days=ci;m.weeks=yi;m.months=_i;m.years=mi;m.humanize=Di;m.toISOString=$e;m.toString=$e;m.toJSON=$e;m.locale=ls;m.localeData=ds;m.toIsoString=R("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",$e);m.lang=us;h("X",0,0,"unix");h("x",0,0,"valueOf");u("x",Ae);u("X",Vs);M("X",function(e,t,s){s._d=new Date(parseFloat(e)*1e3)});M("x",function(e,t,s){s._d=new Date(_(e))});//! moment.js -l.version="2.29.4";Ds(S);l.fn=o;l.min=la;l.max=ua;l.now=da;l.utc=A;l.unix=Hn;l.months=An;l.isDate=De;l.locale=te;l.invalid=Ie;l.duration=U;l.isMoment=C;l.weekdays=Gn;l.parseZone=En;l.localeData=J;l.isDuration=xe;l.monthsShort=Vn;l.weekdaysMin=zn;l.defineLocale=yt;l.updateLocale=Hr;l.locales=Er;l.weekdaysShort=jn;l.normalizeUnits=F;l.relativeTimeRounding=Mi;l.relativeTimeThreshold=Si;l.calendarFormat=La;l.prototype=o;l.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"};//! moment.js locale configuration -//! locale : Chinese (China) [zh-cn] -//! author : suupic : https://github.com/suupic -//! author : Zeno Zeng : https://github.com/zenozeng -//! author : uu109 : https://github.com/uu109 -l.defineLocale("zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah点mm分",LLLL:"YYYY年M月D日ddddAh点mm分",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return e===12&&(e=0),t==="凌晨"||t==="早上"||t==="上午"?e:t==="下午"||t==="晚上"?e+12:e>=11?e:e+12},meridiem:function(e,t,s){var r=e*100+t;return r<600?"凌晨":r<900?"早上":r<1130?"上午":r<1230?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:function(e){return e.week()!==this.week()?"[下]dddLT":"[本]dddLT"},lastDay:"[昨天]LT",lastWeek:function(e){return this.week()!==e.week()?"[上]dddLT":"[本]dddLT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|周)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"周";default:return e}},relativeTime:{future:"%s后",past:"%s前",s:"几秒",ss:"%d 秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",w:"1 周",ww:"%d 周",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},week:{dow:1,doy:4}});export{l as h}; diff --git a/web/dist/assets/moment-BqTRGcJI.js b/web/dist/assets/moment-BqTRGcJI.js new file mode 100644 index 00000000..03f0037d --- /dev/null +++ b/web/dist/assets/moment-BqTRGcJI.js @@ -0,0 +1,15 @@ +//! moment.js +//! version : 2.30.1 +//! authors : Tim Wood, Iskren Chernev, Moment.js contributors +//! license : MIT +//! momentjs.com +var Wt;function l(){return Wt.apply(null,arguments)}function Ds(e){Wt=e}function R(e){return e instanceof Array||Object.prototype.toString.call(e)==="[object Array]"}function se(e){return e!=null&&Object.prototype.toString.call(e)==="[object Object]"}function w(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function st(e){if(Object.getOwnPropertyNames)return Object.getOwnPropertyNames(e).length===0;var t;for(t in e)if(w(e,t))return!1;return!0}function T(e){return e===void 0}function $(e){return typeof e=="number"||Object.prototype.toString.call(e)==="[object Number]"}function Se(e){return e instanceof Date||Object.prototype.toString.call(e)==="[object Date]"}function Nt(e,t){var s=[],r,a=e.length;for(r=0;r>>0,r;for(r=0;r0)for(s=0;s=0;return(n?s?"+":"":"-")+Math.pow(10,Math.max(0,a)).toString().substr(1)+r}var it=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,ve=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,Ze={},oe={};function h(e,t,s,r){var a=r;typeof r=="string"&&(a=function(){return this[r]()}),e&&(oe[e]=a),t&&(oe[t[0]]=function(){return U(a.apply(this,arguments),t[1],t[2])}),s&&(oe[s]=function(){return this.localeData().ordinal(a.apply(this,arguments),e)})}function Os(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function Ts(e){var t=e.match(it),s,r;for(s=0,r=t.length;s=0&&ve.test(e);)e=e.replace(ve,r),ve.lastIndex=0,s-=1;return e}var xs={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};function bs(e){var t=this._longDateFormat[e],s=this._longDateFormat[e.toUpperCase()];return t||!s?t:(this._longDateFormat[e]=s.match(it).map(function(r){return r==="MMMM"||r==="MM"||r==="DD"||r==="dddd"?r.slice(1):r}).join(""),this._longDateFormat[e])}var Ws="Invalid date";function Ns(){return this._invalidDate}var Ps="%d",Rs=/\d{1,2}/;function Fs(e){return this._ordinal.replace("%d",e)}var Ls={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function Cs(e,t,s,r){var a=this._relativeTime[s];return I(a)?a(e,t,s,r):a.replace(/%d/i,e)}function Us(e,t){var s=this._relativeTime[e>0?"future":"past"];return I(s)?s(t):s.replace(/%s/i,t)}var Ot={D:"date",dates:"date",date:"date",d:"day",days:"day",day:"day",e:"weekday",weekdays:"weekday",weekday:"weekday",E:"isoWeekday",isoweekdays:"isoWeekday",isoweekday:"isoWeekday",DDD:"dayOfYear",dayofyears:"dayOfYear",dayofyear:"dayOfYear",h:"hour",hours:"hour",hour:"hour",ms:"millisecond",milliseconds:"millisecond",millisecond:"millisecond",m:"minute",minutes:"minute",minute:"minute",M:"month",months:"month",month:"month",Q:"quarter",quarters:"quarter",quarter:"quarter",s:"second",seconds:"second",second:"second",gg:"weekYear",weekyears:"weekYear",weekyear:"weekYear",GG:"isoWeekYear",isoweekyears:"isoWeekYear",isoweekyear:"isoWeekYear",w:"week",weeks:"week",week:"week",W:"isoWeek",isoweeks:"isoWeek",isoweek:"isoWeek",y:"year",years:"year",year:"year"};function N(e){return typeof e=="string"?Ot[e]||Ot[e.toLowerCase()]:void 0}function ot(e){var t={},s,r;for(r in e)w(e,r)&&(s=N(r),s&&(t[s]=e[r]));return t}var Hs={date:9,day:11,weekday:11,isoWeekday:11,dayOfYear:4,hour:13,millisecond:16,minute:14,month:8,quarter:7,second:15,weekYear:1,isoWeekYear:1,week:5,isoWeek:5,year:1};function Is(e){var t=[],s;for(s in e)w(e,s)&&t.push({unit:s,priority:Hs[s]});return t.sort(function(r,a){return r.priority-a.priority}),t}var Lt=/\d/,x=/\d\d/,Ct=/\d{3}/,lt=/\d{4}/,Le=/[+-]?\d{6}/,D=/\d\d?/,Ut=/\d\d\d\d?/,Ht=/\d\d\d\d\d\d?/,Ce=/\d{1,3}/,ut=/\d{1,4}/,Ue=/[+-]?\d{1,6}/,de=/\d+/,He=/[+-]?\d+/,Es=/Z|[+-]\d\d:?\d\d/gi,Ie=/Z|[+-]\d\d(?::?\d\d)?/gi,As=/[+-]?\d+(\.\d{1,3})?/,ge=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,he=/^[1-9]\d?/,dt=/^([1-9]\d|\d)/,be;be={};function d(e,t,s){be[e]=I(t)?t:function(r,a){return r&&s?s:t}}function Vs(e,t){return w(be,e)?be[e](t._strict,t._locale):new RegExp(Gs(e))}function Gs(e){return z(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,s,r,a,n){return s||r||a||n}))}function z(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function b(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function _(e){var t=+e,s=0;return t!==0&&isFinite(t)&&(s=b(t)),s}var Xe={};function M(e,t){var s,r=t,a;for(typeof e=="string"&&(e=[e]),$(t)&&(r=function(n,i){i[t]=_(n)}),a=e.length,s=0;s68?1900:2e3)};var It=fe("FullYear",!0);function $s(){return Ee(this.year())}function fe(e,t){return function(s){return s!=null?(Et(this,e,s),l.updateOffset(this,t),this):ye(this,e)}}function ye(e,t){if(!e.isValid())return NaN;var s=e._d,r=e._isUTC;switch(t){case"Milliseconds":return r?s.getUTCMilliseconds():s.getMilliseconds();case"Seconds":return r?s.getUTCSeconds():s.getSeconds();case"Minutes":return r?s.getUTCMinutes():s.getMinutes();case"Hours":return r?s.getUTCHours():s.getHours();case"Date":return r?s.getUTCDate():s.getDate();case"Day":return r?s.getUTCDay():s.getDay();case"Month":return r?s.getUTCMonth():s.getMonth();case"FullYear":return r?s.getUTCFullYear():s.getFullYear();default:return NaN}}function Et(e,t,s){var r,a,n,i,u;if(!(!e.isValid()||isNaN(s))){switch(r=e._d,a=e._isUTC,t){case"Milliseconds":return void(a?r.setUTCMilliseconds(s):r.setMilliseconds(s));case"Seconds":return void(a?r.setUTCSeconds(s):r.setSeconds(s));case"Minutes":return void(a?r.setUTCMinutes(s):r.setMinutes(s));case"Hours":return void(a?r.setUTCHours(s):r.setHours(s));case"Date":return void(a?r.setUTCDate(s):r.setDate(s));case"FullYear":break;default:return}n=s,i=e.month(),u=e.date(),u=u===29&&i===1&&!Ee(n)?28:u,a?r.setUTCFullYear(n,i,u):r.setFullYear(n,i,u)}}function qs(e){return e=N(e),I(this[e])?this[e]():this}function Bs(e,t){if(typeof e=="object"){e=ot(e);var s=Is(e),r,a=s.length;for(r=0;r=0?(u=new Date(e+400,t,s,r,a,n,i),isFinite(u.getFullYear())&&u.setFullYear(e)):u=new Date(e,t,s,r,a,n,i),u}function we(e){var t,s;return e<100&&e>=0?(s=Array.prototype.slice.call(arguments),s[0]=e+400,t=new Date(Date.UTC.apply(null,s)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function We(e,t,s){var r=7+t-s,a=(7+we(e,0,r).getUTCDay()-t)%7;return-a+r-1}function Zt(e,t,s,r,a){var n=(7+s-r)%7,i=We(e,r,a),u=1+7*(t-1)+n+i,f,m;return u<=0?(f=e-1,m=me(f)+u):u>me(e)?(f=e+1,m=u-me(e)):(f=e,m=u),{year:f,dayOfYear:m}}function ke(e,t,s){var r=We(e.year(),t,s),a=Math.floor((e.dayOfYear()-r-1)/7)+1,n,i;return a<1?(i=e.year()-1,n=a+Z(i,t,s)):a>Z(e.year(),t,s)?(n=a-Z(e.year(),t,s),i=e.year()+1):(i=e.year(),n=a),{week:n,year:i}}function Z(e,t,s){var r=We(e,t,s),a=We(e+1,t,s);return(me(e)-r+a)/7}h("w",["ww",2],"wo","week");h("W",["WW",2],"Wo","isoWeek");d("w",D,he);d("ww",D,x);d("W",D,he);d("WW",D,x);Ye(["w","ww","W","WW"],function(e,t,s,r){t[r.substr(0,1)]=_(e)});function lr(e){return ke(e,this._week.dow,this._week.doy).week}var ur={dow:0,doy:6};function dr(){return this._week.dow}function hr(){return this._week.doy}function fr(e){var t=this.localeData().week(this);return e==null?t:this.add((e-t)*7,"d")}function cr(e){var t=ke(this,1,4).week;return e==null?t:this.add((e-t)*7,"d")}h("d",0,"do","day");h("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)});h("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)});h("dddd",0,0,function(e){return this.localeData().weekdays(this,e)});h("e",0,0,"weekday");h("E",0,0,"isoWeekday");d("d",D);d("e",D);d("E",D);d("dd",function(e,t){return t.weekdaysMinRegex(e)});d("ddd",function(e,t){return t.weekdaysShortRegex(e)});d("dddd",function(e,t){return t.weekdaysRegex(e)});Ye(["dd","ddd","dddd"],function(e,t,s,r){var a=s._locale.weekdaysParse(e,r,s._strict);a!=null?t.d=a:c(s).invalidWeekday=e});Ye(["d","e","E"],function(e,t,s,r){t[r]=_(e)});function _r(e,t){return typeof e!="string"?e:isNaN(e)?(e=t.weekdaysParse(e),typeof e=="number"?e:null):parseInt(e,10)}function mr(e,t){return typeof e=="string"?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function ft(e,t){return e.slice(t,7).concat(e.slice(0,t))}var yr="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),$t="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),wr="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),kr=ge,Mr=ge,Sr=ge;function Dr(e,t){var s=R(this._weekdays)?this._weekdays:this._weekdays[e&&e!==!0&&this._weekdays.isFormat.test(t)?"format":"standalone"];return e===!0?ft(s,this._week.dow):e?s[e.day()]:s}function gr(e){return e===!0?ft(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function Yr(e){return e===!0?ft(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function vr(e,t,s){var r,a,n,i=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)n=H([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(n,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(n,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(n,"").toLocaleLowerCase();return s?t==="dddd"?(a=Y.call(this._weekdaysParse,i),a!==-1?a:null):t==="ddd"?(a=Y.call(this._shortWeekdaysParse,i),a!==-1?a:null):(a=Y.call(this._minWeekdaysParse,i),a!==-1?a:null):t==="dddd"?(a=Y.call(this._weekdaysParse,i),a!==-1||(a=Y.call(this._shortWeekdaysParse,i),a!==-1)?a:(a=Y.call(this._minWeekdaysParse,i),a!==-1?a:null)):t==="ddd"?(a=Y.call(this._shortWeekdaysParse,i),a!==-1||(a=Y.call(this._weekdaysParse,i),a!==-1)?a:(a=Y.call(this._minWeekdaysParse,i),a!==-1?a:null)):(a=Y.call(this._minWeekdaysParse,i),a!==-1||(a=Y.call(this._weekdaysParse,i),a!==-1)?a:(a=Y.call(this._shortWeekdaysParse,i),a!==-1?a:null))}function pr(e,t,s){var r,a,n;if(this._weekdaysParseExact)return vr.call(this,e,t,s);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(a=H([2e3,1]).day(r),s&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(a,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(a,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(a,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(n="^"+this.weekdays(a,"")+"|^"+this.weekdaysShort(a,"")+"|^"+this.weekdaysMin(a,""),this._weekdaysParse[r]=new RegExp(n.replace(".",""),"i")),s&&t==="dddd"&&this._fullWeekdaysParse[r].test(e))return r;if(s&&t==="ddd"&&this._shortWeekdaysParse[r].test(e))return r;if(s&&t==="dd"&&this._minWeekdaysParse[r].test(e))return r;if(!s&&this._weekdaysParse[r].test(e))return r}}function Or(e){if(!this.isValid())return e!=null?this:NaN;var t=ye(this,"Day");return e!=null?(e=_r(e,this.localeData()),this.add(e-t,"d")):t}function Tr(e){if(!this.isValid())return e!=null?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return e==null?t:this.add(e-t,"d")}function xr(e){if(!this.isValid())return e!=null?this:NaN;if(e!=null){var t=mr(e,this.localeData());return this.day(this.day()%7?t:t-7)}else return this.day()||7}function br(e){return this._weekdaysParseExact?(w(this,"_weekdaysRegex")||ct.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(w(this,"_weekdaysRegex")||(this._weekdaysRegex=kr),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function Wr(e){return this._weekdaysParseExact?(w(this,"_weekdaysRegex")||ct.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(w(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Mr),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function Nr(e){return this._weekdaysParseExact?(w(this,"_weekdaysRegex")||ct.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(w(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Sr),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function ct(){function e(O,E){return E.length-O.length}var t=[],s=[],r=[],a=[],n,i,u,f,m;for(n=0;n<7;n++)i=H([2e3,1]).day(n),u=z(this.weekdaysMin(i,"")),f=z(this.weekdaysShort(i,"")),m=z(this.weekdays(i,"")),t.push(u),s.push(f),r.push(m),a.push(u),a.push(f),a.push(m);t.sort(e),s.sort(e),r.sort(e),a.sort(e),this._weekdaysRegex=new RegExp("^("+a.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+r.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+t.join("|")+")","i")}function _t(){return this.hours()%12||12}function Pr(){return this.hours()||24}h("H",["HH",2],0,"hour");h("h",["hh",2],0,_t);h("k",["kk",2],0,Pr);h("hmm",0,0,function(){return""+_t.apply(this)+U(this.minutes(),2)});h("hmmss",0,0,function(){return""+_t.apply(this)+U(this.minutes(),2)+U(this.seconds(),2)});h("Hmm",0,0,function(){return""+this.hours()+U(this.minutes(),2)});h("Hmmss",0,0,function(){return""+this.hours()+U(this.minutes(),2)+U(this.seconds(),2)});function qt(e,t){h(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}qt("a",!0);qt("A",!1);function Bt(e,t){return t._meridiemParse}d("a",Bt);d("A",Bt);d("H",D,dt);d("h",D,he);d("k",D,he);d("HH",D,x);d("hh",D,x);d("kk",D,x);d("hmm",Ut);d("hmmss",Ht);d("Hmm",Ut);d("Hmmss",Ht);M(["H","HH"],v);M(["k","kk"],function(e,t,s){var r=_(e);t[v]=r===24?0:r});M(["a","A"],function(e,t,s){s._isPm=s._locale.isPM(e),s._meridiem=e});M(["h","hh"],function(e,t,s){t[v]=_(e),c(s).bigHour=!0});M("hmm",function(e,t,s){var r=e.length-2;t[v]=_(e.substr(0,r)),t[P]=_(e.substr(r)),c(s).bigHour=!0});M("hmmss",function(e,t,s){var r=e.length-4,a=e.length-2;t[v]=_(e.substr(0,r)),t[P]=_(e.substr(r,2)),t[j]=_(e.substr(a)),c(s).bigHour=!0});M("Hmm",function(e,t,s){var r=e.length-2;t[v]=_(e.substr(0,r)),t[P]=_(e.substr(r))});M("Hmmss",function(e,t,s){var r=e.length-4,a=e.length-2;t[v]=_(e.substr(0,r)),t[P]=_(e.substr(r,2)),t[j]=_(e.substr(a))});function Rr(e){return(e+"").toLowerCase().charAt(0)==="p"}var Fr=/[ap]\.?m?\.?/i,Lr=fe("Hours",!0);function Cr(e,t,s){return e>11?s?"pm":"PM":s?"am":"AM"}var Jt={calendar:vs,longDateFormat:xs,invalidDate:Ws,ordinal:Ps,dayOfMonthOrdinalParse:Rs,relativeTime:Ls,months:Qs,monthsShort:At,week:ur,weekdays:yr,weekdaysMin:wr,weekdaysShort:$t,meridiemParse:Fr},g={},ce={},Me;function Ur(e,t){var s,r=Math.min(e.length,t.length);for(s=0;s0;){if(a=Ae(n.slice(0,s).join("-")),a)return a;if(r&&r.length>=s&&Ur(n,r)>=s-1)break;s--}t++}return Me}function Ir(e){return!!(e&&e.match("^[^/\\\\]*$"))}function Ae(e){var t=null,s;if(g[e]===void 0&&typeof module<"u"&&module&&module.exports&&Ir(e))try{t=Me._abbr,s=require,s("./locale/"+e),K(t)}catch{g[e]=null}return g[e]}function K(e,t){var s;return e&&(T(t)?s=q(e):s=mt(e,t),s?Me=s:typeof console<"u"&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),Me._abbr}function mt(e,t){if(t!==null){var s,r=Jt;if(t.abbr=e,g[e]!=null)Rt("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),r=g[e]._config;else if(t.parentLocale!=null)if(g[t.parentLocale]!=null)r=g[t.parentLocale]._config;else if(s=Ae(t.parentLocale),s!=null)r=s._config;else return ce[t.parentLocale]||(ce[t.parentLocale]=[]),ce[t.parentLocale].push({name:e,config:t}),null;return g[e]=new nt(Je(r,t)),ce[e]&&ce[e].forEach(function(a){mt(a.name,a.config)}),K(e),g[e]}else return delete g[e],null}function Er(e,t){if(t!=null){var s,r,a=Jt;g[e]!=null&&g[e].parentLocale!=null?g[e].set(Je(g[e]._config,t)):(r=Ae(e),r!=null&&(a=r._config),t=Je(a,t),r==null&&(t.abbr=e),s=new nt(t),s.parentLocale=g[e],g[e]=s),K(e)}else g[e]!=null&&(g[e].parentLocale!=null?(g[e]=g[e].parentLocale,e===K()&&K(e)):g[e]!=null&&delete g[e]);return g[e]}function q(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Me;if(!R(e)){if(t=Ae(e),t)return t;e=[e]}return Hr(e)}function Ar(){return Qe(g)}function yt(e){var t,s=e._a;return s&&c(e).overflow===-2&&(t=s[G]<0||s[G]>11?G:s[C]<1||s[C]>ht(s[p],s[G])?C:s[v]<0||s[v]>24||s[v]===24&&(s[P]!==0||s[j]!==0||s[te]!==0)?v:s[P]<0||s[P]>59?P:s[j]<0||s[j]>59?j:s[te]<0||s[te]>999?te:-1,c(e)._overflowDayOfYear&&(tC)&&(t=C),c(e)._overflowWeeks&&t===-1&&(t=zs),c(e)._overflowWeekday&&t===-1&&(t=Zs),c(e).overflow=t),e}var Vr=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Gr=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,jr=/Z|[+-]\d\d(?::?\d\d)?/,pe=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],$e=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],zr=/^\/?Date\((-?\d+)/i,Zr=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,$r={UT:0,GMT:0,EDT:-4*60,EST:-5*60,CDT:-5*60,CST:-6*60,MDT:-6*60,MST:-7*60,PDT:-7*60,PST:-8*60};function Qt(e){var t,s,r=e._i,a=Vr.exec(r)||Gr.exec(r),n,i,u,f,m=pe.length,O=$e.length;if(a){for(c(e).iso=!0,t=0,s=m;tme(i)||e._dayOfYear===0)&&(c(e)._overflowDayOfYear=!0),s=we(i,0,e._dayOfYear),e._a[G]=s.getUTCMonth(),e._a[C]=s.getUTCDate()),t=0;t<3&&e._a[t]==null;++t)e._a[t]=r[t]=a[t];for(;t<7;t++)e._a[t]=r[t]=e._a[t]==null?t===2?1:0:e._a[t];e._a[v]===24&&e._a[P]===0&&e._a[j]===0&&e._a[te]===0&&(e._nextDay=!0,e._a[v]=0),e._d=(e._useUTC?we:or).apply(null,r),n=e._useUTC?e._d.getUTCDay():e._d.getDay(),e._tzm!=null&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[v]=24),e._w&&typeof e._w.d<"u"&&e._w.d!==n&&(c(e).weekdayMismatch=!0)}}function ta(e){var t,s,r,a,n,i,u,f,m;t=e._w,t.GG!=null||t.W!=null||t.E!=null?(n=1,i=4,s=ne(t.GG,e._a[p],ke(S(),1,4).year),r=ne(t.W,1),a=ne(t.E,1),(a<1||a>7)&&(f=!0)):(n=e._locale._week.dow,i=e._locale._week.doy,m=ke(S(),n,i),s=ne(t.gg,e._a[p],m.year),r=ne(t.w,m.week),t.d!=null?(a=t.d,(a<0||a>6)&&(f=!0)):t.e!=null?(a=t.e+n,(t.e<0||t.e>6)&&(f=!0)):a=n),r<1||r>Z(s,n,i)?c(e)._overflowWeeks=!0:f!=null?c(e)._overflowWeekday=!0:(u=Zt(s,r,a,n,i),e._a[p]=u.year,e._dayOfYear=u.dayOfYear)}l.ISO_8601=function(){};l.RFC_2822=function(){};function kt(e){if(e._f===l.ISO_8601){Qt(e);return}if(e._f===l.RFC_2822){Xt(e);return}e._a=[],c(e).empty=!0;var t=""+e._i,s,r,a,n,i,u=t.length,f=0,m,O;for(a=Ft(e._f,e._locale).match(it)||[],O=a.length,s=0;s0&&c(e).unusedInput.push(i),t=t.slice(t.indexOf(r)+r.length),f+=r.length),oe[n]?(r?c(e).empty=!1:c(e).unusedTokens.push(n),js(n,r,e)):e._strict&&!r&&c(e).unusedTokens.push(n);c(e).charsLeftOver=u-f,t.length>0&&c(e).unusedInput.push(t),e._a[v]<=12&&c(e).bigHour===!0&&e._a[v]>0&&(c(e).bigHour=void 0),c(e).parsedDateParts=e._a.slice(0),c(e).meridiem=e._meridiem,e._a[v]=sa(e._locale,e._a[v],e._meridiem),m=c(e).era,m!==null&&(e._a[p]=e._locale.erasConvertYear(m,e._a[p])),wt(e),yt(e)}function sa(e,t,s){var r;return s==null?t:e.meridiemHour!=null?e.meridiemHour(t,s):(e.isPM!=null&&(r=e.isPM(s),r&&t<12&&(t+=12),!r&&t===12&&(t=0)),t)}function ra(e){var t,s,r,a,n,i,u=!1,f=e._f.length;if(f===0){c(e).invalidFormat=!0,e._d=new Date(NaN);return}for(a=0;athis?this:e:Fe()});function ts(e,t){var s,r;if(t.length===1&&R(t[0])&&(t=t[0]),!t.length)return S();for(s=t[0],r=1;rthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function va(){if(!T(this._isDSTShifted))return this._isDSTShifted;var e={},t;return at(e,this),e=Kt(e),e._a?(t=e._isUTC?H(e._a):S(e._a),this._isDSTShifted=this.isValid()&&ma(e._a,t.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function pa(){return this.isValid()?!this._isUTC:!1}function Oa(){return this.isValid()?this._isUTC:!1}function rs(){return this.isValid()?this._isUTC&&this._offset===0:!1}var Ta=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,xa=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function L(e,t){var s=e,r=null,a,n,i;return Te(e)?s={ms:e._milliseconds,d:e._days,M:e._months}:$(e)||!isNaN(+e)?(s={},t?s[t]=+e:s.milliseconds=+e):(r=Ta.exec(e))?(a=r[1]==="-"?-1:1,s={y:0,d:_(r[C])*a,h:_(r[v])*a,m:_(r[P])*a,s:_(r[j])*a,ms:_(Ke(r[te]*1e3))*a}):(r=xa.exec(e))?(a=r[1]==="-"?-1:1,s={y:ee(r[2],a),M:ee(r[3],a),w:ee(r[4],a),d:ee(r[5],a),h:ee(r[6],a),m:ee(r[7],a),s:ee(r[8],a)}):s==null?s={}:typeof s=="object"&&("from"in s||"to"in s)&&(i=ba(S(s.from),S(s.to)),s={},s.ms=i.milliseconds,s.M=i.months),n=new Ve(s),Te(e)&&w(e,"_locale")&&(n._locale=e._locale),Te(e)&&w(e,"_isValid")&&(n._isValid=e._isValid),n}L.fn=Ve.prototype;L.invalid=_a;function ee(e,t){var s=e&&parseFloat(e.replace(",","."));return(isNaN(s)?0:s)*t}function xt(e,t){var s={};return s.months=t.month()-e.month()+(t.year()-e.year())*12,e.clone().add(s.months,"M").isAfter(t)&&--s.months,s.milliseconds=+t-+e.clone().add(s.months,"M"),s}function ba(e,t){var s;return e.isValid()&&t.isValid()?(t=St(t,e),e.isBefore(t)?s=xt(e,t):(s=xt(t,e),s.milliseconds=-s.milliseconds,s.months=-s.months),s):{milliseconds:0,months:0}}function as(e,t){return function(s,r){var a,n;return r!==null&&!isNaN(+r)&&(Rt(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),n=s,s=r,r=n),a=L(s,r),ns(this,a,e),this}}function ns(e,t,s,r){var a=t._milliseconds,n=Ke(t._days),i=Ke(t._months);e.isValid()&&(r=r??!0,i&&Gt(e,ye(e,"Month")+i*s),n&&Et(e,"Date",ye(e,"Date")+n*s),a&&e._d.setTime(e._d.valueOf()+a*s),r&&l.updateOffset(e,n||i))}var Wa=as(1,"add"),Na=as(-1,"subtract");function is(e){return typeof e=="string"||e instanceof String}function Pa(e){return F(e)||Se(e)||is(e)||$(e)||Fa(e)||Ra(e)||e===null||e===void 0}function Ra(e){var t=se(e)&&!st(e),s=!1,r=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"],a,n,i=r.length;for(a=0;as.valueOf():s.valueOf()9999?Oe(s,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):I(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+this.utcOffset()*60*1e3).toISOString().replace("Z",Oe(s,"Z")):Oe(s,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function qa(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e="moment",t="",s,r,a,n;return this.isLocal()||(e=this.utcOffset()===0?"moment.utc":"moment.parseZone",t="Z"),s="["+e+'("]',r=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",a="-MM-DD[T]HH:mm:ss.SSS",n=t+'[")]',this.format(s+r+a+n)}function Ba(e){e||(e=this.isUtc()?l.defaultFormatUtc:l.defaultFormat);var t=Oe(this,e);return this.localeData().postformat(t)}function Ja(e,t){return this.isValid()&&(F(e)&&e.isValid()||S(e).isValid())?L({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function Qa(e){return this.from(S(),e)}function Xa(e,t){return this.isValid()&&(F(e)&&e.isValid()||S(e).isValid())?L({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function Ka(e){return this.to(S(),e)}function os(e){var t;return e===void 0?this._locale._abbr:(t=q(e),t!=null&&(this._locale=t),this)}var ls=W("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return e===void 0?this.localeData():this.locale(e)});function us(){return this._locale}var Ne=1e3,le=60*Ne,Pe=60*le,ds=(365*400+97)*24*Pe;function ue(e,t){return(e%t+t)%t}function hs(e,t,s){return e<100&&e>=0?new Date(e+400,t,s)-ds:new Date(e,t,s).valueOf()}function fs(e,t,s){return e<100&&e>=0?Date.UTC(e+400,t,s)-ds:Date.UTC(e,t,s)}function en(e){var t,s;if(e=N(e),e===void 0||e==="millisecond"||!this.isValid())return this;switch(s=this._isUTC?fs:hs,e){case"year":t=s(this.year(),0,1);break;case"quarter":t=s(this.year(),this.month()-this.month()%3,1);break;case"month":t=s(this.year(),this.month(),1);break;case"week":t=s(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=s(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=s(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=ue(t+(this._isUTC?0:this.utcOffset()*le),Pe);break;case"minute":t=this._d.valueOf(),t-=ue(t,le);break;case"second":t=this._d.valueOf(),t-=ue(t,Ne);break}return this._d.setTime(t),l.updateOffset(this,!0),this}function tn(e){var t,s;if(e=N(e),e===void 0||e==="millisecond"||!this.isValid())return this;switch(s=this._isUTC?fs:hs,e){case"year":t=s(this.year()+1,0,1)-1;break;case"quarter":t=s(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=s(this.year(),this.month()+1,1)-1;break;case"week":t=s(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=s(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=s(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=Pe-ue(t+(this._isUTC?0:this.utcOffset()*le),Pe)-1;break;case"minute":t=this._d.valueOf(),t+=le-ue(t,le)-1;break;case"second":t=this._d.valueOf(),t+=Ne-ue(t,Ne)-1;break}return this._d.setTime(t),l.updateOffset(this,!0),this}function sn(){return this._d.valueOf()-(this._offset||0)*6e4}function rn(){return Math.floor(this.valueOf()/1e3)}function an(){return new Date(this.valueOf())}function nn(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function on(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function ln(){return this.isValid()?this.toISOString():null}function un(){return rt(this)}function dn(){return Q({},c(this))}function hn(){return c(this).overflow}function fn(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}h("N",0,0,"eraAbbr");h("NN",0,0,"eraAbbr");h("NNN",0,0,"eraAbbr");h("NNNN",0,0,"eraName");h("NNNNN",0,0,"eraNarrow");h("y",["y",1],"yo","eraYear");h("y",["yy",2],0,"eraYear");h("y",["yyy",3],0,"eraYear");h("y",["yyyy",4],0,"eraYear");d("N",Dt);d("NN",Dt);d("NNN",Dt);d("NNNN",Yn);d("NNNNN",vn);M(["N","NN","NNN","NNNN","NNNNN"],function(e,t,s,r){var a=s._locale.erasParse(e,r,s._strict);a?c(s).era=a:c(s).invalidEra=e});d("y",de);d("yy",de);d("yyy",de);d("yyyy",de);d("yo",pn);M(["y","yy","yyy","yyyy"],p);M(["yo"],function(e,t,s,r){var a;s._locale._eraYearOrdinalRegex&&(a=e.match(s._locale._eraYearOrdinalRegex)),s._locale.eraYearOrdinalParse?t[p]=s._locale.eraYearOrdinalParse(e,a):t[p]=parseInt(e,10)});function cn(e,t){var s,r,a,n=this._eras||q("en")._eras;for(s=0,r=n.length;s=0)return n[r]}function mn(e,t){var s=e.since<=e.until?1:-1;return t===void 0?l(e.since).year():l(e.since).year()+(t-e.offset)*s}function yn(){var e,t,s,r=this.localeData().eras();for(e=0,t=r.length;en&&(t=n),Pn.call(this,e,t,s,r,a))}function Pn(e,t,s,r,a){var n=Zt(e,t,s,r,a),i=we(n.year,0,n.dayOfYear);return this.year(i.getUTCFullYear()),this.month(i.getUTCMonth()),this.date(i.getUTCDate()),this}h("Q",0,"Qo","quarter");d("Q",Lt);M("Q",function(e,t){t[G]=(_(e)-1)*3});function Rn(e){return e==null?Math.ceil((this.month()+1)/3):this.month((e-1)*3+this.month()%3)}h("D",["DD",2],"Do","date");d("D",D,he);d("DD",D,x);d("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient});M(["D","DD"],C);M("Do",function(e,t){t[C]=_(e.match(D)[0])});var _s=fe("Date",!0);h("DDD",["DDDD",3],"DDDo","dayOfYear");d("DDD",Ce);d("DDDD",Ct);M(["DDD","DDDD"],function(e,t,s){s._dayOfYear=_(e)});function Fn(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return e==null?t:this.add(e-t,"d")}h("m",["mm",2],0,"minute");d("m",D,dt);d("mm",D,x);M(["m","mm"],P);var Ln=fe("Minutes",!1);h("s",["ss",2],0,"second");d("s",D,dt);d("ss",D,x);M(["s","ss"],j);var Cn=fe("Seconds",!1);h("S",0,0,function(){return~~(this.millisecond()/100)});h(0,["SS",2],0,function(){return~~(this.millisecond()/10)});h(0,["SSS",3],0,"millisecond");h(0,["SSSS",4],0,function(){return this.millisecond()*10});h(0,["SSSSS",5],0,function(){return this.millisecond()*100});h(0,["SSSSSS",6],0,function(){return this.millisecond()*1e3});h(0,["SSSSSSS",7],0,function(){return this.millisecond()*1e4});h(0,["SSSSSSSS",8],0,function(){return this.millisecond()*1e5});h(0,["SSSSSSSSS",9],0,function(){return this.millisecond()*1e6});d("S",Ce,Lt);d("SS",Ce,x);d("SSS",Ce,Ct);var X,ms;for(X="SSSS";X.length<=9;X+="S")d(X,de);function Un(e,t){t[te]=_(("0."+e)*1e3)}for(X="S";X.length<=9;X+="S")M(X,Un);ms=fe("Milliseconds",!1);h("z",0,0,"zoneAbbr");h("zz",0,0,"zoneName");function Hn(){return this._isUTC?"UTC":""}function In(){return this._isUTC?"Coordinated Universal Time":""}var o=De.prototype;o.add=Wa;o.calendar=Ua;o.clone=Ha;o.diff=za;o.endOf=tn;o.format=Ba;o.from=Ja;o.fromNow=Qa;o.to=Xa;o.toNow=Ka;o.get=qs;o.invalidAt=hn;o.isAfter=Ia;o.isBefore=Ea;o.isBetween=Aa;o.isSame=Va;o.isSameOrAfter=Ga;o.isSameOrBefore=ja;o.isValid=un;o.lang=ls;o.locale=os;o.localeData=us;o.max=la;o.min=oa;o.parsingFlags=dn;o.set=Bs;o.startOf=en;o.subtract=Na;o.toArray=nn;o.toObject=on;o.toDate=an;o.toISOString=$a;o.inspect=qa;typeof Symbol<"u"&&Symbol.for!=null&&(o[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"});o.toJSON=ln;o.toString=Za;o.unix=rn;o.valueOf=sn;o.creationData=fn;o.eraName=yn;o.eraNarrow=wn;o.eraAbbr=kn;o.eraYear=Mn;o.year=It;o.isLeapYear=$s;o.weekYear=On;o.isoWeekYear=Tn;o.quarter=o.quarters=Rn;o.month=jt;o.daysInMonth=ar;o.week=o.weeks=fr;o.isoWeek=o.isoWeeks=cr;o.weeksInYear=Wn;o.weeksInWeekYear=Nn;o.isoWeeksInYear=xn;o.isoWeeksInISOWeekYear=bn;o.date=_s;o.day=o.days=Or;o.weekday=Tr;o.isoWeekday=xr;o.dayOfYear=Fn;o.hour=o.hours=Lr;o.minute=o.minutes=Ln;o.second=o.seconds=Cn;o.millisecond=o.milliseconds=ms;o.utcOffset=wa;o.utc=Ma;o.local=Sa;o.parseZone=Da;o.hasAlignedHourOffset=ga;o.isDST=Ya;o.isLocal=pa;o.isUtcOffset=Oa;o.isUtc=rs;o.isUTC=rs;o.zoneAbbr=Hn;o.zoneName=In;o.dates=W("dates accessor is deprecated. Use date instead.",_s);o.months=W("months accessor is deprecated. Use month instead",jt);o.years=W("years accessor is deprecated. Use year instead",It);o.zone=W("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",ka);o.isDSTShifted=W("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",va);function En(e){return S(e*1e3)}function An(){return S.apply(null,arguments).parseZone()}function ys(e){return e}var k=nt.prototype;k.calendar=ps;k.longDateFormat=bs;k.invalidDate=Ns;k.ordinal=Fs;k.preparse=ys;k.postformat=ys;k.relativeTime=Cs;k.pastFuture=Us;k.set=Ys;k.eras=cn;k.erasParse=_n;k.erasConvertYear=mn;k.erasAbbrRegex=Dn;k.erasNameRegex=Sn;k.erasNarrowRegex=gn;k.months=er;k.monthsShort=tr;k.monthsParse=rr;k.monthsRegex=ir;k.monthsShortRegex=nr;k.week=lr;k.firstDayOfYear=hr;k.firstDayOfWeek=dr;k.weekdays=Dr;k.weekdaysMin=Yr;k.weekdaysShort=gr;k.weekdaysParse=pr;k.weekdaysRegex=br;k.weekdaysShortRegex=Wr;k.weekdaysMinRegex=Nr;k.isPM=Rr;k.meridiem=Cr;function Re(e,t,s,r){var a=q(),n=H().set(r,t);return a[s](n,e)}function ws(e,t,s){if($(e)&&(t=e,e=void 0),e=e||"",t!=null)return Re(e,t,s,"month");var r,a=[];for(r=0;r<12;r++)a[r]=Re(e,r,s,"month");return a}function Yt(e,t,s,r){typeof e=="boolean"?($(t)&&(s=t,t=void 0),t=t||""):(t=e,s=t,e=!1,$(t)&&(s=t,t=void 0),t=t||"");var a=q(),n=e?a._week.dow:0,i,u=[];if(s!=null)return Re(t,(s+n)%7,r,"day");for(i=0;i<7;i++)u[i]=Re(t,(i+n)%7,r,"day");return u}function Vn(e,t){return ws(e,t,"months")}function Gn(e,t){return ws(e,t,"monthsShort")}function jn(e,t,s){return Yt(e,t,s,"weekdays")}function zn(e,t,s){return Yt(e,t,s,"weekdaysShort")}function Zn(e,t,s){return Yt(e,t,s,"weekdaysMin")}K("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10,s=_(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+s}});l.lang=W("moment.lang is deprecated. Use moment.locale instead.",K);l.langData=W("moment.langData is deprecated. Use moment.localeData instead.",q);var A=Math.abs;function $n(){var e=this._data;return this._milliseconds=A(this._milliseconds),this._days=A(this._days),this._months=A(this._months),e.milliseconds=A(e.milliseconds),e.seconds=A(e.seconds),e.minutes=A(e.minutes),e.hours=A(e.hours),e.months=A(e.months),e.years=A(e.years),this}function ks(e,t,s,r){var a=L(t,s);return e._milliseconds+=r*a._milliseconds,e._days+=r*a._days,e._months+=r*a._months,e._bubble()}function qn(e,t){return ks(this,e,t,1)}function Bn(e,t){return ks(this,e,t,-1)}function bt(e){return e<0?Math.floor(e):Math.ceil(e)}function Jn(){var e=this._milliseconds,t=this._days,s=this._months,r=this._data,a,n,i,u,f;return e>=0&&t>=0&&s>=0||e<=0&&t<=0&&s<=0||(e+=bt(tt(s)+t)*864e5,t=0,s=0),r.milliseconds=e%1e3,a=b(e/1e3),r.seconds=a%60,n=b(a/60),r.minutes=n%60,i=b(n/60),r.hours=i%24,t+=b(i/24),f=b(Ms(t)),s+=f,t-=bt(tt(f)),u=b(s/12),s%=12,r.days=t,r.months=s,r.years=u,this}function Ms(e){return e*4800/146097}function tt(e){return e*146097/4800}function Qn(e){if(!this.isValid())return NaN;var t,s,r=this._milliseconds;if(e=N(e),e==="month"||e==="quarter"||e==="year")switch(t=this._days+r/864e5,s=this._months+Ms(t),e){case"month":return s;case"quarter":return s/3;case"year":return s/12}else switch(t=this._days+Math.round(tt(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return t*24+r/36e5;case"minute":return t*1440+r/6e4;case"second":return t*86400+r/1e3;case"millisecond":return Math.floor(t*864e5)+r;default:throw new Error("Unknown unit "+e)}}function B(e){return function(){return this.as(e)}}var Ss=B("ms"),Xn=B("s"),Kn=B("m"),ei=B("h"),ti=B("d"),si=B("w"),ri=B("M"),ai=B("Q"),ni=B("y"),ii=Ss;function oi(){return L(this)}function li(e){return e=N(e),this.isValid()?this[e+"s"]():NaN}function re(e){return function(){return this.isValid()?this._data[e]:NaN}}var ui=re("milliseconds"),di=re("seconds"),hi=re("minutes"),fi=re("hours"),ci=re("days"),_i=re("months"),mi=re("years");function yi(){return b(this.days()/7)}var V=Math.round,ie={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function wi(e,t,s,r,a){return a.relativeTime(t||1,!!s,e,r)}function ki(e,t,s,r){var a=L(e).abs(),n=V(a.as("s")),i=V(a.as("m")),u=V(a.as("h")),f=V(a.as("d")),m=V(a.as("M")),O=V(a.as("w")),E=V(a.as("y")),J=n<=s.ss&&["s",n]||n0,J[4]=r,wi.apply(null,J)}function Mi(e){return e===void 0?V:typeof e=="function"?(V=e,!0):!1}function Si(e,t){return ie[e]===void 0?!1:t===void 0?ie[e]:(ie[e]=t,e==="s"&&(ie.ss=t-1),!0)}function Di(e,t){if(!this.isValid())return this.localeData().invalidDate();var s=!1,r=ie,a,n;return typeof e=="object"&&(t=e,e=!1),typeof e=="boolean"&&(s=e),typeof t=="object"&&(r=Object.assign({},ie,t),t.s!=null&&t.ss==null&&(r.ss=t.s-1)),a=this.localeData(),n=ki(this,!s,r,a),s&&(n=a.pastFuture(+this,n)),a.postformat(n)}var qe=Math.abs;function ae(e){return(e>0)-(e<0)||+e}function je(){if(!this.isValid())return this.localeData().invalidDate();var e=qe(this._milliseconds)/1e3,t=qe(this._days),s=qe(this._months),r,a,n,i,u=this.asSeconds(),f,m,O,E;return u?(r=b(e/60),a=b(r/60),e%=60,r%=60,n=b(s/12),s%=12,i=e?e.toFixed(3).replace(/\.?0+$/,""):"",f=u<0?"-":"",m=ae(this._months)!==ae(u)?"-":"",O=ae(this._days)!==ae(u)?"-":"",E=ae(this._milliseconds)!==ae(u)?"-":"",f+"P"+(n?m+n+"Y":"")+(s?m+s+"M":"")+(t?O+t+"D":"")+(a||r||e?"T":"")+(a?E+a+"H":"")+(r?E+r+"M":"")+(e?E+i+"S":"")):"P0D"}var y=Ve.prototype;y.isValid=ca;y.abs=$n;y.add=qn;y.subtract=Bn;y.as=Qn;y.asMilliseconds=Ss;y.asSeconds=Xn;y.asMinutes=Kn;y.asHours=ei;y.asDays=ti;y.asWeeks=si;y.asMonths=ri;y.asQuarters=ai;y.asYears=ni;y.valueOf=ii;y._bubble=Jn;y.clone=oi;y.get=li;y.milliseconds=ui;y.seconds=di;y.minutes=hi;y.hours=fi;y.days=ci;y.weeks=yi;y.months=_i;y.years=mi;y.humanize=Di;y.toISOString=je;y.toString=je;y.toJSON=je;y.locale=os;y.localeData=us;y.toIsoString=W("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",je);y.lang=ls;h("X",0,0,"unix");h("x",0,0,"valueOf");d("x",He);d("X",As);M("X",function(e,t,s){s._d=new Date(parseFloat(e)*1e3)});M("x",function(e,t,s){s._d=new Date(_(e))});//! moment.js +l.version="2.30.1";Ds(S);l.fn=o;l.min=ua;l.max=da;l.now=ha;l.utc=H;l.unix=En;l.months=Vn;l.isDate=Se;l.locale=K;l.invalid=Fe;l.duration=L;l.isMoment=F;l.weekdays=jn;l.parseZone=An;l.localeData=q;l.isDuration=Te;l.monthsShort=Gn;l.weekdaysMin=Zn;l.defineLocale=mt;l.updateLocale=Er;l.locales=Ar;l.weekdaysShort=zn;l.normalizeUnits=N;l.relativeTimeRounding=Mi;l.relativeTimeThreshold=Si;l.calendarFormat=Ca;l.prototype=o;l.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"};//! moment.js locale configuration +//! locale : Chinese (China) [zh-cn] +//! author : suupic : https://github.com/suupic +//! author : Zeno Zeng : https://github.com/zenozeng +//! author : uu109 : https://github.com/uu109 +l.defineLocale("zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日Ah点mm分",LLLL:"YYYY年M月D日ddddAh点mm分",l:"YYYY/M/D",ll:"YYYY年M月D日",lll:"YYYY年M月D日 HH:mm",llll:"YYYY年M月D日dddd HH:mm"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return e===12&&(e=0),t==="凌晨"||t==="早上"||t==="上午"?e:t==="下午"||t==="晚上"?e+12:e>=11?e:e+12},meridiem:function(e,t,s){var r=e*100+t;return r<600?"凌晨":r<900?"早上":r<1130?"上午":r<1230?"中午":r<1800?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:function(e){return e.week()!==this.week()?"[下]dddLT":"[本]dddLT"},lastDay:"[昨天]LT",lastWeek:function(e){return this.week()!==e.week()?"[上]dddLT":"[本]dddLT"},sameElse:"L"},dayOfMonthOrdinalParse:/\d{1,2}(日|月|周)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"周";default:return e}},relativeTime:{future:"%s后",past:"%s前",s:"几秒",ss:"%d 秒",m:"1 分钟",mm:"%d 分钟",h:"1 小时",hh:"%d 小时",d:"1 天",dd:"%d 天",w:"1 周",ww:"%d 周",M:"1 个月",MM:"%d 个月",y:"1 年",yy:"%d 年"},week:{dow:1,doy:4}});export{l as h}; diff --git a/web/dist/assets/naive-ui-DNcWoFGl.js b/web/dist/assets/naive-ui-DNcWoFGl.js new file mode 100644 index 00000000..18b1b6e9 --- /dev/null +++ b/web/dist/assets/naive-ui-DNcWoFGl.js @@ -0,0 +1,3633 @@ +import{r as cr,s as to,c as Re,g as tr,d as ko,a as yo,h as ot,b as ee,e as nt,f as id,p as Do,i as Xi,j as Ot,k as Zi}from"./seemly-B7f2tHrf.js";import{A as cn,F as co,C as wn,B as ld,D as Go,d as Z,i as $e,g as Br,E as Xe,G as So,H as M,b as po,o as ur,I as ad,J as Qi,p as De,c as $,K as Ji,L as oo,h as i,T as lo,M as Sn,N as le,O as To,n as ao,P as Lo,Q as rr,R as sd,m as Jn,S as el,U as Gr,V as qr,W as dd,t as cd,X as ol}from"./@vue-CQsYufSu.js";import{r as ei,V as tt,a as ud,b as Tr,F as zn,c as Fr,d as Or,e as un,L as $n,f as fd}from"./vueuc-CbQ6ZCvR.js";import{u as Ue,i as $t,a as hd,b as uo,c as yt,d as pd,e as tl,f as rl,g as vd,o as gd}from"./vooks-BQzJqMzq.js";import{m as Lt,u as md,a as bd,r as xd,g as nl,k as Cd,t as Yr}from"./lodash-es-i05dkx59.js";import{m as Rr}from"./@emotion-WldOFDRm.js";import{c as yd,a as xt}from"./treemate-HRdUPn5m.js";import{c as At,m as wd,z as _r}from"./vdirs-DL8EOfHr.js";import{S as oi}from"./async-validator-DKvM95Vc.js";import{o as Ho,a as Io}from"./evtd-CI_DDEu_.js";import{p as Sd,u as Mr}from"./@css-render-CQdyXCYJ.js";import{d as zd}from"./date-fns-x7VUUoCw.js";import{C as $d,e as Pd}from"./css-render-Ct37b3-v.js";function Pn(e,o="default",t=[]){const n=e.$slots[o];return n===void 0?t:n()}function mo(e,o=[],t){const r={};return o.forEach(n=>{r[n]=e[n]}),Object.assign(r,t)}function Wt(e,o=[],t){const r={};return Object.getOwnPropertyNames(e).forEach(l=>{o.includes(l)||(r[l]=e[l])}),Object.assign(r,t)}function rt(e,o=!0,t=[]){return e.forEach(r=>{if(r!==null){if(typeof r!="object"){(typeof r=="string"||typeof r=="number")&&t.push(cn(String(r)));return}if(Array.isArray(r)){rt(r,o,t);return}if(r.type===co){if(r.children===null)return;Array.isArray(r.children)&&rt(r.children,o,t)}else{if(r.type===wn&&o)return;t.push(r)}}}),t}function de(e,...o){if(Array.isArray(e))e.forEach(t=>de(t,...o));else return e(...o)}function wo(e){return Object.keys(e)}const Qe=(e,...o)=>typeof e=="function"?e(...o):typeof e=="string"?cn(e):typeof e=="number"?cn(String(e)):null;function qo(e,o){console.error(`[naive/${e}]: ${o}`)}function Wo(e,o){throw new Error(`[naive/${e}]: ${o}`)}function ti(e){switch(e){case"tiny":return"mini";case"small":return"tiny";case"medium":return"small";case"large":return"medium";case"huge":return"large"}throw Error(`${e} has no smaller size.`)}function fn(e){switch(typeof e){case"string":return e||void 0;case"number":return String(e);default:return}}function hn(e,o="default",t=void 0){const r=e[o];if(!r)return qo("getFirstSlotVNode",`slot[${o}] is empty`),null;const n=rt(r(t));return n.length===1?n[0]:(qo("getFirstSlotVNode",`slot[${o}] should have exactly one child`),null)}function il(e){return o=>{o?e.value=o.$el:e.value=null}}function fr(e){return e.some(o=>ld(o)?!(o.type===wn||o.type===co&&!fr(o.children)):!0)?e:null}function so(e,o){return e&&fr(e())||o()}function pn(e,o,t){return e&&fr(e(o))||t(o)}function je(e,o){const t=e&&fr(e());return o(t||null)}function Ct(e){return!(e&&fr(e()))}function or(e){const o=e.filter(t=>t!==void 0);if(o.length!==0)return o.length===1?o[0]:t=>{e.forEach(r=>{r&&r(t)})}}function Rd(e){var o;const t=(o=e.dirs)===null||o===void 0?void 0:o.find(({dir:r})=>r===Go);return!!(t&&t.value===!1)}const vn=Z({render(){var e,o;return(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e)}}),kd=/^(\d|\.)+$/,ri=/(\d|\.)+/;function ro(e,{c:o=1,offset:t=0,attachPx:r=!0}={}){if(typeof e=="number"){const n=(e+t)*o;return n===0?"0":`${n}px`}else if(typeof e=="string")if(kd.test(e)){const n=(Number(e)+t)*o;return r?n===0?"0":`${n}px`:`${n}`}else{const n=ri.exec(e);return n?e.replace(ri,String((Number(n[0])+t)*o)):e}return e}function Et(e){return e.replace(/#|\(|\)|,|\s|\./g,"_")}const Id="n",nr=`.${Id}-`,Bd="__",Td="--",ll=$d(),al=Sd({blockPrefix:nr,elementPrefix:Bd,modifierPrefix:Td});ll.use(al);const{c:w,find:F1}=ll,{cB:g,cE:S,cM:P,cNotM:Ve}=al;function Dr(e){return w(({props:{bPrefix:o}})=>`${o||nr}modal, ${o||nr}drawer`,[e])}function Rn(e){return w(({props:{bPrefix:o}})=>`${o||nr}popover`,[e])}function sl(e){return w(({props:{bPrefix:o}})=>`&${o||nr}modal`,e)}const Fd=(...e)=>w(">",[g(...e)]);function N(e,o){return e+(o==="default"?"":o.replace(/^[a-z]/,t=>t.toUpperCase()))}let Xr;function Od(){return Xr===void 0&&(Xr=navigator.userAgent.includes("Node.js")||navigator.userAgent.includes("jsdom")),Xr}const No=typeof document<"u"&&typeof window<"u",dl=new WeakSet;function _d(e){dl.add(e)}function cl(e){return!dl.has(e)}function Md(e,o,t){var r;const n=$e(e,null);if(n===null)return;const l=(r=Br())===null||r===void 0?void 0:r.proxy;Xe(t,a),a(t.value),So(()=>{a(void 0,t.value)});function a(c,u){if(!n)return;const f=n[o];u!==void 0&&s(f,u),c!==void 0&&d(f,c)}function s(c,u){c[u]||(c[u]=[]),c[u].splice(c[u].findIndex(f=>f===l),1)}function d(c,u){c[u]||(c[u]=[]),~c[u].findIndex(f=>f===l)||c[u].push(l)}}function Dd(e,o,t){if(!o)return e;const r=M(e.value);let n=null;return Xe(e,l=>{n!==null&&window.clearTimeout(n),l===!0?t&&!t.value?r.value=!0:n=window.setTimeout(()=>{r.value=!0},o):r.value=!1}),r}const kn="n-internal-select-menu",ul="n-internal-select-menu-body",hr="n-modal-body",Hd="n-modal-provider",fl="n-modal",pr="n-drawer-body",In="n-drawer",Nt="n-popover-body",hl="__disabled__";function Fo(e){const o=$e(hr,null),t=$e(pr,null),r=$e(Nt,null),n=$e(ul,null),l=M();if(typeof document<"u"){l.value=document.fullscreenElement;const a=()=>{l.value=document.fullscreenElement};po(()=>{Ho("fullscreenchange",document,a)}),So(()=>{Io("fullscreenchange",document,a)})}return Ue(()=>{var a;const{to:s}=e;return s!==void 0?s===!1?hl:s===!0?l.value||"body":s:o!=null&&o.value?(a=o.value.$el)!==null&&a!==void 0?a:o.value:t!=null&&t.value?t.value:r!=null&&r.value?r.value:n!=null&&n.value?n.value:s??(l.value||"body")})}Fo.tdkey=hl;Fo.propTo={type:[String,Object,Boolean],default:void 0};let ni=!1;function pl(){if(No&&window.CSS&&!ni&&(ni=!0,"registerProperty"in(window==null?void 0:window.CSS)))try{CSS.registerProperty({name:"--n-color-start",syntax:"",inherits:!1,initialValue:"#0000"}),CSS.registerProperty({name:"--n-color-end",syntax:"",inherits:!1,initialValue:"#0000"})}catch{}}function vl(e,o){o&&(po(()=>{const{value:t}=e;t&&ei.registerHandler(t,o)}),So(()=>{const{value:t}=e;t&&ei.unregisterHandler(t)}))}let _t=0,ii="",li="",ai="",si="";const di=M("0px");function gl(e){if(typeof document>"u")return;const o=document.documentElement;let t,r=!1;const n=()=>{o.style.marginRight=ii,o.style.overflow=li,o.style.overflowX=ai,o.style.overflowY=si,di.value="0px"};po(()=>{t=Xe(e,l=>{if(l){if(!_t){const a=window.innerWidth-o.offsetWidth;a>0&&(ii=o.style.marginRight,o.style.marginRight=`${a}px`,di.value=`${a}px`),li=o.style.overflow,ai=o.style.overflowX,si=o.style.overflowY,o.style.overflow="hidden",o.style.overflowX="hidden",o.style.overflowY="hidden"}r=!0,_t++}else _t--,_t||n(),r=!1},{immediate:!0})}),So(()=>{t==null||t(),r&&(_t--,_t||n(),r=!1)})}const Bn=M(!1),ci=()=>{Bn.value=!0},ui=()=>{Bn.value=!1};let Jt=0;const ml=()=>(No&&(ur(()=>{Jt||(window.addEventListener("compositionstart",ci),window.addEventListener("compositionend",ui)),Jt++}),So(()=>{Jt<=1?(window.removeEventListener("compositionstart",ci),window.removeEventListener("compositionend",ui),Jt=0):Jt--})),Bn);function Ld(e){const o={isDeactivated:!1};let t=!1;return ad(()=>{if(o.isDeactivated=!1,!t){t=!0;return}e()}),Qi(()=>{o.isDeactivated=!0,t||(t=!0)}),o}const bl=(e,o)=>{if(!e)return;const t=document.createElement("a");t.href=e,o!==void 0&&(t.download=o),document.body.appendChild(t),t.click(),document.body.removeChild(t)},kr="n-form-item";function it(e,{defaultSize:o="medium",mergedSize:t,mergedDisabled:r}={}){const n=$e(kr,null);De(kr,null);const l=$(t?()=>t(n):()=>{const{size:d}=e;if(d)return d;if(n){const{mergedSize:c}=n;if(c.value!==void 0)return c.value}return o}),a=$(r?()=>r(n):()=>{const{disabled:d}=e;return d!==void 0?d:n?n.disabled.value:!1}),s=$(()=>{const{status:d}=e;return d||(n==null?void 0:n.mergedValidationStatus.value)});return So(()=>{n&&n.restoreValidation()}),{mergedSizeRef:l,mergedDisabledRef:a,mergedStatusRef:s,nTriggerFormBlur(){n&&n.handleContentBlur()},nTriggerFormChange(){n&&n.handleContentChange()},nTriggerFormFocus(){n&&n.handleContentFocus()},nTriggerFormInput(){n&&n.handleContentInput()}}}const zo={fontFamily:'v-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',fontFamilyMono:"v-mono, SFMono-Regular, Menlo, Consolas, Courier, monospace",fontWeight:"400",fontWeightStrong:"500",cubicBezierEaseInOut:"cubic-bezier(.4, 0, .2, 1)",cubicBezierEaseOut:"cubic-bezier(0, 0, .2, 1)",cubicBezierEaseIn:"cubic-bezier(.4, 0, 1, 1)",borderRadius:"3px",borderRadiusSmall:"2px",fontSize:"14px",fontSizeMini:"12px",fontSizeTiny:"12px",fontSizeSmall:"14px",fontSizeMedium:"14px",fontSizeLarge:"15px",fontSizeHuge:"16px",lineHeight:"1.6",heightMini:"16px",heightTiny:"22px",heightSmall:"28px",heightMedium:"34px",heightLarge:"40px",heightHuge:"46px"},{fontSize:Ad,fontFamily:Ed,lineHeight:jd}=zo,xl=w("body",` + margin: 0; + font-size: ${Ad}; + font-family: ${Ed}; + line-height: ${jd}; + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: transparent; +`,[w("input",` + font-family: inherit; + font-size: inherit; + `)]),jo="n-config-provider",ir="naive-ui-style";function ae(e,o,t,r,n,l){const a=Mr(),s=$e(jo,null);if(t){const c=()=>{const u=l==null?void 0:l.value;t.mount({id:u===void 0?o:u+o,head:!0,props:{bPrefix:u?`.${u}-`:void 0},anchorMetaName:ir,ssr:a}),s!=null&&s.preflightStyleDisabled||xl.mount({id:"n-global",head:!0,anchorMetaName:ir,ssr:a})};a?c():ur(c)}return $(()=>{var c;const{theme:{common:u,self:f,peers:p={}}={},themeOverrides:v={},builtinThemeOverrides:h={}}=n,{common:m,peers:x}=v,{common:y=void 0,[e]:{common:b=void 0,self:_=void 0,peers:I={}}={}}=(s==null?void 0:s.mergedThemeRef.value)||{},{common:R=void 0,[e]:z={}}=(s==null?void 0:s.mergedThemeOverridesRef.value)||{},{common:C,peers:H={}}=z,k=Lt({},u||b||y||r.common,R,C,m),D=Lt((c=f||_||r.self)===null||c===void 0?void 0:c(k),h,z,v);return{common:k,self:D,peers:Lt({},r.peers,I,p),peerOverrides:Lt({},h.peers,H,x)}})}ae.props={theme:Object,themeOverrides:Object,builtinThemeOverrides:Object};const lr="n";function Ie(e={},o={defaultBordered:!0}){const t=$e(jo,null);return{inlineThemeDisabled:t==null?void 0:t.inlineThemeDisabled,mergedRtlRef:t==null?void 0:t.mergedRtlRef,mergedComponentPropsRef:t==null?void 0:t.mergedComponentPropsRef,mergedBreakpointsRef:t==null?void 0:t.mergedBreakpointsRef,mergedBorderedRef:$(()=>{var r,n;const{bordered:l}=e;return l!==void 0?l:(n=(r=t==null?void 0:t.mergedBorderedRef.value)!==null&&r!==void 0?r:o.defaultBordered)!==null&&n!==void 0?n:!0}),mergedClsPrefixRef:t?t.mergedClsPrefixRef:Ji(lr),namespaceRef:$(()=>t==null?void 0:t.mergedNamespaceRef.value)}}function Wd(){const e=$e(jo,null);return e?e.mergedClsPrefixRef:Ji(lr)}const Nd={name:"en-US",global:{undo:"Undo",redo:"Redo",confirm:"Confirm",clear:"Clear"},Popconfirm:{positiveText:"Confirm",negativeText:"Cancel"},Cascader:{placeholder:"Please Select",loading:"Loading",loadingRequiredMessage:e=>`Please load all ${e}'s descendants before checking it.`},Time:{dateFormat:"yyyy-MM-dd",dateTimeFormat:"yyyy-MM-dd HH:mm:ss"},DatePicker:{yearFormat:"yyyy",monthFormat:"MMM",dayFormat:"eeeeee",yearTypeFormat:"yyyy",monthTypeFormat:"yyyy-MM",dateFormat:"yyyy-MM-dd",dateTimeFormat:"yyyy-MM-dd HH:mm:ss",quarterFormat:"yyyy-qqq",weekFormat:"yyyy-w",clear:"Clear",now:"Now",confirm:"Confirm",selectTime:"Select Time",selectDate:"Select Date",datePlaceholder:"Select Date",datetimePlaceholder:"Select Date and Time",monthPlaceholder:"Select Month",yearPlaceholder:"Select Year",quarterPlaceholder:"Select Quarter",weekPlaceholder:"Select Week",startDatePlaceholder:"Start Date",endDatePlaceholder:"End Date",startDatetimePlaceholder:"Start Date and Time",endDatetimePlaceholder:"End Date and Time",startMonthPlaceholder:"Start Month",endMonthPlaceholder:"End Month",monthBeforeYear:!0,firstDayOfWeek:6,today:"Today"},DataTable:{checkTableAll:"Select all in the table",uncheckTableAll:"Unselect all in the table",confirm:"Confirm",clear:"Clear"},LegacyTransfer:{sourceTitle:"Source",targetTitle:"Target"},Transfer:{selectAll:"Select all",unselectAll:"Unselect all",clearAll:"Clear",total:e=>`Total ${e} items`,selected:e=>`${e} items selected`},Empty:{description:"No Data"},Select:{placeholder:"Please Select"},TimePicker:{placeholder:"Select Time",positiveText:"OK",negativeText:"Cancel",now:"Now",clear:"Clear"},Pagination:{goto:"Goto",selectionSuffix:"page"},DynamicTags:{add:"Add"},Log:{loading:"Loading"},Input:{placeholder:"Please Input"},InputNumber:{placeholder:"Please Input"},DynamicInput:{create:"Create"},ThemeEditor:{title:"Theme Editor",clearAllVars:"Clear All Variables",clearSearch:"Clear Search",filterCompName:"Filter Component Name",filterVarName:"Filter Variable Name",import:"Import",export:"Export",restore:"Reset to Default"},Image:{tipPrevious:"Previous picture (←)",tipNext:"Next picture (→)",tipCounterclockwise:"Counterclockwise",tipClockwise:"Clockwise",tipZoomOut:"Zoom out",tipZoomIn:"Zoom in",tipDownload:"Download",tipClose:"Close (Esc)",tipOriginalSize:"Zoom to original size"}},Vd=Nd,Ud={name:"en-US",locale:zd},Kd=Ud;function Yo(e){const{mergedLocaleRef:o,mergedDateLocaleRef:t}=$e(jo,null)||{},r=$(()=>{var l,a;return(a=(l=o==null?void 0:o.value)===null||l===void 0?void 0:l[e])!==null&&a!==void 0?a:Vd[e]});return{dateLocaleRef:$(()=>{var l;return(l=t==null?void 0:t.value)!==null&&l!==void 0?l:Kd}),localeRef:r}}function Xo(e,o,t){if(!o)return;const r=Mr(),n=$e(jo,null),l=()=>{const a=t.value;o.mount({id:a===void 0?e:a+e,head:!0,anchorMetaName:ir,props:{bPrefix:a?`.${a}-`:void 0},ssr:r}),n!=null&&n.preflightStyleDisabled||xl.mount({id:"n-global",head:!0,anchorMetaName:ir,ssr:r})};r?l():ur(l)}function We(e,o,t,r){var n;t||Wo("useThemeClass","cssVarsRef is not passed");const l=(n=$e(jo,null))===null||n===void 0?void 0:n.mergedThemeHashRef,a=M(""),s=Mr();let d;const c=`__${e}`,u=()=>{let f=c;const p=o?o.value:void 0,v=l==null?void 0:l.value;v&&(f+="-"+v),p&&(f+="-"+p);const{themeOverrides:h,builtinThemeOverrides:m}=r;h&&(f+="-"+Rr(JSON.stringify(h))),m&&(f+="-"+Rr(JSON.stringify(m))),a.value=f,d=()=>{const x=t.value;let y="";for(const b in x)y+=`${b}: ${x[b]};`;w(`.${f}`,y).mount({id:f,ssr:s}),d=void 0}};return oo(()=>{u()}),{themeClass:a,onRender:()=>{d==null||d()}}}function eo(e,o,t){if(!o)return;const r=Mr(),n=$(()=>{const{value:a}=o;if(!a)return;const s=a[e];if(s)return s}),l=()=>{oo(()=>{const{value:a}=t,s=`${a}${e}Rtl`;if(Pd(s,r))return;const{value:d}=n;d&&d.style.mount({id:s,head:!0,anchorMetaName:ir,props:{bPrefix:a?`.${a}-`:void 0},ssr:r})})};return r?l():ur(l),n}const ar=Z({name:"Add",render(){return i("svg",{width:"512",height:"512",viewBox:"0 0 512 512",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M256 112V400M400 256H112",stroke:"currentColor","stroke-width":"32","stroke-linecap":"round","stroke-linejoin":"round"}))}}),Gd=Z({name:"ArrowDown",render(){return i("svg",{viewBox:"0 0 28 28",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1","fill-rule":"evenodd"},i("g",{"fill-rule":"nonzero"},i("path",{d:"M23.7916,15.2664 C24.0788,14.9679 24.0696,14.4931 23.7711,14.206 C23.4726,13.9188 22.9978,13.928 22.7106,14.2265 L14.7511,22.5007 L14.7511,3.74792 C14.7511,3.33371 14.4153,2.99792 14.0011,2.99792 C13.5869,2.99792 13.2511,3.33371 13.2511,3.74793 L13.2511,22.4998 L5.29259,14.2265 C5.00543,13.928 4.53064,13.9188 4.23213,14.206 C3.93361,14.4931 3.9244,14.9679 4.21157,15.2664 L13.2809,24.6944 C13.6743,25.1034 14.3289,25.1034 14.7223,24.6944 L23.7916,15.2664 Z"}))))}}),qd=Z({name:"ArrowUp",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},i("g",{fill:"none"},i("path",{d:"M3.13 9.163a.5.5 0 1 0 .74.674L9.5 3.67V17.5a.5.5 0 0 0 1 0V3.672l5.63 6.165a.5.5 0 0 0 .738-.674l-6.315-6.916a.746.746 0 0 0-.632-.24a.746.746 0 0 0-.476.24L3.131 9.163z",fill:"currentColor"})))}});function bo(e,o){return Z({name:md(e),setup(){var t;const r=(t=$e(jo,null))===null||t===void 0?void 0:t.mergedIconsRef;return()=>{var n;const l=(n=r==null?void 0:r.value)===null||n===void 0?void 0:n[e];return l?l():o}}})}const Yd=bo("attach",i("svg",{viewBox:"0 0 16 16",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M3.25735931,8.70710678 L7.85355339,4.1109127 C8.82986412,3.13460197 10.4127766,3.13460197 11.3890873,4.1109127 C12.365398,5.08722343 12.365398,6.67013588 11.3890873,7.64644661 L6.08578644,12.9497475 C5.69526215,13.3402718 5.06209717,13.3402718 4.67157288,12.9497475 C4.28104858,12.5592232 4.28104858,11.9260582 4.67157288,11.5355339 L9.97487373,6.23223305 C10.1701359,6.0369709 10.1701359,5.72038841 9.97487373,5.52512627 C9.77961159,5.32986412 9.4630291,5.32986412 9.26776695,5.52512627 L3.96446609,10.8284271 C3.18341751,11.6094757 3.18341751,12.8758057 3.96446609,13.6568542 C4.74551468,14.4379028 6.01184464,14.4379028 6.79289322,13.6568542 L12.0961941,8.35355339 C13.4630291,6.98671837 13.4630291,4.77064094 12.0961941,3.40380592 C10.7293591,2.0369709 8.51328163,2.0369709 7.14644661,3.40380592 L2.55025253,8 C2.35499039,8.19526215 2.35499039,8.51184464 2.55025253,8.70710678 C2.74551468,8.90236893 3.06209717,8.90236893 3.25735931,8.70710678 Z"}))))),fi=Z({name:"Backward",render(){return i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M12.2674 15.793C11.9675 16.0787 11.4927 16.0672 11.2071 15.7673L6.20572 10.5168C5.9298 10.2271 5.9298 9.7719 6.20572 9.48223L11.2071 4.23177C11.4927 3.93184 11.9675 3.92031 12.2674 4.206C12.5673 4.49169 12.5789 4.96642 12.2932 5.26634L7.78458 9.99952L12.2932 14.7327C12.5789 15.0326 12.5673 15.5074 12.2674 15.793Z",fill:"currentColor"}))}}),Xd=Z({name:"Checkmark",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},i("g",{fill:"none"},i("path",{d:"M14.046 3.486a.75.75 0 0 1-.032 1.06l-7.93 7.474a.85.85 0 0 1-1.188-.022l-2.68-2.72a.75.75 0 1 1 1.068-1.053l2.234 2.267l7.468-7.038a.75.75 0 0 1 1.06.032z",fill:"currentColor"})))}}),Zd=Z({name:"ChevronRight",render(){return i("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M5.64645 3.14645C5.45118 3.34171 5.45118 3.65829 5.64645 3.85355L9.79289 8L5.64645 12.1464C5.45118 12.3417 5.45118 12.6583 5.64645 12.8536C5.84171 13.0488 6.15829 13.0488 6.35355 12.8536L10.8536 8.35355C11.0488 8.15829 11.0488 7.84171 10.8536 7.64645L6.35355 3.14645C6.15829 2.95118 5.84171 2.95118 5.64645 3.14645Z",fill:"currentColor"}))}}),Qd=bo("close",i("svg",{viewBox:"0 0 12 12",version:"1.1",xmlns:"http://www.w3.org/2000/svg","aria-hidden":!0},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M2.08859116,2.2156945 L2.14644661,2.14644661 C2.32001296,1.97288026 2.58943736,1.95359511 2.7843055,2.08859116 L2.85355339,2.14644661 L6,5.293 L9.14644661,2.14644661 C9.34170876,1.95118446 9.65829124,1.95118446 9.85355339,2.14644661 C10.0488155,2.34170876 10.0488155,2.65829124 9.85355339,2.85355339 L6.707,6 L9.85355339,9.14644661 C10.0271197,9.32001296 10.0464049,9.58943736 9.91140884,9.7843055 L9.85355339,9.85355339 C9.67998704,10.0271197 9.41056264,10.0464049 9.2156945,9.91140884 L9.14644661,9.85355339 L6,6.707 L2.85355339,9.85355339 C2.65829124,10.0488155 2.34170876,10.0488155 2.14644661,9.85355339 C1.95118446,9.65829124 1.95118446,9.34170876 2.14644661,9.14644661 L5.293,6 L2.14644661,2.85355339 C1.97288026,2.67998704 1.95359511,2.41056264 2.08859116,2.2156945 L2.14644661,2.14644661 L2.08859116,2.2156945 Z"}))))),Cl=Z({name:"Eye",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},i("path",{d:"M255.66 112c-77.94 0-157.89 45.11-220.83 135.33a16 16 0 0 0-.27 17.77C82.92 340.8 161.8 400 255.66 400c92.84 0 173.34-59.38 221.79-135.25a16.14 16.14 0 0 0 0-17.47C428.89 172.28 347.8 112 255.66 112z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"}),i("circle",{cx:"256",cy:"256",r:"80",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"}))}}),Jd=Z({name:"EyeOff",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},i("path",{d:"M432 448a15.92 15.92 0 0 1-11.31-4.69l-352-352a16 16 0 0 1 22.62-22.62l352 352A16 16 0 0 1 432 448z",fill:"currentColor"}),i("path",{d:"M255.66 384c-41.49 0-81.5-12.28-118.92-36.5c-34.07-22-64.74-53.51-88.7-91v-.08c19.94-28.57 41.78-52.73 65.24-72.21a2 2 0 0 0 .14-2.94L93.5 161.38a2 2 0 0 0-2.71-.12c-24.92 21-48.05 46.76-69.08 76.92a31.92 31.92 0 0 0-.64 35.54c26.41 41.33 60.4 76.14 98.28 100.65C162 402 207.9 416 255.66 416a239.13 239.13 0 0 0 75.8-12.58a2 2 0 0 0 .77-3.31l-21.58-21.58a4 4 0 0 0-3.83-1a204.8 204.8 0 0 1-51.16 6.47z",fill:"currentColor"}),i("path",{d:"M490.84 238.6c-26.46-40.92-60.79-75.68-99.27-100.53C349 110.55 302 96 255.66 96a227.34 227.34 0 0 0-74.89 12.83a2 2 0 0 0-.75 3.31l21.55 21.55a4 4 0 0 0 3.88 1a192.82 192.82 0 0 1 50.21-6.69c40.69 0 80.58 12.43 118.55 37c34.71 22.4 65.74 53.88 89.76 91a.13.13 0 0 1 0 .16a310.72 310.72 0 0 1-64.12 72.73a2 2 0 0 0-.15 2.95l19.9 19.89a2 2 0 0 0 2.7.13a343.49 343.49 0 0 0 68.64-78.48a32.2 32.2 0 0 0-.1-34.78z",fill:"currentColor"}),i("path",{d:"M256 160a95.88 95.88 0 0 0-21.37 2.4a2 2 0 0 0-1 3.38l112.59 112.56a2 2 0 0 0 3.38-1A96 96 0 0 0 256 160z",fill:"currentColor"}),i("path",{d:"M165.78 233.66a2 2 0 0 0-3.38 1a96 96 0 0 0 115 115a2 2 0 0 0 1-3.38z",fill:"currentColor"}))}}),ec=bo("trash",i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},i("path",{d:"M432,144,403.33,419.74A32,32,0,0,1,371.55,448H140.46a32,32,0,0,1-31.78-28.26L80,144",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 32px;"}),i("rect",{x:"32",y:"64",width:"448",height:"80",rx:"16",ry:"16",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 32px;"}),i("line",{x1:"312",y1:"240",x2:"200",y2:"352",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 32px;"}),i("line",{x1:"312",y1:"352",x2:"200",y2:"240",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 32px;"}))),oc=bo("download",i("svg",{viewBox:"0 0 16 16",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M3.5,13 L12.5,13 C12.7761424,13 13,13.2238576 13,13.5 C13,13.7454599 12.8231248,13.9496084 12.5898756,13.9919443 L12.5,14 L3.5,14 C3.22385763,14 3,13.7761424 3,13.5 C3,13.2545401 3.17687516,13.0503916 3.41012437,13.0080557 L3.5,13 L12.5,13 L3.5,13 Z M7.91012437,1.00805567 L8,1 C8.24545989,1 8.44960837,1.17687516 8.49194433,1.41012437 L8.5,1.5 L8.5,10.292 L11.1819805,7.6109127 C11.3555469,7.43734635 11.6249713,7.4180612 11.8198394,7.55305725 L11.8890873,7.6109127 C12.0626536,7.78447906 12.0819388,8.05390346 11.9469427,8.2487716 L11.8890873,8.31801948 L8.35355339,11.8535534 C8.17998704,12.0271197 7.91056264,12.0464049 7.7156945,11.9114088 L7.64644661,11.8535534 L4.1109127,8.31801948 C3.91565056,8.12275734 3.91565056,7.80617485 4.1109127,7.6109127 C4.28447906,7.43734635 4.55390346,7.4180612 4.7487716,7.55305725 L4.81801948,7.6109127 L7.5,10.292 L7.5,1.5 C7.5,1.25454011 7.67687516,1.05039163 7.91012437,1.00805567 L8,1 L7.91012437,1.00805567 Z"}))))),tc=Z({name:"Empty",render(){return i("svg",{viewBox:"0 0 28 28",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M26 7.5C26 11.0899 23.0899 14 19.5 14C15.9101 14 13 11.0899 13 7.5C13 3.91015 15.9101 1 19.5 1C23.0899 1 26 3.91015 26 7.5ZM16.8536 4.14645C16.6583 3.95118 16.3417 3.95118 16.1464 4.14645C15.9512 4.34171 15.9512 4.65829 16.1464 4.85355L18.7929 7.5L16.1464 10.1464C15.9512 10.3417 15.9512 10.6583 16.1464 10.8536C16.3417 11.0488 16.6583 11.0488 16.8536 10.8536L19.5 8.20711L22.1464 10.8536C22.3417 11.0488 22.6583 11.0488 22.8536 10.8536C23.0488 10.6583 23.0488 10.3417 22.8536 10.1464L20.2071 7.5L22.8536 4.85355C23.0488 4.65829 23.0488 4.34171 22.8536 4.14645C22.6583 3.95118 22.3417 3.95118 22.1464 4.14645L19.5 6.79289L16.8536 4.14645Z",fill:"currentColor"}),i("path",{d:"M25 22.75V12.5991C24.5572 13.0765 24.053 13.4961 23.5 13.8454V16H17.5L17.3982 16.0068C17.0322 16.0565 16.75 16.3703 16.75 16.75C16.75 18.2688 15.5188 19.5 14 19.5C12.4812 19.5 11.25 18.2688 11.25 16.75L11.2432 16.6482C11.1935 16.2822 10.8797 16 10.5 16H4.5V7.25C4.5 6.2835 5.2835 5.5 6.25 5.5H12.2696C12.4146 4.97463 12.6153 4.47237 12.865 4H6.25C4.45507 4 3 5.45507 3 7.25V22.75C3 24.5449 4.45507 26 6.25 26H21.75C23.5449 26 25 24.5449 25 22.75ZM4.5 22.75V17.5H9.81597L9.85751 17.7041C10.2905 19.5919 11.9808 21 14 21L14.215 20.9947C16.2095 20.8953 17.842 19.4209 18.184 17.5H23.5V22.75C23.5 23.7165 22.7165 24.5 21.75 24.5H6.25C5.2835 24.5 4.5 23.7165 4.5 22.75Z",fill:"currentColor"}))}}),Vt=bo("error",i("svg",{viewBox:"0 0 48 48",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1","fill-rule":"evenodd"},i("g",{"fill-rule":"nonzero"},i("path",{d:"M24,4 C35.045695,4 44,12.954305 44,24 C44,35.045695 35.045695,44 24,44 C12.954305,44 4,35.045695 4,24 C4,12.954305 12.954305,4 24,4 Z M17.8838835,16.1161165 L17.7823881,16.0249942 C17.3266086,15.6583353 16.6733914,15.6583353 16.2176119,16.0249942 L16.1161165,16.1161165 L16.0249942,16.2176119 C15.6583353,16.6733914 15.6583353,17.3266086 16.0249942,17.7823881 L16.1161165,17.8838835 L22.233,24 L16.1161165,30.1161165 L16.0249942,30.2176119 C15.6583353,30.6733914 15.6583353,31.3266086 16.0249942,31.7823881 L16.1161165,31.8838835 L16.2176119,31.9750058 C16.6733914,32.3416647 17.3266086,32.3416647 17.7823881,31.9750058 L17.8838835,31.8838835 L24,25.767 L30.1161165,31.8838835 L30.2176119,31.9750058 C30.6733914,32.3416647 31.3266086,32.3416647 31.7823881,31.9750058 L31.8838835,31.8838835 L31.9750058,31.7823881 C32.3416647,31.3266086 32.3416647,30.6733914 31.9750058,30.2176119 L31.8838835,30.1161165 L25.767,24 L31.8838835,17.8838835 L31.9750058,17.7823881 C32.3416647,17.3266086 32.3416647,16.6733914 31.9750058,16.2176119 L31.8838835,16.1161165 L31.7823881,16.0249942 C31.3266086,15.6583353 30.6733914,15.6583353 30.2176119,16.0249942 L30.1161165,16.1161165 L24,22.233 L17.8838835,16.1161165 L17.7823881,16.0249942 L17.8838835,16.1161165 Z"}))))),hi=Z({name:"FastBackward",render(){return i("svg",{viewBox:"0 0 20 20",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M8.73171,16.7949 C9.03264,17.0795 9.50733,17.0663 9.79196,16.7654 C10.0766,16.4644 10.0634,15.9897 9.76243,15.7051 L4.52339,10.75 L17.2471,10.75 C17.6613,10.75 17.9971,10.4142 17.9971,10 C17.9971,9.58579 17.6613,9.25 17.2471,9.25 L4.52112,9.25 L9.76243,4.29275 C10.0634,4.00812 10.0766,3.53343 9.79196,3.2325 C9.50733,2.93156 9.03264,2.91834 8.73171,3.20297 L2.31449,9.27241 C2.14819,9.4297 2.04819,9.62981 2.01448,9.8386 C2.00308,9.89058 1.99707,9.94459 1.99707,10 C1.99707,10.0576 2.00356,10.1137 2.01585,10.1675 C2.05084,10.3733 2.15039,10.5702 2.31449,10.7254 L8.73171,16.7949 Z"}))))}}),pi=Z({name:"FastForward",render(){return i("svg",{viewBox:"0 0 20 20",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M11.2654,3.20511 C10.9644,2.92049 10.4897,2.93371 10.2051,3.23464 C9.92049,3.53558 9.93371,4.01027 10.2346,4.29489 L15.4737,9.25 L2.75,9.25 C2.33579,9.25 2,9.58579 2,10.0000012 C2,10.4142 2.33579,10.75 2.75,10.75 L15.476,10.75 L10.2346,15.7073 C9.93371,15.9919 9.92049,16.4666 10.2051,16.7675 C10.4897,17.0684 10.9644,17.0817 11.2654,16.797 L17.6826,10.7276 C17.8489,10.5703 17.9489,10.3702 17.9826,10.1614 C17.994,10.1094 18,10.0554 18,10.0000012 C18,9.94241 17.9935,9.88633 17.9812,9.83246 C17.9462,9.62667 17.8467,9.42976 17.6826,9.27455 L11.2654,3.20511 Z"}))))}}),vi=Z({name:"Forward",render(){return i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M7.73271 4.20694C8.03263 3.92125 8.50737 3.93279 8.79306 4.23271L13.7944 9.48318C14.0703 9.77285 14.0703 10.2281 13.7944 10.5178L8.79306 15.7682C8.50737 16.0681 8.03263 16.0797 7.73271 15.794C7.43279 15.5083 7.42125 15.0336 7.70694 14.7336L12.2155 10.0005L7.70694 5.26729C7.42125 4.96737 7.43279 4.49264 7.73271 4.20694Z",fill:"currentColor"}))}}),wt=bo("info",i("svg",{viewBox:"0 0 28 28",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1","fill-rule":"evenodd"},i("g",{"fill-rule":"nonzero"},i("path",{d:"M14,2 C20.6274,2 26,7.37258 26,14 C26,20.6274 20.6274,26 14,26 C7.37258,26 2,20.6274 2,14 C2,7.37258 7.37258,2 14,2 Z M14,11 C13.4477,11 13,11.4477 13,12 L13,12 L13,20 C13,20.5523 13.4477,21 14,21 C14.5523,21 15,20.5523 15,20 L15,20 L15,12 C15,11.4477 14.5523,11 14,11 Z M14,6.75 C13.3096,6.75 12.75,7.30964 12.75,8 C12.75,8.69036 13.3096,9.25 14,9.25 C14.6904,9.25 15.25,8.69036 15.25,8 C15.25,7.30964 14.6904,6.75 14,6.75 Z"}))))),gi=Z({name:"More",render(){return i("svg",{viewBox:"0 0 16 16",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M4,7 C4.55228,7 5,7.44772 5,8 C5,8.55229 4.55228,9 4,9 C3.44772,9 3,8.55229 3,8 C3,7.44772 3.44772,7 4,7 Z M8,7 C8.55229,7 9,7.44772 9,8 C9,8.55229 8.55229,9 8,9 C7.44772,9 7,8.55229 7,8 C7,7.44772 7.44772,7 8,7 Z M12,7 C12.5523,7 13,7.44772 13,8 C13,8.55229 12.5523,9 12,9 C11.4477,9 11,8.55229 11,8 C11,7.44772 11.4477,7 12,7 Z"}))))}}),yl=Z({name:"Remove",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},i("line",{x1:"400",y1:"256",x2:"112",y2:"256",style:` + fill: none; + stroke: currentColor; + stroke-linecap: round; + stroke-linejoin: round; + stroke-width: 32px; + `}))}}),Ut=bo("success",i("svg",{viewBox:"0 0 48 48",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1","fill-rule":"evenodd"},i("g",{"fill-rule":"nonzero"},i("path",{d:"M24,4 C35.045695,4 44,12.954305 44,24 C44,35.045695 35.045695,44 24,44 C12.954305,44 4,35.045695 4,24 C4,12.954305 12.954305,4 24,4 Z M32.6338835,17.6161165 C32.1782718,17.1605048 31.4584514,17.1301307 30.9676119,17.5249942 L30.8661165,17.6161165 L20.75,27.732233 L17.1338835,24.1161165 C16.6457281,23.6279612 15.8542719,23.6279612 15.3661165,24.1161165 C14.9105048,24.5717282 14.8801307,25.2915486 15.2749942,25.7823881 L15.3661165,25.8838835 L19.8661165,30.3838835 C20.3217282,30.8394952 21.0415486,30.8698693 21.5323881,30.4750058 L21.6338835,30.3838835 L32.6338835,19.3838835 C33.1220388,18.8957281 33.1220388,18.1042719 32.6338835,17.6161165 Z"}))))),Pt=bo("warning",i("svg",{viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1","fill-rule":"evenodd"},i("g",{"fill-rule":"nonzero"},i("path",{d:"M12,2 C17.523,2 22,6.478 22,12 C22,17.522 17.523,22 12,22 C6.477,22 2,17.522 2,12 C2,6.478 6.477,2 12,2 Z M12.0018002,15.0037242 C11.450254,15.0037242 11.0031376,15.4508407 11.0031376,16.0023869 C11.0031376,16.553933 11.450254,17.0010495 12.0018002,17.0010495 C12.5533463,17.0010495 13.0004628,16.553933 13.0004628,16.0023869 C13.0004628,15.4508407 12.5533463,15.0037242 12.0018002,15.0037242 Z M11.99964,7 C11.4868042,7.00018474 11.0642719,7.38637706 11.0066858,7.8837365 L11,8.00036004 L11.0018003,13.0012393 L11.00857,13.117858 C11.0665141,13.6151758 11.4893244,14.0010638 12.0021602,14.0008793 C12.514996,14.0006946 12.9375283,13.6145023 12.9951144,13.1171428 L13.0018002,13.0005193 L13,7.99964009 L12.9932303,7.8830214 C12.9352861,7.38570354 12.5124758,6.99981552 11.99964,7 Z"}))))),rc=bo("cancel",i("svg",{viewBox:"0 0 16 16",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M2.58859116,2.7156945 L2.64644661,2.64644661 C2.82001296,2.47288026 3.08943736,2.45359511 3.2843055,2.58859116 L3.35355339,2.64644661 L8,7.293 L12.6464466,2.64644661 C12.8417088,2.45118446 13.1582912,2.45118446 13.3535534,2.64644661 C13.5488155,2.84170876 13.5488155,3.15829124 13.3535534,3.35355339 L8.707,8 L13.3535534,12.6464466 C13.5271197,12.820013 13.5464049,13.0894374 13.4114088,13.2843055 L13.3535534,13.3535534 C13.179987,13.5271197 12.9105626,13.5464049 12.7156945,13.4114088 L12.6464466,13.3535534 L8,8.707 L3.35355339,13.3535534 C3.15829124,13.5488155 2.84170876,13.5488155 2.64644661,13.3535534 C2.45118446,13.1582912 2.45118446,12.8417088 2.64644661,12.6464466 L7.293,8 L2.64644661,3.35355339 C2.47288026,3.17998704 2.45359511,2.91056264 2.58859116,2.7156945 L2.64644661,2.64644661 L2.58859116,2.7156945 Z"}))))),nc=Z({name:"ChevronDown",render(){return i("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M3.14645 5.64645C3.34171 5.45118 3.65829 5.45118 3.85355 5.64645L8 9.79289L12.1464 5.64645C12.3417 5.45118 12.6583 5.45118 12.8536 5.64645C13.0488 5.84171 13.0488 6.15829 12.8536 6.35355L8.35355 10.8536C8.15829 11.0488 7.84171 11.0488 7.64645 10.8536L3.14645 6.35355C2.95118 6.15829 2.95118 5.84171 3.14645 5.64645Z",fill:"currentColor"}))}}),ic=bo("clear",i("svg",{viewBox:"0 0 16 16",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M8,2 C11.3137085,2 14,4.6862915 14,8 C14,11.3137085 11.3137085,14 8,14 C4.6862915,14 2,11.3137085 2,8 C2,4.6862915 4.6862915,2 8,2 Z M6.5343055,5.83859116 C6.33943736,5.70359511 6.07001296,5.72288026 5.89644661,5.89644661 L5.89644661,5.89644661 L5.83859116,5.9656945 C5.70359511,6.16056264 5.72288026,6.42998704 5.89644661,6.60355339 L5.89644661,6.60355339 L7.293,8 L5.89644661,9.39644661 L5.83859116,9.4656945 C5.70359511,9.66056264 5.72288026,9.92998704 5.89644661,10.1035534 L5.89644661,10.1035534 L5.9656945,10.1614088 C6.16056264,10.2964049 6.42998704,10.2771197 6.60355339,10.1035534 L6.60355339,10.1035534 L8,8.707 L9.39644661,10.1035534 L9.4656945,10.1614088 C9.66056264,10.2964049 9.92998704,10.2771197 10.1035534,10.1035534 L10.1035534,10.1035534 L10.1614088,10.0343055 C10.2964049,9.83943736 10.2771197,9.57001296 10.1035534,9.39644661 L10.1035534,9.39644661 L8.707,8 L10.1035534,6.60355339 L10.1614088,6.5343055 C10.2964049,6.33943736 10.2771197,6.07001296 10.1035534,5.89644661 L10.1035534,5.89644661 L10.0343055,5.83859116 C9.83943736,5.70359511 9.57001296,5.72288026 9.39644661,5.89644661 L9.39644661,5.89644661 L8,7.293 L6.60355339,5.89644661 Z"}))))),lc=Z({name:"ChevronDownFilled",render(){return i("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M3.20041 5.73966C3.48226 5.43613 3.95681 5.41856 4.26034 5.70041L8 9.22652L11.7397 5.70041C12.0432 5.41856 12.5177 5.43613 12.7996 5.73966C13.0815 6.0432 13.0639 6.51775 12.7603 6.7996L8.51034 10.7996C8.22258 11.0668 7.77743 11.0668 7.48967 10.7996L3.23966 6.7996C2.93613 6.51775 2.91856 6.0432 3.20041 5.73966Z",fill:"currentColor"}))}}),ac=bo("retry",i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},i("path",{d:"M320,146s24.36-12-64-12A160,160,0,1,0,416,294",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-miterlimit: 10; stroke-width: 32px;"}),i("polyline",{points:"256 58 336 138 256 218",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 32px;"}))),sc=bo("rotateClockwise",i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10C17 12.7916 15.3658 15.2026 13 16.3265V14.5C13 14.2239 12.7761 14 12.5 14C12.2239 14 12 14.2239 12 14.5V17.5C12 17.7761 12.2239 18 12.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H13.8758C16.3346 15.6357 18 13.0128 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10C2 10.2761 2.22386 10.5 2.5 10.5C2.77614 10.5 3 10.2761 3 10Z",fill:"currentColor"}),i("path",{d:"M10 12C11.1046 12 12 11.1046 12 10C12 8.89543 11.1046 8 10 8C8.89543 8 8 8.89543 8 10C8 11.1046 8.89543 12 10 12ZM10 11C9.44772 11 9 10.5523 9 10C9 9.44772 9.44772 9 10 9C10.5523 9 11 9.44772 11 10C11 10.5523 10.5523 11 10 11Z",fill:"currentColor"}))),dc=bo("rotateClockwise",i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M17 10C17 6.13401 13.866 3 10 3C6.13401 3 3 6.13401 3 10C3 12.7916 4.63419 15.2026 7 16.3265V14.5C7 14.2239 7.22386 14 7.5 14C7.77614 14 8 14.2239 8 14.5V17.5C8 17.7761 7.77614 18 7.5 18H4.5C4.22386 18 4 17.7761 4 17.5C4 17.2239 4.22386 17 4.5 17H6.12422C3.66539 15.6357 2 13.0128 2 10C2 5.58172 5.58172 2 10 2C14.4183 2 18 5.58172 18 10C18 10.2761 17.7761 10.5 17.5 10.5C17.2239 10.5 17 10.2761 17 10Z",fill:"currentColor"}),i("path",{d:"M10 12C8.89543 12 8 11.1046 8 10C8 8.89543 8.89543 8 10 8C11.1046 8 12 8.89543 12 10C12 11.1046 11.1046 12 10 12ZM10 11C10.5523 11 11 10.5523 11 10C11 9.44772 10.5523 9 10 9C9.44772 9 9 9.44772 9 10C9 10.5523 9.44772 11 10 11Z",fill:"currentColor"}))),cc=bo("zoomIn",i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M11.5 8.5C11.5 8.22386 11.2761 8 11 8H9V6C9 5.72386 8.77614 5.5 8.5 5.5C8.22386 5.5 8 5.72386 8 6V8H6C5.72386 8 5.5 8.22386 5.5 8.5C5.5 8.77614 5.72386 9 6 9H8V11C8 11.2761 8.22386 11.5 8.5 11.5C8.77614 11.5 9 11.2761 9 11V9H11C11.2761 9 11.5 8.77614 11.5 8.5Z",fill:"currentColor"}),i("path",{d:"M8.5 3C11.5376 3 14 5.46243 14 8.5C14 9.83879 13.5217 11.0659 12.7266 12.0196L16.8536 16.1464C17.0488 16.3417 17.0488 16.6583 16.8536 16.8536C16.68 17.0271 16.4106 17.0464 16.2157 16.9114L16.1464 16.8536L12.0196 12.7266C11.0659 13.5217 9.83879 14 8.5 14C5.46243 14 3 11.5376 3 8.5C3 5.46243 5.46243 3 8.5 3ZM8.5 4C6.01472 4 4 6.01472 4 8.5C4 10.9853 6.01472 13 8.5 13C10.9853 13 13 10.9853 13 8.5C13 6.01472 10.9853 4 8.5 4Z",fill:"currentColor"}))),uc=bo("zoomOut",i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M11 8C11.2761 8 11.5 8.22386 11.5 8.5C11.5 8.77614 11.2761 9 11 9H6C5.72386 9 5.5 8.77614 5.5 8.5C5.5 8.22386 5.72386 8 6 8H11Z",fill:"currentColor"}),i("path",{d:"M14 8.5C14 5.46243 11.5376 3 8.5 3C5.46243 3 3 5.46243 3 8.5C3 11.5376 5.46243 14 8.5 14C9.83879 14 11.0659 13.5217 12.0196 12.7266L16.1464 16.8536L16.2157 16.9114C16.4106 17.0464 16.68 17.0271 16.8536 16.8536C17.0488 16.6583 17.0488 16.3417 16.8536 16.1464L12.7266 12.0196C13.5217 11.0659 14 9.83879 14 8.5ZM4 8.5C4 6.01472 6.01472 4 8.5 4C10.9853 4 13 6.01472 13 8.5C13 10.9853 10.9853 13 8.5 13C6.01472 13 4 10.9853 4 8.5Z",fill:"currentColor"}))),fc=Z({name:"ResizeSmall",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},i("g",{fill:"none"},i("path",{d:"M5.5 4A1.5 1.5 0 0 0 4 5.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 5.5 3h1a.5.5 0 0 1 0 1h-1zM16 5.5A1.5 1.5 0 0 0 14.5 4h-1a.5.5 0 0 1 0-1h1A2.5 2.5 0 0 1 17 5.5v1a.5.5 0 0 1-1 0v-1zm0 9a1.5 1.5 0 0 1-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1zm-12 0A1.5 1.5 0 0 0 5.5 16h1.25a.5.5 0 0 1 0 1H5.5A2.5 2.5 0 0 1 3 14.5v-1.25a.5.5 0 0 1 1 0v1.25zM8.5 7A1.5 1.5 0 0 0 7 8.5v3A1.5 1.5 0 0 0 8.5 13h3a1.5 1.5 0 0 0 1.5-1.5v-3A1.5 1.5 0 0 0 11.5 7h-3zM8 8.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3z",fill:"currentColor"})))}}),Kt=Z({name:"BaseIconSwitchTransition",setup(e,{slots:o}){const t=$t();return()=>i(lo,{name:"icon-switch-transition",appear:t.value},o)}}),Rt=Z({name:"FadeInExpandTransition",props:{appear:Boolean,group:Boolean,mode:String,onLeave:Function,onAfterLeave:Function,onAfterEnter:Function,width:Boolean,reverse:Boolean},setup(e,{slots:o}){function t(s){e.width?s.style.maxWidth=`${s.offsetWidth}px`:s.style.maxHeight=`${s.offsetHeight}px`,s.offsetWidth}function r(s){e.width?s.style.maxWidth="0":s.style.maxHeight="0",s.offsetWidth;const{onLeave:d}=e;d&&d()}function n(s){e.width?s.style.maxWidth="":s.style.maxHeight="";const{onAfterLeave:d}=e;d&&d()}function l(s){if(s.style.transition="none",e.width){const d=s.offsetWidth;s.style.maxWidth="0",s.offsetWidth,s.style.transition="",s.style.maxWidth=`${d}px`}else if(e.reverse)s.style.maxHeight=`${s.offsetHeight}px`,s.offsetHeight,s.style.transition="",s.style.maxHeight="0";else{const d=s.offsetHeight;s.style.maxHeight="0",s.offsetWidth,s.style.transition="",s.style.maxHeight=`${d}px`}s.offsetWidth}function a(s){var d;e.width?s.style.maxWidth="":e.reverse||(s.style.maxHeight=""),(d=e.onAfterEnter)===null||d===void 0||d.call(e)}return()=>{const{group:s,width:d,appear:c,mode:u}=e,f=s?Sn:lo,p={name:d?"fade-in-width-expand-transition":"fade-in-height-expand-transition",appear:c,onEnter:l,onAfterEnter:a,onBeforeLeave:t,onLeave:r,onAfterLeave:n};return s||(p.mode=u),i(f,p,o)}}}),hc=g("base-icon",` + height: 1em; + width: 1em; + line-height: 1em; + text-align: center; + display: inline-block; + position: relative; + fill: currentColor; + transform: translateZ(0); +`,[w("svg",` + height: 1em; + width: 1em; + `)]),Le=Z({name:"BaseIcon",props:{role:String,ariaLabel:String,ariaDisabled:{type:Boolean,default:void 0},ariaHidden:{type:Boolean,default:void 0},clsPrefix:{type:String,required:!0},onClick:Function,onMousedown:Function,onMouseup:Function},setup(e){Xo("-base-icon",hc,le(e,"clsPrefix"))},render(){return i("i",{class:`${this.clsPrefix}-base-icon`,onClick:this.onClick,onMousedown:this.onMousedown,onMouseup:this.onMouseup,role:this.role,"aria-label":this.ariaLabel,"aria-hidden":this.ariaHidden,"aria-disabled":this.ariaDisabled},this.$slots)}}),pc=g("base-close",` + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + background-color: transparent; + color: var(--n-close-icon-color); + border-radius: var(--n-close-border-radius); + height: var(--n-close-size); + width: var(--n-close-size); + font-size: var(--n-close-icon-size); + outline: none; + border: none; + position: relative; + padding: 0; +`,[P("absolute",` + height: var(--n-close-icon-size); + width: var(--n-close-icon-size); + `),w("&::before",` + content: ""; + position: absolute; + width: var(--n-close-size); + height: var(--n-close-size); + left: 50%; + top: 50%; + transform: translateY(-50%) translateX(-50%); + transition: inherit; + border-radius: inherit; + `),Ve("disabled",[w("&:hover",` + color: var(--n-close-icon-color-hover); + `),w("&:hover::before",` + background-color: var(--n-close-color-hover); + `),w("&:focus::before",` + background-color: var(--n-close-color-hover); + `),w("&:active",` + color: var(--n-close-icon-color-pressed); + `),w("&:active::before",` + background-color: var(--n-close-color-pressed); + `)]),P("disabled",` + cursor: not-allowed; + color: var(--n-close-icon-color-disabled); + background-color: transparent; + `),P("round",[w("&::before",` + border-radius: 50%; + `)])]),kt=Z({name:"BaseClose",props:{isButtonTag:{type:Boolean,default:!0},clsPrefix:{type:String,required:!0},disabled:{type:Boolean,default:void 0},focusable:{type:Boolean,default:!0},round:Boolean,onClick:Function,absolute:Boolean},setup(e){return Xo("-base-close",pc,le(e,"clsPrefix")),()=>{const{clsPrefix:o,disabled:t,absolute:r,round:n,isButtonTag:l}=e;return i(l?"button":"div",{type:l?"button":void 0,tabindex:t||!e.focusable?-1:0,"aria-disabled":t,"aria-label":"close",role:l?void 0:"button",disabled:t,class:[`${o}-base-close`,r&&`${o}-base-close--absolute`,t&&`${o}-base-close--disabled`,n&&`${o}-base-close--round`],onMousedown:s=>{e.focusable||s.preventDefault()},onClick:e.onClick},i(Le,{clsPrefix:o},{default:()=>i(Qd,null)}))}}}),vc=Z({props:{onFocus:Function,onBlur:Function},setup(e){return()=>i("div",{style:"width: 0; height: 0",tabindex:0,onFocus:e.onFocus,onBlur:e.onBlur})}}),{cubicBezierEaseInOut:gc}=zo;function ct({originalTransform:e="",left:o=0,top:t=0,transition:r=`all .3s ${gc} !important`}={}){return[w("&.icon-switch-transition-enter-from, &.icon-switch-transition-leave-to",{transform:e+" scale(0.75)",left:o,top:t,opacity:0}),w("&.icon-switch-transition-enter-to, &.icon-switch-transition-leave-from",{transform:`scale(1) ${e}`,left:o,top:t,opacity:1}),w("&.icon-switch-transition-enter-active, &.icon-switch-transition-leave-active",{transformOrigin:"center",position:"absolute",left:o,top:t,transition:r})]}const mc=w([w("@keyframes rotator",` + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + }`),g("base-loading",` + position: relative; + line-height: 0; + width: 1em; + height: 1em; + `,[S("transition-wrapper",` + position: absolute; + width: 100%; + height: 100%; + `,[ct()]),S("placeholder",` + position: absolute; + left: 50%; + top: 50%; + transform: translateX(-50%) translateY(-50%); + `,[ct({left:"50%",top:"50%",originalTransform:"translateX(-50%) translateY(-50%)"})]),S("container",` + animation: rotator 3s linear infinite both; + `,[S("icon",` + height: 1em; + width: 1em; + `)])])]),Zr="1.6s",bc={strokeWidth:{type:Number,default:28},stroke:{type:String,default:void 0}},Gt=Z({name:"BaseLoading",props:Object.assign({clsPrefix:{type:String,required:!0},show:{type:Boolean,default:!0},scale:{type:Number,default:1},radius:{type:Number,default:100}},bc),setup(e){Xo("-base-loading",mc,le(e,"clsPrefix"))},render(){const{clsPrefix:e,radius:o,strokeWidth:t,stroke:r,scale:n}=this,l=o/n;return i("div",{class:`${e}-base-loading`,role:"img","aria-label":"loading"},i(Kt,null,{default:()=>this.show?i("div",{key:"icon",class:`${e}-base-loading__transition-wrapper`},i("div",{class:`${e}-base-loading__container`},i("svg",{class:`${e}-base-loading__icon`,viewBox:`0 0 ${2*l} ${2*l}`,xmlns:"http://www.w3.org/2000/svg",style:{color:r}},i("g",null,i("animateTransform",{attributeName:"transform",type:"rotate",values:`0 ${l} ${l};270 ${l} ${l}`,begin:"0s",dur:Zr,fill:"freeze",repeatCount:"indefinite"}),i("circle",{class:`${e}-base-loading__icon`,fill:"none",stroke:"currentColor","stroke-width":t,"stroke-linecap":"round",cx:l,cy:l,r:o-t/2,"stroke-dasharray":5.67*o,"stroke-dashoffset":18.48*o},i("animateTransform",{attributeName:"transform",type:"rotate",values:`0 ${l} ${l};135 ${l} ${l};450 ${l} ${l}`,begin:"0s",dur:Zr,fill:"freeze",repeatCount:"indefinite"}),i("animate",{attributeName:"stroke-dashoffset",values:`${5.67*o};${1.42*o};${5.67*o}`,begin:"0s",dur:Zr,fill:"freeze",repeatCount:"indefinite"})))))):i("div",{key:"placeholder",class:`${e}-base-loading__placeholder`},this.$slots)}))}}),ye={neutralBase:"#000",neutralInvertBase:"#fff",neutralTextBase:"#fff",neutralPopover:"rgb(72, 72, 78)",neutralCard:"rgb(24, 24, 28)",neutralModal:"rgb(44, 44, 50)",neutralBody:"rgb(16, 16, 20)",alpha1:"0.9",alpha2:"0.82",alpha3:"0.52",alpha4:"0.38",alpha5:"0.28",alphaClose:"0.52",alphaDisabled:"0.38",alphaDisabledInput:"0.06",alphaPending:"0.09",alphaTablePending:"0.06",alphaTableStriped:"0.05",alphaPressed:"0.05",alphaAvatar:"0.18",alphaRail:"0.2",alphaProgressRail:"0.12",alphaBorder:"0.24",alphaDivider:"0.09",alphaInput:"0.1",alphaAction:"0.06",alphaTab:"0.04",alphaScrollbar:"0.2",alphaScrollbarHover:"0.3",alphaCode:"0.12",alphaTag:"0.2",primaryHover:"#7fe7c4",primaryDefault:"#63e2b7",primaryActive:"#5acea7",primarySuppl:"rgb(42, 148, 125)",infoHover:"#8acbec",infoDefault:"#70c0e8",infoActive:"#66afd3",infoSuppl:"rgb(56, 137, 197)",errorHover:"#e98b8b",errorDefault:"#e88080",errorActive:"#e57272",errorSuppl:"rgb(208, 58, 82)",warningHover:"#f5d599",warningDefault:"#f2c97d",warningActive:"#e6c260",warningSuppl:"rgb(240, 138, 0)",successHover:"#7fe7c4",successDefault:"#63e2b7",successActive:"#5acea7",successSuppl:"rgb(42, 148, 125)"},xc=cr(ye.neutralBase),wl=cr(ye.neutralInvertBase),Cc="rgba("+wl.slice(0,3).join(", ")+", ";function Ke(e){return Cc+String(e)+")"}function yc(e){const o=Array.from(wl);return o[3]=Number(e),Re(xc,o)}const wc=Object.assign(Object.assign({name:"common"},zo),{baseColor:ye.neutralBase,primaryColor:ye.primaryDefault,primaryColorHover:ye.primaryHover,primaryColorPressed:ye.primaryActive,primaryColorSuppl:ye.primarySuppl,infoColor:ye.infoDefault,infoColorHover:ye.infoHover,infoColorPressed:ye.infoActive,infoColorSuppl:ye.infoSuppl,successColor:ye.successDefault,successColorHover:ye.successHover,successColorPressed:ye.successActive,successColorSuppl:ye.successSuppl,warningColor:ye.warningDefault,warningColorHover:ye.warningHover,warningColorPressed:ye.warningActive,warningColorSuppl:ye.warningSuppl,errorColor:ye.errorDefault,errorColorHover:ye.errorHover,errorColorPressed:ye.errorActive,errorColorSuppl:ye.errorSuppl,textColorBase:ye.neutralTextBase,textColor1:Ke(ye.alpha1),textColor2:Ke(ye.alpha2),textColor3:Ke(ye.alpha3),textColorDisabled:Ke(ye.alpha4),placeholderColor:Ke(ye.alpha4),placeholderColorDisabled:Ke(ye.alpha5),iconColor:Ke(ye.alpha4),iconColorDisabled:Ke(ye.alpha5),iconColorHover:Ke(Number(ye.alpha4)*1.25),iconColorPressed:Ke(Number(ye.alpha4)*.8),opacity1:ye.alpha1,opacity2:ye.alpha2,opacity3:ye.alpha3,opacity4:ye.alpha4,opacity5:ye.alpha5,dividerColor:Ke(ye.alphaDivider),borderColor:Ke(ye.alphaBorder),closeIconColorHover:Ke(Number(ye.alphaClose)),closeIconColor:Ke(Number(ye.alphaClose)),closeIconColorPressed:Ke(Number(ye.alphaClose)),closeColorHover:"rgba(255, 255, 255, .12)",closeColorPressed:"rgba(255, 255, 255, .08)",clearColor:Ke(ye.alpha4),clearColorHover:to(Ke(ye.alpha4),{alpha:1.25}),clearColorPressed:to(Ke(ye.alpha4),{alpha:.8}),scrollbarColor:Ke(ye.alphaScrollbar),scrollbarColorHover:Ke(ye.alphaScrollbarHover),scrollbarWidth:"5px",scrollbarHeight:"5px",scrollbarBorderRadius:"5px",progressRailColor:Ke(ye.alphaProgressRail),railColor:Ke(ye.alphaRail),popoverColor:ye.neutralPopover,tableColor:ye.neutralCard,cardColor:ye.neutralCard,modalColor:ye.neutralModal,bodyColor:ye.neutralBody,tagColor:yc(ye.alphaTag),avatarColor:Ke(ye.alphaAvatar),invertedColor:ye.neutralBase,inputColor:Ke(ye.alphaInput),codeColor:Ke(ye.alphaCode),tabColor:Ke(ye.alphaTab),actionColor:Ke(ye.alphaAction),tableHeaderColor:Ke(ye.alphaAction),hoverColor:Ke(ye.alphaPending),tableColorHover:Ke(ye.alphaTablePending),tableColorStriped:Ke(ye.alphaTableStriped),pressedColor:Ke(ye.alphaPressed),opacityDisabled:ye.alphaDisabled,inputColorDisabled:Ke(ye.alphaDisabledInput),buttonColor2:"rgba(255, 255, 255, .08)",buttonColor2Hover:"rgba(255, 255, 255, .12)",buttonColor2Pressed:"rgba(255, 255, 255, .08)",boxShadow1:"0 1px 2px -2px rgba(0, 0, 0, .24), 0 3px 6px 0 rgba(0, 0, 0, .18), 0 5px 12px 4px rgba(0, 0, 0, .12)",boxShadow2:"0 3px 6px -4px rgba(0, 0, 0, .24), 0 6px 12px 0 rgba(0, 0, 0, .16), 0 9px 18px 8px rgba(0, 0, 0, .10)",boxShadow3:"0 6px 16px -9px rgba(0, 0, 0, .08), 0 9px 28px 0 rgba(0, 0, 0, .05), 0 12px 48px 16px rgba(0, 0, 0, .03)"}),ue=wc,_e={neutralBase:"#FFF",neutralInvertBase:"#000",neutralTextBase:"#000",neutralPopover:"#fff",neutralCard:"#fff",neutralModal:"#fff",neutralBody:"#fff",alpha1:"0.82",alpha2:"0.72",alpha3:"0.38",alpha4:"0.24",alpha5:"0.18",alphaClose:"0.6",alphaDisabled:"0.5",alphaDisabledInput:"0.02",alphaPending:"0.05",alphaTablePending:"0.02",alphaPressed:"0.07",alphaAvatar:"0.2",alphaRail:"0.14",alphaProgressRail:".08",alphaBorder:"0.12",alphaDivider:"0.06",alphaInput:"0",alphaAction:"0.02",alphaTab:"0.04",alphaScrollbar:"0.25",alphaScrollbarHover:"0.4",alphaCode:"0.05",alphaTag:"0.02",primaryHover:"#36ad6a",primaryDefault:"#18a058",primaryActive:"#0c7a43",primarySuppl:"#36ad6a",infoHover:"#4098fc",infoDefault:"#2080f0",infoActive:"#1060c9",infoSuppl:"#4098fc",errorHover:"#de576d",errorDefault:"#d03050",errorActive:"#ab1f3f",errorSuppl:"#de576d",warningHover:"#fcb040",warningDefault:"#f0a020",warningActive:"#c97c10",warningSuppl:"#fcb040",successHover:"#36ad6a",successDefault:"#18a058",successActive:"#0c7a43",successSuppl:"#36ad6a"},Sc=cr(_e.neutralBase),Sl=cr(_e.neutralInvertBase),zc="rgba("+Sl.slice(0,3).join(", ")+", ";function mi(e){return zc+String(e)+")"}function ho(e){const o=Array.from(Sl);return o[3]=Number(e),Re(Sc,o)}const $c=Object.assign(Object.assign({name:"common"},zo),{baseColor:_e.neutralBase,primaryColor:_e.primaryDefault,primaryColorHover:_e.primaryHover,primaryColorPressed:_e.primaryActive,primaryColorSuppl:_e.primarySuppl,infoColor:_e.infoDefault,infoColorHover:_e.infoHover,infoColorPressed:_e.infoActive,infoColorSuppl:_e.infoSuppl,successColor:_e.successDefault,successColorHover:_e.successHover,successColorPressed:_e.successActive,successColorSuppl:_e.successSuppl,warningColor:_e.warningDefault,warningColorHover:_e.warningHover,warningColorPressed:_e.warningActive,warningColorSuppl:_e.warningSuppl,errorColor:_e.errorDefault,errorColorHover:_e.errorHover,errorColorPressed:_e.errorActive,errorColorSuppl:_e.errorSuppl,textColorBase:_e.neutralTextBase,textColor1:"rgb(31, 34, 37)",textColor2:"rgb(51, 54, 57)",textColor3:"rgb(118, 124, 130)",textColorDisabled:ho(_e.alpha4),placeholderColor:ho(_e.alpha4),placeholderColorDisabled:ho(_e.alpha5),iconColor:ho(_e.alpha4),iconColorHover:to(ho(_e.alpha4),{lightness:.75}),iconColorPressed:to(ho(_e.alpha4),{lightness:.9}),iconColorDisabled:ho(_e.alpha5),opacity1:_e.alpha1,opacity2:_e.alpha2,opacity3:_e.alpha3,opacity4:_e.alpha4,opacity5:_e.alpha5,dividerColor:"rgb(239, 239, 245)",borderColor:"rgb(224, 224, 230)",closeIconColor:ho(Number(_e.alphaClose)),closeIconColorHover:ho(Number(_e.alphaClose)),closeIconColorPressed:ho(Number(_e.alphaClose)),closeColorHover:"rgba(0, 0, 0, .09)",closeColorPressed:"rgba(0, 0, 0, .13)",clearColor:ho(_e.alpha4),clearColorHover:to(ho(_e.alpha4),{lightness:.75}),clearColorPressed:to(ho(_e.alpha4),{lightness:.9}),scrollbarColor:mi(_e.alphaScrollbar),scrollbarColorHover:mi(_e.alphaScrollbarHover),scrollbarWidth:"5px",scrollbarHeight:"5px",scrollbarBorderRadius:"5px",progressRailColor:ho(_e.alphaProgressRail),railColor:"rgb(219, 219, 223)",popoverColor:_e.neutralPopover,tableColor:_e.neutralCard,cardColor:_e.neutralCard,modalColor:_e.neutralModal,bodyColor:_e.neutralBody,tagColor:"#eee",avatarColor:ho(_e.alphaAvatar),invertedColor:"rgb(0, 20, 40)",inputColor:ho(_e.alphaInput),codeColor:"rgb(244, 244, 248)",tabColor:"rgb(247, 247, 250)",actionColor:"rgb(250, 250, 252)",tableHeaderColor:"rgb(250, 250, 252)",hoverColor:"rgb(243, 243, 245)",tableColorHover:"rgba(0, 0, 100, 0.03)",tableColorStriped:"rgba(0, 0, 100, 0.02)",pressedColor:"rgb(237, 237, 239)",opacityDisabled:_e.alphaDisabled,inputColorDisabled:"rgb(250, 250, 252)",buttonColor2:"rgba(46, 51, 56, .05)",buttonColor2Hover:"rgba(46, 51, 56, .09)",buttonColor2Pressed:"rgba(46, 51, 56, .13)",boxShadow1:"0 1px 2px -2px rgba(0, 0, 0, .08), 0 3px 6px 0 rgba(0, 0, 0, .06), 0 5px 12px 4px rgba(0, 0, 0, .04)",boxShadow2:"0 3px 6px -4px rgba(0, 0, 0, .12), 0 6px 16px 0 rgba(0, 0, 0, .08), 0 9px 28px 8px rgba(0, 0, 0, .05)",boxShadow3:"0 6px 16px -9px rgba(0, 0, 0, .08), 0 9px 28px 0 rgba(0, 0, 0, .05), 0 12px 48px 16px rgba(0, 0, 0, .03)"}),Ae=$c,Pc={iconSizeSmall:"34px",iconSizeMedium:"40px",iconSizeLarge:"46px",iconSizeHuge:"52px"},zl=e=>{const{textColorDisabled:o,iconColor:t,textColor2:r,fontSizeSmall:n,fontSizeMedium:l,fontSizeLarge:a,fontSizeHuge:s}=e;return Object.assign(Object.assign({},Pc),{fontSizeSmall:n,fontSizeMedium:l,fontSizeLarge:a,fontSizeHuge:s,textColor:o,iconColor:t,extraTextColor:r})},Rc={name:"Empty",common:Ae,self:zl},Tn=Rc,kc={name:"Empty",common:ue,self:zl},It=kc,Ic=g("empty",` + display: flex; + flex-direction: column; + align-items: center; + font-size: var(--n-font-size); +`,[S("icon",` + width: var(--n-icon-size); + height: var(--n-icon-size); + font-size: var(--n-icon-size); + line-height: var(--n-icon-size); + color: var(--n-icon-color); + transition: + color .3s var(--n-bezier); + `,[w("+",[S("description",` + margin-top: 8px; + `)])]),S("description",` + transition: color .3s var(--n-bezier); + color: var(--n-text-color); + `),S("extra",` + text-align: center; + transition: color .3s var(--n-bezier); + margin-top: 12px; + color: var(--n-extra-text-color); + `)]),Bc=Object.assign(Object.assign({},ae.props),{description:String,showDescription:{type:Boolean,default:!0},showIcon:{type:Boolean,default:!0},size:{type:String,default:"medium"},renderIcon:Function}),Tc=Z({name:"Empty",props:Bc,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=ae("Empty","-empty",Ic,Tn,e,o),{localeRef:n}=Yo("Empty"),l=$e(jo,null),a=$(()=>{var u,f,p;return(u=e.description)!==null&&u!==void 0?u:(p=(f=l==null?void 0:l.mergedComponentPropsRef.value)===null||f===void 0?void 0:f.Empty)===null||p===void 0?void 0:p.description}),s=$(()=>{var u,f;return((f=(u=l==null?void 0:l.mergedComponentPropsRef.value)===null||u===void 0?void 0:u.Empty)===null||f===void 0?void 0:f.renderIcon)||(()=>i(tc,null))}),d=$(()=>{const{size:u}=e,{common:{cubicBezierEaseInOut:f},self:{[N("iconSize",u)]:p,[N("fontSize",u)]:v,textColor:h,iconColor:m,extraTextColor:x}}=r.value;return{"--n-icon-size":p,"--n-font-size":v,"--n-bezier":f,"--n-text-color":h,"--n-icon-color":m,"--n-extra-text-color":x}}),c=t?We("empty",$(()=>{let u="";const{size:f}=e;return u+=f[0],u}),d,e):void 0;return{mergedClsPrefix:o,mergedRenderIcon:s,localizedDescription:$(()=>a.value||n.value.description),cssVars:t?void 0:d,themeClass:c==null?void 0:c.themeClass,onRender:c==null?void 0:c.onRender}},render(){const{$slots:e,mergedClsPrefix:o,onRender:t}=this;return t==null||t(),i("div",{class:[`${o}-empty`,this.themeClass],style:this.cssVars},this.showIcon?i("div",{class:`${o}-empty__icon`},e.icon?e.icon():i(Le,{clsPrefix:o},{default:this.mergedRenderIcon})):null,this.showDescription?i("div",{class:`${o}-empty__description`},e.default?e.default():this.localizedDescription):null,e.extra?i("div",{class:`${o}-empty__extra`},e.extra()):null)}}),$l=e=>{const{scrollbarColor:o,scrollbarColorHover:t}=e;return{color:o,colorHover:t}},Fc={name:"Scrollbar",common:Ae,self:$l},Hr=Fc,Oc={name:"Scrollbar",common:ue,self:$l},$o=Oc,{cubicBezierEaseInOut:bi}=zo;function jt({name:e="fade-in",enterDuration:o="0.2s",leaveDuration:t="0.2s",enterCubicBezier:r=bi,leaveCubicBezier:n=bi}={}){return[w(`&.${e}-transition-enter-active`,{transition:`all ${o} ${r}!important`}),w(`&.${e}-transition-leave-active`,{transition:`all ${t} ${n}!important`}),w(`&.${e}-transition-enter-from, &.${e}-transition-leave-to`,{opacity:0}),w(`&.${e}-transition-leave-from, &.${e}-transition-enter-to`,{opacity:1})]}const _c=g("scrollbar",` + overflow: hidden; + position: relative; + z-index: auto; + height: 100%; + width: 100%; +`,[w(">",[g("scrollbar-container",` + width: 100%; + overflow: scroll; + height: 100%; + min-height: inherit; + max-height: inherit; + scrollbar-width: none; + `,[w("&::-webkit-scrollbar, &::-webkit-scrollbar-track-piece, &::-webkit-scrollbar-thumb",` + width: 0; + height: 0; + display: none; + `),w(">",[g("scrollbar-content",` + box-sizing: border-box; + min-width: 100%; + `)])])]),w(">, +",[g("scrollbar-rail",` + position: absolute; + pointer-events: none; + user-select: none; + -webkit-user-select: none; + `,[P("horizontal",` + left: 2px; + right: 2px; + bottom: 4px; + height: var(--n-scrollbar-height); + `,[w(">",[S("scrollbar",` + height: var(--n-scrollbar-height); + border-radius: var(--n-scrollbar-border-radius); + right: 0; + `)])]),P("vertical",` + right: 4px; + top: 2px; + bottom: 2px; + width: var(--n-scrollbar-width); + `,[w(">",[S("scrollbar",` + width: var(--n-scrollbar-width); + border-radius: var(--n-scrollbar-border-radius); + bottom: 0; + `)])]),P("disabled",[w(">",[S("scrollbar","pointer-events: none;")])]),w(">",[S("scrollbar",` + z-index: 1; + position: absolute; + cursor: pointer; + pointer-events: all; + background-color: var(--n-scrollbar-color); + transition: background-color .2s var(--n-scrollbar-bezier); + `,[jt(),w("&:hover","background-color: var(--n-scrollbar-color-hover);")])])])])]),Mc=Object.assign(Object.assign({},ae.props),{size:{type:Number,default:5},duration:{type:Number,default:0},scrollable:{type:Boolean,default:!0},xScrollable:Boolean,trigger:{type:String,default:"hover"},useUnifiedContainer:Boolean,triggerDisplayManually:Boolean,container:Function,content:Function,containerClass:String,containerStyle:[String,Object],contentClass:[String,Array],contentStyle:[String,Object],horizontalRailStyle:[String,Object],verticalRailStyle:[String,Object],onScroll:Function,onWheel:Function,onResize:Function,internalOnUpdateScrollLeft:Function,internalHoistYRail:Boolean}),Pl=Z({name:"Scrollbar",props:Mc,inheritAttrs:!1,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t,mergedRtlRef:r}=Ie(e),n=eo("Scrollbar",r,o),l=M(null),a=M(null),s=M(null),d=M(null),c=M(null),u=M(null),f=M(null),p=M(null),v=M(null),h=M(null),m=M(null),x=M(0),y=M(0),b=M(!1),_=M(!1);let I=!1,R=!1,z,C,H=0,k=0,D=0,W=0;const L=hd(),j=$(()=>{const{value:F}=p,{value:X}=u,{value:ce}=h;return F===null||X===null||ce===null?0:Math.min(F,ce*F/X+e.size*1.5)}),V=$(()=>`${j.value}px`),E=$(()=>{const{value:F}=v,{value:X}=f,{value:ce}=m;return F===null||X===null||ce===null?0:ce*F/X+e.size*1.5}),Y=$(()=>`${E.value}px`),K=$(()=>{const{value:F}=p,{value:X}=x,{value:ce}=u,{value:Pe}=h;if(F===null||ce===null||Pe===null)return 0;{const ke=ce-F;return ke?X/ke*(Pe-j.value):0}}),te=$(()=>`${K.value}px`),xe=$(()=>{const{value:F}=v,{value:X}=y,{value:ce}=f,{value:Pe}=m;if(F===null||ce===null||Pe===null)return 0;{const ke=ce-F;return ke?X/ke*(Pe-E.value):0}}),se=$(()=>`${xe.value}px`),ie=$(()=>{const{value:F}=p,{value:X}=u;return F!==null&&X!==null&&X>F}),O=$(()=>{const{value:F}=v,{value:X}=f;return F!==null&&X!==null&&X>F}),B=$(()=>{const{trigger:F}=e;return F==="none"||b.value}),G=$(()=>{const{trigger:F}=e;return F==="none"||_.value}),oe=$(()=>{const{container:F}=e;return F?F():a.value}),me=$(()=>{const{content:F}=e;return F?F():s.value}),be=Ld(()=>{e.container||fe({top:x.value,left:y.value})}),Be=()=>{be.isDeactivated||J()},T=F=>{if(be.isDeactivated)return;const{onResize:X}=e;X&&X(F),J()},fe=(F,X)=>{if(!e.scrollable)return;if(typeof F=="number"){Me(F,X??0,0,!1,"auto");return}const{left:ce,top:Pe,index:ke,elSize:Te,position:Fe,behavior:He,el:qe,debounce:go=!0}=F;(ce!==void 0||Pe!==void 0)&&Me(ce??0,Pe??0,0,!1,He),qe!==void 0?Me(0,qe.offsetTop,qe.offsetHeight,go,He):ke!==void 0&&Te!==void 0?Me(0,ke*Te,Te,go,He):Fe==="bottom"?Me(0,Number.MAX_SAFE_INTEGER,0,!1,He):Fe==="top"&&Me(0,0,0,!1,He)},we=(F,X)=>{if(!e.scrollable)return;const{value:ce}=oe;ce&&(typeof F=="object"?ce.scrollBy(F):ce.scrollBy(F,X||0))};function Me(F,X,ce,Pe,ke){const{value:Te}=oe;if(Te){if(Pe){const{scrollTop:Fe,offsetHeight:He}=Te;if(X>Fe){X+ce<=Fe+He||Te.scrollTo({left:F,top:X+ce-He,behavior:ke});return}}Te.scrollTo({left:F,top:X,behavior:ke})}}function ne(){ve(),ze(),J()}function Ce(){ge()}function ge(){Ee(),Q()}function Ee(){C!==void 0&&window.clearTimeout(C),C=window.setTimeout(()=>{_.value=!1},e.duration)}function Q(){z!==void 0&&window.clearTimeout(z),z=window.setTimeout(()=>{b.value=!1},e.duration)}function ve(){z!==void 0&&window.clearTimeout(z),b.value=!0}function ze(){C!==void 0&&window.clearTimeout(C),_.value=!0}function U(F){const{onScroll:X}=e;X&&X(F),q()}function q(){const{value:F}=oe;F&&(x.value=F.scrollTop,y.value=F.scrollLeft*(n!=null&&n.value?-1:1))}function pe(){const{value:F}=me;F&&(u.value=F.offsetHeight,f.value=F.offsetWidth);const{value:X}=oe;X&&(p.value=X.offsetHeight,v.value=X.offsetWidth);const{value:ce}=c,{value:Pe}=d;ce&&(m.value=ce.offsetWidth),Pe&&(h.value=Pe.offsetHeight)}function Se(){const{value:F}=oe;F&&(x.value=F.scrollTop,y.value=F.scrollLeft*(n!=null&&n.value?-1:1),p.value=F.offsetHeight,v.value=F.offsetWidth,u.value=F.scrollHeight,f.value=F.scrollWidth);const{value:X}=c,{value:ce}=d;X&&(m.value=X.offsetWidth),ce&&(h.value=ce.offsetHeight)}function J(){e.scrollable&&(e.useUnifiedContainer?Se():(pe(),q()))}function he(F){var X;return!(!((X=l.value)===null||X===void 0)&&X.contains(tr(F)))}function Ne(F){F.preventDefault(),F.stopPropagation(),R=!0,Ho("mousemove",window,no,!0),Ho("mouseup",window,Ro,!0),k=y.value,D=n!=null&&n.value?window.innerWidth-F.clientX:F.clientX}function no(F){if(!R)return;z!==void 0&&window.clearTimeout(z),C!==void 0&&window.clearTimeout(C);const{value:X}=v,{value:ce}=f,{value:Pe}=E;if(X===null||ce===null)return;const Te=(n!=null&&n.value?window.innerWidth-F.clientX-D:F.clientX-D)*(ce-X)/(X-Pe),Fe=ce-X;let He=k+Te;He=Math.min(Fe,He),He=Math.max(He,0);const{value:qe}=oe;if(qe){qe.scrollLeft=He*(n!=null&&n.value?-1:1);const{internalOnUpdateScrollLeft:go}=e;go&&go(He)}}function Ro(F){F.preventDefault(),F.stopPropagation(),Io("mousemove",window,no,!0),Io("mouseup",window,Ro,!0),R=!1,J(),he(F)&&ge()}function Oo(F){F.preventDefault(),F.stopPropagation(),I=!0,Ho("mousemove",window,xo,!0),Ho("mouseup",window,Co,!0),H=x.value,W=F.clientY}function xo(F){if(!I)return;z!==void 0&&window.clearTimeout(z),C!==void 0&&window.clearTimeout(C);const{value:X}=p,{value:ce}=u,{value:Pe}=j;if(X===null||ce===null)return;const Te=(F.clientY-W)*(ce-X)/(X-Pe),Fe=ce-X;let He=H+Te;He=Math.min(Fe,He),He=Math.max(He,0);const{value:qe}=oe;qe&&(qe.scrollTop=He)}function Co(F){F.preventDefault(),F.stopPropagation(),Io("mousemove",window,xo,!0),Io("mouseup",window,Co,!0),I=!1,J(),he(F)&&ge()}oo(()=>{const{value:F}=O,{value:X}=ie,{value:ce}=o,{value:Pe}=c,{value:ke}=d;Pe&&(F?Pe.classList.remove(`${ce}-scrollbar-rail--disabled`):Pe.classList.add(`${ce}-scrollbar-rail--disabled`)),ke&&(X?ke.classList.remove(`${ce}-scrollbar-rail--disabled`):ke.classList.add(`${ce}-scrollbar-rail--disabled`))}),po(()=>{e.container||J()}),So(()=>{z!==void 0&&window.clearTimeout(z),C!==void 0&&window.clearTimeout(C),Io("mousemove",window,xo,!0),Io("mouseup",window,Co,!0)});const Eo=ae("Scrollbar","-scrollbar",_c,Hr,e,o),_o=$(()=>{const{common:{cubicBezierEaseInOut:F,scrollbarBorderRadius:X,scrollbarHeight:ce,scrollbarWidth:Pe},self:{color:ke,colorHover:Te}}=Eo.value;return{"--n-scrollbar-bezier":F,"--n-scrollbar-color":ke,"--n-scrollbar-color-hover":Te,"--n-scrollbar-border-radius":X,"--n-scrollbar-width":Pe,"--n-scrollbar-height":ce}}),fo=t?We("scrollbar",void 0,_o,e):void 0;return Object.assign(Object.assign({},{scrollTo:fe,scrollBy:we,sync:J,syncUnifiedContainer:Se,handleMouseEnterWrapper:ne,handleMouseLeaveWrapper:Ce}),{mergedClsPrefix:o,rtlEnabled:n,containerScrollTop:x,wrapperRef:l,containerRef:a,contentRef:s,yRailRef:d,xRailRef:c,needYBar:ie,needXBar:O,yBarSizePx:V,xBarSizePx:Y,yBarTopPx:te,xBarLeftPx:se,isShowXBar:B,isShowYBar:G,isIos:L,handleScroll:U,handleContentResize:Be,handleContainerResize:T,handleYScrollMouseDown:Oo,handleXScrollMouseDown:Ne,cssVars:t?void 0:_o,themeClass:fo==null?void 0:fo.themeClass,onRender:fo==null?void 0:fo.onRender})},render(){var e;const{$slots:o,mergedClsPrefix:t,triggerDisplayManually:r,rtlEnabled:n,internalHoistYRail:l}=this;if(!this.scrollable)return(e=o.default)===null||e===void 0?void 0:e.call(o);const a=this.trigger==="none",s=(u,f)=>i("div",{ref:"yRailRef",class:[`${t}-scrollbar-rail`,`${t}-scrollbar-rail--vertical`,u],"data-scrollbar-rail":!0,style:[f||"",this.verticalRailStyle],"aria-hidden":!0},i(a?vn:lo,a?null:{name:"fade-in-transition"},{default:()=>this.needYBar&&this.isShowYBar&&!this.isIos?i("div",{class:`${t}-scrollbar-rail__scrollbar`,style:{height:this.yBarSizePx,top:this.yBarTopPx},onMousedown:this.handleYScrollMouseDown}):null})),d=()=>{var u,f;return(u=this.onRender)===null||u===void 0||u.call(this),i("div",To(this.$attrs,{role:"none",ref:"wrapperRef",class:[`${t}-scrollbar`,this.themeClass,n&&`${t}-scrollbar--rtl`],style:this.cssVars,onMouseenter:r?void 0:this.handleMouseEnterWrapper,onMouseleave:r?void 0:this.handleMouseLeaveWrapper}),[this.container?(f=o.default)===null||f===void 0?void 0:f.call(o):i("div",{role:"none",ref:"containerRef",class:[`${t}-scrollbar-container`,this.containerClass],style:this.containerStyle,onScroll:this.handleScroll,onWheel:this.onWheel},i(tt,{onResize:this.handleContentResize},{default:()=>i("div",{ref:"contentRef",role:"none",style:[{width:this.xScrollable?"fit-content":null},this.contentStyle],class:[`${t}-scrollbar-content`,this.contentClass]},o)})),l?null:s(void 0,void 0),this.xScrollable&&i("div",{ref:"xRailRef",class:[`${t}-scrollbar-rail`,`${t}-scrollbar-rail--horizontal`],style:this.horizontalRailStyle,"data-scrollbar-rail":!0,"aria-hidden":!0},i(a?vn:lo,a?null:{name:"fade-in-transition"},{default:()=>this.needXBar&&this.isShowXBar&&!this.isIos?i("div",{class:`${t}-scrollbar-rail__scrollbar`,style:{width:this.xBarSizePx,right:n?this.xBarLeftPx:void 0,left:n?void 0:this.xBarLeftPx},onMousedown:this.handleXScrollMouseDown}):null}))])},c=this.container?d():i(tt,{onResize:this.handleContainerResize},{default:d});return l?i(co,null,c,s(this.themeClass,this.cssVars)):c}}),vr=Pl,Rl=Pl,Dc={height:"calc(var(--n-option-height) * 7.6)",paddingSmall:"4px 0",paddingMedium:"4px 0",paddingLarge:"4px 0",paddingHuge:"4px 0",optionPaddingSmall:"0 12px",optionPaddingMedium:"0 12px",optionPaddingLarge:"0 12px",optionPaddingHuge:"0 12px",loadingSize:"18px"},kl=e=>{const{borderRadius:o,popoverColor:t,textColor3:r,dividerColor:n,textColor2:l,primaryColorPressed:a,textColorDisabled:s,primaryColor:d,opacityDisabled:c,hoverColor:u,fontSizeSmall:f,fontSizeMedium:p,fontSizeLarge:v,fontSizeHuge:h,heightSmall:m,heightMedium:x,heightLarge:y,heightHuge:b}=e;return Object.assign(Object.assign({},Dc),{optionFontSizeSmall:f,optionFontSizeMedium:p,optionFontSizeLarge:v,optionFontSizeHuge:h,optionHeightSmall:m,optionHeightMedium:x,optionHeightLarge:y,optionHeightHuge:b,borderRadius:o,color:t,groupHeaderTextColor:r,actionDividerColor:n,optionTextColor:l,optionTextColorPressed:a,optionTextColorDisabled:s,optionTextColorActive:d,optionOpacityDisabled:c,optionCheckColor:d,optionColorPending:u,optionColorActive:"rgba(0, 0, 0, 0)",optionColorActivePending:u,actionTextColor:l,loadingColor:d})},Hc={name:"InternalSelectMenu",common:Ae,peers:{Scrollbar:Hr,Empty:Tn},self:kl},Lr=Hc,Lc={name:"InternalSelectMenu",common:ue,peers:{Scrollbar:$o,Empty:It},self:kl},gr=Lc;function Ac(e,o){return i(lo,{name:"fade-in-scale-up-transition"},{default:()=>e?i(Le,{clsPrefix:o,class:`${o}-base-select-option__check`},{default:()=>i(Xd)}):null})}const xi=Z({name:"NBaseSelectOption",props:{clsPrefix:{type:String,required:!0},tmNode:{type:Object,required:!0}},setup(e){const{valueRef:o,pendingTmNodeRef:t,multipleRef:r,valueSetRef:n,renderLabelRef:l,renderOptionRef:a,labelFieldRef:s,valueFieldRef:d,showCheckmarkRef:c,nodePropsRef:u,handleOptionClick:f,handleOptionMouseEnter:p}=$e(kn),v=Ue(()=>{const{value:y}=t;return y?e.tmNode.key===y.key:!1});function h(y){const{tmNode:b}=e;b.disabled||f(y,b)}function m(y){const{tmNode:b}=e;b.disabled||p(y,b)}function x(y){const{tmNode:b}=e,{value:_}=v;b.disabled||_||p(y,b)}return{multiple:r,isGrouped:Ue(()=>{const{tmNode:y}=e,{parent:b}=y;return b&&b.rawNode.type==="group"}),showCheckmark:c,nodeProps:u,isPending:v,isSelected:Ue(()=>{const{value:y}=o,{value:b}=r;if(y===null)return!1;const _=e.tmNode.rawNode[d.value];if(b){const{value:I}=n;return I.has(_)}else return y===_}),labelField:s,renderLabel:l,renderOption:a,handleMouseMove:x,handleMouseEnter:m,handleClick:h}},render(){const{clsPrefix:e,tmNode:{rawNode:o},isSelected:t,isPending:r,isGrouped:n,showCheckmark:l,nodeProps:a,renderOption:s,renderLabel:d,handleClick:c,handleMouseEnter:u,handleMouseMove:f}=this,p=Ac(t,e),v=d?[d(o,t),l&&p]:[Qe(o[this.labelField],o,t),l&&p],h=a==null?void 0:a(o),m=i("div",Object.assign({},h,{class:[`${e}-base-select-option`,o.class,h==null?void 0:h.class,{[`${e}-base-select-option--disabled`]:o.disabled,[`${e}-base-select-option--selected`]:t,[`${e}-base-select-option--grouped`]:n,[`${e}-base-select-option--pending`]:r,[`${e}-base-select-option--show-checkmark`]:l}],style:[(h==null?void 0:h.style)||"",o.style||""],onClick:or([c,h==null?void 0:h.onClick]),onMouseenter:or([u,h==null?void 0:h.onMouseenter]),onMousemove:or([f,h==null?void 0:h.onMousemove])}),i("div",{class:`${e}-base-select-option__content`},v));return o.render?o.render({node:m,option:o,selected:t}):s?s({node:m,option:o,selected:t}):m}}),Ci=Z({name:"NBaseSelectGroupHeader",props:{clsPrefix:{type:String,required:!0},tmNode:{type:Object,required:!0}},setup(){const{renderLabelRef:e,renderOptionRef:o,labelFieldRef:t,nodePropsRef:r}=$e(kn);return{labelField:t,nodeProps:r,renderLabel:e,renderOption:o}},render(){const{clsPrefix:e,renderLabel:o,renderOption:t,nodeProps:r,tmNode:{rawNode:n}}=this,l=r==null?void 0:r(n),a=o?o(n,!1):Qe(n[this.labelField],n,!1),s=i("div",Object.assign({},l,{class:[`${e}-base-select-group-header`,l==null?void 0:l.class]}),a);return n.render?n.render({node:s,option:n}):t?t({node:s,option:n,selected:!1}):s}}),{cubicBezierEaseIn:yi,cubicBezierEaseOut:wi}=zo;function ut({transformOrigin:e="inherit",duration:o=".2s",enterScale:t=".9",originalTransform:r="",originalTransition:n=""}={}){return[w("&.fade-in-scale-up-transition-leave-active",{transformOrigin:e,transition:`opacity ${o} ${yi}, transform ${o} ${yi} ${n&&","+n}`}),w("&.fade-in-scale-up-transition-enter-active",{transformOrigin:e,transition:`opacity ${o} ${wi}, transform ${o} ${wi} ${n&&","+n}`}),w("&.fade-in-scale-up-transition-enter-from, &.fade-in-scale-up-transition-leave-to",{opacity:0,transform:`${r} scale(${t})`}),w("&.fade-in-scale-up-transition-leave-from, &.fade-in-scale-up-transition-enter-to",{opacity:1,transform:`${r} scale(1)`})]}const Ec=g("base-select-menu",` + line-height: 1.5; + outline: none; + z-index: 0; + position: relative; + border-radius: var(--n-border-radius); + transition: + background-color .3s var(--n-bezier), + box-shadow .3s var(--n-bezier); + background-color: var(--n-color); +`,[g("scrollbar",` + max-height: var(--n-height); + `),g("virtual-list",` + max-height: var(--n-height); + `),g("base-select-option",` + min-height: var(--n-option-height); + font-size: var(--n-option-font-size); + display: flex; + align-items: center; + `,[S("content",` + z-index: 1; + white-space: nowrap; + text-overflow: ellipsis; + overflow: hidden; + `)]),g("base-select-group-header",` + min-height: var(--n-option-height); + font-size: .93em; + display: flex; + align-items: center; + `),g("base-select-menu-option-wrapper",` + position: relative; + width: 100%; + `),S("loading, empty",` + display: flex; + padding: 12px 32px; + flex: 1; + justify-content: center; + `),S("loading",` + color: var(--n-loading-color); + font-size: var(--n-loading-size); + `),S("header",` + padding: 8px var(--n-option-padding-left); + font-size: var(--n-option-font-size); + transition: + color .3s var(--n-bezier), + border-color .3s var(--n-bezier); + border-bottom: 1px solid var(--n-action-divider-color); + color: var(--n-action-text-color); + `),S("action",` + padding: 8px var(--n-option-padding-left); + font-size: var(--n-option-font-size); + transition: + color .3s var(--n-bezier), + border-color .3s var(--n-bezier); + border-top: 1px solid var(--n-action-divider-color); + color: var(--n-action-text-color); + `),g("base-select-group-header",` + position: relative; + cursor: default; + padding: var(--n-option-padding); + color: var(--n-group-header-text-color); + `),g("base-select-option",` + cursor: pointer; + position: relative; + padding: var(--n-option-padding); + transition: + color .3s var(--n-bezier), + opacity .3s var(--n-bezier); + box-sizing: border-box; + color: var(--n-option-text-color); + opacity: 1; + `,[P("show-checkmark",` + padding-right: calc(var(--n-option-padding-right) + 20px); + `),w("&::before",` + content: ""; + position: absolute; + left: 4px; + right: 4px; + top: 0; + bottom: 0; + border-radius: var(--n-border-radius); + transition: background-color .3s var(--n-bezier); + `),w("&:active",` + color: var(--n-option-text-color-pressed); + `),P("grouped",` + padding-left: calc(var(--n-option-padding-left) * 1.5); + `),P("pending",[w("&::before",` + background-color: var(--n-option-color-pending); + `)]),P("selected",` + color: var(--n-option-text-color-active); + `,[w("&::before",` + background-color: var(--n-option-color-active); + `),P("pending",[w("&::before",` + background-color: var(--n-option-color-active-pending); + `)])]),P("disabled",` + cursor: not-allowed; + `,[Ve("selected",` + color: var(--n-option-text-color-disabled); + `),P("selected",` + opacity: var(--n-option-opacity-disabled); + `)]),S("check",` + font-size: 16px; + position: absolute; + right: calc(var(--n-option-padding-right) - 4px); + top: calc(50% - 7px); + color: var(--n-option-check-color); + transition: color .3s var(--n-bezier); + `,[ut({enterScale:"0.5"})])])]),Fn=Z({name:"InternalSelectMenu",props:Object.assign(Object.assign({},ae.props),{clsPrefix:{type:String,required:!0},scrollable:{type:Boolean,default:!0},treeMate:{type:Object,required:!0},multiple:Boolean,size:{type:String,default:"medium"},value:{type:[String,Number,Array],default:null},autoPending:Boolean,virtualScroll:{type:Boolean,default:!0},show:{type:Boolean,default:!0},labelField:{type:String,default:"label"},valueField:{type:String,default:"value"},loading:Boolean,focusable:Boolean,renderLabel:Function,renderOption:Function,nodeProps:Function,showCheckmark:{type:Boolean,default:!0},onMousedown:Function,onScroll:Function,onFocus:Function,onBlur:Function,onKeyup:Function,onKeydown:Function,onTabOut:Function,onMouseenter:Function,onMouseleave:Function,onResize:Function,resetMenuOnOptionsChange:{type:Boolean,default:!0},inlineThemeDisabled:Boolean,onToggle:Function}),setup(e){const{mergedClsPrefixRef:o,mergedRtlRef:t}=Ie(e),r=eo("InternalSelectMenu",t,o),n=ae("InternalSelectMenu","-internal-select-menu",Ec,Lr,e,le(e,"clsPrefix")),l=M(null),a=M(null),s=M(null),d=$(()=>e.treeMate.getFlattenedNodes()),c=$(()=>yd(d.value)),u=M(null);function f(){const{treeMate:O}=e;let B=null;const{value:G}=e;G===null?B=O.getFirstAvailableNode():(e.multiple?B=O.getNode((G||[])[(G||[]).length-1]):B=O.getNode(G),(!B||B.disabled)&&(B=O.getFirstAvailableNode())),V(B||null)}function p(){const{value:O}=u;O&&!e.treeMate.getNode(O.key)&&(u.value=null)}let v;Xe(()=>e.show,O=>{O?v=Xe(()=>e.treeMate,()=>{e.resetMenuOnOptionsChange?(e.autoPending?f():p(),ao(E)):p()},{immediate:!0}):v==null||v()},{immediate:!0}),So(()=>{v==null||v()});const h=$(()=>ko(n.value.self[N("optionHeight",e.size)])),m=$(()=>yo(n.value.self[N("padding",e.size)])),x=$(()=>e.multiple&&Array.isArray(e.value)?new Set(e.value):new Set),y=$(()=>{const O=d.value;return O&&O.length===0});function b(O){const{onToggle:B}=e;B&&B(O)}function _(O){const{onScroll:B}=e;B&&B(O)}function I(O){var B;(B=s.value)===null||B===void 0||B.sync(),_(O)}function R(){var O;(O=s.value)===null||O===void 0||O.sync()}function z(){const{value:O}=u;return O||null}function C(O,B){B.disabled||V(B,!1)}function H(O,B){B.disabled||b(B)}function k(O){var B;ot(O,"action")||(B=e.onKeyup)===null||B===void 0||B.call(e,O)}function D(O){var B;ot(O,"action")||(B=e.onKeydown)===null||B===void 0||B.call(e,O)}function W(O){var B;(B=e.onMousedown)===null||B===void 0||B.call(e,O),!e.focusable&&O.preventDefault()}function L(){const{value:O}=u;O&&V(O.getNext({loop:!0}),!0)}function j(){const{value:O}=u;O&&V(O.getPrev({loop:!0}),!0)}function V(O,B=!1){u.value=O,B&&E()}function E(){var O,B;const G=u.value;if(!G)return;const oe=c.value(G.key);oe!==null&&(e.virtualScroll?(O=a.value)===null||O===void 0||O.scrollTo({index:oe}):(B=s.value)===null||B===void 0||B.scrollTo({index:oe,elSize:h.value}))}function Y(O){var B,G;!((B=l.value)===null||B===void 0)&&B.contains(O.target)&&((G=e.onFocus)===null||G===void 0||G.call(e,O))}function K(O){var B,G;!((B=l.value)===null||B===void 0)&&B.contains(O.relatedTarget)||(G=e.onBlur)===null||G===void 0||G.call(e,O)}De(kn,{handleOptionMouseEnter:C,handleOptionClick:H,valueSetRef:x,pendingTmNodeRef:u,nodePropsRef:le(e,"nodeProps"),showCheckmarkRef:le(e,"showCheckmark"),multipleRef:le(e,"multiple"),valueRef:le(e,"value"),renderLabelRef:le(e,"renderLabel"),renderOptionRef:le(e,"renderOption"),labelFieldRef:le(e,"labelField"),valueFieldRef:le(e,"valueField")}),De(ul,l),po(()=>{const{value:O}=s;O&&O.sync()});const te=$(()=>{const{size:O}=e,{common:{cubicBezierEaseInOut:B},self:{height:G,borderRadius:oe,color:me,groupHeaderTextColor:be,actionDividerColor:Be,optionTextColorPressed:T,optionTextColor:fe,optionTextColorDisabled:we,optionTextColorActive:Me,optionOpacityDisabled:ne,optionCheckColor:Ce,actionTextColor:ge,optionColorPending:Ee,optionColorActive:Q,loadingColor:ve,loadingSize:ze,optionColorActivePending:U,[N("optionFontSize",O)]:q,[N("optionHeight",O)]:pe,[N("optionPadding",O)]:Se}}=n.value;return{"--n-height":G,"--n-action-divider-color":Be,"--n-action-text-color":ge,"--n-bezier":B,"--n-border-radius":oe,"--n-color":me,"--n-option-font-size":q,"--n-group-header-text-color":be,"--n-option-check-color":Ce,"--n-option-color-pending":Ee,"--n-option-color-active":Q,"--n-option-color-active-pending":U,"--n-option-height":pe,"--n-option-opacity-disabled":ne,"--n-option-text-color":fe,"--n-option-text-color-active":Me,"--n-option-text-color-disabled":we,"--n-option-text-color-pressed":T,"--n-option-padding":Se,"--n-option-padding-left":yo(Se,"left"),"--n-option-padding-right":yo(Se,"right"),"--n-loading-color":ve,"--n-loading-size":ze}}),{inlineThemeDisabled:xe}=e,se=xe?We("internal-select-menu",$(()=>e.size[0]),te,e):void 0,ie={selfRef:l,next:L,prev:j,getPendingTmNode:z};return vl(l,e.onResize),Object.assign({mergedTheme:n,mergedClsPrefix:o,rtlEnabled:r,virtualListRef:a,scrollbarRef:s,itemSize:h,padding:m,flattenedNodes:d,empty:y,virtualListContainer(){const{value:O}=a;return O==null?void 0:O.listElRef},virtualListContent(){const{value:O}=a;return O==null?void 0:O.itemsElRef},doScroll:_,handleFocusin:Y,handleFocusout:K,handleKeyUp:k,handleKeyDown:D,handleMouseDown:W,handleVirtualListResize:R,handleVirtualListScroll:I,cssVars:xe?void 0:te,themeClass:se==null?void 0:se.themeClass,onRender:se==null?void 0:se.onRender},ie)},render(){const{$slots:e,virtualScroll:o,clsPrefix:t,mergedTheme:r,themeClass:n,onRender:l}=this;return l==null||l(),i("div",{ref:"selfRef",tabindex:this.focusable?0:-1,class:[`${t}-base-select-menu`,this.rtlEnabled&&`${t}-base-select-menu--rtl`,n,this.multiple&&`${t}-base-select-menu--multiple`],style:this.cssVars,onFocusin:this.handleFocusin,onFocusout:this.handleFocusout,onKeyup:this.handleKeyUp,onKeydown:this.handleKeyDown,onMousedown:this.handleMouseDown,onMouseenter:this.onMouseenter,onMouseleave:this.onMouseleave},je(e.header,a=>a&&i("div",{class:`${t}-base-select-menu__header`,"data-header":!0,key:"header"},a)),this.loading?i("div",{class:`${t}-base-select-menu__loading`},i(Gt,{clsPrefix:t,strokeWidth:20})):this.empty?i("div",{class:`${t}-base-select-menu__empty`,"data-empty":!0},so(e.empty,()=>[i(Tc,{theme:r.peers.Empty,themeOverrides:r.peerOverrides.Empty})])):i(vr,{ref:"scrollbarRef",theme:r.peers.Scrollbar,themeOverrides:r.peerOverrides.Scrollbar,scrollable:this.scrollable,container:o?this.virtualListContainer:void 0,content:o?this.virtualListContent:void 0,onScroll:o?void 0:this.doScroll},{default:()=>o?i(ud,{ref:"virtualListRef",class:`${t}-virtual-list`,items:this.flattenedNodes,itemSize:this.itemSize,showScrollbar:!1,paddingTop:this.padding.top,paddingBottom:this.padding.bottom,onResize:this.handleVirtualListResize,onScroll:this.handleVirtualListScroll,itemResizable:!0},{default:({item:a})=>a.isGroup?i(Ci,{key:a.key,clsPrefix:t,tmNode:a}):a.ignored?null:i(xi,{clsPrefix:t,key:a.key,tmNode:a})}):i("div",{class:`${t}-base-select-menu-option-wrapper`,style:{paddingTop:this.padding.top,paddingBottom:this.padding.bottom}},this.flattenedNodes.map(a=>a.isGroup?i(Ci,{key:a.key,clsPrefix:t,tmNode:a}):i(xi,{clsPrefix:t,key:a.key,tmNode:a})))}),je(e.action,a=>a&&[i("div",{class:`${t}-base-select-menu__action`,"data-action":!0,key:"action"},a),i(vc,{onFocus:this.onTabOut,key:"focus-detector"})]))}}),jc=g("base-wave",` + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + border-radius: inherit; +`),Il=Z({name:"BaseWave",props:{clsPrefix:{type:String,required:!0}},setup(e){Xo("-base-wave",jc,le(e,"clsPrefix"));const o=M(null),t=M(!1);let r=null;return So(()=>{r!==null&&window.clearTimeout(r)}),{active:t,selfRef:o,play(){r!==null&&(window.clearTimeout(r),t.value=!1,r=null),ao(()=>{var n;(n=o.value)===null||n===void 0||n.offsetHeight,t.value=!0,r=window.setTimeout(()=>{t.value=!1,r=null},1e3)})}}},render(){const{clsPrefix:e}=this;return i("div",{ref:"selfRef","aria-hidden":!0,class:[`${e}-base-wave`,this.active&&`${e}-base-wave--active`]})}}),Wc={space:"6px",spaceArrow:"10px",arrowOffset:"10px",arrowOffsetVertical:"10px",arrowHeight:"6px",padding:"8px 14px"},Bl=e=>{const{boxShadow2:o,popoverColor:t,textColor2:r,borderRadius:n,fontSize:l,dividerColor:a}=e;return Object.assign(Object.assign({},Wc),{fontSize:l,borderRadius:n,color:t,dividerColor:a,textColor:r,boxShadow:o})},Nc={name:"Popover",common:Ae,self:Bl},qt=Nc,Vc={name:"Popover",common:ue,self:Bl},Bt=Vc,Qr={top:"bottom",bottom:"top",left:"right",right:"left"},io="var(--n-arrow-height) * 1.414",Uc=w([g("popover",` + transition: + box-shadow .3s var(--n-bezier), + background-color .3s var(--n-bezier), + color .3s var(--n-bezier); + position: relative; + font-size: var(--n-font-size); + color: var(--n-text-color); + box-shadow: var(--n-box-shadow); + word-break: break-word; + `,[w(">",[g("scrollbar",` + height: inherit; + max-height: inherit; + `)]),Ve("raw",` + background-color: var(--n-color); + border-radius: var(--n-border-radius); + `,[Ve("scrollable",[Ve("show-header-or-footer","padding: var(--n-padding);")])]),S("header",` + padding: var(--n-padding); + border-bottom: 1px solid var(--n-divider-color); + transition: border-color .3s var(--n-bezier); + `),S("footer",` + padding: var(--n-padding); + border-top: 1px solid var(--n-divider-color); + transition: border-color .3s var(--n-bezier); + `),P("scrollable, show-header-or-footer",[S("content",` + padding: var(--n-padding); + `)])]),g("popover-shared",` + transform-origin: inherit; + `,[g("popover-arrow-wrapper",` + position: absolute; + overflow: hidden; + pointer-events: none; + `,[g("popover-arrow",` + transition: background-color .3s var(--n-bezier); + position: absolute; + display: block; + width: calc(${io}); + height: calc(${io}); + box-shadow: 0 0 8px 0 rgba(0, 0, 0, .12); + transform: rotate(45deg); + background-color: var(--n-color); + pointer-events: all; + `)]),w("&.popover-transition-enter-from, &.popover-transition-leave-to",` + opacity: 0; + transform: scale(.85); + `),w("&.popover-transition-enter-to, &.popover-transition-leave-from",` + transform: scale(1); + opacity: 1; + `),w("&.popover-transition-enter-active",` + transition: + box-shadow .3s var(--n-bezier), + background-color .3s var(--n-bezier), + color .3s var(--n-bezier), + opacity .15s var(--n-bezier-ease-out), + transform .15s var(--n-bezier-ease-out); + `),w("&.popover-transition-leave-active",` + transition: + box-shadow .3s var(--n-bezier), + background-color .3s var(--n-bezier), + color .3s var(--n-bezier), + opacity .15s var(--n-bezier-ease-in), + transform .15s var(--n-bezier-ease-in); + `)]),Mo("top-start",` + top: calc(${io} / -2); + left: calc(${et("top-start")} - var(--v-offset-left)); + `),Mo("top",` + top: calc(${io} / -2); + transform: translateX(calc(${io} / -2)) rotate(45deg); + left: 50%; + `),Mo("top-end",` + top: calc(${io} / -2); + right: calc(${et("top-end")} + var(--v-offset-left)); + `),Mo("bottom-start",` + bottom: calc(${io} / -2); + left: calc(${et("bottom-start")} - var(--v-offset-left)); + `),Mo("bottom",` + bottom: calc(${io} / -2); + transform: translateX(calc(${io} / -2)) rotate(45deg); + left: 50%; + `),Mo("bottom-end",` + bottom: calc(${io} / -2); + right: calc(${et("bottom-end")} + var(--v-offset-left)); + `),Mo("left-start",` + left: calc(${io} / -2); + top: calc(${et("left-start")} - var(--v-offset-top)); + `),Mo("left",` + left: calc(${io} / -2); + transform: translateY(calc(${io} / -2)) rotate(45deg); + top: 50%; + `),Mo("left-end",` + left: calc(${io} / -2); + bottom: calc(${et("left-end")} + var(--v-offset-top)); + `),Mo("right-start",` + right: calc(${io} / -2); + top: calc(${et("right-start")} - var(--v-offset-top)); + `),Mo("right",` + right: calc(${io} / -2); + transform: translateY(calc(${io} / -2)) rotate(45deg); + top: 50%; + `),Mo("right-end",` + right: calc(${io} / -2); + bottom: calc(${et("right-end")} + var(--v-offset-top)); + `),...bd({top:["right-start","left-start"],right:["top-end","bottom-end"],bottom:["right-end","left-end"],left:["top-start","bottom-start"]},(e,o)=>{const t=["right","left"].includes(o),r=t?"width":"height";return e.map(n=>{const l=n.split("-")[1]==="end",s=`calc((${`var(--v-target-${r}, 0px)`} - ${io}) / 2)`,d=et(n);return w(`[v-placement="${n}"] >`,[g("popover-shared",[P("center-arrow",[g("popover-arrow",`${o}: calc(max(${s}, ${d}) ${l?"+":"-"} var(--v-offset-${t?"left":"top"}));`)])])])})})]);function et(e){return["top","bottom"].includes(e.split("-")[0])?"var(--n-arrow-offset)":"var(--n-arrow-offset-vertical)"}function Mo(e,o){const t=e.split("-")[0],r=["top","bottom"].includes(t)?"height: var(--n-space-arrow);":"width: var(--n-space-arrow);";return w(`[v-placement="${e}"] >`,[g("popover-shared",` + margin-${Qr[t]}: var(--n-space); + `,[P("show-arrow",` + margin-${Qr[t]}: var(--n-space-arrow); + `),P("overlap",` + margin: 0; + `),Fd("popover-arrow-wrapper",` + right: 0; + left: 0; + top: 0; + bottom: 0; + ${t}: 100%; + ${Qr[t]}: auto; + ${r} + `,[g("popover-arrow",o)])])])}const Tl=Object.assign(Object.assign({},ae.props),{to:Fo.propTo,show:Boolean,trigger:String,showArrow:Boolean,delay:Number,duration:Number,raw:Boolean,arrowPointToCenter:Boolean,arrowClass:String,arrowStyle:[String,Object],arrowWrapperClass:String,arrowWrapperStyle:[String,Object],displayDirective:String,x:Number,y:Number,flip:Boolean,overlap:Boolean,placement:String,width:[Number,String],keepAliveOnHover:Boolean,scrollable:Boolean,contentClass:String,contentStyle:[Object,String],headerClass:String,headerStyle:[Object,String],footerClass:String,footerStyle:[Object,String],internalDeactivateImmediately:Boolean,animated:Boolean,onClickoutside:Function,internalTrapFocus:Boolean,internalOnAfterLeave:Function,minWidth:Number,maxWidth:Number}),Fl=({arrowClass:e,arrowStyle:o,arrowWrapperClass:t,arrowWrapperStyle:r,clsPrefix:n})=>i("div",{key:"__popover-arrow__",style:r,class:[`${n}-popover-arrow-wrapper`,t]},i("div",{class:[`${n}-popover-arrow`,e],style:o})),Kc=Z({name:"PopoverBody",inheritAttrs:!1,props:Tl,setup(e,{slots:o,attrs:t}){const{namespaceRef:r,mergedClsPrefixRef:n,inlineThemeDisabled:l}=Ie(e),a=ae("Popover","-popover",Uc,qt,e,n),s=M(null),d=$e("NPopover"),c=M(null),u=M(e.show),f=M(!1);oo(()=>{const{show:C}=e;C&&!Od()&&!e.internalDeactivateImmediately&&(f.value=!0)});const p=$(()=>{const{trigger:C,onClickoutside:H}=e,k=[],{positionManuallyRef:{value:D}}=d;return D||(C==="click"&&!H&&k.push([At,I,void 0,{capture:!0}]),C==="hover"&&k.push([wd,_])),H&&k.push([At,I,void 0,{capture:!0}]),(e.displayDirective==="show"||e.animated&&f.value)&&k.push([Go,e.show]),k}),v=$(()=>{const C=e.width==="trigger"?void 0:ro(e.width),H=[];C&&H.push({width:C});const{maxWidth:k,minWidth:D}=e;return k&&H.push({maxWidth:ro(k)}),D&&H.push({maxWidth:ro(D)}),l||H.push(h.value),H}),h=$(()=>{const{common:{cubicBezierEaseInOut:C,cubicBezierEaseIn:H,cubicBezierEaseOut:k},self:{space:D,spaceArrow:W,padding:L,fontSize:j,textColor:V,dividerColor:E,color:Y,boxShadow:K,borderRadius:te,arrowHeight:xe,arrowOffset:se,arrowOffsetVertical:ie}}=a.value;return{"--n-box-shadow":K,"--n-bezier":C,"--n-bezier-ease-in":H,"--n-bezier-ease-out":k,"--n-font-size":j,"--n-text-color":V,"--n-color":Y,"--n-divider-color":E,"--n-border-radius":te,"--n-arrow-height":xe,"--n-arrow-offset":se,"--n-arrow-offset-vertical":ie,"--n-padding":L,"--n-space":D,"--n-space-arrow":W}}),m=l?We("popover",void 0,h,e):void 0;d.setBodyInstance({syncPosition:x}),So(()=>{d.setBodyInstance(null)}),Xe(le(e,"show"),C=>{e.animated||(C?u.value=!0:u.value=!1)});function x(){var C;(C=s.value)===null||C===void 0||C.syncPosition()}function y(C){e.trigger==="hover"&&e.keepAliveOnHover&&e.show&&d.handleMouseEnter(C)}function b(C){e.trigger==="hover"&&e.keepAliveOnHover&&d.handleMouseLeave(C)}function _(C){e.trigger==="hover"&&!R().contains(tr(C))&&d.handleMouseMoveOutside(C)}function I(C){(e.trigger==="click"&&!R().contains(tr(C))||e.onClickoutside)&&d.handleClickOutside(C)}function R(){return d.getTriggerElement()}De(Nt,c),De(pr,null),De(hr,null);function z(){if(m==null||m.onRender(),!(e.displayDirective==="show"||e.show||e.animated&&f.value))return null;let H;const k=d.internalRenderBodyRef.value,{value:D}=n;if(k)H=k([`${D}-popover-shared`,m==null?void 0:m.themeClass.value,e.overlap&&`${D}-popover-shared--overlap`,e.showArrow&&`${D}-popover-shared--show-arrow`,e.arrowPointToCenter&&`${D}-popover-shared--center-arrow`],c,v.value,y,b);else{const{value:W}=d.extraClassRef,{internalTrapFocus:L}=e,j=!Ct(o.header)||!Ct(o.footer),V=()=>{var E,Y;const K=j?i(co,null,je(o.header,se=>se?i("div",{class:[`${D}-popover__header`,e.headerClass],style:e.headerStyle},se):null),je(o.default,se=>se?i("div",{class:[`${D}-popover__content`,e.contentClass],style:e.contentStyle},o):null),je(o.footer,se=>se?i("div",{class:[`${D}-popover__footer`,e.footerClass],style:e.footerStyle},se):null)):e.scrollable?(E=o.default)===null||E===void 0?void 0:E.call(o):i("div",{class:[`${D}-popover__content`,e.contentClass],style:e.contentStyle},o),te=e.scrollable?i(Rl,{contentClass:j?void 0:`${D}-popover__content ${(Y=e.contentClass)!==null&&Y!==void 0?Y:""}`,contentStyle:j?void 0:e.contentStyle},{default:()=>K}):K,xe=e.showArrow?Fl({arrowClass:e.arrowClass,arrowStyle:e.arrowStyle,arrowWrapperClass:e.arrowWrapperClass,arrowWrapperStyle:e.arrowWrapperStyle,clsPrefix:D}):null;return[te,xe]};H=i("div",To({class:[`${D}-popover`,`${D}-popover-shared`,m==null?void 0:m.themeClass.value,W.map(E=>`${D}-${E}`),{[`${D}-popover--scrollable`]:e.scrollable,[`${D}-popover--show-header-or-footer`]:j,[`${D}-popover--raw`]:e.raw,[`${D}-popover-shared--overlap`]:e.overlap,[`${D}-popover-shared--show-arrow`]:e.showArrow,[`${D}-popover-shared--center-arrow`]:e.arrowPointToCenter}],ref:c,style:v.value,onKeydown:d.handleKeydown,onMouseenter:y,onMouseleave:b},t),L?i(zn,{active:e.show,autoFocus:!0},{default:V}):V())}return Lo(H,p.value)}return{displayed:f,namespace:r,isMounted:d.isMountedRef,zIndex:d.zIndexRef,followerRef:s,adjustedTo:Fo(e),followerEnabled:u,renderContentNode:z}},render(){return i(Tr,{ref:"followerRef",zIndex:this.zIndex,show:this.show,enabled:this.followerEnabled,to:this.adjustedTo,x:this.x,y:this.y,flip:this.flip,placement:this.placement,containerClass:this.namespace,overlap:this.overlap,width:this.width==="trigger"?"target":void 0,teleportDisabled:this.adjustedTo===Fo.tdkey},{default:()=>this.animated?i(lo,{name:"popover-transition",appear:this.isMounted,onEnter:()=>{this.followerEnabled=!0},onAfterLeave:()=>{var e;(e=this.internalOnAfterLeave)===null||e===void 0||e.call(this),this.followerEnabled=!1,this.displayed=!1}},{default:this.renderContentNode}):this.renderContentNode()})}}),Gc=Object.keys(Tl),qc={focus:["onFocus","onBlur"],click:["onClick"],hover:["onMouseenter","onMouseleave"],manual:[],nested:["onFocus","onBlur","onMouseenter","onMouseleave","onClick"]};function Yc(e,o,t){qc[o].forEach(r=>{e.props?e.props=Object.assign({},e.props):e.props={};const n=e.props[r],l=t[r];n?e.props[r]=(...a)=>{n(...a),l(...a)}:e.props[r]=l})}const St={show:{type:Boolean,default:void 0},defaultShow:Boolean,showArrow:{type:Boolean,default:!0},trigger:{type:String,default:"hover"},delay:{type:Number,default:100},duration:{type:Number,default:100},raw:Boolean,placement:{type:String,default:"top"},x:Number,y:Number,arrowPointToCenter:Boolean,disabled:Boolean,getDisabled:Function,displayDirective:{type:String,default:"if"},arrowClass:String,arrowStyle:[String,Object],arrowWrapperClass:String,arrowWrapperStyle:[String,Object],flip:{type:Boolean,default:!0},animated:{type:Boolean,default:!0},width:{type:[Number,String],default:void 0},overlap:Boolean,keepAliveOnHover:{type:Boolean,default:!0},zIndex:Number,to:Fo.propTo,scrollable:Boolean,contentClass:String,contentStyle:[Object,String],headerClass:String,headerStyle:[Object,String],footerClass:String,footerStyle:[Object,String],onClickoutside:Function,"onUpdate:show":[Function,Array],onUpdateShow:[Function,Array],internalDeactivateImmediately:Boolean,internalSyncTargetWithParent:Boolean,internalInheritedEventHandlers:{type:Array,default:()=>[]},internalTrapFocus:Boolean,internalExtraClass:{type:Array,default:()=>[]},onShow:[Function,Array],onHide:[Function,Array],arrow:{type:Boolean,default:void 0},minWidth:Number,maxWidth:Number},Xc=Object.assign(Object.assign(Object.assign({},ae.props),St),{internalOnAfterLeave:Function,internalRenderBody:Function}),mr=Z({name:"Popover",inheritAttrs:!1,props:Xc,__popover__:!0,setup(e){const o=$t(),t=M(null),r=$(()=>e.show),n=M(e.defaultShow),l=uo(r,n),a=Ue(()=>e.disabled?!1:l.value),s=()=>{if(e.disabled)return!0;const{getDisabled:E}=e;return!!(E!=null&&E())},d=()=>s()?!1:l.value,c=yt(e,["arrow","showArrow"]),u=$(()=>e.overlap?!1:c.value);let f=null;const p=M(null),v=M(null),h=Ue(()=>e.x!==void 0&&e.y!==void 0);function m(E){const{"onUpdate:show":Y,onUpdateShow:K,onShow:te,onHide:xe}=e;n.value=E,Y&&de(Y,E),K&&de(K,E),E&&te&&de(te,!0),E&&xe&&de(xe,!1)}function x(){f&&f.syncPosition()}function y(){const{value:E}=p;E&&(window.clearTimeout(E),p.value=null)}function b(){const{value:E}=v;E&&(window.clearTimeout(E),v.value=null)}function _(){const E=s();if(e.trigger==="focus"&&!E){if(d())return;m(!0)}}function I(){const E=s();if(e.trigger==="focus"&&!E){if(!d())return;m(!1)}}function R(){const E=s();if(e.trigger==="hover"&&!E){if(b(),p.value!==null||d())return;const Y=()=>{m(!0),p.value=null},{delay:K}=e;K===0?Y():p.value=window.setTimeout(Y,K)}}function z(){const E=s();if(e.trigger==="hover"&&!E){if(y(),v.value!==null||!d())return;const Y=()=>{m(!1),v.value=null},{duration:K}=e;K===0?Y():v.value=window.setTimeout(Y,K)}}function C(){z()}function H(E){var Y;d()&&(e.trigger==="click"&&(y(),b(),m(!1)),(Y=e.onClickoutside)===null||Y===void 0||Y.call(e,E))}function k(){if(e.trigger==="click"&&!s()){y(),b();const E=!d();m(E)}}function D(E){e.internalTrapFocus&&E.key==="Escape"&&(y(),b(),m(!1))}function W(E){n.value=E}function L(){var E;return(E=t.value)===null||E===void 0?void 0:E.targetRef}function j(E){f=E}return De("NPopover",{getTriggerElement:L,handleKeydown:D,handleMouseEnter:R,handleMouseLeave:z,handleClickOutside:H,handleMouseMoveOutside:C,setBodyInstance:j,positionManuallyRef:h,isMountedRef:o,zIndexRef:le(e,"zIndex"),extraClassRef:le(e,"internalExtraClass"),internalRenderBodyRef:le(e,"internalRenderBody")}),oo(()=>{l.value&&s()&&m(!1)}),{binderInstRef:t,positionManually:h,mergedShowConsideringDisabledProp:a,uncontrolledShow:n,mergedShowArrow:u,getMergedShow:d,setShow:W,handleClick:k,handleMouseEnter:R,handleMouseLeave:z,handleFocus:_,handleBlur:I,syncPosition:x}},render(){var e;const{positionManually:o,$slots:t}=this;let r,n=!1;if(!o&&(t.activator?r=hn(t,"activator"):r=hn(t,"trigger"),r)){r=rr(r),r=r.type===sd?i("span",[r]):r;const l={onClick:this.handleClick,onMouseenter:this.handleMouseEnter,onMouseleave:this.handleMouseLeave,onFocus:this.handleFocus,onBlur:this.handleBlur};if(!((e=r.type)===null||e===void 0)&&e.__popover__)n=!0,r.props||(r.props={internalSyncTargetWithParent:!0,internalInheritedEventHandlers:[]}),r.props.internalSyncTargetWithParent=!0,r.props.internalInheritedEventHandlers?r.props.internalInheritedEventHandlers=[l,...r.props.internalInheritedEventHandlers]:r.props.internalInheritedEventHandlers=[l];else{const{internalInheritedEventHandlers:a}=this,s=[l,...a],d={onBlur:c=>{s.forEach(u=>{u.onBlur(c)})},onFocus:c=>{s.forEach(u=>{u.onFocus(c)})},onClick:c=>{s.forEach(u=>{u.onClick(c)})},onMouseenter:c=>{s.forEach(u=>{u.onMouseenter(c)})},onMouseleave:c=>{s.forEach(u=>{u.onMouseleave(c)})}};Yc(r,a?"nested":o?"manual":this.trigger,d)}}return i(Or,{ref:"binderInstRef",syncTarget:!n,syncTargetWithParent:this.internalSyncTargetWithParent},{default:()=>{this.mergedShowConsideringDisabledProp;const l=this.getMergedShow();return[this.internalTrapFocus&&l?Lo(i("div",{style:{position:"fixed",inset:0}}),[[_r,{enabled:l,zIndex:this.zIndex}]]):null,o?null:i(Fr,null,{default:()=>r}),i(Kc,mo(this.$props,Gc,Object.assign(Object.assign({},this.$attrs),{showArrow:this.mergedShowArrow,show:l})),{default:()=>{var a,s;return(s=(a=this.$slots).default)===null||s===void 0?void 0:s.call(a)},header:()=>{var a,s;return(s=(a=this.$slots).header)===null||s===void 0?void 0:s.call(a)},footer:()=>{var a,s;return(s=(a=this.$slots).footer)===null||s===void 0?void 0:s.call(a)}})]}})}}),Ol={closeIconSizeTiny:"12px",closeIconSizeSmall:"12px",closeIconSizeMedium:"14px",closeIconSizeLarge:"14px",closeSizeTiny:"16px",closeSizeSmall:"16px",closeSizeMedium:"18px",closeSizeLarge:"18px",padding:"0 7px",closeMargin:"0 0 0 4px"},Zc={name:"Tag",common:ue,self(e){const{textColor2:o,primaryColorHover:t,primaryColorPressed:r,primaryColor:n,infoColor:l,successColor:a,warningColor:s,errorColor:d,baseColor:c,borderColor:u,tagColor:f,opacityDisabled:p,closeIconColor:v,closeIconColorHover:h,closeIconColorPressed:m,closeColorHover:x,closeColorPressed:y,borderRadiusSmall:b,fontSizeMini:_,fontSizeTiny:I,fontSizeSmall:R,fontSizeMedium:z,heightMini:C,heightTiny:H,heightSmall:k,heightMedium:D,buttonColor2Hover:W,buttonColor2Pressed:L,fontWeightStrong:j}=e;return Object.assign(Object.assign({},Ol),{closeBorderRadius:b,heightTiny:C,heightSmall:H,heightMedium:k,heightLarge:D,borderRadius:b,opacityDisabled:p,fontSizeTiny:_,fontSizeSmall:I,fontSizeMedium:R,fontSizeLarge:z,fontWeightStrong:j,textColorCheckable:o,textColorHoverCheckable:o,textColorPressedCheckable:o,textColorChecked:c,colorCheckable:"#0000",colorHoverCheckable:W,colorPressedCheckable:L,colorChecked:n,colorCheckedHover:t,colorCheckedPressed:r,border:`1px solid ${u}`,textColor:o,color:f,colorBordered:"#0000",closeIconColor:v,closeIconColorHover:h,closeIconColorPressed:m,closeColorHover:x,closeColorPressed:y,borderPrimary:`1px solid ${ee(n,{alpha:.3})}`,textColorPrimary:n,colorPrimary:ee(n,{alpha:.16}),colorBorderedPrimary:"#0000",closeIconColorPrimary:to(n,{lightness:.7}),closeIconColorHoverPrimary:to(n,{lightness:.7}),closeIconColorPressedPrimary:to(n,{lightness:.7}),closeColorHoverPrimary:ee(n,{alpha:.16}),closeColorPressedPrimary:ee(n,{alpha:.12}),borderInfo:`1px solid ${ee(l,{alpha:.3})}`,textColorInfo:l,colorInfo:ee(l,{alpha:.16}),colorBorderedInfo:"#0000",closeIconColorInfo:to(l,{alpha:.7}),closeIconColorHoverInfo:to(l,{alpha:.7}),closeIconColorPressedInfo:to(l,{alpha:.7}),closeColorHoverInfo:ee(l,{alpha:.16}),closeColorPressedInfo:ee(l,{alpha:.12}),borderSuccess:`1px solid ${ee(a,{alpha:.3})}`,textColorSuccess:a,colorSuccess:ee(a,{alpha:.16}),colorBorderedSuccess:"#0000",closeIconColorSuccess:to(a,{alpha:.7}),closeIconColorHoverSuccess:to(a,{alpha:.7}),closeIconColorPressedSuccess:to(a,{alpha:.7}),closeColorHoverSuccess:ee(a,{alpha:.16}),closeColorPressedSuccess:ee(a,{alpha:.12}),borderWarning:`1px solid ${ee(s,{alpha:.3})}`,textColorWarning:s,colorWarning:ee(s,{alpha:.16}),colorBorderedWarning:"#0000",closeIconColorWarning:to(s,{alpha:.7}),closeIconColorHoverWarning:to(s,{alpha:.7}),closeIconColorPressedWarning:to(s,{alpha:.7}),closeColorHoverWarning:ee(s,{alpha:.16}),closeColorPressedWarning:ee(s,{alpha:.11}),borderError:`1px solid ${ee(d,{alpha:.3})}`,textColorError:d,colorError:ee(d,{alpha:.16}),colorBorderedError:"#0000",closeIconColorError:to(d,{alpha:.7}),closeIconColorHoverError:to(d,{alpha:.7}),closeIconColorPressedError:to(d,{alpha:.7}),closeColorHoverError:ee(d,{alpha:.16}),closeColorPressedError:ee(d,{alpha:.12})})}},_l=Zc,Qc=e=>{const{textColor2:o,primaryColorHover:t,primaryColorPressed:r,primaryColor:n,infoColor:l,successColor:a,warningColor:s,errorColor:d,baseColor:c,borderColor:u,opacityDisabled:f,tagColor:p,closeIconColor:v,closeIconColorHover:h,closeIconColorPressed:m,borderRadiusSmall:x,fontSizeMini:y,fontSizeTiny:b,fontSizeSmall:_,fontSizeMedium:I,heightMini:R,heightTiny:z,heightSmall:C,heightMedium:H,closeColorHover:k,closeColorPressed:D,buttonColor2Hover:W,buttonColor2Pressed:L,fontWeightStrong:j}=e;return Object.assign(Object.assign({},Ol),{closeBorderRadius:x,heightTiny:R,heightSmall:z,heightMedium:C,heightLarge:H,borderRadius:x,opacityDisabled:f,fontSizeTiny:y,fontSizeSmall:b,fontSizeMedium:_,fontSizeLarge:I,fontWeightStrong:j,textColorCheckable:o,textColorHoverCheckable:o,textColorPressedCheckable:o,textColorChecked:c,colorCheckable:"#0000",colorHoverCheckable:W,colorPressedCheckable:L,colorChecked:n,colorCheckedHover:t,colorCheckedPressed:r,border:`1px solid ${u}`,textColor:o,color:p,colorBordered:"rgb(250, 250, 252)",closeIconColor:v,closeIconColorHover:h,closeIconColorPressed:m,closeColorHover:k,closeColorPressed:D,borderPrimary:`1px solid ${ee(n,{alpha:.3})}`,textColorPrimary:n,colorPrimary:ee(n,{alpha:.12}),colorBorderedPrimary:ee(n,{alpha:.1}),closeIconColorPrimary:n,closeIconColorHoverPrimary:n,closeIconColorPressedPrimary:n,closeColorHoverPrimary:ee(n,{alpha:.12}),closeColorPressedPrimary:ee(n,{alpha:.18}),borderInfo:`1px solid ${ee(l,{alpha:.3})}`,textColorInfo:l,colorInfo:ee(l,{alpha:.12}),colorBorderedInfo:ee(l,{alpha:.1}),closeIconColorInfo:l,closeIconColorHoverInfo:l,closeIconColorPressedInfo:l,closeColorHoverInfo:ee(l,{alpha:.12}),closeColorPressedInfo:ee(l,{alpha:.18}),borderSuccess:`1px solid ${ee(a,{alpha:.3})}`,textColorSuccess:a,colorSuccess:ee(a,{alpha:.12}),colorBorderedSuccess:ee(a,{alpha:.1}),closeIconColorSuccess:a,closeIconColorHoverSuccess:a,closeIconColorPressedSuccess:a,closeColorHoverSuccess:ee(a,{alpha:.12}),closeColorPressedSuccess:ee(a,{alpha:.18}),borderWarning:`1px solid ${ee(s,{alpha:.35})}`,textColorWarning:s,colorWarning:ee(s,{alpha:.15}),colorBorderedWarning:ee(s,{alpha:.12}),closeIconColorWarning:s,closeIconColorHoverWarning:s,closeIconColorPressedWarning:s,closeColorHoverWarning:ee(s,{alpha:.12}),closeColorPressedWarning:ee(s,{alpha:.18}),borderError:`1px solid ${ee(d,{alpha:.23})}`,textColorError:d,colorError:ee(d,{alpha:.1}),colorBorderedError:ee(d,{alpha:.08}),closeIconColorError:d,closeIconColorHoverError:d,closeIconColorPressedError:d,closeColorHoverError:ee(d,{alpha:.12}),closeColorPressedError:ee(d,{alpha:.18})})},Jc={name:"Tag",common:Ae,self:Qc},eu=Jc,ou={color:Object,type:{type:String,default:"default"},round:Boolean,size:{type:String,default:"medium"},closable:Boolean,disabled:{type:Boolean,default:void 0}},tu=g("tag",` + --n-close-margin: var(--n-close-margin-top) var(--n-close-margin-right) var(--n-close-margin-bottom) var(--n-close-margin-left); + white-space: nowrap; + position: relative; + box-sizing: border-box; + cursor: default; + display: inline-flex; + align-items: center; + flex-wrap: nowrap; + padding: var(--n-padding); + border-radius: var(--n-border-radius); + color: var(--n-text-color); + background-color: var(--n-color); + transition: + border-color .3s var(--n-bezier), + background-color .3s var(--n-bezier), + color .3s var(--n-bezier), + box-shadow .3s var(--n-bezier), + opacity .3s var(--n-bezier); + line-height: 1; + height: var(--n-height); + font-size: var(--n-font-size); +`,[P("strong",` + font-weight: var(--n-font-weight-strong); + `),S("border",` + pointer-events: none; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + border-radius: inherit; + border: var(--n-border); + transition: border-color .3s var(--n-bezier); + `),S("icon",` + display: flex; + margin: 0 4px 0 0; + color: var(--n-text-color); + transition: color .3s var(--n-bezier); + font-size: var(--n-avatar-size-override); + `),S("avatar",` + display: flex; + margin: 0 6px 0 0; + `),S("close",` + margin: var(--n-close-margin); + transition: + background-color .3s var(--n-bezier), + color .3s var(--n-bezier); + `),P("round",` + padding: 0 calc(var(--n-height) / 3); + border-radius: calc(var(--n-height) / 2); + `,[S("icon",` + margin: 0 4px 0 calc((var(--n-height) - 8px) / -2); + `),S("avatar",` + margin: 0 6px 0 calc((var(--n-height) - 8px) / -2); + `),P("closable",` + padding: 0 calc(var(--n-height) / 4) 0 calc(var(--n-height) / 3); + `)]),P("icon, avatar",[P("round",` + padding: 0 calc(var(--n-height) / 3) 0 calc(var(--n-height) / 2); + `)]),P("disabled",` + cursor: not-allowed !important; + opacity: var(--n-opacity-disabled); + `),P("checkable",` + cursor: pointer; + box-shadow: none; + color: var(--n-text-color-checkable); + background-color: var(--n-color-checkable); + `,[Ve("disabled",[w("&:hover","background-color: var(--n-color-hover-checkable);",[Ve("checked","color: var(--n-text-color-hover-checkable);")]),w("&:active","background-color: var(--n-color-pressed-checkable);",[Ve("checked","color: var(--n-text-color-pressed-checkable);")])]),P("checked",` + color: var(--n-text-color-checked); + background-color: var(--n-color-checked); + `,[Ve("disabled",[w("&:hover","background-color: var(--n-color-checked-hover);"),w("&:active","background-color: var(--n-color-checked-pressed);")])])])]),ru=Object.assign(Object.assign(Object.assign({},ae.props),ou),{bordered:{type:Boolean,default:void 0},checked:Boolean,checkable:Boolean,strong:Boolean,triggerClickOnClose:Boolean,onClose:[Array,Function],onMouseenter:Function,onMouseleave:Function,"onUpdate:checked":Function,onUpdateChecked:Function,internalCloseFocusable:{type:Boolean,default:!0},internalCloseIsButtonTag:{type:Boolean,default:!0},onCheckedChange:Function}),Ml="n-tag",Jr=Z({name:"Tag",props:ru,setup(e){const o=M(null),{mergedBorderedRef:t,mergedClsPrefixRef:r,inlineThemeDisabled:n,mergedRtlRef:l}=Ie(e),a=ae("Tag","-tag",tu,eu,e,r);De(Ml,{roundRef:le(e,"round")});function s(v){if(!e.disabled&&e.checkable){const{checked:h,onCheckedChange:m,onUpdateChecked:x,"onUpdate:checked":y}=e;x&&x(!h),y&&y(!h),m&&m(!h)}}function d(v){if(e.triggerClickOnClose||v.stopPropagation(),!e.disabled){const{onClose:h}=e;h&&de(h,v)}}const c={setTextContent(v){const{value:h}=o;h&&(h.textContent=v)}},u=eo("Tag",l,r),f=$(()=>{const{type:v,size:h,color:{color:m,textColor:x}={}}=e,{common:{cubicBezierEaseInOut:y},self:{padding:b,closeMargin:_,borderRadius:I,opacityDisabled:R,textColorCheckable:z,textColorHoverCheckable:C,textColorPressedCheckable:H,textColorChecked:k,colorCheckable:D,colorHoverCheckable:W,colorPressedCheckable:L,colorChecked:j,colorCheckedHover:V,colorCheckedPressed:E,closeBorderRadius:Y,fontWeightStrong:K,[N("colorBordered",v)]:te,[N("closeSize",h)]:xe,[N("closeIconSize",h)]:se,[N("fontSize",h)]:ie,[N("height",h)]:O,[N("color",v)]:B,[N("textColor",v)]:G,[N("border",v)]:oe,[N("closeIconColor",v)]:me,[N("closeIconColorHover",v)]:be,[N("closeIconColorPressed",v)]:Be,[N("closeColorHover",v)]:T,[N("closeColorPressed",v)]:fe}}=a.value,we=yo(_);return{"--n-font-weight-strong":K,"--n-avatar-size-override":`calc(${O} - 8px)`,"--n-bezier":y,"--n-border-radius":I,"--n-border":oe,"--n-close-icon-size":se,"--n-close-color-pressed":fe,"--n-close-color-hover":T,"--n-close-border-radius":Y,"--n-close-icon-color":me,"--n-close-icon-color-hover":be,"--n-close-icon-color-pressed":Be,"--n-close-icon-color-disabled":me,"--n-close-margin-top":we.top,"--n-close-margin-right":we.right,"--n-close-margin-bottom":we.bottom,"--n-close-margin-left":we.left,"--n-close-size":xe,"--n-color":m||(t.value?te:B),"--n-color-checkable":D,"--n-color-checked":j,"--n-color-checked-hover":V,"--n-color-checked-pressed":E,"--n-color-hover-checkable":W,"--n-color-pressed-checkable":L,"--n-font-size":ie,"--n-height":O,"--n-opacity-disabled":R,"--n-padding":b,"--n-text-color":x||G,"--n-text-color-checkable":z,"--n-text-color-checked":k,"--n-text-color-hover-checkable":C,"--n-text-color-pressed-checkable":H}}),p=n?We("tag",$(()=>{let v="";const{type:h,size:m,color:{color:x,textColor:y}={}}=e;return v+=h[0],v+=m[0],x&&(v+=`a${Et(x)}`),y&&(v+=`b${Et(y)}`),t.value&&(v+="c"),v}),f,e):void 0;return Object.assign(Object.assign({},c),{rtlEnabled:u,mergedClsPrefix:r,contentRef:o,mergedBordered:t,handleClick:s,handleCloseClick:d,cssVars:n?void 0:f,themeClass:p==null?void 0:p.themeClass,onRender:p==null?void 0:p.onRender})},render(){var e,o;const{mergedClsPrefix:t,rtlEnabled:r,closable:n,color:{borderColor:l}={},round:a,onRender:s,$slots:d}=this;s==null||s();const c=je(d.avatar,f=>f&&i("div",{class:`${t}-tag__avatar`},f)),u=je(d.icon,f=>f&&i("div",{class:`${t}-tag__icon`},f));return i("div",{class:[`${t}-tag`,this.themeClass,{[`${t}-tag--rtl`]:r,[`${t}-tag--strong`]:this.strong,[`${t}-tag--disabled`]:this.disabled,[`${t}-tag--checkable`]:this.checkable,[`${t}-tag--checked`]:this.checkable&&this.checked,[`${t}-tag--round`]:a,[`${t}-tag--avatar`]:c,[`${t}-tag--icon`]:u,[`${t}-tag--closable`]:n}],style:this.cssVars,onClick:this.handleClick,onMouseenter:this.onMouseenter,onMouseleave:this.onMouseleave},u||c,i("span",{class:`${t}-tag__content`,ref:"contentRef"},(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e)),!this.checkable&&n?i(kt,{clsPrefix:t,class:`${t}-tag__close`,disabled:this.disabled,onClick:this.handleCloseClick,focusable:this.internalCloseFocusable,round:a,isButtonTag:this.internalCloseIsButtonTag,absolute:!0}):null,!this.checkable&&this.mergedBordered?i("div",{class:`${t}-tag__border`,style:{borderColor:l}}):null)}}),nu=g("base-clear",` + flex-shrink: 0; + height: 1em; + width: 1em; + position: relative; +`,[w(">",[S("clear",` + font-size: var(--n-clear-size); + height: 1em; + width: 1em; + cursor: pointer; + color: var(--n-clear-color); + transition: color .3s var(--n-bezier); + display: flex; + `,[w("&:hover",` + color: var(--n-clear-color-hover)!important; + `),w("&:active",` + color: var(--n-clear-color-pressed)!important; + `)]),S("placeholder",` + display: flex; + `),S("clear, placeholder",` + position: absolute; + left: 50%; + top: 50%; + transform: translateX(-50%) translateY(-50%); + `,[ct({originalTransform:"translateX(-50%) translateY(-50%)",left:"50%",top:"50%"})])])]),gn=Z({name:"BaseClear",props:{clsPrefix:{type:String,required:!0},show:Boolean,onClear:Function},setup(e){return Xo("-base-clear",nu,le(e,"clsPrefix")),{handleMouseDown(o){o.preventDefault()}}},render(){const{clsPrefix:e}=this;return i("div",{class:`${e}-base-clear`},i(Kt,null,{default:()=>{var o,t;return this.show?i("div",{key:"dismiss",class:`${e}-base-clear__clear`,onClick:this.onClear,onMousedown:this.handleMouseDown,"data-clear":!0},so(this.$slots.icon,()=>[i(Le,{clsPrefix:e},{default:()=>i(ic,null)})])):i("div",{key:"icon",class:`${e}-base-clear__placeholder`},(t=(o=this.$slots).placeholder)===null||t===void 0?void 0:t.call(o))}}))}}),Dl=Z({name:"InternalSelectionSuffix",props:{clsPrefix:{type:String,required:!0},showArrow:{type:Boolean,default:void 0},showClear:{type:Boolean,default:void 0},loading:{type:Boolean,default:!1},onClear:Function},setup(e,{slots:o}){return()=>{const{clsPrefix:t}=e;return i(Gt,{clsPrefix:t,class:`${t}-base-suffix`,strokeWidth:24,scale:.85,show:e.loading},{default:()=>e.showArrow?i(gn,{clsPrefix:t,show:e.showClear,onClear:e.onClear},{placeholder:()=>i(Le,{clsPrefix:t,class:`${t}-base-suffix__arrow`},{default:()=>so(o.default,()=>[i(nc,null)])})}):null})}}}),Hl={paddingSingle:"0 26px 0 12px",paddingMultiple:"3px 26px 0 12px",clearSize:"16px",arrowSize:"16px"},iu=e=>{const{borderRadius:o,textColor2:t,textColorDisabled:r,inputColor:n,inputColorDisabled:l,primaryColor:a,primaryColorHover:s,warningColor:d,warningColorHover:c,errorColor:u,errorColorHover:f,borderColor:p,iconColor:v,iconColorDisabled:h,clearColor:m,clearColorHover:x,clearColorPressed:y,placeholderColor:b,placeholderColorDisabled:_,fontSizeTiny:I,fontSizeSmall:R,fontSizeMedium:z,fontSizeLarge:C,heightTiny:H,heightSmall:k,heightMedium:D,heightLarge:W}=e;return Object.assign(Object.assign({},Hl),{fontSizeTiny:I,fontSizeSmall:R,fontSizeMedium:z,fontSizeLarge:C,heightTiny:H,heightSmall:k,heightMedium:D,heightLarge:W,borderRadius:o,textColor:t,textColorDisabled:r,placeholderColor:b,placeholderColorDisabled:_,color:n,colorDisabled:l,colorActive:n,border:`1px solid ${p}`,borderHover:`1px solid ${s}`,borderActive:`1px solid ${a}`,borderFocus:`1px solid ${s}`,boxShadowHover:"none",boxShadowActive:`0 0 0 2px ${ee(a,{alpha:.2})}`,boxShadowFocus:`0 0 0 2px ${ee(a,{alpha:.2})}`,caretColor:a,arrowColor:v,arrowColorDisabled:h,loadingColor:a,borderWarning:`1px solid ${d}`,borderHoverWarning:`1px solid ${c}`,borderActiveWarning:`1px solid ${d}`,borderFocusWarning:`1px solid ${c}`,boxShadowHoverWarning:"none",boxShadowActiveWarning:`0 0 0 2px ${ee(d,{alpha:.2})}`,boxShadowFocusWarning:`0 0 0 2px ${ee(d,{alpha:.2})}`,colorActiveWarning:n,caretColorWarning:d,borderError:`1px solid ${u}`,borderHoverError:`1px solid ${f}`,borderActiveError:`1px solid ${u}`,borderFocusError:`1px solid ${f}`,boxShadowHoverError:"none",boxShadowActiveError:`0 0 0 2px ${ee(u,{alpha:.2})}`,boxShadowFocusError:`0 0 0 2px ${ee(u,{alpha:.2})}`,colorActiveError:n,caretColorError:u,clearColor:m,clearColorHover:x,clearColorPressed:y})},lu={name:"InternalSelection",common:Ae,peers:{Popover:qt},self:iu},Ll=lu,au={name:"InternalSelection",common:ue,peers:{Popover:Bt},self(e){const{borderRadius:o,textColor2:t,textColorDisabled:r,inputColor:n,inputColorDisabled:l,primaryColor:a,primaryColorHover:s,warningColor:d,warningColorHover:c,errorColor:u,errorColorHover:f,iconColor:p,iconColorDisabled:v,clearColor:h,clearColorHover:m,clearColorPressed:x,placeholderColor:y,placeholderColorDisabled:b,fontSizeTiny:_,fontSizeSmall:I,fontSizeMedium:R,fontSizeLarge:z,heightTiny:C,heightSmall:H,heightMedium:k,heightLarge:D}=e;return Object.assign(Object.assign({},Hl),{fontSizeTiny:_,fontSizeSmall:I,fontSizeMedium:R,fontSizeLarge:z,heightTiny:C,heightSmall:H,heightMedium:k,heightLarge:D,borderRadius:o,textColor:t,textColorDisabled:r,placeholderColor:y,placeholderColorDisabled:b,color:n,colorDisabled:l,colorActive:ee(a,{alpha:.1}),border:"1px solid #0000",borderHover:`1px solid ${s}`,borderActive:`1px solid ${a}`,borderFocus:`1px solid ${s}`,boxShadowHover:"none",boxShadowActive:`0 0 8px 0 ${ee(a,{alpha:.4})}`,boxShadowFocus:`0 0 8px 0 ${ee(a,{alpha:.4})}`,caretColor:a,arrowColor:p,arrowColorDisabled:v,loadingColor:a,borderWarning:`1px solid ${d}`,borderHoverWarning:`1px solid ${c}`,borderActiveWarning:`1px solid ${d}`,borderFocusWarning:`1px solid ${c}`,boxShadowHoverWarning:"none",boxShadowActiveWarning:`0 0 8px 0 ${ee(d,{alpha:.4})}`,boxShadowFocusWarning:`0 0 8px 0 ${ee(d,{alpha:.4})}`,colorActiveWarning:ee(d,{alpha:.1}),caretColorWarning:d,borderError:`1px solid ${u}`,borderHoverError:`1px solid ${f}`,borderActiveError:`1px solid ${u}`,borderFocusError:`1px solid ${f}`,boxShadowHoverError:"none",boxShadowActiveError:`0 0 8px 0 ${ee(u,{alpha:.4})}`,boxShadowFocusError:`0 0 8px 0 ${ee(u,{alpha:.4})}`,colorActiveError:ee(u,{alpha:.1}),caretColorError:u,clearColor:h,clearColorHover:m,clearColorPressed:x})}},On=au,su=w([g("base-selection",` + --n-padding-single: var(--n-padding-single-top) var(--n-padding-single-right) var(--n-padding-single-bottom) var(--n-padding-single-left); + --n-padding-multiple: var(--n-padding-multiple-top) var(--n-padding-multiple-right) var(--n-padding-multiple-bottom) var(--n-padding-multiple-left); + position: relative; + z-index: auto; + box-shadow: none; + width: 100%; + max-width: 100%; + display: inline-block; + vertical-align: bottom; + border-radius: var(--n-border-radius); + min-height: var(--n-height); + line-height: 1.5; + font-size: var(--n-font-size); + `,[g("base-loading",` + color: var(--n-loading-color); + `),g("base-selection-tags","min-height: var(--n-height);"),S("border, state-border",` + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + pointer-events: none; + border: var(--n-border); + border-radius: inherit; + transition: + box-shadow .3s var(--n-bezier), + border-color .3s var(--n-bezier); + `),S("state-border",` + z-index: 1; + border-color: #0000; + `),g("base-suffix",` + cursor: pointer; + position: absolute; + top: 50%; + transform: translateY(-50%); + right: 10px; + `,[S("arrow",` + font-size: var(--n-arrow-size); + color: var(--n-arrow-color); + transition: color .3s var(--n-bezier); + `)]),g("base-selection-overlay",` + display: flex; + align-items: center; + white-space: nowrap; + pointer-events: none; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: var(--n-padding-single); + transition: color .3s var(--n-bezier); + `,[S("wrapper",` + flex-basis: 0; + flex-grow: 1; + overflow: hidden; + text-overflow: ellipsis; + `)]),g("base-selection-placeholder",` + color: var(--n-placeholder-color); + `,[S("inner",` + max-width: 100%; + overflow: hidden; + `)]),g("base-selection-tags",` + cursor: pointer; + outline: none; + box-sizing: border-box; + position: relative; + z-index: auto; + display: flex; + padding: var(--n-padding-multiple); + flex-wrap: wrap; + align-items: center; + width: 100%; + vertical-align: bottom; + background-color: var(--n-color); + border-radius: inherit; + transition: + color .3s var(--n-bezier), + box-shadow .3s var(--n-bezier), + background-color .3s var(--n-bezier); + `),g("base-selection-label",` + height: var(--n-height); + display: inline-flex; + width: 100%; + vertical-align: bottom; + cursor: pointer; + outline: none; + z-index: auto; + box-sizing: border-box; + position: relative; + transition: + color .3s var(--n-bezier), + box-shadow .3s var(--n-bezier), + background-color .3s var(--n-bezier); + border-radius: inherit; + background-color: var(--n-color); + align-items: center; + `,[g("base-selection-input",` + font-size: inherit; + line-height: inherit; + outline: none; + cursor: pointer; + box-sizing: border-box; + border:none; + width: 100%; + padding: var(--n-padding-single); + background-color: #0000; + color: var(--n-text-color); + transition: color .3s var(--n-bezier); + caret-color: var(--n-caret-color); + `,[S("content",` + text-overflow: ellipsis; + overflow: hidden; + white-space: nowrap; + `)]),S("render-label",` + color: var(--n-text-color); + `)]),Ve("disabled",[w("&:hover",[S("state-border",` + box-shadow: var(--n-box-shadow-hover); + border: var(--n-border-hover); + `)]),P("focus",[S("state-border",` + box-shadow: var(--n-box-shadow-focus); + border: var(--n-border-focus); + `)]),P("active",[S("state-border",` + box-shadow: var(--n-box-shadow-active); + border: var(--n-border-active); + `),g("base-selection-label","background-color: var(--n-color-active);"),g("base-selection-tags","background-color: var(--n-color-active);")])]),P("disabled","cursor: not-allowed;",[S("arrow",` + color: var(--n-arrow-color-disabled); + `),g("base-selection-label",` + cursor: not-allowed; + background-color: var(--n-color-disabled); + `,[g("base-selection-input",` + cursor: not-allowed; + color: var(--n-text-color-disabled); + `),S("render-label",` + color: var(--n-text-color-disabled); + `)]),g("base-selection-tags",` + cursor: not-allowed; + background-color: var(--n-color-disabled); + `),g("base-selection-placeholder",` + cursor: not-allowed; + color: var(--n-placeholder-color-disabled); + `)]),g("base-selection-input-tag",` + height: calc(var(--n-height) - 6px); + line-height: calc(var(--n-height) - 6px); + outline: none; + display: none; + position: relative; + margin-bottom: 3px; + max-width: 100%; + vertical-align: bottom; + `,[S("input",` + font-size: inherit; + font-family: inherit; + min-width: 1px; + padding: 0; + background-color: #0000; + outline: none; + border: none; + max-width: 100%; + overflow: hidden; + width: 1em; + line-height: inherit; + cursor: pointer; + color: var(--n-text-color); + caret-color: var(--n-caret-color); + `),S("mirror",` + position: absolute; + left: 0; + top: 0; + white-space: pre; + visibility: hidden; + user-select: none; + -webkit-user-select: none; + opacity: 0; + `)]),["warning","error"].map(e=>P(`${e}-status`,[S("state-border",`border: var(--n-border-${e});`),Ve("disabled",[w("&:hover",[S("state-border",` + box-shadow: var(--n-box-shadow-hover-${e}); + border: var(--n-border-hover-${e}); + `)]),P("active",[S("state-border",` + box-shadow: var(--n-box-shadow-active-${e}); + border: var(--n-border-active-${e}); + `),g("base-selection-label",`background-color: var(--n-color-active-${e});`),g("base-selection-tags",`background-color: var(--n-color-active-${e});`)]),P("focus",[S("state-border",` + box-shadow: var(--n-box-shadow-focus-${e}); + border: var(--n-border-focus-${e}); + `)])])]))]),g("base-selection-popover",` + margin-bottom: -3px; + display: flex; + flex-wrap: wrap; + margin-right: -8px; + `),g("base-selection-tag-wrapper",` + max-width: 100%; + display: inline-flex; + padding: 0 7px 3px 0; + `,[w("&:last-child","padding-right: 0;"),g("tag",` + font-size: 14px; + max-width: 100%; + `,[S("content",` + line-height: 1.25; + text-overflow: ellipsis; + overflow: hidden; + `)])])]),du=Z({name:"InternalSelection",props:Object.assign(Object.assign({},ae.props),{clsPrefix:{type:String,required:!0},bordered:{type:Boolean,default:void 0},active:Boolean,pattern:{type:String,default:""},placeholder:String,selectedOption:{type:Object,default:null},selectedOptions:{type:Array,default:null},labelField:{type:String,default:"label"},valueField:{type:String,default:"value"},multiple:Boolean,filterable:Boolean,clearable:Boolean,disabled:Boolean,size:{type:String,default:"medium"},loading:Boolean,autofocus:Boolean,showArrow:{type:Boolean,default:!0},inputProps:Object,focused:Boolean,renderTag:Function,onKeydown:Function,onClick:Function,onBlur:Function,onFocus:Function,onDeleteOption:Function,maxTagCount:[String,Number],ellipsisTagPopoverProps:Object,onClear:Function,onPatternInput:Function,onPatternFocus:Function,onPatternBlur:Function,renderLabel:Function,status:String,inlineThemeDisabled:Boolean,ignoreComposition:{type:Boolean,default:!0},onResize:Function}),setup(e){const{mergedClsPrefixRef:o,mergedRtlRef:t}=Ie(e),r=eo("InternalSelection",t,o),n=M(null),l=M(null),a=M(null),s=M(null),d=M(null),c=M(null),u=M(null),f=M(null),p=M(null),v=M(null),h=M(!1),m=M(!1),x=M(!1),y=ae("InternalSelection","-internal-selection",su,Ll,e,le(e,"clsPrefix")),b=$(()=>e.clearable&&!e.disabled&&(x.value||e.active)),_=$(()=>e.selectedOption?e.renderTag?e.renderTag({option:e.selectedOption,handleClose:()=>{}}):e.renderLabel?e.renderLabel(e.selectedOption,!0):Qe(e.selectedOption[e.labelField],e.selectedOption,!0):e.placeholder),I=$(()=>{const J=e.selectedOption;if(J)return J[e.labelField]}),R=$(()=>e.multiple?!!(Array.isArray(e.selectedOptions)&&e.selectedOptions.length):e.selectedOption!==null);function z(){var J;const{value:he}=n;if(he){const{value:Ne}=l;Ne&&(Ne.style.width=`${he.offsetWidth}px`,e.maxTagCount!=="responsive"&&((J=p.value)===null||J===void 0||J.sync({showAllItemsBeforeCalculate:!1})))}}function C(){const{value:J}=v;J&&(J.style.display="none")}function H(){const{value:J}=v;J&&(J.style.display="inline-block")}Xe(le(e,"active"),J=>{J||C()}),Xe(le(e,"pattern"),()=>{e.multiple&&ao(z)});function k(J){const{onFocus:he}=e;he&&he(J)}function D(J){const{onBlur:he}=e;he&&he(J)}function W(J){const{onDeleteOption:he}=e;he&&he(J)}function L(J){const{onClear:he}=e;he&&he(J)}function j(J){const{onPatternInput:he}=e;he&&he(J)}function V(J){var he;(!J.relatedTarget||!(!((he=a.value)===null||he===void 0)&&he.contains(J.relatedTarget)))&&k(J)}function E(J){var he;!((he=a.value)===null||he===void 0)&&he.contains(J.relatedTarget)||D(J)}function Y(J){L(J)}function K(){x.value=!0}function te(){x.value=!1}function xe(J){!e.active||!e.filterable||J.target!==l.value&&J.preventDefault()}function se(J){W(J)}function ie(J){if(J.key==="Backspace"&&!O.value&&!e.pattern.length){const{selectedOptions:he}=e;he!=null&&he.length&&se(he[he.length-1])}}const O=M(!1);let B=null;function G(J){const{value:he}=n;if(he){const Ne=J.target.value;he.textContent=Ne,z()}e.ignoreComposition&&O.value?B=J:j(J)}function oe(){O.value=!0}function me(){O.value=!1,e.ignoreComposition&&j(B),B=null}function be(J){var he;m.value=!0,(he=e.onPatternFocus)===null||he===void 0||he.call(e,J)}function Be(J){var he;m.value=!1,(he=e.onPatternBlur)===null||he===void 0||he.call(e,J)}function T(){var J,he;if(e.filterable)m.value=!1,(J=c.value)===null||J===void 0||J.blur(),(he=l.value)===null||he===void 0||he.blur();else if(e.multiple){const{value:Ne}=s;Ne==null||Ne.blur()}else{const{value:Ne}=d;Ne==null||Ne.blur()}}function fe(){var J,he,Ne;e.filterable?(m.value=!1,(J=c.value)===null||J===void 0||J.focus()):e.multiple?(he=s.value)===null||he===void 0||he.focus():(Ne=d.value)===null||Ne===void 0||Ne.focus()}function we(){const{value:J}=l;J&&(H(),J.focus())}function Me(){const{value:J}=l;J&&J.blur()}function ne(J){const{value:he}=u;he&&he.setTextContent(`+${J}`)}function Ce(){const{value:J}=f;return J}function ge(){return l.value}let Ee=null;function Q(){Ee!==null&&window.clearTimeout(Ee)}function ve(){e.active||(Q(),Ee=window.setTimeout(()=>{R.value&&(h.value=!0)},100))}function ze(){Q()}function U(J){J||(Q(),h.value=!1)}Xe(R,J=>{J||(h.value=!1)}),po(()=>{oo(()=>{const J=c.value;J&&(e.disabled?J.removeAttribute("tabindex"):J.tabIndex=m.value?-1:0)})}),vl(a,e.onResize);const{inlineThemeDisabled:q}=e,pe=$(()=>{const{size:J}=e,{common:{cubicBezierEaseInOut:he},self:{borderRadius:Ne,color:no,placeholderColor:Ro,textColor:Oo,paddingSingle:xo,paddingMultiple:Co,caretColor:Eo,colorDisabled:_o,textColorDisabled:fo,placeholderColorDisabled:vo,colorActive:F,boxShadowFocus:X,boxShadowActive:ce,boxShadowHover:Pe,border:ke,borderFocus:Te,borderHover:Fe,borderActive:He,arrowColor:qe,arrowColorDisabled:go,loadingColor:lt,colorActiveWarning:ft,boxShadowFocusWarning:Vo,boxShadowActiveWarning:Uo,boxShadowHoverWarning:ht,borderWarning:pt,borderFocusWarning:at,borderHoverWarning:st,borderActiveWarning:A,colorActiveError:re,boxShadowFocusError:Oe,boxShadowActiveError:Ye,boxShadowHoverError:Ze,borderError:Ge,borderFocusError:Zo,borderHoverError:Qo,borderActiveError:Jo,clearColor:vt,clearColorHover:gt,clearColorPressed:Qt,clearSize:Nr,arrowSize:Vr,[N("height",J)]:Ur,[N("fontSize",J)]:Kr}}=y.value,Tt=yo(xo),Ft=yo(Co);return{"--n-bezier":he,"--n-border":ke,"--n-border-active":He,"--n-border-focus":Te,"--n-border-hover":Fe,"--n-border-radius":Ne,"--n-box-shadow-active":ce,"--n-box-shadow-focus":X,"--n-box-shadow-hover":Pe,"--n-caret-color":Eo,"--n-color":no,"--n-color-active":F,"--n-color-disabled":_o,"--n-font-size":Kr,"--n-height":Ur,"--n-padding-single-top":Tt.top,"--n-padding-multiple-top":Ft.top,"--n-padding-single-right":Tt.right,"--n-padding-multiple-right":Ft.right,"--n-padding-single-left":Tt.left,"--n-padding-multiple-left":Ft.left,"--n-padding-single-bottom":Tt.bottom,"--n-padding-multiple-bottom":Ft.bottom,"--n-placeholder-color":Ro,"--n-placeholder-color-disabled":vo,"--n-text-color":Oo,"--n-text-color-disabled":fo,"--n-arrow-color":qe,"--n-arrow-color-disabled":go,"--n-loading-color":lt,"--n-color-active-warning":ft,"--n-box-shadow-focus-warning":Vo,"--n-box-shadow-active-warning":Uo,"--n-box-shadow-hover-warning":ht,"--n-border-warning":pt,"--n-border-focus-warning":at,"--n-border-hover-warning":st,"--n-border-active-warning":A,"--n-color-active-error":re,"--n-box-shadow-focus-error":Oe,"--n-box-shadow-active-error":Ye,"--n-box-shadow-hover-error":Ze,"--n-border-error":Ge,"--n-border-focus-error":Zo,"--n-border-hover-error":Qo,"--n-border-active-error":Jo,"--n-clear-size":Nr,"--n-clear-color":vt,"--n-clear-color-hover":gt,"--n-clear-color-pressed":Qt,"--n-arrow-size":Vr}}),Se=q?We("internal-selection",$(()=>e.size[0]),pe,e):void 0;return{mergedTheme:y,mergedClearable:b,mergedClsPrefix:o,rtlEnabled:r,patternInputFocused:m,filterablePlaceholder:_,label:I,selected:R,showTagsPanel:h,isComposing:O,counterRef:u,counterWrapperRef:f,patternInputMirrorRef:n,patternInputRef:l,selfRef:a,multipleElRef:s,singleElRef:d,patternInputWrapperRef:c,overflowRef:p,inputTagElRef:v,handleMouseDown:xe,handleFocusin:V,handleClear:Y,handleMouseEnter:K,handleMouseLeave:te,handleDeleteOption:se,handlePatternKeyDown:ie,handlePatternInputInput:G,handlePatternInputBlur:Be,handlePatternInputFocus:be,handleMouseEnterCounter:ve,handleMouseLeaveCounter:ze,handleFocusout:E,handleCompositionEnd:me,handleCompositionStart:oe,onPopoverUpdateShow:U,focus:fe,focusInput:we,blur:T,blurInput:Me,updateCounter:ne,getCounter:Ce,getTail:ge,renderLabel:e.renderLabel,cssVars:q?void 0:pe,themeClass:Se==null?void 0:Se.themeClass,onRender:Se==null?void 0:Se.onRender}},render(){const{status:e,multiple:o,size:t,disabled:r,filterable:n,maxTagCount:l,bordered:a,clsPrefix:s,ellipsisTagPopoverProps:d,onRender:c,renderTag:u,renderLabel:f}=this;c==null||c();const p=l==="responsive",v=typeof l=="number",h=p||v,m=i(vn,null,{default:()=>i(Dl,{clsPrefix:s,loading:this.loading,showArrow:this.showArrow,showClear:this.mergedClearable&&this.selected,onClear:this.handleClear},{default:()=>{var y,b;return(b=(y=this.$slots).arrow)===null||b===void 0?void 0:b.call(y)}})});let x;if(o){const{labelField:y}=this,b=j=>i("div",{class:`${s}-base-selection-tag-wrapper`,key:j.value},u?u({option:j,handleClose:()=>{this.handleDeleteOption(j)}}):i(Jr,{size:t,closable:!j.disabled,disabled:r,onClose:()=>{this.handleDeleteOption(j)},internalCloseIsButtonTag:!1,internalCloseFocusable:!1},{default:()=>f?f(j,!0):Qe(j[y],j,!0)})),_=()=>(v?this.selectedOptions.slice(0,l):this.selectedOptions).map(b),I=n?i("div",{class:`${s}-base-selection-input-tag`,ref:"inputTagElRef",key:"__input-tag__"},i("input",Object.assign({},this.inputProps,{ref:"patternInputRef",tabindex:-1,disabled:r,value:this.pattern,autofocus:this.autofocus,class:`${s}-base-selection-input-tag__input`,onBlur:this.handlePatternInputBlur,onFocus:this.handlePatternInputFocus,onKeydown:this.handlePatternKeyDown,onInput:this.handlePatternInputInput,onCompositionstart:this.handleCompositionStart,onCompositionend:this.handleCompositionEnd})),i("span",{ref:"patternInputMirrorRef",class:`${s}-base-selection-input-tag__mirror`},this.pattern)):null,R=p?()=>i("div",{class:`${s}-base-selection-tag-wrapper`,ref:"counterWrapperRef"},i(Jr,{size:t,ref:"counterRef",onMouseenter:this.handleMouseEnterCounter,onMouseleave:this.handleMouseLeaveCounter,disabled:r})):void 0;let z;if(v){const j=this.selectedOptions.length-l;j>0&&(z=i("div",{class:`${s}-base-selection-tag-wrapper`,key:"__counter__"},i(Jr,{size:t,ref:"counterRef",onMouseenter:this.handleMouseEnterCounter,disabled:r},{default:()=>`+${j}`})))}const C=p?n?i(un,{ref:"overflowRef",updateCounter:this.updateCounter,getCounter:this.getCounter,getTail:this.getTail,style:{width:"100%",display:"flex",overflow:"hidden"}},{default:_,counter:R,tail:()=>I}):i(un,{ref:"overflowRef",updateCounter:this.updateCounter,getCounter:this.getCounter,style:{width:"100%",display:"flex",overflow:"hidden"}},{default:_,counter:R}):v&&z?_().concat(z):_(),H=h?()=>i("div",{class:`${s}-base-selection-popover`},p?_():this.selectedOptions.map(b)):void 0,k=h?Object.assign({show:this.showTagsPanel,trigger:"hover",overlap:!0,placement:"top",width:"trigger",onUpdateShow:this.onPopoverUpdateShow,theme:this.mergedTheme.peers.Popover,themeOverrides:this.mergedTheme.peerOverrides.Popover},d):null,W=(this.selected?!1:this.active?!this.pattern&&!this.isComposing:!0)?i("div",{class:`${s}-base-selection-placeholder ${s}-base-selection-overlay`},i("div",{class:`${s}-base-selection-placeholder__inner`},this.placeholder)):null,L=n?i("div",{ref:"patternInputWrapperRef",class:`${s}-base-selection-tags`},C,p?null:I,m):i("div",{ref:"multipleElRef",class:`${s}-base-selection-tags`,tabindex:r?void 0:0},C,m);x=i(co,null,h?i(mr,Object.assign({},k,{scrollable:!0,style:"max-height: calc(var(--v-target-height) * 6.6);"}),{trigger:()=>L,default:H}):L,W)}else if(n){const y=this.pattern||this.isComposing,b=this.active?!y:!this.selected,_=this.active?!1:this.selected;x=i("div",{ref:"patternInputWrapperRef",class:`${s}-base-selection-label`,title:this.patternInputFocused?void 0:fn(this.label)},i("input",Object.assign({},this.inputProps,{ref:"patternInputRef",class:`${s}-base-selection-input`,value:this.active?this.pattern:"",placeholder:"",readonly:r,disabled:r,tabindex:-1,autofocus:this.autofocus,onFocus:this.handlePatternInputFocus,onBlur:this.handlePatternInputBlur,onInput:this.handlePatternInputInput,onCompositionstart:this.handleCompositionStart,onCompositionend:this.handleCompositionEnd})),_?i("div",{class:`${s}-base-selection-label__render-label ${s}-base-selection-overlay`,key:"input"},i("div",{class:`${s}-base-selection-overlay__wrapper`},u?u({option:this.selectedOption,handleClose:()=>{}}):f?f(this.selectedOption,!0):Qe(this.label,this.selectedOption,!0))):null,b?i("div",{class:`${s}-base-selection-placeholder ${s}-base-selection-overlay`,key:"placeholder"},i("div",{class:`${s}-base-selection-overlay__wrapper`},this.filterablePlaceholder)):null,m)}else x=i("div",{ref:"singleElRef",class:`${s}-base-selection-label`,tabindex:this.disabled?void 0:0},this.label!==void 0?i("div",{class:`${s}-base-selection-input`,title:fn(this.label),key:"input"},i("div",{class:`${s}-base-selection-input__content`},u?u({option:this.selectedOption,handleClose:()=>{}}):f?f(this.selectedOption,!0):Qe(this.label,this.selectedOption,!0))):i("div",{class:`${s}-base-selection-placeholder ${s}-base-selection-overlay`,key:"placeholder"},i("div",{class:`${s}-base-selection-placeholder__inner`},this.placeholder)),m);return i("div",{ref:"selfRef",class:[`${s}-base-selection`,this.rtlEnabled&&`${s}-base-selection--rtl`,this.themeClass,e&&`${s}-base-selection--${e}-status`,{[`${s}-base-selection--active`]:this.active,[`${s}-base-selection--selected`]:this.selected||this.active&&this.pattern,[`${s}-base-selection--disabled`]:this.disabled,[`${s}-base-selection--multiple`]:this.multiple,[`${s}-base-selection--focus`]:this.focused}],style:this.cssVars,onClick:this.onClick,onMouseenter:this.handleMouseEnter,onMouseleave:this.handleMouseLeave,onKeydown:this.onKeydown,onFocusin:this.handleFocusin,onFocusout:this.handleFocusout,onMousedown:this.handleMouseDown},x,a?i("div",{class:`${s}-base-selection__border`}):null,a?i("div",{class:`${s}-base-selection__state-border`}):null)}}),Si=Z({name:"SlotMachineNumber",props:{clsPrefix:{type:String,required:!0},value:{type:[Number,String],required:!0},oldOriginalNumber:{type:Number,default:void 0},newOriginalNumber:{type:Number,default:void 0}},setup(e){const o=M(null),t=M(e.value),r=M(e.value),n=M("up"),l=M(!1),a=$(()=>l.value?`${e.clsPrefix}-base-slot-machine-current-number--${n.value}-scroll`:null),s=$(()=>l.value?`${e.clsPrefix}-base-slot-machine-old-number--${n.value}-scroll`:null);Xe(le(e,"value"),(u,f)=>{t.value=f,r.value=u,ao(d)});function d(){const u=e.newOriginalNumber,f=e.oldOriginalNumber;f===void 0||u===void 0||(u>f?c("up"):f>u&&c("down"))}function c(u){n.value=u,l.value=!1,ao(()=>{var f;(f=o.value)===null||f===void 0||f.offsetWidth,l.value=!0})}return()=>{const{clsPrefix:u}=e;return i("span",{ref:o,class:`${u}-base-slot-machine-number`},t.value!==null?i("span",{class:[`${u}-base-slot-machine-old-number ${u}-base-slot-machine-old-number--top`,s.value]},t.value):null,i("span",{class:[`${u}-base-slot-machine-current-number`,a.value]},i("span",{ref:"numberWrapper",class:[`${u}-base-slot-machine-current-number__inner`,typeof e.value!="number"&&`${u}-base-slot-machine-current-number__inner--not-number`]},r.value)),t.value!==null?i("span",{class:[`${u}-base-slot-machine-old-number ${u}-base-slot-machine-old-number--bottom`,s.value]},t.value):null)}}}),{cubicBezierEaseInOut:dt}=zo;function Al({duration:e=".2s",delay:o=".1s"}={}){return[w("&.fade-in-width-expand-transition-leave-from, &.fade-in-width-expand-transition-enter-to",{opacity:1}),w("&.fade-in-width-expand-transition-leave-to, &.fade-in-width-expand-transition-enter-from",` + opacity: 0!important; + margin-left: 0!important; + margin-right: 0!important; + `),w("&.fade-in-width-expand-transition-leave-active",` + overflow: hidden; + transition: + opacity ${e} ${dt}, + max-width ${e} ${dt} ${o}, + margin-left ${e} ${dt} ${o}, + margin-right ${e} ${dt} ${o}; + `),w("&.fade-in-width-expand-transition-enter-active",` + overflow: hidden; + transition: + opacity ${e} ${dt} ${o}, + max-width ${e} ${dt}, + margin-left ${e} ${dt}, + margin-right ${e} ${dt}; + `)]}const{cubicBezierEaseOut:Mt}=zo;function cu({duration:e=".2s"}={}){return[w("&.fade-up-width-expand-transition-leave-active",{transition:` + opacity ${e} ${Mt}, + max-width ${e} ${Mt}, + transform ${e} ${Mt} + `}),w("&.fade-up-width-expand-transition-enter-active",{transition:` + opacity ${e} ${Mt}, + max-width ${e} ${Mt}, + transform ${e} ${Mt} + `}),w("&.fade-up-width-expand-transition-enter-to",{opacity:1,transform:"translateX(0) translateY(0)"}),w("&.fade-up-width-expand-transition-enter-from",{maxWidth:"0 !important",opacity:0,transform:"translateY(60%)"}),w("&.fade-up-width-expand-transition-leave-from",{opacity:1,transform:"translateY(0)"}),w("&.fade-up-width-expand-transition-leave-to",{maxWidth:"0 !important",opacity:0,transform:"translateY(60%)"})]}const uu=w([w("@keyframes n-base-slot-machine-fade-up-in",` + from { + transform: translateY(60%); + opacity: 0; + } + to { + transform: translateY(0); + opacity: 1; + } + `),w("@keyframes n-base-slot-machine-fade-down-in",` + from { + transform: translateY(-60%); + opacity: 0; + } + to { + transform: translateY(0); + opacity: 1; + } + `),w("@keyframes n-base-slot-machine-fade-up-out",` + from { + transform: translateY(0%); + opacity: 1; + } + to { + transform: translateY(-60%); + opacity: 0; + } + `),w("@keyframes n-base-slot-machine-fade-down-out",` + from { + transform: translateY(0%); + opacity: 1; + } + to { + transform: translateY(60%); + opacity: 0; + } + `),g("base-slot-machine",` + overflow: hidden; + white-space: nowrap; + display: inline-block; + height: 18px; + line-height: 18px; + `,[g("base-slot-machine-number",` + display: inline-block; + position: relative; + height: 18px; + width: .6em; + max-width: .6em; + `,[cu({duration:".2s"}),Al({duration:".2s",delay:"0s"}),g("base-slot-machine-old-number",` + display: inline-block; + opacity: 0; + position: absolute; + left: 0; + right: 0; + `,[P("top",{transform:"translateY(-100%)"}),P("bottom",{transform:"translateY(100%)"}),P("down-scroll",{animation:"n-base-slot-machine-fade-down-out .2s cubic-bezier(0, 0, .2, 1)",animationIterationCount:1}),P("up-scroll",{animation:"n-base-slot-machine-fade-up-out .2s cubic-bezier(0, 0, .2, 1)",animationIterationCount:1})]),g("base-slot-machine-current-number",` + display: inline-block; + position: absolute; + left: 0; + top: 0; + bottom: 0; + right: 0; + opacity: 1; + transform: translateY(0); + width: .6em; + `,[P("down-scroll",{animation:"n-base-slot-machine-fade-down-in .2s cubic-bezier(0, 0, .2, 1)",animationIterationCount:1}),P("up-scroll",{animation:"n-base-slot-machine-fade-up-in .2s cubic-bezier(0, 0, .2, 1)",animationIterationCount:1}),S("inner",` + display: inline-block; + position: absolute; + right: 0; + top: 0; + width: .6em; + `,[P("not-number",` + right: unset; + left: 0; + `)])])])])]),fu=Z({name:"BaseSlotMachine",props:{clsPrefix:{type:String,required:!0},value:{type:[Number,String],default:0},max:{type:Number,default:void 0},appeared:{type:Boolean,required:!0}},setup(e){Xo("-base-slot-machine",uu,le(e,"clsPrefix"));const o=M(),t=M(),r=$(()=>{if(typeof e.value=="string")return[];if(e.value<1)return[0];const n=[];let l=e.value;for(e.max!==void 0&&(l=Math.min(e.max,l));l>=1;)n.push(l%10),l/=10,l=Math.floor(l);return n.reverse(),n});return Xe(le(e,"value"),(n,l)=>{typeof n=="string"?(t.value=void 0,o.value=void 0):typeof l=="string"?(t.value=n,o.value=void 0):(t.value=n,o.value=l)}),()=>{const{value:n,clsPrefix:l}=e;return typeof n=="number"?i("span",{class:`${l}-base-slot-machine`},i(Sn,{name:"fade-up-width-expand-transition",tag:"span"},{default:()=>r.value.map((a,s)=>i(Si,{clsPrefix:l,key:r.value.length-s-1,oldOriginalNumber:o.value,newOriginalNumber:t.value,value:a}))}),i(Rt,{key:"+",width:!0},{default:()=>e.max!==void 0&&e.max{const{lineHeight:o,borderRadius:t,fontWeightStrong:r,baseColor:n,dividerColor:l,actionColor:a,textColor1:s,textColor2:d,closeColorHover:c,closeColorPressed:u,closeIconColor:f,closeIconColorHover:p,closeIconColorPressed:v,infoColor:h,successColor:m,warningColor:x,errorColor:y,fontSize:b}=e;return Object.assign(Object.assign({},El),{fontSize:b,lineHeight:o,titleFontWeight:r,borderRadius:t,border:`1px solid ${l}`,color:a,titleTextColor:s,iconColor:d,contentTextColor:d,closeBorderRadius:t,closeColorHover:c,closeColorPressed:u,closeIconColor:f,closeIconColorHover:p,closeIconColorPressed:v,borderInfo:`1px solid ${Re(n,ee(h,{alpha:.25}))}`,colorInfo:Re(n,ee(h,{alpha:.08})),titleTextColorInfo:s,iconColorInfo:h,contentTextColorInfo:d,closeColorHoverInfo:c,closeColorPressedInfo:u,closeIconColorInfo:f,closeIconColorHoverInfo:p,closeIconColorPressedInfo:v,borderSuccess:`1px solid ${Re(n,ee(m,{alpha:.25}))}`,colorSuccess:Re(n,ee(m,{alpha:.08})),titleTextColorSuccess:s,iconColorSuccess:m,contentTextColorSuccess:d,closeColorHoverSuccess:c,closeColorPressedSuccess:u,closeIconColorSuccess:f,closeIconColorHoverSuccess:p,closeIconColorPressedSuccess:v,borderWarning:`1px solid ${Re(n,ee(x,{alpha:.33}))}`,colorWarning:Re(n,ee(x,{alpha:.08})),titleTextColorWarning:s,iconColorWarning:x,contentTextColorWarning:d,closeColorHoverWarning:c,closeColorPressedWarning:u,closeIconColorWarning:f,closeIconColorHoverWarning:p,closeIconColorPressedWarning:v,borderError:`1px solid ${Re(n,ee(y,{alpha:.25}))}`,colorError:Re(n,ee(y,{alpha:.08})),titleTextColorError:s,iconColorError:y,contentTextColorError:d,closeColorHoverError:c,closeColorPressedError:u,closeIconColorError:f,closeIconColorHoverError:p,closeIconColorPressedError:v})},gu={name:"Alert",common:Ae,self:vu},mu=gu,{cubicBezierEaseInOut:Ko,cubicBezierEaseOut:bu,cubicBezierEaseIn:xu}=zo;function sr({overflow:e="hidden",duration:o=".3s",originalTransition:t="",leavingDelay:r="0s",foldPadding:n=!1,enterToProps:l=void 0,leaveToProps:a=void 0,reverse:s=!1}={}){const d=s?"leave":"enter",c=s?"enter":"leave";return[w(`&.fade-in-height-expand-transition-${c}-from, + &.fade-in-height-expand-transition-${d}-to`,Object.assign(Object.assign({},l),{opacity:1})),w(`&.fade-in-height-expand-transition-${c}-to, + &.fade-in-height-expand-transition-${d}-from`,Object.assign(Object.assign({},a),{opacity:0,marginTop:"0 !important",marginBottom:"0 !important",paddingTop:n?"0 !important":void 0,paddingBottom:n?"0 !important":void 0})),w(`&.fade-in-height-expand-transition-${c}-active`,` + overflow: ${e}; + transition: + max-height ${o} ${Ko} ${r}, + opacity ${o} ${bu} ${r}, + margin-top ${o} ${Ko} ${r}, + margin-bottom ${o} ${Ko} ${r}, + padding-top ${o} ${Ko} ${r}, + padding-bottom ${o} ${Ko} ${r} + ${t?","+t:""} + `),w(`&.fade-in-height-expand-transition-${d}-active`,` + overflow: ${e}; + transition: + max-height ${o} ${Ko}, + opacity ${o} ${xu}, + margin-top ${o} ${Ko}, + margin-bottom ${o} ${Ko}, + padding-top ${o} ${Ko}, + padding-bottom ${o} ${Ko} + ${t?","+t:""} + `)]}const Cu=g("alert",` + line-height: var(--n-line-height); + border-radius: var(--n-border-radius); + position: relative; + transition: background-color .3s var(--n-bezier); + background-color: var(--n-color); + text-align: start; + word-break: break-word; +`,[S("border",` + border-radius: inherit; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + transition: border-color .3s var(--n-bezier); + border: var(--n-border); + pointer-events: none; + `),P("closable",[g("alert-body",[S("title",` + padding-right: 24px; + `)])]),S("icon",{color:"var(--n-icon-color)"}),g("alert-body",{padding:"var(--n-padding)"},[S("title",{color:"var(--n-title-text-color)"}),S("content",{color:"var(--n-content-text-color)"})]),sr({originalTransition:"transform .3s var(--n-bezier)",enterToProps:{transform:"scale(1)"},leaveToProps:{transform:"scale(0.9)"}}),S("icon",` + position: absolute; + left: 0; + top: 0; + align-items: center; + justify-content: center; + display: flex; + width: var(--n-icon-size); + height: var(--n-icon-size); + font-size: var(--n-icon-size); + margin: var(--n-icon-margin); + `),S("close",` + transition: + color .3s var(--n-bezier), + background-color .3s var(--n-bezier); + position: absolute; + right: 0; + top: 0; + margin: var(--n-close-margin); + `),P("show-icon",[g("alert-body",{paddingLeft:"calc(var(--n-icon-margin-left) + var(--n-icon-size) + var(--n-icon-margin-right))"})]),P("right-adjust",[g("alert-body",{paddingRight:"calc(var(--n-close-size) + var(--n-padding) + 2px)"})]),g("alert-body",` + border-radius: var(--n-border-radius); + transition: border-color .3s var(--n-bezier); + `,[S("title",` + transition: color .3s var(--n-bezier); + font-size: 16px; + line-height: 19px; + font-weight: var(--n-title-font-weight); + `,[w("& +",[S("content",{marginTop:"9px"})])]),S("content",{transition:"color .3s var(--n-bezier)",fontSize:"var(--n-font-size)"})]),S("icon",{transition:"color .3s var(--n-bezier)"})]),yu=Object.assign(Object.assign({},ae.props),{title:String,showIcon:{type:Boolean,default:!0},type:{type:String,default:"default"},bordered:{type:Boolean,default:!0},closable:Boolean,onClose:Function,onAfterLeave:Function,onAfterHide:Function}),O1=Z({name:"Alert",inheritAttrs:!1,props:yu,setup(e){const{mergedClsPrefixRef:o,mergedBorderedRef:t,inlineThemeDisabled:r,mergedRtlRef:n}=Ie(e),l=ae("Alert","-alert",Cu,mu,e,o),a=eo("Alert",n,o),s=$(()=>{const{common:{cubicBezierEaseInOut:v},self:h}=l.value,{fontSize:m,borderRadius:x,titleFontWeight:y,lineHeight:b,iconSize:_,iconMargin:I,iconMarginRtl:R,closeIconSize:z,closeBorderRadius:C,closeSize:H,closeMargin:k,closeMarginRtl:D,padding:W}=h,{type:L}=e,{left:j,right:V}=yo(I);return{"--n-bezier":v,"--n-color":h[N("color",L)],"--n-close-icon-size":z,"--n-close-border-radius":C,"--n-close-color-hover":h[N("closeColorHover",L)],"--n-close-color-pressed":h[N("closeColorPressed",L)],"--n-close-icon-color":h[N("closeIconColor",L)],"--n-close-icon-color-hover":h[N("closeIconColorHover",L)],"--n-close-icon-color-pressed":h[N("closeIconColorPressed",L)],"--n-icon-color":h[N("iconColor",L)],"--n-border":h[N("border",L)],"--n-title-text-color":h[N("titleTextColor",L)],"--n-content-text-color":h[N("contentTextColor",L)],"--n-line-height":b,"--n-border-radius":x,"--n-font-size":m,"--n-title-font-weight":y,"--n-icon-size":_,"--n-icon-margin":I,"--n-icon-margin-rtl":R,"--n-close-size":H,"--n-close-margin":k,"--n-close-margin-rtl":D,"--n-padding":W,"--n-icon-margin-left":j,"--n-icon-margin-right":V}}),d=r?We("alert",$(()=>e.type[0]),s,e):void 0,c=M(!0),u=()=>{const{onAfterLeave:v,onAfterHide:h}=e;v&&v(),h&&h()};return{rtlEnabled:a,mergedClsPrefix:o,mergedBordered:t,visible:c,handleCloseClick:()=>{var v;Promise.resolve((v=e.onClose)===null||v===void 0?void 0:v.call(e)).then(h=>{h!==!1&&(c.value=!1)})},handleAfterLeave:()=>{u()},mergedTheme:l,cssVars:r?void 0:s,themeClass:d==null?void 0:d.themeClass,onRender:d==null?void 0:d.onRender}},render(){var e;return(e=this.onRender)===null||e===void 0||e.call(this),i(Rt,{onAfterLeave:this.handleAfterLeave},{default:()=>{const{mergedClsPrefix:o,$slots:t}=this,r={class:[`${o}-alert`,this.themeClass,this.closable&&`${o}-alert--closable`,this.showIcon&&`${o}-alert--show-icon`,!this.title&&this.closable&&`${o}-alert--right-adjust`,this.rtlEnabled&&`${o}-alert--rtl`],style:this.cssVars,role:"alert"};return this.visible?i("div",Object.assign({},To(this.$attrs,r)),this.closable&&i(kt,{clsPrefix:o,class:`${o}-alert__close`,onClick:this.handleCloseClick}),this.bordered&&i("div",{class:`${o}-alert__border`}),this.showIcon&&i("div",{class:`${o}-alert__icon`,"aria-hidden":"true"},so(t.icon,()=>[i(Le,{clsPrefix:o},{default:()=>{switch(this.type){case"success":return i(Ut,null);case"info":return i(wt,null);case"warning":return i(Pt,null);case"error":return i(Vt,null);default:return null}}})])),i("div",{class:[`${o}-alert-body`,this.mergedBordered&&`${o}-alert-body--bordered`]},je(t.header,n=>{const l=n||this.title;return l?i("div",{class:`${o}-alert-body__title`},l):null}),t.default&&i("div",{class:`${o}-alert-body__content`},t))):null}})}}),wu={linkFontSize:"13px",linkPadding:"0 0 0 16px",railWidth:"4px"},Su=e=>{const{borderRadius:o,railColor:t,primaryColor:r,primaryColorHover:n,primaryColorPressed:l,textColor2:a}=e;return Object.assign(Object.assign({},wu),{borderRadius:o,railColor:t,railColorActive:r,linkColor:ee(r,{alpha:.15}),linkTextColor:a,linkTextColorHover:n,linkTextColorPressed:l,linkTextColorActive:r})},zu={name:"Anchor",common:ue,self:Su},$u=zu;function Ir(e){return e.type==="group"}function jl(e){return e.type==="ignored"}function en(e,o){try{return!!(1+o.toString().toLowerCase().indexOf(e.trim().toLowerCase()))}catch{return!1}}function Wl(e,o){return{getIsGroup:Ir,getIgnored:jl,getKey(r){return Ir(r)?r.name||r.key||"key-required":r[e]},getChildren(r){return r[o]}}}function Pu(e,o,t,r){if(!o)return e;function n(l){if(!Array.isArray(l))return[];const a=[];for(const s of l)if(Ir(s)){const d=n(s[r]);d.length&&a.push(Object.assign({},s,{[r]:d}))}else{if(jl(s))continue;o(t,s)&&a.push(s)}return a}return n(e)}function Ru(e,o,t){const r=new Map;return e.forEach(n=>{Ir(n)?n[t].forEach(l=>{r.set(l[o],l)}):r.set(n[o],n)}),r}const ku=No&&"chrome"in window;No&&navigator.userAgent.includes("Firefox");const Nl=No&&navigator.userAgent.includes("Safari")&&!ku,Vl={paddingTiny:"0 8px",paddingSmall:"0 10px",paddingMedium:"0 12px",paddingLarge:"0 14px",clearSize:"16px"},Iu={name:"Input",common:ue,self(e){const{textColor2:o,textColor3:t,textColorDisabled:r,primaryColor:n,primaryColorHover:l,inputColor:a,inputColorDisabled:s,warningColor:d,warningColorHover:c,errorColor:u,errorColorHover:f,borderRadius:p,lineHeight:v,fontSizeTiny:h,fontSizeSmall:m,fontSizeMedium:x,fontSizeLarge:y,heightTiny:b,heightSmall:_,heightMedium:I,heightLarge:R,clearColor:z,clearColorHover:C,clearColorPressed:H,placeholderColor:k,placeholderColorDisabled:D,iconColor:W,iconColorDisabled:L,iconColorHover:j,iconColorPressed:V}=e;return Object.assign(Object.assign({},Vl),{countTextColorDisabled:r,countTextColor:t,heightTiny:b,heightSmall:_,heightMedium:I,heightLarge:R,fontSizeTiny:h,fontSizeSmall:m,fontSizeMedium:x,fontSizeLarge:y,lineHeight:v,lineHeightTextarea:v,borderRadius:p,iconSize:"16px",groupLabelColor:a,textColor:o,textColorDisabled:r,textDecorationColor:o,groupLabelTextColor:o,caretColor:n,placeholderColor:k,placeholderColorDisabled:D,color:a,colorDisabled:s,colorFocus:ee(n,{alpha:.1}),groupLabelBorder:"1px solid #0000",border:"1px solid #0000",borderHover:`1px solid ${l}`,borderDisabled:"1px solid #0000",borderFocus:`1px solid ${l}`,boxShadowFocus:`0 0 8px 0 ${ee(n,{alpha:.3})}`,loadingColor:n,loadingColorWarning:d,borderWarning:`1px solid ${d}`,borderHoverWarning:`1px solid ${c}`,colorFocusWarning:ee(d,{alpha:.1}),borderFocusWarning:`1px solid ${c}`,boxShadowFocusWarning:`0 0 8px 0 ${ee(d,{alpha:.3})}`,caretColorWarning:d,loadingColorError:u,borderError:`1px solid ${u}`,borderHoverError:`1px solid ${f}`,colorFocusError:ee(u,{alpha:.1}),borderFocusError:`1px solid ${f}`,boxShadowFocusError:`0 0 8px 0 ${ee(u,{alpha:.3})}`,caretColorError:u,clearColor:z,clearColorHover:C,clearColorPressed:H,iconColor:W,iconColorDisabled:L,iconColorHover:j,iconColorPressed:V,suffixTextColor:o})}},Ao=Iu,Bu=e=>{const{textColor2:o,textColor3:t,textColorDisabled:r,primaryColor:n,primaryColorHover:l,inputColor:a,inputColorDisabled:s,borderColor:d,warningColor:c,warningColorHover:u,errorColor:f,errorColorHover:p,borderRadius:v,lineHeight:h,fontSizeTiny:m,fontSizeSmall:x,fontSizeMedium:y,fontSizeLarge:b,heightTiny:_,heightSmall:I,heightMedium:R,heightLarge:z,actionColor:C,clearColor:H,clearColorHover:k,clearColorPressed:D,placeholderColor:W,placeholderColorDisabled:L,iconColor:j,iconColorDisabled:V,iconColorHover:E,iconColorPressed:Y}=e;return Object.assign(Object.assign({},Vl),{countTextColorDisabled:r,countTextColor:t,heightTiny:_,heightSmall:I,heightMedium:R,heightLarge:z,fontSizeTiny:m,fontSizeSmall:x,fontSizeMedium:y,fontSizeLarge:b,lineHeight:h,lineHeightTextarea:h,borderRadius:v,iconSize:"16px",groupLabelColor:C,groupLabelTextColor:o,textColor:o,textColorDisabled:r,textDecorationColor:o,caretColor:n,placeholderColor:W,placeholderColorDisabled:L,color:a,colorDisabled:s,colorFocus:a,groupLabelBorder:`1px solid ${d}`,border:`1px solid ${d}`,borderHover:`1px solid ${l}`,borderDisabled:`1px solid ${d}`,borderFocus:`1px solid ${l}`,boxShadowFocus:`0 0 0 2px ${ee(n,{alpha:.2})}`,loadingColor:n,loadingColorWarning:c,borderWarning:`1px solid ${c}`,borderHoverWarning:`1px solid ${u}`,colorFocusWarning:a,borderFocusWarning:`1px solid ${u}`,boxShadowFocusWarning:`0 0 0 2px ${ee(c,{alpha:.2})}`,caretColorWarning:c,loadingColorError:f,borderError:`1px solid ${f}`,borderHoverError:`1px solid ${p}`,colorFocusError:a,borderFocusError:`1px solid ${p}`,boxShadowFocusError:`0 0 0 2px ${ee(f,{alpha:.2})}`,caretColorError:f,clearColor:H,clearColorHover:k,clearColorPressed:D,iconColor:j,iconColorDisabled:V,iconColorHover:E,iconColorPressed:Y,suffixTextColor:o})},Tu={name:"Input",common:Ae,self:Bu},br=Tu,Ul="n-input";function Fu(e){let o=0;for(const t of e)o++;return o}function yr(e){return e===""||e==null}function Ou(e){const o=M(null);function t(){const{value:l}=e;if(!(l!=null&&l.focus)){n();return}const{selectionStart:a,selectionEnd:s,value:d}=l;if(a==null||s==null){n();return}o.value={start:a,end:s,beforeText:d.slice(0,a),afterText:d.slice(s)}}function r(){var l;const{value:a}=o,{value:s}=e;if(!a||!s)return;const{value:d}=s,{start:c,beforeText:u,afterText:f}=a;let p=d.length;if(d.endsWith(f))p=d.length-f.length;else if(d.startsWith(u))p=u.length;else{const v=u[c-1],h=d.indexOf(v,c-1);h!==-1&&(p=h+1)}(l=s.setSelectionRange)===null||l===void 0||l.call(s,p,p)}function n(){o.value=null}return Xe(e,n),{recordCursor:t,restoreCursor:r}}const zi=Z({name:"InputWordCount",setup(e,{slots:o}){const{mergedValueRef:t,maxlengthRef:r,mergedClsPrefixRef:n,countGraphemesRef:l}=$e(Ul),a=$(()=>{const{value:s}=t;return s===null||Array.isArray(s)?0:(l.value||Fu)(s)});return()=>{const{value:s}=r,{value:d}=t;return i("span",{class:`${n.value}-input-word-count`},pn(o.default,{value:d===null||Array.isArray(d)?"":d},()=>[s===void 0?a.value:`${a.value} / ${s}`]))}}}),_u=g("input",` + max-width: 100%; + cursor: text; + line-height: 1.5; + z-index: auto; + outline: none; + box-sizing: border-box; + position: relative; + display: inline-flex; + border-radius: var(--n-border-radius); + background-color: var(--n-color); + transition: background-color .3s var(--n-bezier); + font-size: var(--n-font-size); + --n-padding-vertical: calc((var(--n-height) - 1.5 * var(--n-font-size)) / 2); +`,[S("input, textarea",` + overflow: hidden; + flex-grow: 1; + position: relative; + `),S("input-el, textarea-el, input-mirror, textarea-mirror, separator, placeholder",` + box-sizing: border-box; + font-size: inherit; + line-height: 1.5; + font-family: inherit; + border: none; + outline: none; + background-color: #0000; + text-align: inherit; + transition: + -webkit-text-fill-color .3s var(--n-bezier), + caret-color .3s var(--n-bezier), + color .3s var(--n-bezier), + text-decoration-color .3s var(--n-bezier); + `),S("input-el, textarea-el",` + -webkit-appearance: none; + scrollbar-width: none; + width: 100%; + min-width: 0; + text-decoration-color: var(--n-text-decoration-color); + color: var(--n-text-color); + caret-color: var(--n-caret-color); + background-color: transparent; + `,[w("&::-webkit-scrollbar, &::-webkit-scrollbar-track-piece, &::-webkit-scrollbar-thumb",` + width: 0; + height: 0; + display: none; + `),w("&::placeholder",` + color: #0000; + -webkit-text-fill-color: transparent !important; + `),w("&:-webkit-autofill ~",[S("placeholder","display: none;")])]),P("round",[Ve("textarea","border-radius: calc(var(--n-height) / 2);")]),S("placeholder",` + pointer-events: none; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + overflow: hidden; + color: var(--n-placeholder-color); + `,[w("span",` + width: 100%; + display: inline-block; + `)]),P("textarea",[S("placeholder","overflow: visible;")]),Ve("autosize","width: 100%;"),P("autosize",[S("textarea-el, input-el",` + position: absolute; + top: 0; + left: 0; + height: 100%; + `)]),g("input-wrapper",` + overflow: hidden; + display: inline-flex; + flex-grow: 1; + position: relative; + padding-left: var(--n-padding-left); + padding-right: var(--n-padding-right); + `),S("input-mirror",` + padding: 0; + height: var(--n-height); + line-height: var(--n-height); + overflow: hidden; + visibility: hidden; + position: static; + white-space: pre; + pointer-events: none; + `),S("input-el",` + padding: 0; + height: var(--n-height); + line-height: var(--n-height); + `,[w("&[type=password]::-ms-reveal","display: none;"),w("+",[S("placeholder",` + display: flex; + align-items: center; + `)])]),Ve("textarea",[S("placeholder","white-space: nowrap;")]),S("eye",` + display: flex; + align-items: center; + justify-content: center; + transition: color .3s var(--n-bezier); + `),P("textarea","width: 100%;",[g("input-word-count",` + position: absolute; + right: var(--n-padding-right); + bottom: var(--n-padding-vertical); + `),P("resizable",[g("input-wrapper",` + resize: vertical; + min-height: var(--n-height); + `)]),S("textarea-el, textarea-mirror, placeholder",` + height: 100%; + padding-left: 0; + padding-right: 0; + padding-top: var(--n-padding-vertical); + padding-bottom: var(--n-padding-vertical); + word-break: break-word; + display: inline-block; + vertical-align: bottom; + box-sizing: border-box; + line-height: var(--n-line-height-textarea); + margin: 0; + resize: none; + white-space: pre-wrap; + scroll-padding-block-end: var(--n-padding-vertical); + `),S("textarea-mirror",` + width: 100%; + pointer-events: none; + overflow: hidden; + visibility: hidden; + position: static; + white-space: pre-wrap; + overflow-wrap: break-word; + `)]),P("pair",[S("input-el, placeholder","text-align: center;"),S("separator",` + display: flex; + align-items: center; + transition: color .3s var(--n-bezier); + color: var(--n-text-color); + white-space: nowrap; + `,[g("icon",` + color: var(--n-icon-color); + `),g("base-icon",` + color: var(--n-icon-color); + `)])]),P("disabled",` + cursor: not-allowed; + background-color: var(--n-color-disabled); + `,[S("border","border: var(--n-border-disabled);"),S("input-el, textarea-el",` + cursor: not-allowed; + color: var(--n-text-color-disabled); + text-decoration-color: var(--n-text-color-disabled); + `),S("placeholder","color: var(--n-placeholder-color-disabled);"),S("separator","color: var(--n-text-color-disabled);",[g("icon",` + color: var(--n-icon-color-disabled); + `),g("base-icon",` + color: var(--n-icon-color-disabled); + `)]),g("input-word-count",` + color: var(--n-count-text-color-disabled); + `),S("suffix, prefix","color: var(--n-text-color-disabled);",[g("icon",` + color: var(--n-icon-color-disabled); + `),g("internal-icon",` + color: var(--n-icon-color-disabled); + `)])]),Ve("disabled",[S("eye",` + color: var(--n-icon-color); + cursor: pointer; + `,[w("&:hover",` + color: var(--n-icon-color-hover); + `),w("&:active",` + color: var(--n-icon-color-pressed); + `)]),w("&:hover",[S("state-border","border: var(--n-border-hover);")]),P("focus","background-color: var(--n-color-focus);",[S("state-border",` + border: var(--n-border-focus); + box-shadow: var(--n-box-shadow-focus); + `)])]),S("border, state-border",` + box-sizing: border-box; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + pointer-events: none; + border-radius: inherit; + border: var(--n-border); + transition: + box-shadow .3s var(--n-bezier), + border-color .3s var(--n-bezier); + `),S("state-border",` + border-color: #0000; + z-index: 1; + `),S("prefix","margin-right: 4px;"),S("suffix",` + margin-left: 4px; + `),S("suffix, prefix",` + transition: color .3s var(--n-bezier); + flex-wrap: nowrap; + flex-shrink: 0; + line-height: var(--n-height); + white-space: nowrap; + display: inline-flex; + align-items: center; + justify-content: center; + color: var(--n-suffix-text-color); + `,[g("base-loading",` + font-size: var(--n-icon-size); + margin: 0 2px; + color: var(--n-loading-color); + `),g("base-clear",` + font-size: var(--n-icon-size); + `,[S("placeholder",[g("base-icon",` + transition: color .3s var(--n-bezier); + color: var(--n-icon-color); + font-size: var(--n-icon-size); + `)])]),w(">",[g("icon",` + transition: color .3s var(--n-bezier); + color: var(--n-icon-color); + font-size: var(--n-icon-size); + `)]),g("base-icon",` + font-size: var(--n-icon-size); + `)]),g("input-word-count",` + pointer-events: none; + line-height: 1.5; + font-size: .85em; + color: var(--n-count-text-color); + transition: color .3s var(--n-bezier); + margin-left: 4px; + font-variant: tabular-nums; + `),["warning","error"].map(e=>P(`${e}-status`,[Ve("disabled",[g("base-loading",` + color: var(--n-loading-color-${e}) + `),S("input-el, textarea-el",` + caret-color: var(--n-caret-color-${e}); + `),S("state-border",` + border: var(--n-border-${e}); + `),w("&:hover",[S("state-border",` + border: var(--n-border-hover-${e}); + `)]),w("&:focus",` + background-color: var(--n-color-focus-${e}); + `,[S("state-border",` + box-shadow: var(--n-box-shadow-focus-${e}); + border: var(--n-border-focus-${e}); + `)]),P("focus",` + background-color: var(--n-color-focus-${e}); + `,[S("state-border",` + box-shadow: var(--n-box-shadow-focus-${e}); + border: var(--n-border-focus-${e}); + `)])])]))]),Mu=g("input",[P("disabled",[S("input-el, textarea-el",` + -webkit-text-fill-color: var(--n-text-color-disabled); + `)])]),Du=Object.assign(Object.assign({},ae.props),{bordered:{type:Boolean,default:void 0},type:{type:String,default:"text"},placeholder:[Array,String],defaultValue:{type:[String,Array],default:null},value:[String,Array],disabled:{type:Boolean,default:void 0},size:String,rows:{type:[Number,String],default:3},round:Boolean,minlength:[String,Number],maxlength:[String,Number],clearable:Boolean,autosize:{type:[Boolean,Object],default:!1},pair:Boolean,separator:String,readonly:{type:[String,Boolean],default:!1},passivelyActivated:Boolean,showPasswordOn:String,stateful:{type:Boolean,default:!0},autofocus:Boolean,inputProps:Object,resizable:{type:Boolean,default:!0},showCount:Boolean,loading:{type:Boolean,default:void 0},allowInput:Function,renderCount:Function,onMousedown:Function,onKeydown:Function,onKeyup:[Function,Array],onInput:[Function,Array],onFocus:[Function,Array],onBlur:[Function,Array],onClick:[Function,Array],onChange:[Function,Array],onClear:[Function,Array],countGraphemes:Function,status:String,"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],textDecoration:[String,Array],attrSize:{type:Number,default:20},onInputBlur:[Function,Array],onInputFocus:[Function,Array],onDeactivate:[Function,Array],onActivate:[Function,Array],onWrapperFocus:[Function,Array],onWrapperBlur:[Function,Array],internalDeactivateOnEnter:Boolean,internalForceFocus:Boolean,internalLoadingBeforeSuffix:{type:Boolean,default:!0},showPasswordToggle:Boolean}),zt=Z({name:"Input",props:Du,setup(e){const{mergedClsPrefixRef:o,mergedBorderedRef:t,inlineThemeDisabled:r,mergedRtlRef:n}=Ie(e),l=ae("Input","-input",_u,br,e,o);Nl&&Xo("-input-safari",Mu,o);const a=M(null),s=M(null),d=M(null),c=M(null),u=M(null),f=M(null),p=M(null),v=Ou(p),h=M(null),{localeRef:m}=Yo("Input"),x=M(e.defaultValue),y=le(e,"value"),b=uo(y,x),_=it(e),{mergedSizeRef:I,mergedDisabledRef:R,mergedStatusRef:z}=_,C=M(!1),H=M(!1),k=M(!1),D=M(!1);let W=null;const L=$(()=>{const{placeholder:A,pair:re}=e;return re?Array.isArray(A)?A:A===void 0?["",""]:[A,A]:A===void 0?[m.value.placeholder]:[A]}),j=$(()=>{const{value:A}=k,{value:re}=b,{value:Oe}=L;return!A&&(yr(re)||Array.isArray(re)&&yr(re[0]))&&Oe[0]}),V=$(()=>{const{value:A}=k,{value:re}=b,{value:Oe}=L;return!A&&Oe[1]&&(yr(re)||Array.isArray(re)&&yr(re[1]))}),E=Ue(()=>e.internalForceFocus||C.value),Y=Ue(()=>{if(R.value||e.readonly||!e.clearable||!E.value&&!H.value)return!1;const{value:A}=b,{value:re}=E;return e.pair?!!(Array.isArray(A)&&(A[0]||A[1]))&&(H.value||re):!!A&&(H.value||re)}),K=$(()=>{const{showPasswordOn:A}=e;if(A)return A;if(e.showPasswordToggle)return"click"}),te=M(!1),xe=$(()=>{const{textDecoration:A}=e;return A?Array.isArray(A)?A.map(re=>({textDecoration:re})):[{textDecoration:A}]:["",""]}),se=M(void 0),ie=()=>{var A,re;if(e.type==="textarea"){const{autosize:Oe}=e;if(Oe&&(se.value=(re=(A=h.value)===null||A===void 0?void 0:A.$el)===null||re===void 0?void 0:re.offsetWidth),!s.value||typeof Oe=="boolean")return;const{paddingTop:Ye,paddingBottom:Ze,lineHeight:Ge}=window.getComputedStyle(s.value),Zo=Number(Ye.slice(0,-2)),Qo=Number(Ze.slice(0,-2)),Jo=Number(Ge.slice(0,-2)),{value:vt}=d;if(!vt)return;if(Oe.minRows){const gt=Math.max(Oe.minRows,1),Qt=`${Zo+Qo+Jo*gt}px`;vt.style.minHeight=Qt}if(Oe.maxRows){const gt=`${Zo+Qo+Jo*Oe.maxRows}px`;vt.style.maxHeight=gt}}},O=$(()=>{const{maxlength:A}=e;return A===void 0?void 0:Number(A)});po(()=>{const{value:A}=b;Array.isArray(A)||qe(A)});const B=Br().proxy;function G(A,re){const{onUpdateValue:Oe,"onUpdate:value":Ye,onInput:Ze}=e,{nTriggerFormInput:Ge}=_;Oe&&de(Oe,A,re),Ye&&de(Ye,A,re),Ze&&de(Ze,A,re),x.value=A,Ge()}function oe(A,re){const{onChange:Oe}=e,{nTriggerFormChange:Ye}=_;Oe&&de(Oe,A,re),x.value=A,Ye()}function me(A){const{onBlur:re}=e,{nTriggerFormBlur:Oe}=_;re&&de(re,A),Oe()}function be(A){const{onFocus:re}=e,{nTriggerFormFocus:Oe}=_;re&&de(re,A),Oe()}function Be(A){const{onClear:re}=e;re&&de(re,A)}function T(A){const{onInputBlur:re}=e;re&&de(re,A)}function fe(A){const{onInputFocus:re}=e;re&&de(re,A)}function we(){const{onDeactivate:A}=e;A&&de(A)}function Me(){const{onActivate:A}=e;A&&de(A)}function ne(A){const{onClick:re}=e;re&&de(re,A)}function Ce(A){const{onWrapperFocus:re}=e;re&&de(re,A)}function ge(A){const{onWrapperBlur:re}=e;re&&de(re,A)}function Ee(){k.value=!0}function Q(A){k.value=!1,A.target===f.value?ve(A,1):ve(A,0)}function ve(A,re=0,Oe="input"){const Ye=A.target.value;if(qe(Ye),A instanceof InputEvent&&!A.isComposing&&(k.value=!1),e.type==="textarea"){const{value:Ge}=h;Ge&&Ge.syncUnifiedContainer()}if(W=Ye,k.value)return;v.recordCursor();const Ze=ze(Ye);if(Ze)if(!e.pair)Oe==="input"?G(Ye,{source:re}):oe(Ye,{source:re});else{let{value:Ge}=b;Array.isArray(Ge)?Ge=[Ge[0],Ge[1]]:Ge=["",""],Ge[re]=Ye,Oe==="input"?G(Ge,{source:re}):oe(Ge,{source:re})}B.$forceUpdate(),Ze||ao(v.restoreCursor)}function ze(A){const{countGraphemes:re,maxlength:Oe,minlength:Ye}=e;if(re){let Ge;if(Oe!==void 0&&(Ge===void 0&&(Ge=re(A)),Ge>Number(Oe))||Ye!==void 0&&(Ge===void 0&&(Ge=re(A)),Ge{Ye.preventDefault(),Io("mouseup",document,re)};if(Ho("mouseup",document,re),K.value!=="mousedown")return;te.value=!0;const Oe=()=>{te.value=!1,Io("mouseup",document,Oe)};Ho("mouseup",document,Oe)}function fo(A){e.onKeyup&&de(e.onKeyup,A)}function vo(A){switch(e.onKeydown&&de(e.onKeydown,A),A.key){case"Escape":X();break;case"Enter":F(A);break}}function F(A){var re,Oe;if(e.passivelyActivated){const{value:Ye}=D;if(Ye){e.internalDeactivateOnEnter&&X();return}A.preventDefault(),e.type==="textarea"?(re=s.value)===null||re===void 0||re.focus():(Oe=u.value)===null||Oe===void 0||Oe.focus()}}function X(){e.passivelyActivated&&(D.value=!1,ao(()=>{var A;(A=a.value)===null||A===void 0||A.focus()}))}function ce(){var A,re,Oe;R.value||(e.passivelyActivated?(A=a.value)===null||A===void 0||A.focus():((re=s.value)===null||re===void 0||re.focus(),(Oe=u.value)===null||Oe===void 0||Oe.focus()))}function Pe(){var A;!((A=a.value)===null||A===void 0)&&A.contains(document.activeElement)&&document.activeElement.blur()}function ke(){var A,re;(A=s.value)===null||A===void 0||A.select(),(re=u.value)===null||re===void 0||re.select()}function Te(){R.value||(s.value?s.value.focus():u.value&&u.value.focus())}function Fe(){const{value:A}=a;A!=null&&A.contains(document.activeElement)&&A!==document.activeElement&&X()}function He(A){if(e.type==="textarea"){const{value:re}=s;re==null||re.scrollTo(A)}else{const{value:re}=u;re==null||re.scrollTo(A)}}function qe(A){const{type:re,pair:Oe,autosize:Ye}=e;if(!Oe&&Ye)if(re==="textarea"){const{value:Ze}=d;Ze&&(Ze.textContent=(A??"")+`\r +`)}else{const{value:Ze}=c;Ze&&(A?Ze.textContent=A:Ze.innerHTML=" ")}}function go(){ie()}const lt=M({top:"0"});function ft(A){var re;const{scrollTop:Oe}=A.target;lt.value.top=`${-Oe}px`,(re=h.value)===null||re===void 0||re.syncUnifiedContainer()}let Vo=null;oo(()=>{const{autosize:A,type:re}=e;A&&re==="textarea"?Vo=Xe(b,Oe=>{!Array.isArray(Oe)&&Oe!==W&&qe(Oe)}):Vo==null||Vo()});let Uo=null;oo(()=>{e.type==="textarea"?Uo=Xe(b,A=>{var re;!Array.isArray(A)&&A!==W&&((re=h.value)===null||re===void 0||re.syncUnifiedContainer())}):Uo==null||Uo()}),De(Ul,{mergedValueRef:b,maxlengthRef:O,mergedClsPrefixRef:o,countGraphemesRef:le(e,"countGraphemes")});const ht={wrapperElRef:a,inputElRef:u,textareaElRef:s,isCompositing:k,clear:Ro,focus:ce,blur:Pe,select:ke,deactivate:Fe,activate:Te,scrollTo:He},pt=eo("Input",n,o),at=$(()=>{const{value:A}=I,{common:{cubicBezierEaseInOut:re},self:{color:Oe,borderRadius:Ye,textColor:Ze,caretColor:Ge,caretColorError:Zo,caretColorWarning:Qo,textDecorationColor:Jo,border:vt,borderDisabled:gt,borderHover:Qt,borderFocus:Nr,placeholderColor:Vr,placeholderColorDisabled:Ur,lineHeightTextarea:Kr,colorDisabled:Tt,colorFocus:Ft,textColorDisabled:Rs,boxShadowFocus:ks,iconSize:Is,colorFocusWarning:Bs,boxShadowFocusWarning:Ts,borderWarning:Fs,borderFocusWarning:Os,borderHoverWarning:_s,colorFocusError:Ms,boxShadowFocusError:Ds,borderError:Hs,borderFocusError:Ls,borderHoverError:As,clearSize:Es,clearColor:js,clearColorHover:Ws,clearColorPressed:Ns,iconColor:Vs,iconColorDisabled:Us,suffixTextColor:Ks,countTextColor:Gs,countTextColorDisabled:qs,iconColorHover:Ys,iconColorPressed:Xs,loadingColor:Zs,loadingColorError:Qs,loadingColorWarning:Js,[N("padding",A)]:ed,[N("fontSize",A)]:od,[N("height",A)]:td}}=l.value,{left:rd,right:nd}=yo(ed);return{"--n-bezier":re,"--n-count-text-color":Gs,"--n-count-text-color-disabled":qs,"--n-color":Oe,"--n-font-size":od,"--n-border-radius":Ye,"--n-height":td,"--n-padding-left":rd,"--n-padding-right":nd,"--n-text-color":Ze,"--n-caret-color":Ge,"--n-text-decoration-color":Jo,"--n-border":vt,"--n-border-disabled":gt,"--n-border-hover":Qt,"--n-border-focus":Nr,"--n-placeholder-color":Vr,"--n-placeholder-color-disabled":Ur,"--n-icon-size":Is,"--n-line-height-textarea":Kr,"--n-color-disabled":Tt,"--n-color-focus":Ft,"--n-text-color-disabled":Rs,"--n-box-shadow-focus":ks,"--n-loading-color":Zs,"--n-caret-color-warning":Qo,"--n-color-focus-warning":Bs,"--n-box-shadow-focus-warning":Ts,"--n-border-warning":Fs,"--n-border-focus-warning":Os,"--n-border-hover-warning":_s,"--n-loading-color-warning":Js,"--n-caret-color-error":Zo,"--n-color-focus-error":Ms,"--n-box-shadow-focus-error":Ds,"--n-border-error":Hs,"--n-border-focus-error":Ls,"--n-border-hover-error":As,"--n-loading-color-error":Qs,"--n-clear-color":js,"--n-clear-size":Es,"--n-clear-color-hover":Ws,"--n-clear-color-pressed":Ns,"--n-icon-color":Vs,"--n-icon-color-hover":Ys,"--n-icon-color-pressed":Xs,"--n-icon-color-disabled":Us,"--n-suffix-text-color":Ks}}),st=r?We("input",$(()=>{const{value:A}=I;return A[0]}),at,e):void 0;return Object.assign(Object.assign({},ht),{wrapperElRef:a,inputElRef:u,inputMirrorElRef:c,inputEl2Ref:f,textareaElRef:s,textareaMirrorElRef:d,textareaScrollbarInstRef:h,rtlEnabled:pt,uncontrolledValue:x,mergedValue:b,passwordVisible:te,mergedPlaceholder:L,showPlaceholder1:j,showPlaceholder2:V,mergedFocus:E,isComposing:k,activated:D,showClearButton:Y,mergedSize:I,mergedDisabled:R,textDecorationStyle:xe,mergedClsPrefix:o,mergedBordered:t,mergedShowPasswordOn:K,placeholderStyle:lt,mergedStatus:z,textAreaScrollContainerWidth:se,handleTextAreaScroll:ft,handleCompositionStart:Ee,handleCompositionEnd:Q,handleInput:ve,handleInputBlur:U,handleInputFocus:q,handleWrapperBlur:pe,handleWrapperFocus:Se,handleMouseEnter:xo,handleMouseLeave:Co,handleMouseDown:Oo,handleChange:he,handleClick:Ne,handleClear:no,handlePasswordToggleClick:Eo,handlePasswordToggleMousedown:_o,handleWrapperKeydown:vo,handleWrapperKeyup:fo,handleTextAreaMirrorResize:go,getTextareaScrollContainer:()=>s.value,mergedTheme:l,cssVars:r?void 0:at,themeClass:st==null?void 0:st.themeClass,onRender:st==null?void 0:st.onRender})},render(){var e,o;const{mergedClsPrefix:t,mergedStatus:r,themeClass:n,type:l,countGraphemes:a,onRender:s}=this,d=this.$slots;return s==null||s(),i("div",{ref:"wrapperElRef",class:[`${t}-input`,n,r&&`${t}-input--${r}-status`,{[`${t}-input--rtl`]:this.rtlEnabled,[`${t}-input--disabled`]:this.mergedDisabled,[`${t}-input--textarea`]:l==="textarea",[`${t}-input--resizable`]:this.resizable&&!this.autosize,[`${t}-input--autosize`]:this.autosize,[`${t}-input--round`]:this.round&&l!=="textarea",[`${t}-input--pair`]:this.pair,[`${t}-input--focus`]:this.mergedFocus,[`${t}-input--stateful`]:this.stateful}],style:this.cssVars,tabindex:!this.mergedDisabled&&this.passivelyActivated&&!this.activated?0:void 0,onFocus:this.handleWrapperFocus,onBlur:this.handleWrapperBlur,onClick:this.handleClick,onMousedown:this.handleMouseDown,onMouseenter:this.handleMouseEnter,onMouseleave:this.handleMouseLeave,onCompositionstart:this.handleCompositionStart,onCompositionend:this.handleCompositionEnd,onKeyup:this.handleWrapperKeyup,onKeydown:this.handleWrapperKeydown},i("div",{class:`${t}-input-wrapper`},je(d.prefix,c=>c&&i("div",{class:`${t}-input__prefix`},c)),l==="textarea"?i(vr,{ref:"textareaScrollbarInstRef",class:`${t}-input__textarea`,container:this.getTextareaScrollContainer,triggerDisplayManually:!0,useUnifiedContainer:!0,internalHoistYRail:!0},{default:()=>{var c,u;const{textAreaScrollContainerWidth:f}=this,p={width:this.autosize&&f&&`${f}px`};return i(co,null,i("textarea",Object.assign({},this.inputProps,{ref:"textareaElRef",class:[`${t}-input__textarea-el`,(c=this.inputProps)===null||c===void 0?void 0:c.class],autofocus:this.autofocus,rows:Number(this.rows),placeholder:this.placeholder,value:this.mergedValue,disabled:this.mergedDisabled,maxlength:a?void 0:this.maxlength,minlength:a?void 0:this.minlength,readonly:this.readonly,tabindex:this.passivelyActivated&&!this.activated?-1:void 0,style:[this.textDecorationStyle[0],(u=this.inputProps)===null||u===void 0?void 0:u.style,p],onBlur:this.handleInputBlur,onFocus:v=>{this.handleInputFocus(v,2)},onInput:this.handleInput,onChange:this.handleChange,onScroll:this.handleTextAreaScroll})),this.showPlaceholder1?i("div",{class:`${t}-input__placeholder`,style:[this.placeholderStyle,p],key:"placeholder"},this.mergedPlaceholder[0]):null,this.autosize?i(tt,{onResize:this.handleTextAreaMirrorResize},{default:()=>i("div",{ref:"textareaMirrorElRef",class:`${t}-input__textarea-mirror`,key:"mirror"})}):null)}}):i("div",{class:`${t}-input__input`},i("input",Object.assign({type:l==="password"&&this.mergedShowPasswordOn&&this.passwordVisible?"text":l},this.inputProps,{ref:"inputElRef",class:[`${t}-input__input-el`,(e=this.inputProps)===null||e===void 0?void 0:e.class],style:[this.textDecorationStyle[0],(o=this.inputProps)===null||o===void 0?void 0:o.style],tabindex:this.passivelyActivated&&!this.activated?-1:void 0,placeholder:this.mergedPlaceholder[0],disabled:this.mergedDisabled,maxlength:a?void 0:this.maxlength,minlength:a?void 0:this.minlength,value:Array.isArray(this.mergedValue)?this.mergedValue[0]:this.mergedValue,readonly:this.readonly,autofocus:this.autofocus,size:this.attrSize,onBlur:this.handleInputBlur,onFocus:c=>{this.handleInputFocus(c,0)},onInput:c=>{this.handleInput(c,0)},onChange:c=>{this.handleChange(c,0)}})),this.showPlaceholder1?i("div",{class:`${t}-input__placeholder`},i("span",null,this.mergedPlaceholder[0])):null,this.autosize?i("div",{class:`${t}-input__input-mirror`,key:"mirror",ref:"inputMirrorElRef"}," "):null),!this.pair&&je(d.suffix,c=>c||this.clearable||this.showCount||this.mergedShowPasswordOn||this.loading!==void 0?i("div",{class:`${t}-input__suffix`},[je(d["clear-icon-placeholder"],u=>(this.clearable||u)&&i(gn,{clsPrefix:t,show:this.showClearButton,onClear:this.handleClear},{placeholder:()=>u,icon:()=>{var f,p;return(p=(f=this.$slots)["clear-icon"])===null||p===void 0?void 0:p.call(f)}})),this.internalLoadingBeforeSuffix?null:c,this.loading!==void 0?i(Dl,{clsPrefix:t,loading:this.loading,showArrow:!1,showClear:!1,style:this.cssVars}):null,this.internalLoadingBeforeSuffix?c:null,this.showCount&&this.type!=="textarea"?i(zi,null,{default:u=>{var f;return(f=d.count)===null||f===void 0?void 0:f.call(d,u)}}):null,this.mergedShowPasswordOn&&this.type==="password"?i("div",{class:`${t}-input__eye`,onMousedown:this.handlePasswordToggleMousedown,onClick:this.handlePasswordToggleClick},this.passwordVisible?so(d["password-visible-icon"],()=>[i(Le,{clsPrefix:t},{default:()=>i(Cl,null)})]):so(d["password-invisible-icon"],()=>[i(Le,{clsPrefix:t},{default:()=>i(Jd,null)})])):null]):null)),this.pair?i("span",{class:`${t}-input__separator`},so(d.separator,()=>[this.separator])):null,this.pair?i("div",{class:`${t}-input-wrapper`},i("div",{class:`${t}-input__input`},i("input",{ref:"inputEl2Ref",type:this.type,class:`${t}-input__input-el`,tabindex:this.passivelyActivated&&!this.activated?-1:void 0,placeholder:this.mergedPlaceholder[1],disabled:this.mergedDisabled,maxlength:a?void 0:this.maxlength,minlength:a?void 0:this.minlength,value:Array.isArray(this.mergedValue)?this.mergedValue[1]:void 0,readonly:this.readonly,style:this.textDecorationStyle[1],onBlur:this.handleInputBlur,onFocus:c=>{this.handleInputFocus(c,1)},onInput:c=>{this.handleInput(c,1)},onChange:c=>{this.handleChange(c,1)}}),this.showPlaceholder2?i("div",{class:`${t}-input__placeholder`},i("span",null,this.mergedPlaceholder[1])):null),je(d.suffix,c=>(this.clearable||c)&&i("div",{class:`${t}-input__suffix`},[this.clearable&&i(gn,{clsPrefix:t,show:this.showClearButton,onClear:this.handleClear},{icon:()=>{var u;return(u=d["clear-icon"])===null||u===void 0?void 0:u.call(d)},placeholder:()=>{var u;return(u=d["clear-icon-placeholder"])===null||u===void 0?void 0:u.call(d)}}),c]))):null,this.mergedBordered?i("div",{class:`${t}-input__border`}):null,this.mergedBordered?i("div",{class:`${t}-input__state-border`}):null,this.showCount&&l==="textarea"?i(zi,null,{default:c=>{var u;const{renderCount:f}=this;return f?f(c):(u=d.count)===null||u===void 0?void 0:u.call(d,c)}}):null)}}),Hu=g("input-group",` + display: inline-flex; + width: 100%; + flex-wrap: nowrap; + vertical-align: bottom; +`,[w(">",[g("input",[w("&:not(:last-child)",` + border-top-right-radius: 0!important; + border-bottom-right-radius: 0!important; + `),w("&:not(:first-child)",` + border-top-left-radius: 0!important; + border-bottom-left-radius: 0!important; + margin-left: -1px!important; + `)]),g("button",[w("&:not(:last-child)",` + border-top-right-radius: 0!important; + border-bottom-right-radius: 0!important; + `,[S("state-border, border",` + border-top-right-radius: 0!important; + border-bottom-right-radius: 0!important; + `)]),w("&:not(:first-child)",` + border-top-left-radius: 0!important; + border-bottom-left-radius: 0!important; + `,[S("state-border, border",` + border-top-left-radius: 0!important; + border-bottom-left-radius: 0!important; + `)])]),w("*",[w("&:not(:last-child)",` + border-top-right-radius: 0!important; + border-bottom-right-radius: 0!important; + `,[w(">",[g("input",` + border-top-right-radius: 0!important; + border-bottom-right-radius: 0!important; + `),g("base-selection",[g("base-selection-label",` + border-top-right-radius: 0!important; + border-bottom-right-radius: 0!important; + `),g("base-selection-tags",` + border-top-right-radius: 0!important; + border-bottom-right-radius: 0!important; + `),S("box-shadow, border, state-border",` + border-top-right-radius: 0!important; + border-bottom-right-radius: 0!important; + `)])])]),w("&:not(:first-child)",` + margin-left: -1px!important; + border-top-left-radius: 0!important; + border-bottom-left-radius: 0!important; + `,[w(">",[g("input",` + border-top-left-radius: 0!important; + border-bottom-left-radius: 0!important; + `),g("base-selection",[g("base-selection-label",` + border-top-left-radius: 0!important; + border-bottom-left-radius: 0!important; + `),g("base-selection-tags",` + border-top-left-radius: 0!important; + border-bottom-left-radius: 0!important; + `),S("box-shadow, border, state-border",` + border-top-left-radius: 0!important; + border-bottom-left-radius: 0!important; + `)])])])])])]),Lu={},_1=Z({name:"InputGroup",props:Lu,setup(e){const{mergedClsPrefixRef:o}=Ie(e);return Xo("-input-group",Hu,o),{mergedClsPrefix:o}},render(){const{mergedClsPrefix:e}=this;return i("div",{class:`${e}-input-group`},this.$slots)}});function Au(e){const{boxShadow2:o}=e;return{menuBoxShadow:o}}const Eu={name:"AutoComplete",common:ue,peers:{InternalSelectMenu:gr,Input:Ao},self:Au},ju=Eu,Kl=No&&"loading"in document.createElement("img"),Wu=(e={})=>{var o;const{root:t=null}=e;return{hash:`${e.rootMargin||"0px 0px 0px 0px"}-${Array.isArray(e.threshold)?e.threshold.join(","):(o=e.threshold)!==null&&o!==void 0?o:"0"}`,options:Object.assign(Object.assign({},e),{root:(typeof t=="string"?document.querySelector(t):t)||document.documentElement})}},on=new WeakMap,tn=new WeakMap,rn=new WeakMap,Gl=(e,o,t)=>{if(!e)return()=>{};const r=Wu(o),{root:n}=r.options;let l;const a=on.get(n);a?l=a:(l=new Map,on.set(n,l));let s,d;l.has(r.hash)?(d=l.get(r.hash),d[1].has(e)||(s=d[0],d[1].add(e),s.observe(e))):(s=new IntersectionObserver(f=>{f.forEach(p=>{if(p.isIntersecting){const v=tn.get(p.target),h=rn.get(p.target);v&&v(),h&&(h.value=!0)}})},r.options),s.observe(e),d=[s,new Set([e])],l.set(r.hash,d));let c=!1;const u=()=>{c||(tn.delete(e),rn.delete(e),c=!0,d[1].has(e)&&(d[0].unobserve(e),d[1].delete(e)),d[1].size<=0&&l.delete(r.hash),l.size||on.delete(n))};return tn.set(e,u),rn.set(e,t),u},ql=e=>{const{borderRadius:o,avatarColor:t,cardColor:r,fontSize:n,heightTiny:l,heightSmall:a,heightMedium:s,heightLarge:d,heightHuge:c,modalColor:u,popoverColor:f}=e;return{borderRadius:o,fontSize:n,border:`2px solid ${r}`,heightTiny:l,heightSmall:a,heightMedium:s,heightLarge:d,heightHuge:c,color:Re(r,t),colorModal:Re(u,t),colorPopover:Re(f,t)}},Nu={name:"Avatar",common:Ae,self:ql},Vu=Nu,Uu={name:"Avatar",common:ue,self:ql},Yl=Uu,Ku="n-avatar-group",Gu=g("avatar",` + width: var(--n-merged-size); + height: var(--n-merged-size); + color: #FFF; + font-size: var(--n-font-size); + display: inline-flex; + position: relative; + overflow: hidden; + text-align: center; + border: var(--n-border); + border-radius: var(--n-border-radius); + --n-merged-color: var(--n-color); + background-color: var(--n-merged-color); + transition: + border-color .3s var(--n-bezier), + background-color .3s var(--n-bezier), + color .3s var(--n-bezier); +`,[Dr(w("&","--n-merged-color: var(--n-color-modal);")),Rn(w("&","--n-merged-color: var(--n-color-popover);")),w("img",` + width: 100%; + height: 100%; + `),S("text",` + white-space: nowrap; + display: inline-block; + position: absolute; + left: 50%; + top: 50%; + `),g("icon",` + vertical-align: bottom; + font-size: calc(var(--n-merged-size) - 6px); + `),S("text","line-height: 1.25")]),qu=Object.assign(Object.assign({},ae.props),{size:[String,Number],src:String,circle:{type:Boolean,default:void 0},objectFit:String,round:{type:Boolean,default:void 0},bordered:{type:Boolean,default:void 0},onError:Function,fallbackSrc:String,intersectionObserverOptions:Object,lazy:Boolean,onLoad:Function,renderPlaceholder:Function,renderFallback:Function,imgProps:Object,color:String}),M1=Z({name:"Avatar",props:qu,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=M(!1);let n=null;const l=M(null),a=M(null),s=()=>{const{value:b}=l;if(b&&(n===null||n!==b.innerHTML)){n=b.innerHTML;const{value:_}=a;if(_){const{offsetWidth:I,offsetHeight:R}=_,{offsetWidth:z,offsetHeight:C}=b,H=.9,k=Math.min(I/z*H,R/C*H,1);b.style.transform=`translateX(-50%) translateY(-50%) scale(${k})`}}},d=$e(Ku,null),c=$(()=>{const{size:b}=e;if(b)return b;const{size:_}=d||{};return _||"medium"}),u=ae("Avatar","-avatar",Gu,Vu,e,o),f=$e(Ml,null),p=$(()=>{if(d)return!0;const{round:b,circle:_}=e;return b!==void 0||_!==void 0?b||_:f?f.roundRef.value:!1}),v=$(()=>d?!0:e.bordered||!1),h=$(()=>{const b=c.value,_=p.value,I=v.value,{color:R}=e,{self:{borderRadius:z,fontSize:C,color:H,border:k,colorModal:D,colorPopover:W},common:{cubicBezierEaseInOut:L}}=u.value;let j;return typeof b=="number"?j=`${b}px`:j=u.value.self[N("height",b)],{"--n-font-size":C,"--n-border":I?k:"none","--n-border-radius":_?"50%":z,"--n-color":R||H,"--n-color-modal":R||D,"--n-color-popover":R||W,"--n-bezier":L,"--n-merged-size":`var(--n-avatar-size-override, ${j})`}}),m=t?We("avatar",$(()=>{const b=c.value,_=p.value,I=v.value,{color:R}=e;let z="";return b&&(typeof b=="number"?z+=`a${b}`:z+=b[0]),_&&(z+="b"),I&&(z+="c"),R&&(z+=Et(R)),z}),h,e):void 0,x=M(!e.lazy);po(()=>{if(e.lazy&&e.intersectionObserverOptions){let b;const _=oo(()=>{b==null||b(),b=void 0,e.lazy&&(b=Gl(a.value,e.intersectionObserverOptions,x))});So(()=>{_(),b==null||b()})}}),Xe(()=>{var b;return e.src||((b=e.imgProps)===null||b===void 0?void 0:b.src)},()=>{r.value=!1});const y=M(!e.lazy);return{textRef:l,selfRef:a,mergedRoundRef:p,mergedClsPrefix:o,fitTextTransform:s,cssVars:t?void 0:h,themeClass:m==null?void 0:m.themeClass,onRender:m==null?void 0:m.onRender,hasLoadError:r,shouldStartLoading:x,loaded:y,mergedOnError:b=>{if(!x.value)return;r.value=!0;const{onError:_,imgProps:{onError:I}={}}=e;_==null||_(b),I==null||I(b)},mergedOnLoad:b=>{const{onLoad:_,imgProps:{onLoad:I}={}}=e;_==null||_(b),I==null||I(b),y.value=!0}}},render(){var e,o;const{$slots:t,src:r,mergedClsPrefix:n,lazy:l,onRender:a,loaded:s,hasLoadError:d,imgProps:c={}}=this;a==null||a();let u;const f=!s&&!d&&(this.renderPlaceholder?this.renderPlaceholder():(o=(e=this.$slots).placeholder)===null||o===void 0?void 0:o.call(e));return this.hasLoadError?u=this.renderFallback?this.renderFallback():so(t.fallback,()=>[i("img",{src:this.fallbackSrc,style:{objectFit:this.objectFit}})]):u=je(t.default,p=>{if(p)return i(tt,{onResize:this.fitTextTransform},{default:()=>i("span",{ref:"textRef",class:`${n}-avatar__text`},p)});if(r||c.src){const v=this.src||c.src;return i("img",Object.assign(Object.assign({},c),{loading:Kl&&!this.intersectionObserverOptions&&l?"lazy":"eager",src:l&&this.intersectionObserverOptions?this.shouldStartLoading?v:void 0:v,"data-image-src":v,onLoad:this.mergedOnLoad,onError:this.mergedOnError,style:[c.style||"",{objectFit:this.objectFit},f?{height:"0",width:"0",visibility:"hidden",position:"absolute"}:""]}))}}),i("span",{ref:"selfRef",class:[`${n}-avatar`,this.themeClass],style:this.cssVars},u,l&&f)}}),Yu=()=>({gap:"-12px"}),Xu={name:"AvatarGroup",common:ue,peers:{Avatar:Yl},self:Yu},Zu=Xu,Qu={width:"44px",height:"44px",borderRadius:"22px",iconSize:"26px"},Ju={name:"BackTop",common:ue,self(e){const{popoverColor:o,textColor2:t,primaryColorHover:r,primaryColorPressed:n}=e;return Object.assign(Object.assign({},Qu),{color:o,textColor:t,iconColor:t,iconColorHover:r,iconColorPressed:n,boxShadow:"0 2px 8px 0px rgba(0, 0, 0, .12)",boxShadowHover:"0 2px 12px 0px rgba(0, 0, 0, .18)",boxShadowPressed:"0 2px 12px 0px rgba(0, 0, 0, .18)"})}},ef=Ju,of={name:"Badge",common:ue,self(e){const{errorColorSuppl:o,infoColorSuppl:t,successColorSuppl:r,warningColorSuppl:n,fontFamily:l}=e;return{color:o,colorInfo:t,colorSuccess:r,colorError:o,colorWarning:n,fontSize:"12px",fontFamily:l}}},tf=of,rf=e=>{const{errorColor:o,infoColor:t,successColor:r,warningColor:n,fontFamily:l}=e;return{color:o,colorInfo:t,colorSuccess:r,colorError:o,colorWarning:n,fontSize:"12px",fontFamily:l}},nf={name:"Badge",common:Ae,self:rf},lf=nf,af=w([w("@keyframes badge-wave-spread",{from:{boxShadow:"0 0 0.5px 0px var(--n-ripple-color)",opacity:.6},to:{boxShadow:"0 0 0.5px 4.5px var(--n-ripple-color)",opacity:0}}),g("badge",` + display: inline-flex; + position: relative; + vertical-align: middle; + font-family: var(--n-font-family); + `,[P("as-is",[g("badge-sup",{position:"static",transform:"translateX(0)"},[ut({transformOrigin:"left bottom",originalTransform:"translateX(0)"})])]),P("dot",[g("badge-sup",` + height: 8px; + width: 8px; + padding: 0; + min-width: 8px; + left: 100%; + bottom: calc(100% - 4px); + `,[w("::before","border-radius: 4px;")])]),g("badge-sup",` + background: var(--n-color); + transition: + background-color .3s var(--n-bezier), + color .3s var(--n-bezier); + color: #FFF; + position: absolute; + height: 18px; + line-height: 18px; + border-radius: 9px; + padding: 0 6px; + text-align: center; + font-size: var(--n-font-size); + transform: translateX(-50%); + left: 100%; + bottom: calc(100% - 9px); + font-variant-numeric: tabular-nums; + z-index: 1; + display: flex; + align-items: center; + `,[ut({transformOrigin:"left bottom",originalTransform:"translateX(-50%)"}),g("base-wave",{zIndex:1,animationDuration:"2s",animationIterationCount:"infinite",animationDelay:"1s",animationTimingFunction:"var(--n-ripple-bezier)",animationName:"badge-wave-spread"}),w("&::before",` + opacity: 0; + transform: scale(1); + border-radius: 9px; + content: ""; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + `)])])]),sf=Object.assign(Object.assign({},ae.props),{value:[String,Number],max:Number,dot:Boolean,type:{type:String,default:"default"},show:{type:Boolean,default:!0},showZero:Boolean,processing:Boolean,color:String,offset:Array}),D1=Z({name:"Badge",props:sf,setup(e,{slots:o}){const{mergedClsPrefixRef:t,inlineThemeDisabled:r,mergedRtlRef:n}=Ie(e),l=ae("Badge","-badge",af,lf,e,t),a=M(!1),s=()=>{a.value=!0},d=()=>{a.value=!1},c=$(()=>e.show&&(e.dot||e.value!==void 0&&!(!e.showZero&&Number(e.value)<=0)||!Ct(o.value)));po(()=>{c.value&&(a.value=!0)});const u=eo("Badge",n,t),f=$(()=>{const{type:h,color:m}=e,{common:{cubicBezierEaseInOut:x,cubicBezierEaseOut:y},self:{[N("color",h)]:b,fontFamily:_,fontSize:I}}=l.value;return{"--n-font-size":I,"--n-font-family":_,"--n-color":m||b,"--n-ripple-color":m||b,"--n-bezier":x,"--n-ripple-bezier":y}}),p=r?We("badge",$(()=>{let h="";const{type:m,color:x}=e;return m&&(h+=m[0]),x&&(h+=Et(x)),h}),f,e):void 0,v=$(()=>{const{offset:h}=e;if(!h)return;const[m,x]=h,y=typeof m=="number"?`${m}px`:m,b=typeof x=="number"?`${x}px`:x;return{transform:`translate(calc(${u!=null&&u.value?"50%":"-50%"} + ${y}), ${b})`}});return{rtlEnabled:u,mergedClsPrefix:t,appeared:a,showBadge:c,handleAfterEnter:s,handleAfterLeave:d,cssVars:r?void 0:f,themeClass:p==null?void 0:p.themeClass,onRender:p==null?void 0:p.onRender,offsetStyle:v}},render(){var e;const{mergedClsPrefix:o,onRender:t,themeClass:r,$slots:n}=this;t==null||t();const l=(e=n.default)===null||e===void 0?void 0:e.call(n);return i("div",{class:[`${o}-badge`,this.rtlEnabled&&`${o}-badge--rtl`,r,{[`${o}-badge--dot`]:this.dot,[`${o}-badge--as-is`]:!l}],style:this.cssVars},l,i(lo,{name:"fade-in-scale-up-transition",onAfterEnter:this.handleAfterEnter,onAfterLeave:this.handleAfterLeave},{default:()=>this.showBadge?i("sup",{class:`${o}-badge-sup`,title:fn(this.value),style:this.offsetStyle},so(n.value,()=>[this.dot?null:i(fu,{clsPrefix:o,appeared:this.appeared,max:this.max,value:this.value})]),this.processing?i(Il,{clsPrefix:o}):null):null}))}}),df={fontWeightActive:"400"},cf=e=>{const{fontSize:o,textColor3:t,textColor2:r,borderRadius:n,buttonColor2Hover:l,buttonColor2Pressed:a}=e;return Object.assign(Object.assign({},df),{fontSize:o,itemLineHeight:"1.25",itemTextColor:t,itemTextColorHover:r,itemTextColorPressed:r,itemTextColorActive:r,itemBorderRadius:n,itemColorHover:l,itemColorPressed:a,separatorColor:t})},uf={name:"Breadcrumb",common:ue,self:cf},ff=uf;function mt(e){return Re(e,[255,255,255,.16])}function wr(e){return Re(e,[0,0,0,.12])}const Xl="n-button-group",hf={paddingTiny:"0 6px",paddingSmall:"0 10px",paddingMedium:"0 14px",paddingLarge:"0 18px",paddingRoundTiny:"0 10px",paddingRoundSmall:"0 14px",paddingRoundMedium:"0 18px",paddingRoundLarge:"0 22px",iconMarginTiny:"6px",iconMarginSmall:"6px",iconMarginMedium:"6px",iconMarginLarge:"6px",iconSizeTiny:"14px",iconSizeSmall:"18px",iconSizeMedium:"18px",iconSizeLarge:"20px",rippleDuration:".6s"},Zl=e=>{const{heightTiny:o,heightSmall:t,heightMedium:r,heightLarge:n,borderRadius:l,fontSizeTiny:a,fontSizeSmall:s,fontSizeMedium:d,fontSizeLarge:c,opacityDisabled:u,textColor2:f,textColor3:p,primaryColorHover:v,primaryColorPressed:h,borderColor:m,primaryColor:x,baseColor:y,infoColor:b,infoColorHover:_,infoColorPressed:I,successColor:R,successColorHover:z,successColorPressed:C,warningColor:H,warningColorHover:k,warningColorPressed:D,errorColor:W,errorColorHover:L,errorColorPressed:j,fontWeight:V,buttonColor2:E,buttonColor2Hover:Y,buttonColor2Pressed:K,fontWeightStrong:te}=e;return Object.assign(Object.assign({},hf),{heightTiny:o,heightSmall:t,heightMedium:r,heightLarge:n,borderRadiusTiny:l,borderRadiusSmall:l,borderRadiusMedium:l,borderRadiusLarge:l,fontSizeTiny:a,fontSizeSmall:s,fontSizeMedium:d,fontSizeLarge:c,opacityDisabled:u,colorOpacitySecondary:"0.16",colorOpacitySecondaryHover:"0.22",colorOpacitySecondaryPressed:"0.28",colorSecondary:E,colorSecondaryHover:Y,colorSecondaryPressed:K,colorTertiary:E,colorTertiaryHover:Y,colorTertiaryPressed:K,colorQuaternary:"#0000",colorQuaternaryHover:Y,colorQuaternaryPressed:K,color:"#0000",colorHover:"#0000",colorPressed:"#0000",colorFocus:"#0000",colorDisabled:"#0000",textColor:f,textColorTertiary:p,textColorHover:v,textColorPressed:h,textColorFocus:v,textColorDisabled:f,textColorText:f,textColorTextHover:v,textColorTextPressed:h,textColorTextFocus:v,textColorTextDisabled:f,textColorGhost:f,textColorGhostHover:v,textColorGhostPressed:h,textColorGhostFocus:v,textColorGhostDisabled:f,border:`1px solid ${m}`,borderHover:`1px solid ${v}`,borderPressed:`1px solid ${h}`,borderFocus:`1px solid ${v}`,borderDisabled:`1px solid ${m}`,rippleColor:x,colorPrimary:x,colorHoverPrimary:v,colorPressedPrimary:h,colorFocusPrimary:v,colorDisabledPrimary:x,textColorPrimary:y,textColorHoverPrimary:y,textColorPressedPrimary:y,textColorFocusPrimary:y,textColorDisabledPrimary:y,textColorTextPrimary:x,textColorTextHoverPrimary:v,textColorTextPressedPrimary:h,textColorTextFocusPrimary:v,textColorTextDisabledPrimary:f,textColorGhostPrimary:x,textColorGhostHoverPrimary:v,textColorGhostPressedPrimary:h,textColorGhostFocusPrimary:v,textColorGhostDisabledPrimary:x,borderPrimary:`1px solid ${x}`,borderHoverPrimary:`1px solid ${v}`,borderPressedPrimary:`1px solid ${h}`,borderFocusPrimary:`1px solid ${v}`,borderDisabledPrimary:`1px solid ${x}`,rippleColorPrimary:x,colorInfo:b,colorHoverInfo:_,colorPressedInfo:I,colorFocusInfo:_,colorDisabledInfo:b,textColorInfo:y,textColorHoverInfo:y,textColorPressedInfo:y,textColorFocusInfo:y,textColorDisabledInfo:y,textColorTextInfo:b,textColorTextHoverInfo:_,textColorTextPressedInfo:I,textColorTextFocusInfo:_,textColorTextDisabledInfo:f,textColorGhostInfo:b,textColorGhostHoverInfo:_,textColorGhostPressedInfo:I,textColorGhostFocusInfo:_,textColorGhostDisabledInfo:b,borderInfo:`1px solid ${b}`,borderHoverInfo:`1px solid ${_}`,borderPressedInfo:`1px solid ${I}`,borderFocusInfo:`1px solid ${_}`,borderDisabledInfo:`1px solid ${b}`,rippleColorInfo:b,colorSuccess:R,colorHoverSuccess:z,colorPressedSuccess:C,colorFocusSuccess:z,colorDisabledSuccess:R,textColorSuccess:y,textColorHoverSuccess:y,textColorPressedSuccess:y,textColorFocusSuccess:y,textColorDisabledSuccess:y,textColorTextSuccess:R,textColorTextHoverSuccess:z,textColorTextPressedSuccess:C,textColorTextFocusSuccess:z,textColorTextDisabledSuccess:f,textColorGhostSuccess:R,textColorGhostHoverSuccess:z,textColorGhostPressedSuccess:C,textColorGhostFocusSuccess:z,textColorGhostDisabledSuccess:R,borderSuccess:`1px solid ${R}`,borderHoverSuccess:`1px solid ${z}`,borderPressedSuccess:`1px solid ${C}`,borderFocusSuccess:`1px solid ${z}`,borderDisabledSuccess:`1px solid ${R}`,rippleColorSuccess:R,colorWarning:H,colorHoverWarning:k,colorPressedWarning:D,colorFocusWarning:k,colorDisabledWarning:H,textColorWarning:y,textColorHoverWarning:y,textColorPressedWarning:y,textColorFocusWarning:y,textColorDisabledWarning:y,textColorTextWarning:H,textColorTextHoverWarning:k,textColorTextPressedWarning:D,textColorTextFocusWarning:k,textColorTextDisabledWarning:f,textColorGhostWarning:H,textColorGhostHoverWarning:k,textColorGhostPressedWarning:D,textColorGhostFocusWarning:k,textColorGhostDisabledWarning:H,borderWarning:`1px solid ${H}`,borderHoverWarning:`1px solid ${k}`,borderPressedWarning:`1px solid ${D}`,borderFocusWarning:`1px solid ${k}`,borderDisabledWarning:`1px solid ${H}`,rippleColorWarning:H,colorError:W,colorHoverError:L,colorPressedError:j,colorFocusError:L,colorDisabledError:W,textColorError:y,textColorHoverError:y,textColorPressedError:y,textColorFocusError:y,textColorDisabledError:y,textColorTextError:W,textColorTextHoverError:L,textColorTextPressedError:j,textColorTextFocusError:L,textColorTextDisabledError:f,textColorGhostError:W,textColorGhostHoverError:L,textColorGhostPressedError:j,textColorGhostFocusError:L,textColorGhostDisabledError:W,borderError:`1px solid ${W}`,borderHoverError:`1px solid ${L}`,borderPressedError:`1px solid ${j}`,borderFocusError:`1px solid ${L}`,borderDisabledError:`1px solid ${W}`,rippleColorError:W,waveOpacity:"0.6",fontWeight:V,fontWeightStrong:te})},pf={name:"Button",common:Ae,self:Zl},Yt=pf,vf={name:"Button",common:ue,self(e){const o=Zl(e);return o.waveOpacity="0.8",o.colorOpacitySecondary="0.16",o.colorOpacitySecondaryHover="0.2",o.colorOpacitySecondaryPressed="0.12",o}},Po=vf,gf=w([g("button",` + margin: 0; + font-weight: var(--n-font-weight); + line-height: 1; + font-family: inherit; + padding: var(--n-padding); + height: var(--n-height); + font-size: var(--n-font-size); + border-radius: var(--n-border-radius); + color: var(--n-text-color); + background-color: var(--n-color); + width: var(--n-width); + white-space: nowrap; + outline: none; + position: relative; + z-index: auto; + border: none; + display: inline-flex; + flex-wrap: nowrap; + flex-shrink: 0; + align-items: center; + justify-content: center; + user-select: none; + -webkit-user-select: none; + text-align: center; + cursor: pointer; + text-decoration: none; + transition: + color .3s var(--n-bezier), + background-color .3s var(--n-bezier), + opacity .3s var(--n-bezier), + border-color .3s var(--n-bezier); + `,[P("color",[S("border",{borderColor:"var(--n-border-color)"}),P("disabled",[S("border",{borderColor:"var(--n-border-color-disabled)"})]),Ve("disabled",[w("&:focus",[S("state-border",{borderColor:"var(--n-border-color-focus)"})]),w("&:hover",[S("state-border",{borderColor:"var(--n-border-color-hover)"})]),w("&:active",[S("state-border",{borderColor:"var(--n-border-color-pressed)"})]),P("pressed",[S("state-border",{borderColor:"var(--n-border-color-pressed)"})])])]),P("disabled",{backgroundColor:"var(--n-color-disabled)",color:"var(--n-text-color-disabled)"},[S("border",{border:"var(--n-border-disabled)"})]),Ve("disabled",[w("&:focus",{backgroundColor:"var(--n-color-focus)",color:"var(--n-text-color-focus)"},[S("state-border",{border:"var(--n-border-focus)"})]),w("&:hover",{backgroundColor:"var(--n-color-hover)",color:"var(--n-text-color-hover)"},[S("state-border",{border:"var(--n-border-hover)"})]),w("&:active",{backgroundColor:"var(--n-color-pressed)",color:"var(--n-text-color-pressed)"},[S("state-border",{border:"var(--n-border-pressed)"})]),P("pressed",{backgroundColor:"var(--n-color-pressed)",color:"var(--n-text-color-pressed)"},[S("state-border",{border:"var(--n-border-pressed)"})])]),P("loading","cursor: wait;"),g("base-wave",` + pointer-events: none; + top: 0; + right: 0; + bottom: 0; + left: 0; + animation-iteration-count: 1; + animation-duration: var(--n-ripple-duration); + animation-timing-function: var(--n-bezier-ease-out), var(--n-bezier-ease-out); + `,[P("active",{zIndex:1,animationName:"button-wave-spread, button-wave-opacity"})]),No&&"MozBoxSizing"in document.createElement("div").style?w("&::moz-focus-inner",{border:0}):null,S("border, state-border",` + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + border-radius: inherit; + transition: border-color .3s var(--n-bezier); + pointer-events: none; + `),S("border",{border:"var(--n-border)"}),S("state-border",{border:"var(--n-border)",borderColor:"#0000",zIndex:1}),S("icon",` + margin: var(--n-icon-margin); + margin-left: 0; + height: var(--n-icon-size); + width: var(--n-icon-size); + max-width: var(--n-icon-size); + font-size: var(--n-icon-size); + position: relative; + flex-shrink: 0; + `,[g("icon-slot",` + height: var(--n-icon-size); + width: var(--n-icon-size); + position: absolute; + left: 0; + top: 50%; + transform: translateY(-50%); + display: flex; + align-items: center; + justify-content: center; + `,[ct({top:"50%",originalTransform:"translateY(-50%)"})]),Al()]),S("content",` + display: flex; + align-items: center; + flex-wrap: nowrap; + min-width: 0; + `,[w("~",[S("icon",{margin:"var(--n-icon-margin)",marginRight:0})])]),P("block",` + display: flex; + width: 100%; + `),P("dashed",[S("border, state-border",{borderStyle:"dashed !important"})]),P("disabled",{cursor:"not-allowed",opacity:"var(--n-opacity-disabled)"})]),w("@keyframes button-wave-spread",{from:{boxShadow:"0 0 0.5px 0 var(--n-ripple-color)"},to:{boxShadow:"0 0 0.5px 4.5px var(--n-ripple-color)"}}),w("@keyframes button-wave-opacity",{from:{opacity:"var(--n-wave-opacity)"},to:{opacity:0}})]),mf=Object.assign(Object.assign({},ae.props),{color:String,textColor:String,text:Boolean,block:Boolean,loading:Boolean,disabled:Boolean,circle:Boolean,size:String,ghost:Boolean,round:Boolean,secondary:Boolean,tertiary:Boolean,quaternary:Boolean,strong:Boolean,focusable:{type:Boolean,default:!0},keyboard:{type:Boolean,default:!0},tag:{type:String,default:"button"},type:{type:String,default:"default"},dashed:Boolean,renderIcon:Function,iconPlacement:{type:String,default:"left"},attrType:{type:String,default:"button"},bordered:{type:Boolean,default:!0},onClick:[Function,Array],nativeFocusBehavior:{type:Boolean,default:!Nl}}),Ql=Z({name:"Button",props:mf,setup(e){const o=M(null),t=M(null),r=M(!1),n=Ue(()=>!e.quaternary&&!e.tertiary&&!e.secondary&&!e.text&&(!e.color||e.ghost||e.dashed)&&e.bordered),l=$e(Xl,{}),{mergedSizeRef:a}=it({},{defaultSize:"medium",mergedSize:I=>{const{size:R}=e;if(R)return R;const{size:z}=l;if(z)return z;const{mergedSize:C}=I||{};return C?C.value:"medium"}}),s=$(()=>e.focusable&&!e.disabled),d=I=>{var R;s.value||I.preventDefault(),!e.nativeFocusBehavior&&(I.preventDefault(),!e.disabled&&s.value&&((R=o.value)===null||R===void 0||R.focus({preventScroll:!0})))},c=I=>{var R;if(!e.disabled&&!e.loading){const{onClick:z}=e;z&&de(z,I),e.text||(R=t.value)===null||R===void 0||R.play()}},u=I=>{switch(I.key){case"Enter":if(!e.keyboard)return;r.value=!1}},f=I=>{switch(I.key){case"Enter":if(!e.keyboard||e.loading){I.preventDefault();return}r.value=!0}},p=()=>{r.value=!1},{inlineThemeDisabled:v,mergedClsPrefixRef:h,mergedRtlRef:m}=Ie(e),x=ae("Button","-button",gf,Yt,e,h),y=eo("Button",m,h),b=$(()=>{const I=x.value,{common:{cubicBezierEaseInOut:R,cubicBezierEaseOut:z},self:C}=I,{rippleDuration:H,opacityDisabled:k,fontWeight:D,fontWeightStrong:W}=C,L=a.value,{dashed:j,type:V,ghost:E,text:Y,color:K,round:te,circle:xe,textColor:se,secondary:ie,tertiary:O,quaternary:B,strong:G}=e,oe={"font-weight":G?W:D};let me={"--n-color":"initial","--n-color-hover":"initial","--n-color-pressed":"initial","--n-color-focus":"initial","--n-color-disabled":"initial","--n-ripple-color":"initial","--n-text-color":"initial","--n-text-color-hover":"initial","--n-text-color-pressed":"initial","--n-text-color-focus":"initial","--n-text-color-disabled":"initial"};const be=V==="tertiary",Be=V==="default",T=be?"default":V;if(Y){const U=se||K;me={"--n-color":"#0000","--n-color-hover":"#0000","--n-color-pressed":"#0000","--n-color-focus":"#0000","--n-color-disabled":"#0000","--n-ripple-color":"#0000","--n-text-color":U||C[N("textColorText",T)],"--n-text-color-hover":U?mt(U):C[N("textColorTextHover",T)],"--n-text-color-pressed":U?wr(U):C[N("textColorTextPressed",T)],"--n-text-color-focus":U?mt(U):C[N("textColorTextHover",T)],"--n-text-color-disabled":U||C[N("textColorTextDisabled",T)]}}else if(E||j){const U=se||K;me={"--n-color":"#0000","--n-color-hover":"#0000","--n-color-pressed":"#0000","--n-color-focus":"#0000","--n-color-disabled":"#0000","--n-ripple-color":K||C[N("rippleColor",T)],"--n-text-color":U||C[N("textColorGhost",T)],"--n-text-color-hover":U?mt(U):C[N("textColorGhostHover",T)],"--n-text-color-pressed":U?wr(U):C[N("textColorGhostPressed",T)],"--n-text-color-focus":U?mt(U):C[N("textColorGhostHover",T)],"--n-text-color-disabled":U||C[N("textColorGhostDisabled",T)]}}else if(ie){const U=Be?C.textColor:be?C.textColorTertiary:C[N("color",T)],q=K||U,pe=V!=="default"&&V!=="tertiary";me={"--n-color":pe?ee(q,{alpha:Number(C.colorOpacitySecondary)}):C.colorSecondary,"--n-color-hover":pe?ee(q,{alpha:Number(C.colorOpacitySecondaryHover)}):C.colorSecondaryHover,"--n-color-pressed":pe?ee(q,{alpha:Number(C.colorOpacitySecondaryPressed)}):C.colorSecondaryPressed,"--n-color-focus":pe?ee(q,{alpha:Number(C.colorOpacitySecondaryHover)}):C.colorSecondaryHover,"--n-color-disabled":C.colorSecondary,"--n-ripple-color":"#0000","--n-text-color":q,"--n-text-color-hover":q,"--n-text-color-pressed":q,"--n-text-color-focus":q,"--n-text-color-disabled":q}}else if(O||B){const U=Be?C.textColor:be?C.textColorTertiary:C[N("color",T)],q=K||U;O?(me["--n-color"]=C.colorTertiary,me["--n-color-hover"]=C.colorTertiaryHover,me["--n-color-pressed"]=C.colorTertiaryPressed,me["--n-color-focus"]=C.colorSecondaryHover,me["--n-color-disabled"]=C.colorTertiary):(me["--n-color"]=C.colorQuaternary,me["--n-color-hover"]=C.colorQuaternaryHover,me["--n-color-pressed"]=C.colorQuaternaryPressed,me["--n-color-focus"]=C.colorQuaternaryHover,me["--n-color-disabled"]=C.colorQuaternary),me["--n-ripple-color"]="#0000",me["--n-text-color"]=q,me["--n-text-color-hover"]=q,me["--n-text-color-pressed"]=q,me["--n-text-color-focus"]=q,me["--n-text-color-disabled"]=q}else me={"--n-color":K||C[N("color",T)],"--n-color-hover":K?mt(K):C[N("colorHover",T)],"--n-color-pressed":K?wr(K):C[N("colorPressed",T)],"--n-color-focus":K?mt(K):C[N("colorFocus",T)],"--n-color-disabled":K||C[N("colorDisabled",T)],"--n-ripple-color":K||C[N("rippleColor",T)],"--n-text-color":se||(K?C.textColorPrimary:be?C.textColorTertiary:C[N("textColor",T)]),"--n-text-color-hover":se||(K?C.textColorHoverPrimary:C[N("textColorHover",T)]),"--n-text-color-pressed":se||(K?C.textColorPressedPrimary:C[N("textColorPressed",T)]),"--n-text-color-focus":se||(K?C.textColorFocusPrimary:C[N("textColorFocus",T)]),"--n-text-color-disabled":se||(K?C.textColorDisabledPrimary:C[N("textColorDisabled",T)])};let fe={"--n-border":"initial","--n-border-hover":"initial","--n-border-pressed":"initial","--n-border-focus":"initial","--n-border-disabled":"initial"};Y?fe={"--n-border":"none","--n-border-hover":"none","--n-border-pressed":"none","--n-border-focus":"none","--n-border-disabled":"none"}:fe={"--n-border":C[N("border",T)],"--n-border-hover":C[N("borderHover",T)],"--n-border-pressed":C[N("borderPressed",T)],"--n-border-focus":C[N("borderFocus",T)],"--n-border-disabled":C[N("borderDisabled",T)]};const{[N("height",L)]:we,[N("fontSize",L)]:Me,[N("padding",L)]:ne,[N("paddingRound",L)]:Ce,[N("iconSize",L)]:ge,[N("borderRadius",L)]:Ee,[N("iconMargin",L)]:Q,waveOpacity:ve}=C,ze={"--n-width":xe&&!Y?we:"initial","--n-height":Y?"initial":we,"--n-font-size":Me,"--n-padding":xe||Y?"initial":te?Ce:ne,"--n-icon-size":ge,"--n-icon-margin":Q,"--n-border-radius":Y?"initial":xe||te?we:Ee};return Object.assign(Object.assign(Object.assign(Object.assign({"--n-bezier":R,"--n-bezier-ease-out":z,"--n-ripple-duration":H,"--n-opacity-disabled":k,"--n-wave-opacity":ve},oe),me),fe),ze)}),_=v?We("button",$(()=>{let I="";const{dashed:R,type:z,ghost:C,text:H,color:k,round:D,circle:W,textColor:L,secondary:j,tertiary:V,quaternary:E,strong:Y}=e;R&&(I+="a"),C&&(I+="b"),H&&(I+="c"),D&&(I+="d"),W&&(I+="e"),j&&(I+="f"),V&&(I+="g"),E&&(I+="h"),Y&&(I+="i"),k&&(I+="j"+Et(k)),L&&(I+="k"+Et(L));const{value:K}=a;return I+="l"+K[0],I+="m"+z[0],I}),b,e):void 0;return{selfElRef:o,waveElRef:t,mergedClsPrefix:h,mergedFocusable:s,mergedSize:a,showBorder:n,enterPressed:r,rtlEnabled:y,handleMousedown:d,handleKeydown:f,handleBlur:p,handleKeyup:u,handleClick:c,customColorCssVars:$(()=>{const{color:I}=e;if(!I)return null;const R=mt(I);return{"--n-border-color":I,"--n-border-color-hover":R,"--n-border-color-pressed":wr(I),"--n-border-color-focus":R,"--n-border-color-disabled":I}}),cssVars:v?void 0:b,themeClass:_==null?void 0:_.themeClass,onRender:_==null?void 0:_.onRender}},render(){const{mergedClsPrefix:e,tag:o,onRender:t}=this;t==null||t();const r=je(this.$slots.default,n=>n&&i("span",{class:`${e}-button__content`},n));return i(o,{ref:"selfElRef",class:[this.themeClass,`${e}-button`,`${e}-button--${this.type}-type`,`${e}-button--${this.mergedSize}-type`,this.rtlEnabled&&`${e}-button--rtl`,this.disabled&&`${e}-button--disabled`,this.block&&`${e}-button--block`,this.enterPressed&&`${e}-button--pressed`,!this.text&&this.dashed&&`${e}-button--dashed`,this.color&&`${e}-button--color`,this.secondary&&`${e}-button--secondary`,this.loading&&`${e}-button--loading`,this.ghost&&`${e}-button--ghost`],tabindex:this.mergedFocusable?0:-1,type:this.attrType,style:this.cssVars,disabled:this.disabled,onClick:this.handleClick,onBlur:this.handleBlur,onMousedown:this.handleMousedown,onKeyup:this.handleKeyup,onKeydown:this.handleKeydown},this.iconPlacement==="right"&&r,i(Rt,{width:!0},{default:()=>je(this.$slots.icon,n=>(this.loading||this.renderIcon||n)&&i("span",{class:`${e}-button__icon`,style:{margin:Ct(this.$slots.default)?"0":""}},i(Kt,null,{default:()=>this.loading?i(Gt,{clsPrefix:e,key:"loading",class:`${e}-icon-slot`,strokeWidth:20}):i("div",{key:"icon",class:`${e}-icon-slot`,role:"none"},this.renderIcon?this.renderIcon():n)})))}),this.iconPlacement==="left"&&r,this.text?null:i(Il,{ref:"waveElRef",clsPrefix:e}),this.showBorder?i("div",{"aria-hidden":!0,class:`${e}-button__border`,style:this.customColorCssVars}):null,this.showBorder?i("div",{"aria-hidden":!0,class:`${e}-button__state-border`,style:this.customColorCssVars}):null)}}),Bo=Ql,$i=Ql,Je="0!important",Jl="-1px!important";function Dt(e){return P(e+"-type",[w("& +",[g("button",{},[P(e+"-type",[S("border",{borderLeftWidth:Je}),S("state-border",{left:Jl})])])])])}function Ht(e){return P(e+"-type",[w("& +",[g("button",[P(e+"-type",[S("border",{borderTopWidth:Je}),S("state-border",{top:Jl})])])])])}const bf=g("button-group",` + flex-wrap: nowrap; + display: inline-flex; + position: relative; +`,[Ve("vertical",{flexDirection:"row"},[Ve("rtl",[g("button",[w("&:first-child:not(:last-child)",` + margin-right: ${Je}; + border-top-right-radius: ${Je}; + border-bottom-right-radius: ${Je}; + `),w("&:last-child:not(:first-child)",` + margin-left: ${Je}; + border-top-left-radius: ${Je}; + border-bottom-left-radius: ${Je}; + `),w("&:not(:first-child):not(:last-child)",` + margin-left: ${Je}; + margin-right: ${Je}; + border-radius: ${Je}; + `),Dt("default"),P("ghost",[Dt("primary"),Dt("info"),Dt("success"),Dt("warning"),Dt("error")])])])]),P("vertical",{flexDirection:"column"},[g("button",[w("&:first-child:not(:last-child)",` + margin-bottom: ${Je}; + margin-left: ${Je}; + margin-right: ${Je}; + border-bottom-left-radius: ${Je}; + border-bottom-right-radius: ${Je}; + `),w("&:last-child:not(:first-child)",` + margin-top: ${Je}; + margin-left: ${Je}; + margin-right: ${Je}; + border-top-left-radius: ${Je}; + border-top-right-radius: ${Je}; + `),w("&:not(:first-child):not(:last-child)",` + margin: ${Je}; + border-radius: ${Je}; + `),Ht("default"),P("ghost",[Ht("primary"),Ht("info"),Ht("success"),Ht("warning"),Ht("error")])])])]),xf={size:{type:String,default:void 0},vertical:Boolean},Cf=Z({name:"ButtonGroup",props:xf,setup(e){const{mergedClsPrefixRef:o,mergedRtlRef:t}=Ie(e);return Xo("-button-group",bf,o),De(Xl,e),{rtlEnabled:eo("ButtonGroup",t,o),mergedClsPrefix:o}},render(){const{mergedClsPrefix:e}=this;return i("div",{class:[`${e}-button-group`,this.rtlEnabled&&`${e}-button-group--rtl`,this.vertical&&`${e}-button-group--vertical`],role:"group"},this.$slots)}}),yf={titleFontSize:"22px"},wf=e=>{const{borderRadius:o,fontSize:t,lineHeight:r,textColor2:n,textColor1:l,textColorDisabled:a,dividerColor:s,fontWeightStrong:d,primaryColor:c,baseColor:u,hoverColor:f,cardColor:p,modalColor:v,popoverColor:h}=e;return Object.assign(Object.assign({},yf),{borderRadius:o,borderColor:Re(p,s),borderColorModal:Re(v,s),borderColorPopover:Re(h,s),textColor:n,titleFontWeight:d,titleTextColor:l,dayTextColor:a,fontSize:t,lineHeight:r,dateColorCurrent:c,dateTextColorCurrent:u,cellColorHover:Re(p,f),cellColorHoverModal:Re(v,f),cellColorHoverPopover:Re(h,f),cellColor:p,cellColorModal:v,cellColorPopover:h,barColor:c})},Sf={name:"Calendar",common:ue,peers:{Button:Po},self:wf},zf=Sf,$f=e=>{const{fontSize:o,boxShadow2:t,popoverColor:r,textColor2:n,borderRadius:l,borderColor:a,heightSmall:s,heightMedium:d,heightLarge:c,fontSizeSmall:u,fontSizeMedium:f,fontSizeLarge:p,dividerColor:v}=e;return{panelFontSize:o,boxShadow:t,color:r,textColor:n,borderRadius:l,border:`1px solid ${a}`,heightSmall:s,heightMedium:d,heightLarge:c,fontSizeSmall:u,fontSizeMedium:f,fontSizeLarge:p,dividerColor:v}},Pf={name:"ColorPicker",common:ue,peers:{Input:Ao,Button:Po},self:$f},Rf=Pf,kf={paddingSmall:"12px 16px 12px",paddingMedium:"19px 24px 20px",paddingLarge:"23px 32px 24px",paddingHuge:"27px 40px 28px",titleFontSizeSmall:"16px",titleFontSizeMedium:"18px",titleFontSizeLarge:"18px",titleFontSizeHuge:"18px",closeIconSize:"18px",closeSize:"22px"},ea=e=>{const{primaryColor:o,borderRadius:t,lineHeight:r,fontSize:n,cardColor:l,textColor2:a,textColor1:s,dividerColor:d,fontWeightStrong:c,closeIconColor:u,closeIconColorHover:f,closeIconColorPressed:p,closeColorHover:v,closeColorPressed:h,modalColor:m,boxShadow1:x,popoverColor:y,actionColor:b}=e;return Object.assign(Object.assign({},kf),{lineHeight:r,color:l,colorModal:m,colorPopover:y,colorTarget:o,colorEmbedded:b,colorEmbeddedModal:b,colorEmbeddedPopover:b,textColor:a,titleTextColor:s,borderColor:d,actionColor:b,titleFontWeight:c,closeColorHover:v,closeColorPressed:h,closeBorderRadius:t,closeIconColor:u,closeIconColorHover:f,closeIconColorPressed:p,fontSizeSmall:n,fontSizeMedium:n,fontSizeLarge:n,fontSizeHuge:n,boxShadow:x,borderRadius:t})},If={name:"Card",common:Ae,self:ea},oa=If,Bf={name:"Card",common:ue,self(e){const o=ea(e),{cardColor:t,modalColor:r,popoverColor:n}=e;return o.colorEmbedded=t,o.colorEmbeddedModal=r,o.colorEmbeddedPopover=n,o}},ta=Bf,Tf=w([g("card",` + font-size: var(--n-font-size); + line-height: var(--n-line-height); + display: flex; + flex-direction: column; + width: 100%; + box-sizing: border-box; + position: relative; + border-radius: var(--n-border-radius); + background-color: var(--n-color); + color: var(--n-text-color); + word-break: break-word; + transition: + color .3s var(--n-bezier), + background-color .3s var(--n-bezier), + box-shadow .3s var(--n-bezier), + border-color .3s var(--n-bezier); + `,[sl({background:"var(--n-color-modal)"}),P("hoverable",[w("&:hover","box-shadow: var(--n-box-shadow);")]),P("content-segmented",[w(">",[S("content",{paddingTop:"var(--n-padding-bottom)"})])]),P("content-soft-segmented",[w(">",[S("content",` + margin: 0 var(--n-padding-left); + padding: var(--n-padding-bottom) 0; + `)])]),P("footer-segmented",[w(">",[S("footer",{paddingTop:"var(--n-padding-bottom)"})])]),P("footer-soft-segmented",[w(">",[S("footer",` + padding: var(--n-padding-bottom) 0; + margin: 0 var(--n-padding-left); + `)])]),w(">",[g("card-header",` + box-sizing: border-box; + display: flex; + align-items: center; + font-size: var(--n-title-font-size); + padding: + var(--n-padding-top) + var(--n-padding-left) + var(--n-padding-bottom) + var(--n-padding-left); + `,[S("main",` + font-weight: var(--n-title-font-weight); + transition: color .3s var(--n-bezier); + flex: 1; + min-width: 0; + color: var(--n-title-text-color); + `),S("extra",` + display: flex; + align-items: center; + font-size: var(--n-font-size); + font-weight: 400; + transition: color .3s var(--n-bezier); + color: var(--n-text-color); + `),S("close",` + margin: 0 0 0 8px; + transition: + background-color .3s var(--n-bezier), + color .3s var(--n-bezier); + `)]),S("action",` + box-sizing: border-box; + transition: + background-color .3s var(--n-bezier), + border-color .3s var(--n-bezier); + background-clip: padding-box; + background-color: var(--n-action-color); + `),S("content","flex: 1; min-width: 0;"),S("content, footer",` + box-sizing: border-box; + padding: 0 var(--n-padding-left) var(--n-padding-bottom) var(--n-padding-left); + font-size: var(--n-font-size); + `,[w("&:first-child",{paddingTop:"var(--n-padding-bottom)"})]),S("action",` + background-color: var(--n-action-color); + padding: var(--n-padding-bottom) var(--n-padding-left); + border-bottom-left-radius: var(--n-border-radius); + border-bottom-right-radius: var(--n-border-radius); + `)]),g("card-cover",` + overflow: hidden; + width: 100%; + border-radius: var(--n-border-radius) var(--n-border-radius) 0 0; + `,[w("img",` + display: block; + width: 100%; + `)]),P("bordered",` + border: 1px solid var(--n-border-color); + `,[w("&:target","border-color: var(--n-color-target);")]),P("action-segmented",[w(">",[S("action",[w("&:not(:first-child)",{borderTop:"1px solid var(--n-border-color)"})])])]),P("content-segmented, content-soft-segmented",[w(">",[S("content",{transition:"border-color 0.3s var(--n-bezier)"},[w("&:not(:first-child)",{borderTop:"1px solid var(--n-border-color)"})])])]),P("footer-segmented, footer-soft-segmented",[w(">",[S("footer",{transition:"border-color 0.3s var(--n-bezier)"},[w("&:not(:first-child)",{borderTop:"1px solid var(--n-border-color)"})])])]),P("embedded",` + background-color: var(--n-color-embedded); + `)]),Dr(g("card",` + background: var(--n-color-modal); + `,[P("embedded",` + background-color: var(--n-color-embedded-modal); + `)])),Rn(g("card",` + background: var(--n-color-popover); + `,[P("embedded",` + background-color: var(--n-color-embedded-popover); + `)]))]),_n={title:String,contentClass:String,contentStyle:[Object,String],headerClass:String,headerStyle:[Object,String],headerExtraClass:String,headerExtraStyle:[Object,String],footerClass:String,footerStyle:[Object,String],embedded:Boolean,segmented:{type:[Boolean,Object],default:!1},size:{type:String,default:"medium"},bordered:{type:Boolean,default:!0},closable:Boolean,hoverable:Boolean,role:String,onClose:[Function,Array],tag:{type:String,default:"div"}},Ff=wo(_n),Of=Object.assign(Object.assign({},ae.props),_n),_f=Z({name:"Card",props:Of,setup(e){const o=()=>{const{onClose:c}=e;c&&de(c)},{inlineThemeDisabled:t,mergedClsPrefixRef:r,mergedRtlRef:n}=Ie(e),l=ae("Card","-card",Tf,oa,e,r),a=eo("Card",n,r),s=$(()=>{const{size:c}=e,{self:{color:u,colorModal:f,colorTarget:p,textColor:v,titleTextColor:h,titleFontWeight:m,borderColor:x,actionColor:y,borderRadius:b,lineHeight:_,closeIconColor:I,closeIconColorHover:R,closeIconColorPressed:z,closeColorHover:C,closeColorPressed:H,closeBorderRadius:k,closeIconSize:D,closeSize:W,boxShadow:L,colorPopover:j,colorEmbedded:V,colorEmbeddedModal:E,colorEmbeddedPopover:Y,[N("padding",c)]:K,[N("fontSize",c)]:te,[N("titleFontSize",c)]:xe},common:{cubicBezierEaseInOut:se}}=l.value,{top:ie,left:O,bottom:B}=yo(K);return{"--n-bezier":se,"--n-border-radius":b,"--n-color":u,"--n-color-modal":f,"--n-color-popover":j,"--n-color-embedded":V,"--n-color-embedded-modal":E,"--n-color-embedded-popover":Y,"--n-color-target":p,"--n-text-color":v,"--n-line-height":_,"--n-action-color":y,"--n-title-text-color":h,"--n-title-font-weight":m,"--n-close-icon-color":I,"--n-close-icon-color-hover":R,"--n-close-icon-color-pressed":z,"--n-close-color-hover":C,"--n-close-color-pressed":H,"--n-border-color":x,"--n-box-shadow":L,"--n-padding-top":ie,"--n-padding-bottom":B,"--n-padding-left":O,"--n-font-size":te,"--n-title-font-size":xe,"--n-close-size":W,"--n-close-icon-size":D,"--n-close-border-radius":k}}),d=t?We("card",$(()=>e.size[0]),s,e):void 0;return{rtlEnabled:a,mergedClsPrefix:r,mergedTheme:l,handleCloseClick:o,cssVars:t?void 0:s,themeClass:d==null?void 0:d.themeClass,onRender:d==null?void 0:d.onRender}},render(){const{segmented:e,bordered:o,hoverable:t,mergedClsPrefix:r,rtlEnabled:n,onRender:l,embedded:a,tag:s,$slots:d}=this;return l==null||l(),i(s,{class:[`${r}-card`,this.themeClass,a&&`${r}-card--embedded`,{[`${r}-card--rtl`]:n,[`${r}-card--content${typeof e!="boolean"&&e.content==="soft"?"-soft":""}-segmented`]:e===!0||e!==!1&&e.content,[`${r}-card--footer${typeof e!="boolean"&&e.footer==="soft"?"-soft":""}-segmented`]:e===!0||e!==!1&&e.footer,[`${r}-card--action-segmented`]:e===!0||e!==!1&&e.action,[`${r}-card--bordered`]:o,[`${r}-card--hoverable`]:t}],style:this.cssVars,role:this.role},je(d.cover,c=>c&&i("div",{class:`${r}-card-cover`,role:"none"},c)),je(d.header,c=>c||this.title||this.closable?i("div",{class:[`${r}-card-header`,this.headerClass],style:this.headerStyle},i("div",{class:`${r}-card-header__main`,role:"heading"},c||this.title),je(d["header-extra"],u=>u&&i("div",{class:[`${r}-card-header__extra`,this.headerExtraClass],style:this.headerExtraStyle},u)),this.closable?i(kt,{clsPrefix:r,class:`${r}-card-header__close`,onClick:this.handleCloseClick,absolute:!0}):null):null),je(d.default,c=>c&&i("div",{class:[`${r}-card__content`,this.contentClass],style:this.contentStyle,role:"none"},c)),je(d.footer,c=>c&&[i("div",{class:[`${r}-card__footer`,this.footerClass],style:this.footerStyle,role:"none"},c)]),je(d.action,c=>c&&i("div",{class:`${r}-card__action`,role:"none"},c)))}}),Mf=e=>({dotSize:"8px",dotColor:"rgba(255, 255, 255, .3)",dotColorActive:"rgba(255, 255, 255, 1)",dotColorFocus:"rgba(255, 255, 255, .5)",dotLineWidth:"16px",dotLineWidthActive:"24px",arrowColor:"#eee"}),Df={name:"Carousel",common:ue,self:Mf},Hf=Df,Lf={sizeSmall:"14px",sizeMedium:"16px",sizeLarge:"18px",labelPadding:"0 8px",labelFontWeight:"400"},Af=e=>{const{baseColor:o,inputColorDisabled:t,cardColor:r,modalColor:n,popoverColor:l,textColorDisabled:a,borderColor:s,primaryColor:d,textColor2:c,fontSizeSmall:u,fontSizeMedium:f,fontSizeLarge:p,borderRadiusSmall:v,lineHeight:h}=e;return Object.assign(Object.assign({},Lf),{labelLineHeight:h,fontSizeSmall:u,fontSizeMedium:f,fontSizeLarge:p,borderRadius:v,color:o,colorChecked:d,colorDisabled:t,colorDisabledChecked:t,colorTableHeader:r,colorTableHeaderModal:n,colorTableHeaderPopover:l,checkMarkColor:o,checkMarkColorDisabled:a,checkMarkColorDisabledChecked:a,border:`1px solid ${s}`,borderDisabled:`1px solid ${s}`,borderDisabledChecked:`1px solid ${s}`,borderChecked:`1px solid ${d}`,borderFocus:`1px solid ${d}`,boxShadowFocus:`0 0 0 2px ${ee(d,{alpha:.3})}`,textColor:c,textColorDisabled:a})},Ef={name:"Checkbox",common:ue,self(e){const{cardColor:o}=e,t=Af(e);return t.color="#0000",t.checkMarkColor=o,t}},Xt=Ef,jf=e=>{const{borderRadius:o,boxShadow2:t,popoverColor:r,textColor2:n,textColor3:l,primaryColor:a,textColorDisabled:s,dividerColor:d,hoverColor:c,fontSizeMedium:u,heightMedium:f}=e;return{menuBorderRadius:o,menuColor:r,menuBoxShadow:t,menuDividerColor:d,menuHeight:"calc(var(--n-option-height) * 6.6)",optionArrowColor:l,optionHeight:f,optionFontSize:u,optionColorHover:c,optionTextColor:n,optionTextColorActive:a,optionTextColorDisabled:s,optionCheckMarkColor:a,loadingColor:a,columnWidth:"180px"}},Wf={name:"Cascader",common:ue,peers:{InternalSelectMenu:gr,InternalSelection:On,Scrollbar:$o,Checkbox:Xt,Empty:Tn},self:jf},Nf=Wf,Vf={name:"Code",common:ue,self(e){const{textColor2:o,fontSize:t,fontWeightStrong:r,textColor3:n}=e;return{textColor:o,fontSize:t,fontWeightStrong:r,"mono-3":"#5c6370","hue-1":"#56b6c2","hue-2":"#61aeee","hue-3":"#c678dd","hue-4":"#98c379","hue-5":"#e06c75","hue-5-2":"#be5046","hue-6":"#d19a66","hue-6-2":"#e6c07b",lineNumberTextColor:n}}},ra=Vf,Uf=e=>{const{fontWeight:o,textColor1:t,textColor2:r,textColorDisabled:n,dividerColor:l,fontSize:a}=e;return{titleFontSize:a,titleFontWeight:o,dividerColor:l,titleTextColor:t,titleTextColorDisabled:n,fontSize:a,textColor:r,arrowColor:r,arrowColorDisabled:n,itemMargin:"16px 0 0 0",titlePadding:"16px 0 0 0"}},Kf={name:"Collapse",common:ue,self:Uf},Gf=Kf,qf=e=>{const{cubicBezierEaseInOut:o}=e;return{bezier:o}},Yf={name:"CollapseTransition",common:ue,self:qf},Xf=Yf,Zf={abstract:Boolean,bordered:{type:Boolean,default:void 0},clsPrefix:{type:String,default:lr},locale:Object,dateLocale:Object,namespace:String,rtl:Array,tag:{type:String,default:"div"},hljs:Object,katex:Object,theme:Object,themeOverrides:Object,componentOptions:Object,icons:Object,breakpoints:Object,preflightStyleDisabled:Boolean,inlineThemeDisabled:{type:Boolean,default:void 0},as:{type:String,validator:()=>(qo("config-provider","`as` is deprecated, please use `tag` instead."),!0),default:void 0}},H1=Z({name:"ConfigProvider",alias:["App"],props:Zf,setup(e){const o=$e(jo,null),t=$(()=>{const{theme:h}=e;if(h===null)return;const m=o==null?void 0:o.mergedThemeRef.value;return h===void 0?m:m===void 0?h:Object.assign({},m,h)}),r=$(()=>{const{themeOverrides:h}=e;if(h!==null){if(h===void 0)return o==null?void 0:o.mergedThemeOverridesRef.value;{const m=o==null?void 0:o.mergedThemeOverridesRef.value;return m===void 0?h:Lt({},m,h)}}}),n=Ue(()=>{const{namespace:h}=e;return h===void 0?o==null?void 0:o.mergedNamespaceRef.value:h}),l=Ue(()=>{const{bordered:h}=e;return h===void 0?o==null?void 0:o.mergedBorderedRef.value:h}),a=$(()=>{const{icons:h}=e;return h===void 0?o==null?void 0:o.mergedIconsRef.value:h}),s=$(()=>{const{componentOptions:h}=e;return h!==void 0?h:o==null?void 0:o.mergedComponentPropsRef.value}),d=$(()=>{const{clsPrefix:h}=e;return h!==void 0?h:o?o.mergedClsPrefixRef.value:lr}),c=$(()=>{var h;const{rtl:m}=e;if(m===void 0)return o==null?void 0:o.mergedRtlRef.value;const x={};for(const y of m)x[y.name]=Jn(y),(h=y.peers)===null||h===void 0||h.forEach(b=>{b.name in x||(x[b.name]=Jn(b))});return x}),u=$(()=>e.breakpoints||(o==null?void 0:o.mergedBreakpointsRef.value)),f=e.inlineThemeDisabled||(o==null?void 0:o.inlineThemeDisabled),p=e.preflightStyleDisabled||(o==null?void 0:o.preflightStyleDisabled),v=$(()=>{const{value:h}=t,{value:m}=r,x=m&&Object.keys(m).length!==0,y=h==null?void 0:h.name;return y?x?`${y}-${Rr(JSON.stringify(r.value))}`:y:x?Rr(JSON.stringify(r.value)):""});return De(jo,{mergedThemeHashRef:v,mergedBreakpointsRef:u,mergedRtlRef:c,mergedIconsRef:a,mergedComponentPropsRef:s,mergedBorderedRef:l,mergedNamespaceRef:n,mergedClsPrefixRef:d,mergedLocaleRef:$(()=>{const{locale:h}=e;if(h!==null)return h===void 0?o==null?void 0:o.mergedLocaleRef.value:h}),mergedDateLocaleRef:$(()=>{const{dateLocale:h}=e;if(h!==null)return h===void 0?o==null?void 0:o.mergedDateLocaleRef.value:h}),mergedHljsRef:$(()=>{const{hljs:h}=e;return h===void 0?o==null?void 0:o.mergedHljsRef.value:h}),mergedKatexRef:$(()=>{const{katex:h}=e;return h===void 0?o==null?void 0:o.mergedKatexRef.value:h}),mergedThemeRef:t,mergedThemeOverridesRef:r,inlineThemeDisabled:f||!1,preflightStyleDisabled:p||!1}),{mergedClsPrefix:d,mergedBordered:l,mergedNamespace:n,mergedTheme:t,mergedThemeOverrides:r}},render(){var e,o,t,r;return this.abstract?(r=(t=this.$slots).default)===null||r===void 0?void 0:r.call(t):i(this.as||this.tag,{class:`${this.mergedClsPrefix||lr}-config-provider`},(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e))}}),Qf=e=>1-Math.pow(1-e,5);function Jf(e){const{from:o,to:t,duration:r,onUpdate:n,onFinish:l}=e,a=()=>{const d=performance.now(),c=Math.min(d-s,r),u=o+(t-o)*Qf(c/r);if(c===r){l();return}n(u),requestAnimationFrame(a)},s=performance.now();a()}const eh={to:{type:Number,default:0},precision:{type:Number,default:0},showSeparator:Boolean,locale:String,from:{type:Number,default:0},active:{type:Boolean,default:!0},duration:{type:Number,default:2e3},onFinish:Function},L1=Z({name:"NumberAnimation",props:eh,setup(e){const{localeRef:o}=Yo("name"),{duration:t}=e,r=M(e.from),n=$(()=>{const{locale:p}=e;return p!==void 0?p:o.value});let l=!1;const a=p=>{r.value=p},s=()=>{var p;r.value=e.to,l=!1,(p=e.onFinish)===null||p===void 0||p.call(e)},d=(p=e.from,v=e.to)=>{l=!0,r.value=e.from,p!==v&&Jf({from:p,to:v,duration:t,onUpdate:a,onFinish:s})},c=$(()=>{var p;const h=xd(r.value,e.precision).toFixed(e.precision).split("."),m=new Intl.NumberFormat(n.value),x=(p=m.formatToParts(.5).find(_=>_.type==="decimal"))===null||p===void 0?void 0:p.value,y=e.showSeparator?m.format(Number(h[0])):h[0],b=h[1];return{integer:y,decimal:b,decimalSeparator:x}});function u(){l||d()}return po(()=>{oo(()=>{e.active&&d()})}),Object.assign({formattedValue:c},{play:u})},render(){const{formattedValue:{integer:e,decimal:o,decimalSeparator:t}}=this;return[e,o?t:null,o]}}),oh={name:"Popselect",common:ue,peers:{Popover:Bt,InternalSelectMenu:gr}},na=oh;function th(e){const{boxShadow2:o}=e;return{menuBoxShadow:o}}const rh={name:"Popselect",common:Ae,peers:{Popover:qt,InternalSelectMenu:Lr},self:th},Mn=rh,ia="n-popselect",nh=g("popselect-menu",` + box-shadow: var(--n-menu-box-shadow); +`),Dn={multiple:Boolean,value:{type:[String,Number,Array],default:null},cancelable:Boolean,options:{type:Array,default:()=>[]},size:{type:String,default:"medium"},scrollable:Boolean,"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],onMouseenter:Function,onMouseleave:Function,renderLabel:Function,showCheckmark:{type:Boolean,default:void 0},nodeProps:Function,virtualScroll:Boolean,onChange:[Function,Array]},Pi=wo(Dn),ih=Z({name:"PopselectPanel",props:Dn,setup(e){const o=$e(ia),{mergedClsPrefixRef:t,inlineThemeDisabled:r}=Ie(e),n=ae("Popselect","-pop-select",nh,Mn,o.props,t),l=$(()=>xt(e.options,Wl("value","children")));function a(p,v){const{onUpdateValue:h,"onUpdate:value":m,onChange:x}=e;h&&de(h,p,v),m&&de(m,p,v),x&&de(x,p,v)}function s(p){c(p.key)}function d(p){!ot(p,"action")&&!ot(p,"empty")&&!ot(p,"header")&&p.preventDefault()}function c(p){const{value:{getNode:v}}=l;if(e.multiple)if(Array.isArray(e.value)){const h=[],m=[];let x=!0;e.value.forEach(y=>{if(y===p){x=!1;return}const b=v(y);b&&(h.push(b.key),m.push(b.rawNode))}),x&&(h.push(p),m.push(v(p).rawNode)),a(h,m)}else{const h=v(p);h&&a([p],[h.rawNode])}else if(e.value===p&&e.cancelable)a(null,null);else{const h=v(p);h&&a(p,h.rawNode);const{"onUpdate:show":m,onUpdateShow:x}=o.props;m&&de(m,!1),x&&de(x,!1),o.setShow(!1)}ao(()=>{o.syncPosition()})}Xe(le(e,"options"),()=>{ao(()=>{o.syncPosition()})});const u=$(()=>{const{self:{menuBoxShadow:p}}=n.value;return{"--n-menu-box-shadow":p}}),f=r?We("select",void 0,u,o.props):void 0;return{mergedTheme:o.mergedThemeRef,mergedClsPrefix:t,treeMate:l,handleToggle:s,handleMenuMousedown:d,cssVars:r?void 0:u,themeClass:f==null?void 0:f.themeClass,onRender:f==null?void 0:f.onRender}},render(){var e;return(e=this.onRender)===null||e===void 0||e.call(this),i(Fn,{clsPrefix:this.mergedClsPrefix,focusable:!0,nodeProps:this.nodeProps,class:[`${this.mergedClsPrefix}-popselect-menu`,this.themeClass],style:this.cssVars,theme:this.mergedTheme.peers.InternalSelectMenu,themeOverrides:this.mergedTheme.peerOverrides.InternalSelectMenu,multiple:this.multiple,treeMate:this.treeMate,size:this.size,value:this.value,virtualScroll:this.virtualScroll,scrollable:this.scrollable,renderLabel:this.renderLabel,onToggle:this.handleToggle,onMouseenter:this.onMouseenter,onMouseleave:this.onMouseenter,onMousedown:this.handleMenuMousedown,showCheckmark:this.showCheckmark},{header:()=>{var o,t;return((t=(o=this.$slots).header)===null||t===void 0?void 0:t.call(o))||[]},action:()=>{var o,t;return((t=(o=this.$slots).action)===null||t===void 0?void 0:t.call(o))||[]},empty:()=>{var o,t;return((t=(o=this.$slots).empty)===null||t===void 0?void 0:t.call(o))||[]}})}}),lh=Object.assign(Object.assign(Object.assign(Object.assign({},ae.props),Wt(St,["showArrow","arrow"])),{placement:Object.assign(Object.assign({},St.placement),{default:"bottom"}),trigger:{type:String,default:"hover"}}),Dn),ah=Z({name:"Popselect",props:lh,inheritAttrs:!1,__popover__:!0,setup(e){const{mergedClsPrefixRef:o}=Ie(e),t=ae("Popselect","-popselect",void 0,Mn,e,o),r=M(null);function n(){var s;(s=r.value)===null||s===void 0||s.syncPosition()}function l(s){var d;(d=r.value)===null||d===void 0||d.setShow(s)}return De(ia,{props:e,mergedThemeRef:t,syncPosition:n,setShow:l}),Object.assign(Object.assign({},{syncPosition:n,setShow:l}),{popoverInstRef:r,mergedTheme:t})},render(){const{mergedTheme:e}=this,o={theme:e.peers.Popover,themeOverrides:e.peerOverrides.Popover,builtinThemeOverrides:{padding:"0"},ref:"popoverInstRef",internalRenderBody:(t,r,n,l,a)=>{const{$attrs:s}=this;return i(ih,Object.assign({},s,{class:[s.class,t],style:[s.style,...n]},mo(this.$props,Pi),{ref:il(r),onMouseenter:or([l,s.onMouseenter]),onMouseleave:or([a,s.onMouseleave])}),{header:()=>{var d,c;return(c=(d=this.$slots).header)===null||c===void 0?void 0:c.call(d)},action:()=>{var d,c;return(c=(d=this.$slots).action)===null||c===void 0?void 0:c.call(d)},empty:()=>{var d,c;return(c=(d=this.$slots).empty)===null||c===void 0?void 0:c.call(d)}})}};return i(mr,Object.assign({},Wt(this.$props,Pi),o,{internalDeactivateImmediately:!0}),{trigger:()=>{var t,r;return(r=(t=this.$slots).default)===null||r===void 0?void 0:r.call(t)}})}});function la(e){const{boxShadow2:o}=e;return{menuBoxShadow:o}}const sh={name:"Select",common:Ae,peers:{InternalSelection:Ll,InternalSelectMenu:Lr},self:la},aa=sh,dh={name:"Select",common:ue,peers:{InternalSelection:On,InternalSelectMenu:gr},self:la},sa=dh,ch=w([g("select",` + z-index: auto; + outline: none; + width: 100%; + position: relative; + `),g("select-menu",` + margin: 4px 0; + box-shadow: var(--n-menu-box-shadow); + `,[ut({originalTransition:"background-color .3s var(--n-bezier), box-shadow .3s var(--n-bezier)"})])]),uh=Object.assign(Object.assign({},ae.props),{to:Fo.propTo,bordered:{type:Boolean,default:void 0},clearable:Boolean,clearFilterAfterSelect:{type:Boolean,default:!0},options:{type:Array,default:()=>[]},defaultValue:{type:[String,Number,Array],default:null},keyboard:{type:Boolean,default:!0},value:[String,Number,Array],placeholder:String,menuProps:Object,multiple:Boolean,size:String,filterable:Boolean,disabled:{type:Boolean,default:void 0},remote:Boolean,loading:Boolean,filter:Function,placement:{type:String,default:"bottom-start"},widthMode:{type:String,default:"trigger"},tag:Boolean,onCreate:Function,fallbackOption:{type:[Function,Boolean],default:void 0},show:{type:Boolean,default:void 0},showArrow:{type:Boolean,default:!0},maxTagCount:[Number,String],ellipsisTagPopoverProps:Object,consistentMenuWidth:{type:Boolean,default:!0},virtualScroll:{type:Boolean,default:!0},labelField:{type:String,default:"label"},valueField:{type:String,default:"value"},childrenField:{type:String,default:"children"},renderLabel:Function,renderOption:Function,renderTag:Function,"onUpdate:value":[Function,Array],inputProps:Object,nodeProps:Function,ignoreComposition:{type:Boolean,default:!0},showOnFocus:Boolean,onUpdateValue:[Function,Array],onBlur:[Function,Array],onClear:[Function,Array],onFocus:[Function,Array],onScroll:[Function,Array],onSearch:[Function,Array],onUpdateShow:[Function,Array],"onUpdate:show":[Function,Array],displayDirective:{type:String,default:"show"},resetMenuOnOptionsChange:{type:Boolean,default:!0},status:String,showCheckmark:{type:Boolean,default:!0},onChange:[Function,Array],items:Array}),fh=Z({name:"Select",props:uh,setup(e){const{mergedClsPrefixRef:o,mergedBorderedRef:t,namespaceRef:r,inlineThemeDisabled:n}=Ie(e),l=ae("Select","-select",ch,aa,e,o),a=M(e.defaultValue),s=le(e,"value"),d=uo(s,a),c=M(!1),u=M(""),f=$(()=>{const{valueField:F,childrenField:X}=e,ce=Wl(F,X);return xt(L.value,ce)}),p=$(()=>Ru(D.value,e.valueField,e.childrenField)),v=M(!1),h=uo(le(e,"show"),v),m=M(null),x=M(null),y=M(null),{localeRef:b}=Yo("Select"),_=$(()=>{var F;return(F=e.placeholder)!==null&&F!==void 0?F:b.value.placeholder}),I=yt(e,["items","options"]),R=[],z=M([]),C=M([]),H=M(new Map),k=$(()=>{const{fallbackOption:F}=e;if(F===void 0){const{labelField:X,valueField:ce}=e;return Pe=>({[X]:String(Pe),[ce]:Pe})}return F===!1?!1:X=>Object.assign(F(X),{value:X})}),D=$(()=>C.value.concat(z.value).concat(I.value)),W=$(()=>{const{filter:F}=e;if(F)return F;const{labelField:X,valueField:ce}=e;return(Pe,ke)=>{if(!ke)return!1;const Te=ke[X];if(typeof Te=="string")return en(Pe,Te);const Fe=ke[ce];return typeof Fe=="string"?en(Pe,Fe):typeof Fe=="number"?en(Pe,String(Fe)):!1}}),L=$(()=>{if(e.remote)return I.value;{const{value:F}=D,{value:X}=u;return!X.length||!e.filterable?F:Pu(F,W.value,X,e.childrenField)}});function j(F){const X=e.remote,{value:ce}=H,{value:Pe}=p,{value:ke}=k,Te=[];return F.forEach(Fe=>{if(Pe.has(Fe))Te.push(Pe.get(Fe));else if(X&&ce.has(Fe))Te.push(ce.get(Fe));else if(ke){const He=ke(Fe);He&&Te.push(He)}}),Te}const V=$(()=>{if(e.multiple){const{value:F}=d;return Array.isArray(F)?j(F):[]}return null}),E=$(()=>{const{value:F}=d;return!e.multiple&&!Array.isArray(F)?F===null?null:j([F])[0]||null:null}),Y=it(e),{mergedSizeRef:K,mergedDisabledRef:te,mergedStatusRef:xe}=Y;function se(F,X){const{onChange:ce,"onUpdate:value":Pe,onUpdateValue:ke}=e,{nTriggerFormChange:Te,nTriggerFormInput:Fe}=Y;ce&&de(ce,F,X),ke&&de(ke,F,X),Pe&&de(Pe,F,X),a.value=F,Te(),Fe()}function ie(F){const{onBlur:X}=e,{nTriggerFormBlur:ce}=Y;X&&de(X,F),ce()}function O(){const{onClear:F}=e;F&&de(F)}function B(F){const{onFocus:X,showOnFocus:ce}=e,{nTriggerFormFocus:Pe}=Y;X&&de(X,F),Pe(),ce&&Be()}function G(F){const{onSearch:X}=e;X&&de(X,F)}function oe(F){const{onScroll:X}=e;X&&de(X,F)}function me(){var F;const{remote:X,multiple:ce}=e;if(X){const{value:Pe}=H;if(ce){const{valueField:ke}=e;(F=V.value)===null||F===void 0||F.forEach(Te=>{Pe.set(Te[ke],Te)})}else{const ke=E.value;ke&&Pe.set(ke[e.valueField],ke)}}}function be(F){const{onUpdateShow:X,"onUpdate:show":ce}=e;X&&de(X,F),ce&&de(ce,F),v.value=F}function Be(){te.value||(be(!0),v.value=!0,e.filterable&&Co())}function T(){be(!1)}function fe(){u.value="",C.value=R}const we=M(!1);function Me(){e.filterable&&(we.value=!0)}function ne(){e.filterable&&(we.value=!1,h.value||fe())}function Ce(){te.value||(h.value?e.filterable?Co():T():Be())}function ge(F){var X,ce;!((ce=(X=y.value)===null||X===void 0?void 0:X.selfRef)===null||ce===void 0)&&ce.contains(F.relatedTarget)||(c.value=!1,ie(F),T())}function Ee(F){B(F),c.value=!0}function Q(F){c.value=!0}function ve(F){var X;!((X=m.value)===null||X===void 0)&&X.$el.contains(F.relatedTarget)||(c.value=!1,ie(F),T())}function ze(){var F;(F=m.value)===null||F===void 0||F.focus(),T()}function U(F){var X;h.value&&(!((X=m.value)===null||X===void 0)&&X.$el.contains(tr(F))||T())}function q(F){if(!Array.isArray(F))return[];if(k.value)return Array.from(F);{const{remote:X}=e,{value:ce}=p;if(X){const{value:Pe}=H;return F.filter(ke=>ce.has(ke)||Pe.has(ke))}else return F.filter(Pe=>ce.has(Pe))}}function pe(F){Se(F.rawNode)}function Se(F){if(te.value)return;const{tag:X,remote:ce,clearFilterAfterSelect:Pe,valueField:ke}=e;if(X&&!ce){const{value:Te}=C,Fe=Te[0]||null;if(Fe){const He=z.value;He.length?He.push(Fe):z.value=[Fe],C.value=R}}if(ce&&H.value.set(F[ke],F),e.multiple){const Te=q(d.value),Fe=Te.findIndex(He=>He===F[ke]);if(~Fe){if(Te.splice(Fe,1),X&&!ce){const He=J(F[ke]);~He&&(z.value.splice(He,1),Pe&&(u.value=""))}}else Te.push(F[ke]),Pe&&(u.value="");se(Te,j(Te))}else{if(X&&!ce){const Te=J(F[ke]);~Te?z.value=[z.value[Te]]:z.value=R}xo(),T(),se(F[ke],F)}}function J(F){return z.value.findIndex(ce=>ce[e.valueField]===F)}function he(F){h.value||Be();const{value:X}=F.target;u.value=X;const{tag:ce,remote:Pe}=e;if(G(X),ce&&!Pe){if(!X){C.value=R;return}const{onCreate:ke}=e,Te=ke?ke(X):{[e.labelField]:X,[e.valueField]:X},{valueField:Fe,labelField:He}=e;I.value.some(qe=>qe[Fe]===Te[Fe]||qe[He]===Te[He])||z.value.some(qe=>qe[Fe]===Te[Fe]||qe[He]===Te[He])?C.value=R:C.value=[Te]}}function Ne(F){F.stopPropagation();const{multiple:X}=e;!X&&e.filterable&&T(),O(),X?se([],[]):se(null,null)}function no(F){!ot(F,"action")&&!ot(F,"empty")&&F.preventDefault()}function Ro(F){oe(F)}function Oo(F){var X,ce,Pe,ke,Te;if(!e.keyboard){F.preventDefault();return}switch(F.key){case" ":if(e.filterable)break;F.preventDefault();case"Enter":if(!(!((X=m.value)===null||X===void 0)&&X.isComposing)){if(h.value){const Fe=(ce=y.value)===null||ce===void 0?void 0:ce.getPendingTmNode();Fe?pe(Fe):e.filterable||(T(),xo())}else if(Be(),e.tag&&we.value){const Fe=C.value[0];if(Fe){const He=Fe[e.valueField],{value:qe}=d;e.multiple&&Array.isArray(qe)&&qe.some(go=>go===He)||Se(Fe)}}}F.preventDefault();break;case"ArrowUp":if(F.preventDefault(),e.loading)return;h.value&&((Pe=y.value)===null||Pe===void 0||Pe.prev());break;case"ArrowDown":if(F.preventDefault(),e.loading)return;h.value?(ke=y.value)===null||ke===void 0||ke.next():Be();break;case"Escape":h.value&&(_d(F),T()),(Te=m.value)===null||Te===void 0||Te.focus();break}}function xo(){var F;(F=m.value)===null||F===void 0||F.focus()}function Co(){var F;(F=m.value)===null||F===void 0||F.focusInput()}function Eo(){var F;h.value&&((F=x.value)===null||F===void 0||F.syncPosition())}me(),Xe(le(e,"options"),me);const _o={focus:()=>{var F;(F=m.value)===null||F===void 0||F.focus()},focusInput:()=>{var F;(F=m.value)===null||F===void 0||F.focusInput()},blur:()=>{var F;(F=m.value)===null||F===void 0||F.blur()},blurInput:()=>{var F;(F=m.value)===null||F===void 0||F.blurInput()}},fo=$(()=>{const{self:{menuBoxShadow:F}}=l.value;return{"--n-menu-box-shadow":F}}),vo=n?We("select",void 0,fo,e):void 0;return Object.assign(Object.assign({},_o),{mergedStatus:xe,mergedClsPrefix:o,mergedBordered:t,namespace:r,treeMate:f,isMounted:$t(),triggerRef:m,menuRef:y,pattern:u,uncontrolledShow:v,mergedShow:h,adjustedTo:Fo(e),uncontrolledValue:a,mergedValue:d,followerRef:x,localizedPlaceholder:_,selectedOption:E,selectedOptions:V,mergedSize:K,mergedDisabled:te,focused:c,activeWithoutMenuOpen:we,inlineThemeDisabled:n,onTriggerInputFocus:Me,onTriggerInputBlur:ne,handleTriggerOrMenuResize:Eo,handleMenuFocus:Q,handleMenuBlur:ve,handleMenuTabOut:ze,handleTriggerClick:Ce,handleToggle:pe,handleDeleteOption:Se,handlePatternInput:he,handleClear:Ne,handleTriggerBlur:ge,handleTriggerFocus:Ee,handleKeydown:Oo,handleMenuAfterLeave:fe,handleMenuClickOutside:U,handleMenuScroll:Ro,handleMenuKeydown:Oo,handleMenuMousedown:no,mergedTheme:l,cssVars:n?void 0:fo,themeClass:vo==null?void 0:vo.themeClass,onRender:vo==null?void 0:vo.onRender})},render(){return i("div",{class:`${this.mergedClsPrefix}-select`},i(Or,null,{default:()=>[i(Fr,null,{default:()=>i(du,{ref:"triggerRef",inlineThemeDisabled:this.inlineThemeDisabled,status:this.mergedStatus,inputProps:this.inputProps,clsPrefix:this.mergedClsPrefix,showArrow:this.showArrow,maxTagCount:this.maxTagCount,ellipsisTagPopoverProps:this.ellipsisTagPopoverProps,bordered:this.mergedBordered,active:this.activeWithoutMenuOpen||this.mergedShow,pattern:this.pattern,placeholder:this.localizedPlaceholder,selectedOption:this.selectedOption,selectedOptions:this.selectedOptions,multiple:this.multiple,renderTag:this.renderTag,renderLabel:this.renderLabel,filterable:this.filterable,clearable:this.clearable,disabled:this.mergedDisabled,size:this.mergedSize,theme:this.mergedTheme.peers.InternalSelection,labelField:this.labelField,valueField:this.valueField,themeOverrides:this.mergedTheme.peerOverrides.InternalSelection,loading:this.loading,focused:this.focused,onClick:this.handleTriggerClick,onDeleteOption:this.handleDeleteOption,onPatternInput:this.handlePatternInput,onClear:this.handleClear,onBlur:this.handleTriggerBlur,onFocus:this.handleTriggerFocus,onKeydown:this.handleKeydown,onPatternBlur:this.onTriggerInputBlur,onPatternFocus:this.onTriggerInputFocus,onResize:this.handleTriggerOrMenuResize,ignoreComposition:this.ignoreComposition},{arrow:()=>{var e,o;return[(o=(e=this.$slots).arrow)===null||o===void 0?void 0:o.call(e)]}})}),i(Tr,{ref:"followerRef",show:this.mergedShow,to:this.adjustedTo,teleportDisabled:this.adjustedTo===Fo.tdkey,containerClass:this.namespace,width:this.consistentMenuWidth?"target":void 0,minWidth:"target",placement:this.placement},{default:()=>i(lo,{name:"fade-in-scale-up-transition",appear:this.isMounted,onAfterLeave:this.handleMenuAfterLeave},{default:()=>{var e,o,t;return this.mergedShow||this.displayDirective==="show"?((e=this.onRender)===null||e===void 0||e.call(this),Lo(i(Fn,Object.assign({},this.menuProps,{ref:"menuRef",onResize:this.handleTriggerOrMenuResize,inlineThemeDisabled:this.inlineThemeDisabled,virtualScroll:this.consistentMenuWidth&&this.virtualScroll,class:[`${this.mergedClsPrefix}-select-menu`,this.themeClass,(o=this.menuProps)===null||o===void 0?void 0:o.class],clsPrefix:this.mergedClsPrefix,focusable:!0,labelField:this.labelField,valueField:this.valueField,autoPending:!0,nodeProps:this.nodeProps,theme:this.mergedTheme.peers.InternalSelectMenu,themeOverrides:this.mergedTheme.peerOverrides.InternalSelectMenu,treeMate:this.treeMate,multiple:this.multiple,size:"medium",renderOption:this.renderOption,renderLabel:this.renderLabel,value:this.mergedValue,style:[(t=this.menuProps)===null||t===void 0?void 0:t.style,this.cssVars],onToggle:this.handleToggle,onScroll:this.handleMenuScroll,onFocus:this.handleMenuFocus,onBlur:this.handleMenuBlur,onKeydown:this.handleMenuKeydown,onTabOut:this.handleMenuTabOut,onMousedown:this.handleMenuMousedown,show:this.mergedShow,showCheckmark:this.showCheckmark,resetMenuOnOptionsChange:this.resetMenuOnOptionsChange}),{empty:()=>{var r,n;return[(n=(r=this.$slots).empty)===null||n===void 0?void 0:n.call(r)]},header:()=>{var r,n;return[(n=(r=this.$slots).header)===null||n===void 0?void 0:n.call(r)]},action:()=>{var r,n;return[(n=(r=this.$slots).action)===null||n===void 0?void 0:n.call(r)]}}),this.displayDirective==="show"?[[Go,this.mergedShow],[At,this.handleMenuClickOutside,void 0,{capture:!0}]]:[[At,this.handleMenuClickOutside,void 0,{capture:!0}]])):null}})})]}))}}),hh={itemPaddingSmall:"0 4px",itemMarginSmall:"0 0 0 8px",itemMarginSmallRtl:"0 8px 0 0",itemPaddingMedium:"0 4px",itemMarginMedium:"0 0 0 8px",itemMarginMediumRtl:"0 8px 0 0",itemPaddingLarge:"0 4px",itemMarginLarge:"0 0 0 8px",itemMarginLargeRtl:"0 8px 0 0",buttonIconSizeSmall:"14px",buttonIconSizeMedium:"16px",buttonIconSizeLarge:"18px",inputWidthSmall:"60px",selectWidthSmall:"unset",inputMarginSmall:"0 0 0 8px",inputMarginSmallRtl:"0 8px 0 0",selectMarginSmall:"0 0 0 8px",prefixMarginSmall:"0 8px 0 0",suffixMarginSmall:"0 0 0 8px",inputWidthMedium:"60px",selectWidthMedium:"unset",inputMarginMedium:"0 0 0 8px",inputMarginMediumRtl:"0 8px 0 0",selectMarginMedium:"0 0 0 8px",prefixMarginMedium:"0 8px 0 0",suffixMarginMedium:"0 0 0 8px",inputWidthLarge:"60px",selectWidthLarge:"unset",inputMarginLarge:"0 0 0 8px",inputMarginLargeRtl:"0 8px 0 0",selectMarginLarge:"0 0 0 8px",prefixMarginLarge:"0 8px 0 0",suffixMarginLarge:"0 0 0 8px"},da=e=>{const{textColor2:o,primaryColor:t,primaryColorHover:r,primaryColorPressed:n,inputColorDisabled:l,textColorDisabled:a,borderColor:s,borderRadius:d,fontSizeTiny:c,fontSizeSmall:u,fontSizeMedium:f,heightTiny:p,heightSmall:v,heightMedium:h}=e;return Object.assign(Object.assign({},hh),{buttonColor:"#0000",buttonColorHover:"#0000",buttonColorPressed:"#0000",buttonBorder:`1px solid ${s}`,buttonBorderHover:`1px solid ${s}`,buttonBorderPressed:`1px solid ${s}`,buttonIconColor:o,buttonIconColorHover:o,buttonIconColorPressed:o,itemTextColor:o,itemTextColorHover:r,itemTextColorPressed:n,itemTextColorActive:t,itemTextColorDisabled:a,itemColor:"#0000",itemColorHover:"#0000",itemColorPressed:"#0000",itemColorActive:"#0000",itemColorActiveHover:"#0000",itemColorDisabled:l,itemBorder:"1px solid #0000",itemBorderHover:"1px solid #0000",itemBorderPressed:"1px solid #0000",itemBorderActive:`1px solid ${t}`,itemBorderDisabled:`1px solid ${s}`,itemBorderRadius:d,itemSizeSmall:p,itemSizeMedium:v,itemSizeLarge:h,itemFontSizeSmall:c,itemFontSizeMedium:u,itemFontSizeLarge:f,jumperFontSizeSmall:c,jumperFontSizeMedium:u,jumperFontSizeLarge:f,jumperTextColor:o,jumperTextColorDisabled:a})},ph={name:"Pagination",common:Ae,peers:{Select:aa,Input:br,Popselect:Mn},self:da},vh=ph,gh={name:"Pagination",common:ue,peers:{Select:sa,Input:Ao,Popselect:na},self(e){const{primaryColor:o,opacity3:t}=e,r=ee(o,{alpha:Number(t)}),n=da(e);return n.itemBorderActive=`1px solid ${r}`,n.itemBorderDisabled="1px solid #0000",n}},ca=gh,mh=e=>{var o;if(!e)return 10;const{defaultPageSize:t}=e;if(t!==void 0)return t;const r=(o=e.pageSizes)===null||o===void 0?void 0:o[0];return typeof r=="number"?r:(r==null?void 0:r.value)||10};function bh(e,o,t,r){let n=!1,l=!1,a=1,s=o;if(o===1)return{hasFastBackward:!1,hasFastForward:!1,fastForwardTo:s,fastBackwardTo:a,items:[{type:"page",label:1,active:e===1,mayBeFastBackward:!1,mayBeFastForward:!1}]};if(o===2)return{hasFastBackward:!1,hasFastForward:!1,fastForwardTo:s,fastBackwardTo:a,items:[{type:"page",label:1,active:e===1,mayBeFastBackward:!1,mayBeFastForward:!1},{type:"page",label:2,active:e===2,mayBeFastBackward:!0,mayBeFastForward:!1}]};const d=1,c=o;let u=e,f=e;const p=(t-5)/2;f+=Math.ceil(p),f=Math.min(Math.max(f,d+t-3),c-2),u-=Math.floor(p),u=Math.max(Math.min(u,c-t+3),d+2);let v=!1,h=!1;u>d+2&&(v=!0),f=d+1&&m.push({type:"page",label:d+1,mayBeFastBackward:!0,mayBeFastForward:!1,active:e===d+1});for(let x=u;x<=f;++x)m.push({type:"page",label:x,mayBeFastBackward:!1,mayBeFastForward:!1,active:e===x});return h?(l=!0,s=f+1,m.push({type:"fast-forward",active:!1,label:void 0,options:r?Ri(f+1,c-1):null})):f===c-2&&m[m.length-1].label!==c-1&&m.push({type:"page",mayBeFastForward:!0,mayBeFastBackward:!1,label:c-1,active:e===c-1}),m[m.length-1].label!==c&&m.push({type:"page",mayBeFastForward:!1,mayBeFastBackward:!1,label:c,active:e===c}),{hasFastBackward:n,hasFastForward:l,fastBackwardTo:a,fastForwardTo:s,items:m}}function Ri(e,o){const t=[];for(let r=e;r<=o;++r)t.push({label:`${r}`,value:r});return t}const ki=` + background: var(--n-item-color-hover); + color: var(--n-item-text-color-hover); + border: var(--n-item-border-hover); +`,Ii=[P("button",` + background: var(--n-button-color-hover); + border: var(--n-button-border-hover); + color: var(--n-button-icon-color-hover); + `)],xh=g("pagination",` + display: flex; + vertical-align: middle; + font-size: var(--n-item-font-size); + flex-wrap: nowrap; +`,[g("pagination-prefix",` + display: flex; + align-items: center; + margin: var(--n-prefix-margin); + `),g("pagination-suffix",` + display: flex; + align-items: center; + margin: var(--n-suffix-margin); + `),w("> *:not(:first-child)",` + margin: var(--n-item-margin); + `),g("select",` + width: var(--n-select-width); + `),w("&.transition-disabled",[g("pagination-item","transition: none!important;")]),g("pagination-quick-jumper",` + white-space: nowrap; + display: flex; + color: var(--n-jumper-text-color); + transition: color .3s var(--n-bezier); + align-items: center; + font-size: var(--n-jumper-font-size); + `,[g("input",` + margin: var(--n-input-margin); + width: var(--n-input-width); + `)]),g("pagination-item",` + position: relative; + cursor: pointer; + user-select: none; + -webkit-user-select: none; + display: flex; + align-items: center; + justify-content: center; + box-sizing: border-box; + min-width: var(--n-item-size); + height: var(--n-item-size); + padding: var(--n-item-padding); + background-color: var(--n-item-color); + color: var(--n-item-text-color); + border-radius: var(--n-item-border-radius); + border: var(--n-item-border); + fill: var(--n-button-icon-color); + transition: + color .3s var(--n-bezier), + border-color .3s var(--n-bezier), + background-color .3s var(--n-bezier), + fill .3s var(--n-bezier); + `,[P("button",` + background: var(--n-button-color); + color: var(--n-button-icon-color); + border: var(--n-button-border); + padding: 0; + `,[g("base-icon",` + font-size: var(--n-button-icon-size); + `)]),Ve("disabled",[P("hover",ki,Ii),w("&:hover",ki,Ii),w("&:active",` + background: var(--n-item-color-pressed); + color: var(--n-item-text-color-pressed); + border: var(--n-item-border-pressed); + `,[P("button",` + background: var(--n-button-color-pressed); + border: var(--n-button-border-pressed); + color: var(--n-button-icon-color-pressed); + `)]),P("active",` + background: var(--n-item-color-active); + color: var(--n-item-text-color-active); + border: var(--n-item-border-active); + `,[w("&:hover",` + background: var(--n-item-color-active-hover); + `)])]),P("disabled",` + cursor: not-allowed; + color: var(--n-item-text-color-disabled); + `,[P("active, button",` + background-color: var(--n-item-color-disabled); + border: var(--n-item-border-disabled); + `)])]),P("disabled",` + cursor: not-allowed; + `,[g("pagination-quick-jumper",` + color: var(--n-jumper-text-color-disabled); + `)]),P("simple",` + display: flex; + align-items: center; + flex-wrap: nowrap; + `,[g("pagination-quick-jumper",[g("input",` + margin: 0; + `)])])]),Ch=Object.assign(Object.assign({},ae.props),{simple:Boolean,page:Number,defaultPage:{type:Number,default:1},itemCount:Number,pageCount:Number,defaultPageCount:{type:Number,default:1},showSizePicker:Boolean,pageSize:Number,defaultPageSize:Number,pageSizes:{type:Array,default(){return[10]}},showQuickJumper:Boolean,size:{type:String,default:"medium"},disabled:Boolean,pageSlot:{type:Number,default:9},selectProps:Object,prev:Function,next:Function,goto:Function,prefix:Function,suffix:Function,label:Function,displayOrder:{type:Array,default:["pages","size-picker","quick-jumper"]},to:Fo.propTo,showQuickJumpDropdown:{type:Boolean,default:!0},"onUpdate:page":[Function,Array],onUpdatePage:[Function,Array],"onUpdate:pageSize":[Function,Array],onUpdatePageSize:[Function,Array],onPageSizeChange:[Function,Array],onChange:[Function,Array]}),A1=Z({name:"Pagination",props:Ch,setup(e){const{mergedComponentPropsRef:o,mergedClsPrefixRef:t,inlineThemeDisabled:r,mergedRtlRef:n}=Ie(e),l=ae("Pagination","-pagination",xh,vh,e,t),{localeRef:a}=Yo("Pagination"),s=M(null),d=M(e.defaultPage),c=M(mh(e)),u=uo(le(e,"page"),d),f=uo(le(e,"pageSize"),c),p=$(()=>{const{itemCount:T}=e;if(T!==void 0)return Math.max(1,Math.ceil(T/f.value));const{pageCount:fe}=e;return fe!==void 0?Math.max(fe,1):1}),v=M("");oo(()=>{e.simple,v.value=String(u.value)});const h=M(!1),m=M(!1),x=M(!1),y=M(!1),b=()=>{e.disabled||(h.value=!0,E())},_=()=>{e.disabled||(h.value=!1,E())},I=()=>{m.value=!0,E()},R=()=>{m.value=!1,E()},z=T=>{Y(T)},C=$(()=>bh(u.value,p.value,e.pageSlot,e.showQuickJumpDropdown));oo(()=>{C.value.hasFastBackward?C.value.hasFastForward||(h.value=!1,x.value=!1):(m.value=!1,y.value=!1)});const H=$(()=>{const T=a.value.selectionSuffix;return e.pageSizes.map(fe=>typeof fe=="number"?{label:`${fe} / ${T}`,value:fe}:fe)}),k=$(()=>{var T,fe;return((fe=(T=o==null?void 0:o.value)===null||T===void 0?void 0:T.Pagination)===null||fe===void 0?void 0:fe.inputSize)||ti(e.size)}),D=$(()=>{var T,fe;return((fe=(T=o==null?void 0:o.value)===null||T===void 0?void 0:T.Pagination)===null||fe===void 0?void 0:fe.selectSize)||ti(e.size)}),W=$(()=>(u.value-1)*f.value),L=$(()=>{const T=u.value*f.value-1,{itemCount:fe}=e;return fe!==void 0&&T>fe-1?fe-1:T}),j=$(()=>{const{itemCount:T}=e;return T!==void 0?T:(e.pageCount||1)*f.value}),V=eo("Pagination",n,t),E=()=>{ao(()=>{var T;const{value:fe}=s;fe&&(fe.classList.add("transition-disabled"),(T=s.value)===null||T===void 0||T.offsetWidth,fe.classList.remove("transition-disabled"))})};function Y(T){if(T===u.value)return;const{"onUpdate:page":fe,onUpdatePage:we,onChange:Me,simple:ne}=e;fe&&de(fe,T),we&&de(we,T),Me&&de(Me,T),d.value=T,ne&&(v.value=String(T))}function K(T){if(T===f.value)return;const{"onUpdate:pageSize":fe,onUpdatePageSize:we,onPageSizeChange:Me}=e;fe&&de(fe,T),we&&de(we,T),Me&&de(Me,T),c.value=T,p.value{u.value,f.value,E()});const be=$(()=>{const{size:T}=e,{self:{buttonBorder:fe,buttonBorderHover:we,buttonBorderPressed:Me,buttonIconColor:ne,buttonIconColorHover:Ce,buttonIconColorPressed:ge,itemTextColor:Ee,itemTextColorHover:Q,itemTextColorPressed:ve,itemTextColorActive:ze,itemTextColorDisabled:U,itemColor:q,itemColorHover:pe,itemColorPressed:Se,itemColorActive:J,itemColorActiveHover:he,itemColorDisabled:Ne,itemBorder:no,itemBorderHover:Ro,itemBorderPressed:Oo,itemBorderActive:xo,itemBorderDisabled:Co,itemBorderRadius:Eo,jumperTextColor:_o,jumperTextColorDisabled:fo,buttonColor:vo,buttonColorHover:F,buttonColorPressed:X,[N("itemPadding",T)]:ce,[N("itemMargin",T)]:Pe,[N("inputWidth",T)]:ke,[N("selectWidth",T)]:Te,[N("inputMargin",T)]:Fe,[N("selectMargin",T)]:He,[N("jumperFontSize",T)]:qe,[N("prefixMargin",T)]:go,[N("suffixMargin",T)]:lt,[N("itemSize",T)]:ft,[N("buttonIconSize",T)]:Vo,[N("itemFontSize",T)]:Uo,[`${N("itemMargin",T)}Rtl`]:ht,[`${N("inputMargin",T)}Rtl`]:pt},common:{cubicBezierEaseInOut:at}}=l.value;return{"--n-prefix-margin":go,"--n-suffix-margin":lt,"--n-item-font-size":Uo,"--n-select-width":Te,"--n-select-margin":He,"--n-input-width":ke,"--n-input-margin":Fe,"--n-input-margin-rtl":pt,"--n-item-size":ft,"--n-item-text-color":Ee,"--n-item-text-color-disabled":U,"--n-item-text-color-hover":Q,"--n-item-text-color-active":ze,"--n-item-text-color-pressed":ve,"--n-item-color":q,"--n-item-color-hover":pe,"--n-item-color-disabled":Ne,"--n-item-color-active":J,"--n-item-color-active-hover":he,"--n-item-color-pressed":Se,"--n-item-border":no,"--n-item-border-hover":Ro,"--n-item-border-disabled":Co,"--n-item-border-active":xo,"--n-item-border-pressed":Oo,"--n-item-padding":ce,"--n-item-border-radius":Eo,"--n-bezier":at,"--n-jumper-font-size":qe,"--n-jumper-text-color":_o,"--n-jumper-text-color-disabled":fo,"--n-item-margin":Pe,"--n-item-margin-rtl":ht,"--n-button-icon-size":Vo,"--n-button-icon-color":ne,"--n-button-icon-color-hover":Ce,"--n-button-icon-color-pressed":ge,"--n-button-color-hover":F,"--n-button-color":vo,"--n-button-color-pressed":X,"--n-button-border":fe,"--n-button-border-hover":we,"--n-button-border-pressed":Me}}),Be=r?We("pagination",$(()=>{let T="";const{size:fe}=e;return T+=fe[0],T}),be,e):void 0;return{rtlEnabled:V,mergedClsPrefix:t,locale:a,selfRef:s,mergedPage:u,pageItems:$(()=>C.value.items),mergedItemCount:j,jumperValue:v,pageSizeOptions:H,mergedPageSize:f,inputSize:k,selectSize:D,mergedTheme:l,mergedPageCount:p,startIndex:W,endIndex:L,showFastForwardMenu:x,showFastBackwardMenu:y,fastForwardActive:h,fastBackwardActive:m,handleMenuSelect:z,handleFastForwardMouseenter:b,handleFastForwardMouseleave:_,handleFastBackwardMouseenter:I,handleFastBackwardMouseleave:R,handleJumperInput:me,handleBackwardClick:xe,handleForwardClick:te,handlePageItemClick:oe,handleSizePickerChange:O,handleQuickJumperChange:G,cssVars:r?void 0:be,themeClass:Be==null?void 0:Be.themeClass,onRender:Be==null?void 0:Be.onRender}},render(){const{$slots:e,mergedClsPrefix:o,disabled:t,cssVars:r,mergedPage:n,mergedPageCount:l,pageItems:a,showSizePicker:s,showQuickJumper:d,mergedTheme:c,locale:u,inputSize:f,selectSize:p,mergedPageSize:v,pageSizeOptions:h,jumperValue:m,simple:x,prev:y,next:b,prefix:_,suffix:I,label:R,goto:z,handleJumperInput:C,handleSizePickerChange:H,handleBackwardClick:k,handlePageItemClick:D,handleForwardClick:W,handleQuickJumperChange:L,onRender:j}=this;j==null||j();const V=e.prefix||_,E=e.suffix||I,Y=y||e.prev,K=b||e.next,te=R||e.label;return i("div",{ref:"selfRef",class:[`${o}-pagination`,this.themeClass,this.rtlEnabled&&`${o}-pagination--rtl`,t&&`${o}-pagination--disabled`,x&&`${o}-pagination--simple`],style:r},V?i("div",{class:`${o}-pagination-prefix`},V({page:n,pageSize:v,pageCount:l,startIndex:this.startIndex,endIndex:this.endIndex,itemCount:this.mergedItemCount})):null,this.displayOrder.map(xe=>{switch(xe){case"pages":return i(co,null,i("div",{class:[`${o}-pagination-item`,!Y&&`${o}-pagination-item--button`,(n<=1||n>l||t)&&`${o}-pagination-item--disabled`],onClick:k},Y?Y({page:n,pageSize:v,pageCount:l,startIndex:this.startIndex,endIndex:this.endIndex,itemCount:this.mergedItemCount}):i(Le,{clsPrefix:o},{default:()=>this.rtlEnabled?i(vi,null):i(fi,null)})),x?i(co,null,i("div",{class:`${o}-pagination-quick-jumper`},i(zt,{value:m,onUpdateValue:C,size:f,placeholder:"",disabled:t,theme:c.peers.Input,themeOverrides:c.peerOverrides.Input,onChange:L}))," / ",l):a.map((se,ie)=>{let O,B,G;const{type:oe}=se;switch(oe){case"page":const be=se.label;te?O=te({type:"page",node:be,active:se.active}):O=be;break;case"fast-forward":const Be=this.fastForwardActive?i(Le,{clsPrefix:o},{default:()=>this.rtlEnabled?i(hi,null):i(pi,null)}):i(Le,{clsPrefix:o},{default:()=>i(gi,null)});te?O=te({type:"fast-forward",node:Be,active:this.fastForwardActive||this.showFastForwardMenu}):O=Be,B=this.handleFastForwardMouseenter,G=this.handleFastForwardMouseleave;break;case"fast-backward":const T=this.fastBackwardActive?i(Le,{clsPrefix:o},{default:()=>this.rtlEnabled?i(pi,null):i(hi,null)}):i(Le,{clsPrefix:o},{default:()=>i(gi,null)});te?O=te({type:"fast-backward",node:T,active:this.fastBackwardActive||this.showFastBackwardMenu}):O=T,B=this.handleFastBackwardMouseenter,G=this.handleFastBackwardMouseleave;break}const me=i("div",{key:ie,class:[`${o}-pagination-item`,se.active&&`${o}-pagination-item--active`,oe!=="page"&&(oe==="fast-backward"&&this.showFastBackwardMenu||oe==="fast-forward"&&this.showFastForwardMenu)&&`${o}-pagination-item--hover`,t&&`${o}-pagination-item--disabled`,oe==="page"&&`${o}-pagination-item--clickable`],onClick:()=>{D(se)},onMouseenter:B,onMouseleave:G},O);if(oe==="page"&&!se.mayBeFastBackward&&!se.mayBeFastForward)return me;{const be=se.type==="page"?se.mayBeFastBackward?"fast-backward":"fast-forward":se.type;return se.type!=="page"&&!se.options?me:i(ah,{to:this.to,key:be,disabled:t,trigger:"hover",virtualScroll:!0,style:{width:"60px"},theme:c.peers.Popselect,themeOverrides:c.peerOverrides.Popselect,builtinThemeOverrides:{peers:{InternalSelectMenu:{height:"calc(var(--n-option-height) * 4.6)"}}},nodeProps:()=>({style:{justifyContent:"center"}}),show:oe==="page"?!1:oe==="fast-backward"?this.showFastBackwardMenu:this.showFastForwardMenu,onUpdateShow:Be=>{oe!=="page"&&(Be?oe==="fast-backward"?this.showFastBackwardMenu=Be:this.showFastForwardMenu=Be:(this.showFastBackwardMenu=!1,this.showFastForwardMenu=!1))},options:se.type!=="page"&&se.options?se.options:[],onUpdateValue:this.handleMenuSelect,scrollable:!0,showCheckmark:!1},{default:()=>me})}}),i("div",{class:[`${o}-pagination-item`,!K&&`${o}-pagination-item--button`,{[`${o}-pagination-item--disabled`]:n<1||n>=l||t}],onClick:W},K?K({page:n,pageSize:v,pageCount:l,itemCount:this.mergedItemCount,startIndex:this.startIndex,endIndex:this.endIndex}):i(Le,{clsPrefix:o},{default:()=>this.rtlEnabled?i(fi,null):i(vi,null)})));case"size-picker":return!x&&s?i(fh,Object.assign({consistentMenuWidth:!1,placeholder:"",showCheckmark:!1,to:this.to},this.selectProps,{size:p,options:h,value:v,disabled:t,theme:c.peers.Select,themeOverrides:c.peerOverrides.Select,onUpdateValue:H})):null;case"quick-jumper":return!x&&d?i("div",{class:`${o}-pagination-quick-jumper`},z?z():so(this.$slots.goto,()=>[u.goto]),i(zt,{value:m,onUpdateValue:C,size:f,placeholder:"",disabled:t,theme:c.peers.Input,themeOverrides:c.peerOverrides.Input,onChange:L})):null;default:return null}}),E?i("div",{class:`${o}-pagination-suffix`},E({page:n,pageSize:v,pageCount:l,startIndex:this.startIndex,endIndex:this.endIndex,itemCount:this.mergedItemCount})):null)}}),ua={padding:"8px 14px"},yh={name:"Tooltip",common:ue,peers:{Popover:Bt},self(e){const{borderRadius:o,boxShadow2:t,popoverColor:r,textColor2:n}=e;return Object.assign(Object.assign({},ua),{borderRadius:o,boxShadow:t,color:r,textColor:n})}},Ar=yh,wh=e=>{const{borderRadius:o,boxShadow2:t,baseColor:r}=e;return Object.assign(Object.assign({},ua),{borderRadius:o,boxShadow:t,color:Re(r,"rgba(0, 0, 0, .85)"),textColor:r})},Sh={name:"Tooltip",common:Ae,peers:{Popover:qt},self:wh},Er=Sh,zh={name:"Ellipsis",common:ue,peers:{Tooltip:Ar}},fa=zh,$h={name:"Ellipsis",common:Ae,peers:{Tooltip:Er}},Ph=$h,ha={radioSizeSmall:"14px",radioSizeMedium:"16px",radioSizeLarge:"18px",labelPadding:"0 8px",labelFontWeight:"400"},Rh={name:"Radio",common:ue,self(e){const{borderColor:o,primaryColor:t,baseColor:r,textColorDisabled:n,inputColorDisabled:l,textColor2:a,opacityDisabled:s,borderRadius:d,fontSizeSmall:c,fontSizeMedium:u,fontSizeLarge:f,heightSmall:p,heightMedium:v,heightLarge:h,lineHeight:m}=e;return Object.assign(Object.assign({},ha),{labelLineHeight:m,buttonHeightSmall:p,buttonHeightMedium:v,buttonHeightLarge:h,fontSizeSmall:c,fontSizeMedium:u,fontSizeLarge:f,boxShadow:`inset 0 0 0 1px ${o}`,boxShadowActive:`inset 0 0 0 1px ${t}`,boxShadowFocus:`inset 0 0 0 1px ${t}, 0 0 0 2px ${ee(t,{alpha:.3})}`,boxShadowHover:`inset 0 0 0 1px ${t}`,boxShadowDisabled:`inset 0 0 0 1px ${o}`,color:"#0000",colorDisabled:l,colorActive:"#0000",textColor:a,textColorDisabled:n,dotColorActive:t,dotColorDisabled:o,buttonBorderColor:o,buttonBorderColorActive:t,buttonBorderColorHover:t,buttonColor:"#0000",buttonColorActive:t,buttonTextColor:a,buttonTextColorActive:r,buttonTextColorHover:t,opacityDisabled:s,buttonBoxShadowFocus:`inset 0 0 0 1px ${t}, 0 0 0 2px ${ee(t,{alpha:.3})}`,buttonBoxShadowHover:`inset 0 0 0 1px ${t}`,buttonBoxShadow:"inset 0 0 0 1px #0000",buttonBorderRadius:d})}},pa=Rh,kh=e=>{const{borderColor:o,primaryColor:t,baseColor:r,textColorDisabled:n,inputColorDisabled:l,textColor2:a,opacityDisabled:s,borderRadius:d,fontSizeSmall:c,fontSizeMedium:u,fontSizeLarge:f,heightSmall:p,heightMedium:v,heightLarge:h,lineHeight:m}=e;return Object.assign(Object.assign({},ha),{labelLineHeight:m,buttonHeightSmall:p,buttonHeightMedium:v,buttonHeightLarge:h,fontSizeSmall:c,fontSizeMedium:u,fontSizeLarge:f,boxShadow:`inset 0 0 0 1px ${o}`,boxShadowActive:`inset 0 0 0 1px ${t}`,boxShadowFocus:`inset 0 0 0 1px ${t}, 0 0 0 2px ${ee(t,{alpha:.2})}`,boxShadowHover:`inset 0 0 0 1px ${t}`,boxShadowDisabled:`inset 0 0 0 1px ${o}`,color:r,colorDisabled:l,colorActive:"#0000",textColor:a,textColorDisabled:n,dotColorActive:t,dotColorDisabled:o,buttonBorderColor:o,buttonBorderColorActive:t,buttonBorderColorHover:o,buttonColor:r,buttonColorActive:r,buttonTextColor:a,buttonTextColorActive:t,buttonTextColorHover:t,opacityDisabled:s,buttonBoxShadowFocus:`inset 0 0 0 1px ${t}, 0 0 0 2px ${ee(t,{alpha:.3})}`,buttonBoxShadowHover:"inset 0 0 0 1px #0000",buttonBoxShadow:"inset 0 0 0 1px #0000",buttonBorderRadius:d})},Ih={name:"Radio",common:Ae,self:kh},va=Ih,Bh={padding:"4px 0",optionIconSizeSmall:"14px",optionIconSizeMedium:"16px",optionIconSizeLarge:"16px",optionIconSizeHuge:"18px",optionSuffixWidthSmall:"14px",optionSuffixWidthMedium:"14px",optionSuffixWidthLarge:"16px",optionSuffixWidthHuge:"16px",optionIconSuffixWidthSmall:"32px",optionIconSuffixWidthMedium:"32px",optionIconSuffixWidthLarge:"36px",optionIconSuffixWidthHuge:"36px",optionPrefixWidthSmall:"14px",optionPrefixWidthMedium:"14px",optionPrefixWidthLarge:"16px",optionPrefixWidthHuge:"16px",optionIconPrefixWidthSmall:"36px",optionIconPrefixWidthMedium:"36px",optionIconPrefixWidthLarge:"40px",optionIconPrefixWidthHuge:"40px"},ga=e=>{const{primaryColor:o,textColor2:t,dividerColor:r,hoverColor:n,popoverColor:l,invertedColor:a,borderRadius:s,fontSizeSmall:d,fontSizeMedium:c,fontSizeLarge:u,fontSizeHuge:f,heightSmall:p,heightMedium:v,heightLarge:h,heightHuge:m,textColor3:x,opacityDisabled:y}=e;return Object.assign(Object.assign({},Bh),{optionHeightSmall:p,optionHeightMedium:v,optionHeightLarge:h,optionHeightHuge:m,borderRadius:s,fontSizeSmall:d,fontSizeMedium:c,fontSizeLarge:u,fontSizeHuge:f,optionTextColor:t,optionTextColorHover:t,optionTextColorActive:o,optionTextColorChildActive:o,color:l,dividerColor:r,suffixColor:t,prefixColor:t,optionColorHover:n,optionColorActive:ee(o,{alpha:.1}),groupHeaderTextColor:x,optionTextColorInverted:"#BBB",optionTextColorHoverInverted:"#FFF",optionTextColorActiveInverted:"#FFF",optionTextColorChildActiveInverted:"#FFF",colorInverted:a,dividerColorInverted:"#BBB",suffixColorInverted:"#BBB",prefixColorInverted:"#BBB",optionColorHoverInverted:o,optionColorActiveInverted:o,groupHeaderTextColorInverted:"#AAA",optionOpacityDisabled:y})},Th={name:"Dropdown",common:Ae,peers:{Popover:qt},self:ga},ma=Th,Fh={name:"Dropdown",common:ue,peers:{Popover:Bt},self(e){const{primaryColorSuppl:o,primaryColor:t,popoverColor:r}=e,n=ga(e);return n.colorInverted=r,n.optionColorActive=ee(t,{alpha:.15}),n.optionColorActiveInverted=o,n.optionColorHoverInverted=o,n}},Hn=Fh,Oh={thPaddingSmall:"8px",thPaddingMedium:"12px",thPaddingLarge:"12px",tdPaddingSmall:"8px",tdPaddingMedium:"12px",tdPaddingLarge:"12px",sorterSize:"15px",resizableContainerSize:"8px",resizableSize:"2px",filterSize:"15px",paginationMargin:"12px 0 0 0",emptyPadding:"48px 0",actionPadding:"8px 12px",actionButtonMargin:"0 8px 0 0"},_h=e=>{const{cardColor:o,modalColor:t,popoverColor:r,textColor2:n,textColor1:l,tableHeaderColor:a,tableColorHover:s,iconColor:d,primaryColor:c,fontWeightStrong:u,borderRadius:f,lineHeight:p,fontSizeSmall:v,fontSizeMedium:h,fontSizeLarge:m,dividerColor:x,heightSmall:y,opacityDisabled:b,tableColorStriped:_}=e;return Object.assign(Object.assign({},Oh),{actionDividerColor:x,lineHeight:p,borderRadius:f,fontSizeSmall:v,fontSizeMedium:h,fontSizeLarge:m,borderColor:Re(o,x),tdColorHover:Re(o,s),tdColorStriped:Re(o,_),thColor:Re(o,a),thColorHover:Re(Re(o,a),s),tdColor:o,tdTextColor:n,thTextColor:l,thFontWeight:u,thButtonColorHover:s,thIconColor:d,thIconColorActive:c,borderColorModal:Re(t,x),tdColorHoverModal:Re(t,s),tdColorStripedModal:Re(t,_),thColorModal:Re(t,a),thColorHoverModal:Re(Re(t,a),s),tdColorModal:t,borderColorPopover:Re(r,x),tdColorHoverPopover:Re(r,s),tdColorStripedPopover:Re(r,_),thColorPopover:Re(r,a),thColorHoverPopover:Re(Re(r,a),s),tdColorPopover:r,boxShadowBefore:"inset -12px 0 8px -12px rgba(0, 0, 0, .18)",boxShadowAfter:"inset 12px 0 8px -12px rgba(0, 0, 0, .18)",loadingColor:c,loadingSize:y,opacityLoading:b})},Mh={name:"DataTable",common:ue,peers:{Button:Po,Checkbox:Xt,Radio:pa,Pagination:ca,Scrollbar:$o,Empty:It,Popover:Bt,Ellipsis:fa,Dropdown:Hn},self(e){const o=_h(e);return o.boxShadowAfter="inset 12px 0 8px -12px rgba(0, 0, 0, .36)",o.boxShadowBefore="inset -12px 0 8px -12px rgba(0, 0, 0, .36)",o}},Dh=Mh,Hh=Object.assign(Object.assign({},St),ae.props),Ln=Z({name:"Tooltip",props:Hh,__popover__:!0,setup(e){const{mergedClsPrefixRef:o}=Ie(e),t=ae("Tooltip","-tooltip",void 0,Er,e,o),r=M(null);return Object.assign(Object.assign({},{syncPosition(){r.value.syncPosition()},setShow(l){r.value.setShow(l)}}),{popoverRef:r,mergedTheme:t,popoverThemeOverrides:$(()=>t.value.self)})},render(){const{mergedTheme:e,internalExtraClass:o}=this;return i(mr,Object.assign(Object.assign({},this.$props),{theme:e.peers.Popover,themeOverrides:e.peerOverrides.Popover,builtinThemeOverrides:this.popoverThemeOverrides,internalExtraClass:o.concat("tooltip"),ref:"popoverRef"}),this.$slots)}}),Lh=g("ellipsis",{overflow:"hidden"},[Ve("line-clamp",` + white-space: nowrap; + display: inline-block; + vertical-align: bottom; + max-width: 100%; + `),P("line-clamp",` + display: -webkit-inline-box; + -webkit-box-orient: vertical; + `),P("cursor-pointer",` + cursor: pointer; + `)]);function Bi(e){return`${e}-ellipsis--line-clamp`}function Ti(e,o){return`${e}-ellipsis--cursor-${o}`}const Ah=Object.assign(Object.assign({},ae.props),{expandTrigger:String,lineClamp:[Number,String],tooltip:{type:[Boolean,Object],default:!0}}),E1=Z({name:"Ellipsis",inheritAttrs:!1,props:Ah,setup(e,{slots:o,attrs:t}){const r=Wd(),n=ae("Ellipsis","-ellipsis",Lh,Ph,e,r),l=M(null),a=M(null),s=M(null),d=M(!1),c=$(()=>{const{lineClamp:x}=e,{value:y}=d;return x!==void 0?{textOverflow:"","-webkit-line-clamp":y?"":x}:{textOverflow:y?"":"ellipsis","-webkit-line-clamp":""}});function u(){let x=!1;const{value:y}=d;if(y)return!0;const{value:b}=l;if(b){const{lineClamp:_}=e;if(v(b),_!==void 0)x=b.scrollHeight<=b.offsetHeight;else{const{value:I}=a;I&&(x=I.getBoundingClientRect().width<=b.getBoundingClientRect().width)}h(b,x)}return x}const f=$(()=>e.expandTrigger==="click"?()=>{var x;const{value:y}=d;y&&((x=s.value)===null||x===void 0||x.setShow(!1)),d.value=!y}:void 0);Qi(()=>{var x;e.tooltip&&((x=s.value)===null||x===void 0||x.setShow(!1))});const p=()=>i("span",Object.assign({},To(t,{class:[`${r.value}-ellipsis`,e.lineClamp!==void 0?Bi(r.value):void 0,e.expandTrigger==="click"?Ti(r.value,"pointer"):void 0],style:c.value}),{ref:"triggerRef",onClick:f.value,onMouseenter:e.expandTrigger==="click"?u:void 0}),e.lineClamp?o:i("span",{ref:"triggerInnerRef"},o));function v(x){if(!x)return;const y=c.value,b=Bi(r.value);e.lineClamp!==void 0?m(x,b,"add"):m(x,b,"remove");for(const _ in y)x.style[_]!==y[_]&&(x.style[_]=y[_])}function h(x,y){const b=Ti(r.value,"pointer");e.expandTrigger==="click"&&!y?m(x,b,"add"):m(x,b,"remove")}function m(x,y,b){b==="add"?x.classList.contains(y)||x.classList.add(y):x.classList.contains(y)&&x.classList.remove(y)}return{mergedTheme:n,triggerRef:l,triggerInnerRef:a,tooltipRef:s,handleClick:f,renderTrigger:p,getTooltipDisabled:u}},render(){var e;const{tooltip:o,renderTrigger:t,$slots:r}=this;if(o){const{mergedTheme:n}=this;return i(Ln,Object.assign({ref:"tooltipRef",placement:"top"},o,{getDisabled:this.getTooltipDisabled,theme:n.peers.Tooltip,themeOverrides:n.peerOverrides.Tooltip}),{trigger:t,default:(e=r.tooltip)!==null&&e!==void 0?e:r.default})}else return t()}}),Eh={name:String,value:{type:[String,Number,Boolean],default:"on"},checked:{type:Boolean,default:void 0},defaultChecked:Boolean,disabled:{type:Boolean,default:void 0},label:String,size:String,onUpdateChecked:[Function,Array],"onUpdate:checked":[Function,Array],checkedValue:{type:Boolean,default:void 0}},ba="n-radio-group";function jh(e){const o=it(e,{mergedSize(b){const{size:_}=e;if(_!==void 0)return _;if(a){const{mergedSizeRef:{value:I}}=a;if(I!==void 0)return I}return b?b.mergedSize.value:"medium"},mergedDisabled(b){return!!(e.disabled||a!=null&&a.disabledRef.value||b!=null&&b.disabled.value)}}),{mergedSizeRef:t,mergedDisabledRef:r}=o,n=M(null),l=M(null),a=$e(ba,null),s=M(e.defaultChecked),d=le(e,"checked"),c=uo(d,s),u=Ue(()=>a?a.valueRef.value===e.value:c.value),f=Ue(()=>{const{name:b}=e;if(b!==void 0)return b;if(a)return a.nameRef.value}),p=M(!1);function v(){if(a){const{doUpdateValue:b}=a,{value:_}=e;de(b,_)}else{const{onUpdateChecked:b,"onUpdate:checked":_}=e,{nTriggerFormInput:I,nTriggerFormChange:R}=o;b&&de(b,!0),_&&de(_,!0),I(),R(),s.value=!0}}function h(){r.value||u.value||v()}function m(){h(),n.value&&(n.value.checked=u.value)}function x(){p.value=!1}function y(){p.value=!0}return{mergedClsPrefix:a?a.mergedClsPrefixRef:Ie(e).mergedClsPrefixRef,inputRef:n,labelRef:l,mergedName:f,mergedDisabled:r,renderSafeChecked:u,focus:p,mergedSize:t,handleRadioInputChange:m,handleRadioInputBlur:x,handleRadioInputFocus:y}}const Wh=g("radio",` + line-height: var(--n-label-line-height); + outline: none; + position: relative; + user-select: none; + -webkit-user-select: none; + display: inline-flex; + align-items: flex-start; + flex-wrap: nowrap; + font-size: var(--n-font-size); + word-break: break-word; +`,[P("checked",[S("dot",` + background-color: var(--n-color-active); + `)]),S("dot-wrapper",` + position: relative; + flex-shrink: 0; + flex-grow: 0; + width: var(--n-radio-size); + `),g("radio-input",` + position: absolute; + border: 0; + border-radius: inherit; + left: 0; + right: 0; + top: 0; + bottom: 0; + opacity: 0; + z-index: 1; + cursor: pointer; + `),S("dot",` + position: absolute; + top: 50%; + left: 0; + transform: translateY(-50%); + height: var(--n-radio-size); + width: var(--n-radio-size); + background: var(--n-color); + box-shadow: var(--n-box-shadow); + border-radius: 50%; + transition: + background-color .3s var(--n-bezier), + box-shadow .3s var(--n-bezier); + `,[w("&::before",` + content: ""; + opacity: 0; + position: absolute; + left: 4px; + top: 4px; + height: calc(100% - 8px); + width: calc(100% - 8px); + border-radius: 50%; + transform: scale(.8); + background: var(--n-dot-color-active); + transition: + opacity .3s var(--n-bezier), + background-color .3s var(--n-bezier), + transform .3s var(--n-bezier); + `),P("checked",{boxShadow:"var(--n-box-shadow-active)"},[w("&::before",` + opacity: 1; + transform: scale(1); + `)])]),S("label",` + color: var(--n-text-color); + padding: var(--n-label-padding); + font-weight: var(--n-label-font-weight); + display: inline-block; + transition: color .3s var(--n-bezier); + `),Ve("disabled",` + cursor: pointer; + `,[w("&:hover",[S("dot",{boxShadow:"var(--n-box-shadow-hover)"})]),P("focus",[w("&:not(:active)",[S("dot",{boxShadow:"var(--n-box-shadow-focus)"})])])]),P("disabled",` + cursor: not-allowed; + `,[S("dot",{boxShadow:"var(--n-box-shadow-disabled)",backgroundColor:"var(--n-color-disabled)"},[w("&::before",{backgroundColor:"var(--n-dot-color-disabled)"}),P("checked",` + opacity: 1; + `)]),S("label",{color:"var(--n-text-color-disabled)"}),g("radio-input",` + cursor: not-allowed; + `)])]),Nh=Object.assign(Object.assign({},ae.props),Eh),j1=Z({name:"Radio",props:Nh,setup(e){const o=jh(e),t=ae("Radio","-radio",Wh,va,e,o.mergedClsPrefix),r=$(()=>{const{mergedSize:{value:c}}=o,{common:{cubicBezierEaseInOut:u},self:{boxShadow:f,boxShadowActive:p,boxShadowDisabled:v,boxShadowFocus:h,boxShadowHover:m,color:x,colorDisabled:y,colorActive:b,textColor:_,textColorDisabled:I,dotColorActive:R,dotColorDisabled:z,labelPadding:C,labelLineHeight:H,labelFontWeight:k,[N("fontSize",c)]:D,[N("radioSize",c)]:W}}=t.value;return{"--n-bezier":u,"--n-label-line-height":H,"--n-label-font-weight":k,"--n-box-shadow":f,"--n-box-shadow-active":p,"--n-box-shadow-disabled":v,"--n-box-shadow-focus":h,"--n-box-shadow-hover":m,"--n-color":x,"--n-color-active":b,"--n-color-disabled":y,"--n-dot-color-active":R,"--n-dot-color-disabled":z,"--n-font-size":D,"--n-radio-size":W,"--n-text-color":_,"--n-text-color-disabled":I,"--n-label-padding":C}}),{inlineThemeDisabled:n,mergedClsPrefixRef:l,mergedRtlRef:a}=Ie(e),s=eo("Radio",a,l),d=n?We("radio",$(()=>o.mergedSize.value[0]),r,e):void 0;return Object.assign(o,{rtlEnabled:s,cssVars:n?void 0:r,themeClass:d==null?void 0:d.themeClass,onRender:d==null?void 0:d.onRender})},render(){const{$slots:e,mergedClsPrefix:o,onRender:t,label:r}=this;return t==null||t(),i("label",{class:[`${o}-radio`,this.themeClass,this.rtlEnabled&&`${o}-radio--rtl`,this.mergedDisabled&&`${o}-radio--disabled`,this.renderSafeChecked&&`${o}-radio--checked`,this.focus&&`${o}-radio--focus`],style:this.cssVars},i("input",{ref:"inputRef",type:"radio",class:`${o}-radio-input`,value:this.value,name:this.mergedName,checked:this.renderSafeChecked,disabled:this.mergedDisabled,onChange:this.handleRadioInputChange,onFocus:this.handleRadioInputFocus,onBlur:this.handleRadioInputBlur}),i("div",{class:`${o}-radio__dot-wrapper`}," ",i("div",{class:[`${o}-radio__dot`,this.renderSafeChecked&&`${o}-radio__dot--checked`]})),je(e.default,n=>!n&&!r?null:i("div",{ref:"labelRef",class:`${o}-radio__label`},n||r)))}}),Vh=g("radio-group",` + display: inline-block; + font-size: var(--n-font-size); +`,[S("splitor",` + display: inline-block; + vertical-align: bottom; + width: 1px; + transition: + background-color .3s var(--n-bezier), + opacity .3s var(--n-bezier); + background: var(--n-button-border-color); + `,[P("checked",{backgroundColor:"var(--n-button-border-color-active)"}),P("disabled",{opacity:"var(--n-opacity-disabled)"})]),P("button-group",` + white-space: nowrap; + height: var(--n-height); + line-height: var(--n-height); + `,[g("radio-button",{height:"var(--n-height)",lineHeight:"var(--n-height)"}),S("splitor",{height:"var(--n-height)"})]),g("radio-button",` + vertical-align: bottom; + outline: none; + position: relative; + user-select: none; + -webkit-user-select: none; + display: inline-block; + box-sizing: border-box; + padding-left: 14px; + padding-right: 14px; + white-space: nowrap; + transition: + background-color .3s var(--n-bezier), + opacity .3s var(--n-bezier), + border-color .3s var(--n-bezier), + color .3s var(--n-bezier); + background: var(--n-button-color); + color: var(--n-button-text-color); + border-top: 1px solid var(--n-button-border-color); + border-bottom: 1px solid var(--n-button-border-color); + `,[g("radio-input",` + pointer-events: none; + position: absolute; + border: 0; + border-radius: inherit; + left: 0; + right: 0; + top: 0; + bottom: 0; + opacity: 0; + z-index: 1; + `),S("state-border",` + z-index: 1; + pointer-events: none; + position: absolute; + box-shadow: var(--n-button-box-shadow); + transition: box-shadow .3s var(--n-bezier); + left: -1px; + bottom: -1px; + right: -1px; + top: -1px; + `),w("&:first-child",` + border-top-left-radius: var(--n-button-border-radius); + border-bottom-left-radius: var(--n-button-border-radius); + border-left: 1px solid var(--n-button-border-color); + `,[S("state-border",` + border-top-left-radius: var(--n-button-border-radius); + border-bottom-left-radius: var(--n-button-border-radius); + `)]),w("&:last-child",` + border-top-right-radius: var(--n-button-border-radius); + border-bottom-right-radius: var(--n-button-border-radius); + border-right: 1px solid var(--n-button-border-color); + `,[S("state-border",` + border-top-right-radius: var(--n-button-border-radius); + border-bottom-right-radius: var(--n-button-border-radius); + `)]),Ve("disabled",` + cursor: pointer; + `,[w("&:hover",[S("state-border",` + transition: box-shadow .3s var(--n-bezier); + box-shadow: var(--n-button-box-shadow-hover); + `),Ve("checked",{color:"var(--n-button-text-color-hover)"})]),P("focus",[w("&:not(:active)",[S("state-border",{boxShadow:"var(--n-button-box-shadow-focus)"})])])]),P("checked",` + background: var(--n-button-color-active); + color: var(--n-button-text-color-active); + border-color: var(--n-button-border-color-active); + `),P("disabled",` + cursor: not-allowed; + opacity: var(--n-opacity-disabled); + `)])]);function Uh(e,o,t){var r;const n=[];let l=!1;for(let a=0;a{const{value:R}=t,{common:{cubicBezierEaseInOut:z},self:{buttonBorderColor:C,buttonBorderColorActive:H,buttonBorderRadius:k,buttonBoxShadow:D,buttonBoxShadowFocus:W,buttonBoxShadowHover:L,buttonColor:j,buttonColorActive:V,buttonTextColor:E,buttonTextColorActive:Y,buttonTextColorHover:K,opacityDisabled:te,[N("buttonHeight",R)]:xe,[N("fontSize",R)]:se}}=f.value;return{"--n-font-size":se,"--n-bezier":z,"--n-button-border-color":C,"--n-button-border-color-active":H,"--n-button-border-radius":k,"--n-button-box-shadow":D,"--n-button-box-shadow-focus":W,"--n-button-box-shadow-hover":L,"--n-button-color":j,"--n-button-color-active":V,"--n-button-text-color":E,"--n-button-text-color-hover":K,"--n-button-text-color-active":Y,"--n-height":xe,"--n-opacity-disabled":te}}),I=c?We("radio-group",$(()=>t.value[0]),_,e):void 0;return{selfElRef:o,rtlEnabled:b,mergedClsPrefix:d,mergedValue:h,handleFocusout:y,handleFocusin:x,cssVars:c?void 0:_,themeClass:I==null?void 0:I.themeClass,onRender:I==null?void 0:I.onRender}},render(){var e;const{mergedValue:o,mergedClsPrefix:t,handleFocusin:r,handleFocusout:n}=this,{children:l,isButtonGroup:a}=Uh(rt(Pn(this)),o,t);return(e=this.onRender)===null||e===void 0||e.call(this),i("div",{onFocusin:r,onFocusout:n,ref:"selfElRef",class:[`${t}-radio-group`,this.rtlEnabled&&`${t}-radio-group--rtl`,this.themeClass,a&&`${t}-radio-group--button-group`],style:this.cssVars},l)}}),xa=Z({name:"DropdownDivider",props:{clsPrefix:{type:String,required:!0}},render(){return i("div",{class:`${this.clsPrefix}-dropdown-divider`})}}),Ca=e=>{const{textColorBase:o,opacity1:t,opacity2:r,opacity3:n,opacity4:l,opacity5:a}=e;return{color:o,opacity1Depth:t,opacity2Depth:r,opacity3Depth:n,opacity4Depth:l,opacity5Depth:a}},Gh={name:"Icon",common:Ae,self:Ca},qh=Gh,Yh={name:"Icon",common:ue,self:Ca},Xh=Yh,Zh=g("icon",` + height: 1em; + width: 1em; + line-height: 1em; + text-align: center; + display: inline-block; + position: relative; + fill: currentColor; + transform: translateZ(0); +`,[P("color-transition",{transition:"color .3s var(--n-bezier)"}),P("depth",{color:"var(--n-color)"},[w("svg",{opacity:"var(--n-opacity)",transition:"opacity .3s var(--n-bezier)"})]),w("svg",{height:"1em",width:"1em"})]),Qh=Object.assign(Object.assign({},ae.props),{depth:[String,Number],size:[Number,String],color:String,component:Object}),Jh=Z({_n_icon__:!0,name:"Icon",inheritAttrs:!1,props:Qh,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=ae("Icon","-icon",Zh,qh,e,o),n=$(()=>{const{depth:a}=e,{common:{cubicBezierEaseInOut:s},self:d}=r.value;if(a!==void 0){const{color:c,[`opacity${a}Depth`]:u}=d;return{"--n-bezier":s,"--n-color":c,"--n-opacity":u}}return{"--n-bezier":s,"--n-color":"","--n-opacity":""}}),l=t?We("icon",$(()=>`${e.depth||"d"}`),n,e):void 0;return{mergedClsPrefix:o,mergedStyle:$(()=>{const{size:a,color:s}=e;return{fontSize:ro(a),color:s}}),cssVars:t?void 0:n,themeClass:l==null?void 0:l.themeClass,onRender:l==null?void 0:l.onRender}},render(){var e;const{$parent:o,depth:t,mergedClsPrefix:r,component:n,onRender:l,themeClass:a}=this;return!((e=o==null?void 0:o.$options)===null||e===void 0)&&e._n_icon__&&qo("icon","don't wrap `n-icon` inside `n-icon`"),l==null||l(),i("i",To(this.$attrs,{role:"img",class:[`${r}-icon`,a,{[`${r}-icon--depth`]:t,[`${r}-icon--color-transition`]:t!==void 0}],style:[this.cssVars,this.mergedStyle]}),n?i(n):this.$slots)}}),An="n-dropdown-menu",jr="n-dropdown",Fi="n-dropdown-option";function mn(e,o){return e.type==="submenu"||e.type===void 0&&e[o]!==void 0}function ep(e){return e.type==="group"}function ya(e){return e.type==="divider"}function op(e){return e.type==="render"}const wa=Z({name:"DropdownOption",props:{clsPrefix:{type:String,required:!0},tmNode:{type:Object,required:!0},parentKey:{type:[String,Number],default:null},placement:{type:String,default:"right-start"},props:Object,scrollable:Boolean},setup(e){const o=$e(jr),{hoverKeyRef:t,keyboardKeyRef:r,lastToggledSubmenuKeyRef:n,pendingKeyPathRef:l,activeKeyPathRef:a,animatedRef:s,mergedShowRef:d,renderLabelRef:c,renderIconRef:u,labelFieldRef:f,childrenFieldRef:p,renderOptionRef:v,nodePropsRef:h,menuPropsRef:m}=o,x=$e(Fi,null),y=$e(An),b=$e(Nt),_=$(()=>e.tmNode.rawNode),I=$(()=>{const{value:K}=p;return mn(e.tmNode.rawNode,K)}),R=$(()=>{const{disabled:K}=e.tmNode;return K}),z=$(()=>{if(!I.value)return!1;const{key:K,disabled:te}=e.tmNode;if(te)return!1;const{value:xe}=t,{value:se}=r,{value:ie}=n,{value:O}=l;return xe!==null?O.includes(K):se!==null?O.includes(K)&&O[O.length-1]!==K:ie!==null?O.includes(K):!1}),C=$(()=>r.value===null&&!s.value),H=Dd(z,300,C),k=$(()=>!!(x!=null&&x.enteringSubmenuRef.value)),D=M(!1);De(Fi,{enteringSubmenuRef:D});function W(){D.value=!0}function L(){D.value=!1}function j(){const{parentKey:K,tmNode:te}=e;te.disabled||d.value&&(n.value=K,r.value=null,t.value=te.key)}function V(){const{tmNode:K}=e;K.disabled||d.value&&t.value!==K.key&&j()}function E(K){if(e.tmNode.disabled||!d.value)return;const{relatedTarget:te}=K;te&&!ot({target:te},"dropdownOption")&&!ot({target:te},"scrollbarRail")&&(t.value=null)}function Y(){const{value:K}=I,{tmNode:te}=e;d.value&&!K&&!te.disabled&&(o.doSelect(te.key,te.rawNode),o.doUpdateShow(!1))}return{labelField:f,renderLabel:c,renderIcon:u,siblingHasIcon:y.showIconRef,siblingHasSubmenu:y.hasSubmenuRef,menuProps:m,popoverBody:b,animated:s,mergedShowSubmenu:$(()=>H.value&&!k.value),rawNode:_,hasSubmenu:I,pending:Ue(()=>{const{value:K}=l,{key:te}=e.tmNode;return K.includes(te)}),childActive:Ue(()=>{const{value:K}=a,{key:te}=e.tmNode,xe=K.findIndex(se=>te===se);return xe===-1?!1:xe{const{value:K}=a,{key:te}=e.tmNode,xe=K.findIndex(se=>te===se);return xe===-1?!1:xe===K.length-1}),mergedDisabled:R,renderOption:v,nodeProps:h,handleClick:Y,handleMouseMove:V,handleMouseEnter:j,handleMouseLeave:E,handleSubmenuBeforeEnter:W,handleSubmenuAfterEnter:L}},render(){var e,o;const{animated:t,rawNode:r,mergedShowSubmenu:n,clsPrefix:l,siblingHasIcon:a,siblingHasSubmenu:s,renderLabel:d,renderIcon:c,renderOption:u,nodeProps:f,props:p,scrollable:v}=this;let h=null;if(n){const b=(e=this.menuProps)===null||e===void 0?void 0:e.call(this,r,r.children);h=i(Sa,Object.assign({},b,{clsPrefix:l,scrollable:this.scrollable,tmNodes:this.tmNode.children,parentKey:this.tmNode.key}))}const m={class:[`${l}-dropdown-option-body`,this.pending&&`${l}-dropdown-option-body--pending`,this.active&&`${l}-dropdown-option-body--active`,this.childActive&&`${l}-dropdown-option-body--child-active`,this.mergedDisabled&&`${l}-dropdown-option-body--disabled`],onMousemove:this.handleMouseMove,onMouseenter:this.handleMouseEnter,onMouseleave:this.handleMouseLeave,onClick:this.handleClick},x=f==null?void 0:f(r),y=i("div",Object.assign({class:[`${l}-dropdown-option`,x==null?void 0:x.class],"data-dropdown-option":!0},x),i("div",To(m,p),[i("div",{class:[`${l}-dropdown-option-body__prefix`,a&&`${l}-dropdown-option-body__prefix--show-icon`]},[c?c(r):Qe(r.icon)]),i("div",{"data-dropdown-option":!0,class:`${l}-dropdown-option-body__label`},d?d(r):Qe((o=r[this.labelField])!==null&&o!==void 0?o:r.title)),i("div",{"data-dropdown-option":!0,class:[`${l}-dropdown-option-body__suffix`,s&&`${l}-dropdown-option-body__suffix--has-submenu`]},this.hasSubmenu?i(Jh,null,{default:()=>i(Zd,null)}):null)]),this.hasSubmenu?i(Or,null,{default:()=>[i(Fr,null,{default:()=>i("div",{class:`${l}-dropdown-offset-container`},i(Tr,{show:this.mergedShowSubmenu,placement:this.placement,to:v&&this.popoverBody||void 0,teleportDisabled:!v},{default:()=>i("div",{class:`${l}-dropdown-menu-wrapper`},t?i(lo,{onBeforeEnter:this.handleSubmenuBeforeEnter,onAfterEnter:this.handleSubmenuAfterEnter,name:"fade-in-scale-up-transition",appear:!0},{default:()=>h}):h)}))})]}):null);return u?u({node:y,option:r}):y}}),tp=Z({name:"DropdownGroupHeader",props:{clsPrefix:{type:String,required:!0},tmNode:{type:Object,required:!0}},setup(){const{showIconRef:e,hasSubmenuRef:o}=$e(An),{renderLabelRef:t,labelFieldRef:r,nodePropsRef:n,renderOptionRef:l}=$e(jr);return{labelField:r,showIcon:e,hasSubmenu:o,renderLabel:t,nodeProps:n,renderOption:l}},render(){var e;const{clsPrefix:o,hasSubmenu:t,showIcon:r,nodeProps:n,renderLabel:l,renderOption:a}=this,{rawNode:s}=this.tmNode,d=i("div",Object.assign({class:`${o}-dropdown-option`},n==null?void 0:n(s)),i("div",{class:`${o}-dropdown-option-body ${o}-dropdown-option-body--group`},i("div",{"data-dropdown-option":!0,class:[`${o}-dropdown-option-body__prefix`,r&&`${o}-dropdown-option-body__prefix--show-icon`]},Qe(s.icon)),i("div",{class:`${o}-dropdown-option-body__label`,"data-dropdown-option":!0},l?l(s):Qe((e=s.title)!==null&&e!==void 0?e:s[this.labelField])),i("div",{class:[`${o}-dropdown-option-body__suffix`,t&&`${o}-dropdown-option-body__suffix--has-submenu`],"data-dropdown-option":!0})));return a?a({node:d,option:s}):d}}),rp=Z({name:"NDropdownGroup",props:{clsPrefix:{type:String,required:!0},tmNode:{type:Object,required:!0},parentKey:{type:[String,Number],default:null}},render(){const{tmNode:e,parentKey:o,clsPrefix:t}=this,{children:r}=e;return i(co,null,i(tp,{clsPrefix:t,tmNode:e,key:e.key}),r==null?void 0:r.map(n=>{const{rawNode:l}=n;return l.show===!1?null:ya(l)?i(xa,{clsPrefix:t,key:n.key}):n.isGroup?(qo("dropdown","`group` node is not allowed to be put in `group` node."),null):i(wa,{clsPrefix:t,tmNode:n,parentKey:o,key:n.key})}))}}),np=Z({name:"DropdownRenderOption",props:{tmNode:{type:Object,required:!0}},render(){const{rawNode:{render:e,props:o}}=this.tmNode;return i("div",o,[e==null?void 0:e()])}}),Sa=Z({name:"DropdownMenu",props:{scrollable:Boolean,showArrow:Boolean,arrowStyle:[String,Object],clsPrefix:{type:String,required:!0},tmNodes:{type:Array,default:()=>[]},parentKey:{type:[String,Number],default:null}},setup(e){const{renderIconRef:o,childrenFieldRef:t}=$e(jr);De(An,{showIconRef:$(()=>{const n=o.value;return e.tmNodes.some(l=>{var a;if(l.isGroup)return(a=l.children)===null||a===void 0?void 0:a.some(({rawNode:d})=>n?n(d):d.icon);const{rawNode:s}=l;return n?n(s):s.icon})}),hasSubmenuRef:$(()=>{const{value:n}=t;return e.tmNodes.some(l=>{var a;if(l.isGroup)return(a=l.children)===null||a===void 0?void 0:a.some(({rawNode:d})=>mn(d,n));const{rawNode:s}=l;return mn(s,n)})})});const r=M(null);return De(hr,null),De(pr,null),De(Nt,r),{bodyRef:r}},render(){const{parentKey:e,clsPrefix:o,scrollable:t}=this,r=this.tmNodes.map(n=>{const{rawNode:l}=n;return l.show===!1?null:op(l)?i(np,{tmNode:n,key:n.key}):ya(l)?i(xa,{clsPrefix:o,key:n.key}):ep(l)?i(rp,{clsPrefix:o,tmNode:n,parentKey:e,key:n.key}):i(wa,{clsPrefix:o,tmNode:n,parentKey:e,key:n.key,props:l.props,scrollable:t})});return i("div",{class:[`${o}-dropdown-menu`,t&&`${o}-dropdown-menu--scrollable`],ref:"bodyRef"},t?i(Rl,{contentClass:`${o}-dropdown-menu__content`},{default:()=>r}):r,this.showArrow?Fl({clsPrefix:o,arrowStyle:this.arrowStyle,arrowClass:void 0,arrowWrapperClass:void 0,arrowWrapperStyle:void 0}):null)}}),ip=g("dropdown-menu",` + transform-origin: var(--v-transform-origin); + background-color: var(--n-color); + border-radius: var(--n-border-radius); + box-shadow: var(--n-box-shadow); + position: relative; + transition: + background-color .3s var(--n-bezier), + box-shadow .3s var(--n-bezier); +`,[ut(),g("dropdown-option",` + position: relative; + `,[w("a",` + text-decoration: none; + color: inherit; + outline: none; + `,[w("&::before",` + content: ""; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + `)]),g("dropdown-option-body",` + display: flex; + cursor: pointer; + position: relative; + height: var(--n-option-height); + line-height: var(--n-option-height); + font-size: var(--n-font-size); + color: var(--n-option-text-color); + transition: color .3s var(--n-bezier); + `,[w("&::before",` + content: ""; + position: absolute; + top: 0; + bottom: 0; + left: 4px; + right: 4px; + transition: background-color .3s var(--n-bezier); + border-radius: var(--n-border-radius); + `),Ve("disabled",[P("pending",` + color: var(--n-option-text-color-hover); + `,[S("prefix, suffix",` + color: var(--n-option-text-color-hover); + `),w("&::before","background-color: var(--n-option-color-hover);")]),P("active",` + color: var(--n-option-text-color-active); + `,[S("prefix, suffix",` + color: var(--n-option-text-color-active); + `),w("&::before","background-color: var(--n-option-color-active);")]),P("child-active",` + color: var(--n-option-text-color-child-active); + `,[S("prefix, suffix",` + color: var(--n-option-text-color-child-active); + `)])]),P("disabled",` + cursor: not-allowed; + opacity: var(--n-option-opacity-disabled); + `),P("group",` + font-size: calc(var(--n-font-size) - 1px); + color: var(--n-group-header-text-color); + `,[S("prefix",` + width: calc(var(--n-option-prefix-width) / 2); + `,[P("show-icon",` + width: calc(var(--n-option-icon-prefix-width) / 2); + `)])]),S("prefix",` + width: var(--n-option-prefix-width); + display: flex; + justify-content: center; + align-items: center; + color: var(--n-prefix-color); + transition: color .3s var(--n-bezier); + z-index: 1; + `,[P("show-icon",` + width: var(--n-option-icon-prefix-width); + `),g("icon",` + font-size: var(--n-option-icon-size); + `)]),S("label",` + white-space: nowrap; + flex: 1; + z-index: 1; + `),S("suffix",` + box-sizing: border-box; + flex-grow: 0; + flex-shrink: 0; + display: flex; + justify-content: flex-end; + align-items: center; + min-width: var(--n-option-suffix-width); + padding: 0 8px; + transition: color .3s var(--n-bezier); + color: var(--n-suffix-color); + z-index: 1; + `,[P("has-submenu",` + width: var(--n-option-icon-suffix-width); + `),g("icon",` + font-size: var(--n-option-icon-size); + `)]),g("dropdown-menu","pointer-events: all;")]),g("dropdown-offset-container",` + pointer-events: none; + position: absolute; + left: 0; + right: 0; + top: -4px; + bottom: -4px; + `)]),g("dropdown-divider",` + transition: background-color .3s var(--n-bezier); + background-color: var(--n-divider-color); + height: 1px; + margin: 4px 0; + `),g("dropdown-menu-wrapper",` + transform-origin: var(--v-transform-origin); + width: fit-content; + `),w(">",[g("scrollbar",` + height: inherit; + max-height: inherit; + `)]),Ve("scrollable",` + padding: var(--n-padding); + `),P("scrollable",[S("content",` + padding: var(--n-padding); + `)])]),lp={animated:{type:Boolean,default:!0},keyboard:{type:Boolean,default:!0},size:{type:String,default:"medium"},inverted:Boolean,placement:{type:String,default:"bottom"},onSelect:[Function,Array],options:{type:Array,default:()=>[]},menuProps:Function,showArrow:Boolean,renderLabel:Function,renderIcon:Function,renderOption:Function,nodeProps:Function,labelField:{type:String,default:"label"},keyField:{type:String,default:"key"},childrenField:{type:String,default:"children"},value:[String,Number]},ap=Object.keys(St),sp=Object.assign(Object.assign(Object.assign({},St),lp),ae.props),dp=Z({name:"Dropdown",inheritAttrs:!1,props:sp,setup(e){const o=M(!1),t=uo(le(e,"show"),o),r=$(()=>{const{keyField:L,childrenField:j}=e;return xt(e.options,{getKey(V){return V[L]},getDisabled(V){return V.disabled===!0},getIgnored(V){return V.type==="divider"||V.type==="render"},getChildren(V){return V[j]}})}),n=$(()=>r.value.treeNodes),l=M(null),a=M(null),s=M(null),d=$(()=>{var L,j,V;return(V=(j=(L=l.value)!==null&&L!==void 0?L:a.value)!==null&&j!==void 0?j:s.value)!==null&&V!==void 0?V:null}),c=$(()=>r.value.getPath(d.value).keyPath),u=$(()=>r.value.getPath(e.value).keyPath),f=Ue(()=>e.keyboard&&t.value);pd({keydown:{ArrowUp:{prevent:!0,handler:R},ArrowRight:{prevent:!0,handler:I},ArrowDown:{prevent:!0,handler:z},ArrowLeft:{prevent:!0,handler:_},Enter:{prevent:!0,handler:C},Escape:b}},f);const{mergedClsPrefixRef:p,inlineThemeDisabled:v}=Ie(e),h=ae("Dropdown","-dropdown",ip,ma,e,p);De(jr,{labelFieldRef:le(e,"labelField"),childrenFieldRef:le(e,"childrenField"),renderLabelRef:le(e,"renderLabel"),renderIconRef:le(e,"renderIcon"),hoverKeyRef:l,keyboardKeyRef:a,lastToggledSubmenuKeyRef:s,pendingKeyPathRef:c,activeKeyPathRef:u,animatedRef:le(e,"animated"),mergedShowRef:t,nodePropsRef:le(e,"nodeProps"),renderOptionRef:le(e,"renderOption"),menuPropsRef:le(e,"menuProps"),doSelect:m,doUpdateShow:x}),Xe(t,L=>{!e.animated&&!L&&y()});function m(L,j){const{onSelect:V}=e;V&&de(V,L,j)}function x(L){const{"onUpdate:show":j,onUpdateShow:V}=e;j&&de(j,L),V&&de(V,L),o.value=L}function y(){l.value=null,a.value=null,s.value=null}function b(){x(!1)}function _(){k("left")}function I(){k("right")}function R(){k("up")}function z(){k("down")}function C(){const L=H();L!=null&&L.isLeaf&&t.value&&(m(L.key,L.rawNode),x(!1))}function H(){var L;const{value:j}=r,{value:V}=d;return!j||V===null?null:(L=j.getNode(V))!==null&&L!==void 0?L:null}function k(L){const{value:j}=d,{value:{getFirstAvailableNode:V}}=r;let E=null;if(j===null){const Y=V();Y!==null&&(E=Y.key)}else{const Y=H();if(Y){let K;switch(L){case"down":K=Y.getNext();break;case"up":K=Y.getPrev();break;case"right":K=Y.getChild();break;case"left":K=Y.getParent();break}K&&(E=K.key)}}E!==null&&(l.value=null,a.value=E)}const D=$(()=>{const{size:L,inverted:j}=e,{common:{cubicBezierEaseInOut:V},self:E}=h.value,{padding:Y,dividerColor:K,borderRadius:te,optionOpacityDisabled:xe,[N("optionIconSuffixWidth",L)]:se,[N("optionSuffixWidth",L)]:ie,[N("optionIconPrefixWidth",L)]:O,[N("optionPrefixWidth",L)]:B,[N("fontSize",L)]:G,[N("optionHeight",L)]:oe,[N("optionIconSize",L)]:me}=E,be={"--n-bezier":V,"--n-font-size":G,"--n-padding":Y,"--n-border-radius":te,"--n-option-height":oe,"--n-option-prefix-width":B,"--n-option-icon-prefix-width":O,"--n-option-suffix-width":ie,"--n-option-icon-suffix-width":se,"--n-option-icon-size":me,"--n-divider-color":K,"--n-option-opacity-disabled":xe};return j?(be["--n-color"]=E.colorInverted,be["--n-option-color-hover"]=E.optionColorHoverInverted,be["--n-option-color-active"]=E.optionColorActiveInverted,be["--n-option-text-color"]=E.optionTextColorInverted,be["--n-option-text-color-hover"]=E.optionTextColorHoverInverted,be["--n-option-text-color-active"]=E.optionTextColorActiveInverted,be["--n-option-text-color-child-active"]=E.optionTextColorChildActiveInverted,be["--n-prefix-color"]=E.prefixColorInverted,be["--n-suffix-color"]=E.suffixColorInverted,be["--n-group-header-text-color"]=E.groupHeaderTextColorInverted):(be["--n-color"]=E.color,be["--n-option-color-hover"]=E.optionColorHover,be["--n-option-color-active"]=E.optionColorActive,be["--n-option-text-color"]=E.optionTextColor,be["--n-option-text-color-hover"]=E.optionTextColorHover,be["--n-option-text-color-active"]=E.optionTextColorActive,be["--n-option-text-color-child-active"]=E.optionTextColorChildActive,be["--n-prefix-color"]=E.prefixColor,be["--n-suffix-color"]=E.suffixColor,be["--n-group-header-text-color"]=E.groupHeaderTextColor),be}),W=v?We("dropdown",$(()=>`${e.size[0]}${e.inverted?"i":""}`),D,e):void 0;return{mergedClsPrefix:p,mergedTheme:h,tmNodes:n,mergedShow:t,handleAfterLeave:()=>{e.animated&&y()},doUpdateShow:x,cssVars:v?void 0:D,themeClass:W==null?void 0:W.themeClass,onRender:W==null?void 0:W.onRender}},render(){const e=(r,n,l,a,s)=>{var d;const{mergedClsPrefix:c,menuProps:u}=this;(d=this.onRender)===null||d===void 0||d.call(this);const f=(u==null?void 0:u(void 0,this.tmNodes.map(v=>v.rawNode)))||{},p={ref:il(n),class:[r,`${c}-dropdown`,this.themeClass],clsPrefix:c,tmNodes:this.tmNodes,style:[...l,this.cssVars],showArrow:this.showArrow,arrowStyle:this.arrowStyle,scrollable:this.scrollable,onMouseenter:a,onMouseleave:s};return i(Sa,To(this.$attrs,p,f))},{mergedTheme:o}=this,t={show:this.mergedShow,theme:o.peers.Popover,themeOverrides:o.peerOverrides.Popover,internalOnAfterLeave:this.handleAfterLeave,internalRenderBody:e,onUpdateShow:this.doUpdateShow,"onUpdate:show":void 0};return i(mr,Object.assign({},mo(this.$props,ap),t),{trigger:()=>{var r,n;return(n=(r=this.$slots).default)===null||n===void 0?void 0:n.call(r)}})}}),cp={itemFontSize:"12px",itemHeight:"36px",itemWidth:"52px",panelActionPadding:"8px 0"},up=e=>{const{popoverColor:o,textColor2:t,primaryColor:r,hoverColor:n,dividerColor:l,opacityDisabled:a,boxShadow2:s,borderRadius:d,iconColor:c,iconColorDisabled:u}=e;return Object.assign(Object.assign({},cp),{panelColor:o,panelBoxShadow:s,panelDividerColor:l,itemTextColor:t,itemTextColorActive:r,itemColorHover:n,itemOpacityDisabled:a,itemBorderRadius:d,borderRadius:d,iconColor:c,iconColorDisabled:u})},fp={name:"TimePicker",common:ue,peers:{Scrollbar:$o,Button:Po,Input:Ao},self:up},za=fp,hp={itemSize:"24px",itemCellWidth:"38px",itemCellHeight:"32px",scrollItemWidth:"80px",scrollItemHeight:"40px",panelExtraFooterPadding:"8px 12px",panelActionPadding:"8px 12px",calendarTitlePadding:"0",calendarTitleHeight:"28px",arrowSize:"14px",panelHeaderPadding:"8px 12px",calendarDaysHeight:"32px",calendarTitleGridTempateColumns:"28px 28px 1fr 28px 28px",calendarLeftPaddingDate:"6px 12px 4px 12px",calendarLeftPaddingDatetime:"4px 12px",calendarLeftPaddingDaterange:"6px 12px 4px 12px",calendarLeftPaddingDatetimerange:"4px 12px",calendarLeftPaddingMonth:"0",calendarLeftPaddingYear:"0",calendarLeftPaddingQuarter:"0",calendarLeftPaddingMonthrange:"0",calendarLeftPaddingQuarterrange:"0",calendarLeftPaddingYearrange:"0",calendarLeftPaddingWeek:"6px 12px 4px 12px",calendarRightPaddingDate:"6px 12px 4px 12px",calendarRightPaddingDatetime:"4px 12px",calendarRightPaddingDaterange:"6px 12px 4px 12px",calendarRightPaddingDatetimerange:"4px 12px",calendarRightPaddingMonth:"0",calendarRightPaddingYear:"0",calendarRightPaddingQuarter:"0",calendarRightPaddingMonthrange:"0",calendarRightPaddingQuarterrange:"0",calendarRightPaddingYearrange:"0",calendarRightPaddingWeek:"0"},pp=e=>{const{hoverColor:o,fontSize:t,textColor2:r,textColorDisabled:n,popoverColor:l,primaryColor:a,borderRadiusSmall:s,iconColor:d,iconColorDisabled:c,textColor1:u,dividerColor:f,boxShadow2:p,borderRadius:v,fontWeightStrong:h}=e;return Object.assign(Object.assign({},hp),{itemFontSize:t,calendarDaysFontSize:t,calendarTitleFontSize:t,itemTextColor:r,itemTextColorDisabled:n,itemTextColorActive:l,itemTextColorCurrent:a,itemColorIncluded:ee(a,{alpha:.1}),itemColorHover:o,itemColorDisabled:o,itemColorActive:a,itemBorderRadius:s,panelColor:l,panelTextColor:r,arrowColor:d,calendarTitleTextColor:u,calendarTitleColorHover:o,calendarDaysTextColor:r,panelHeaderDividerColor:f,calendarDaysDividerColor:f,calendarDividerColor:f,panelActionDividerColor:f,panelBoxShadow:p,panelBorderRadius:v,calendarTitleFontWeight:h,scrollItemBorderRadius:v,iconColor:d,iconColorDisabled:c})},vp={name:"DatePicker",common:ue,peers:{Input:Ao,Button:Po,TimePicker:za,Scrollbar:$o},self(e){const{popoverColor:o,hoverColor:t,primaryColor:r}=e,n=pp(e);return n.itemColorDisabled=Re(o,t),n.itemColorIncluded=ee(r,{alpha:.15}),n.itemColorHover=Re(o,t),n}},gp=vp,mp={thPaddingBorderedSmall:"8px 12px",thPaddingBorderedMedium:"12px 16px",thPaddingBorderedLarge:"16px 24px",thPaddingSmall:"0",thPaddingMedium:"0",thPaddingLarge:"0",tdPaddingBorderedSmall:"8px 12px",tdPaddingBorderedMedium:"12px 16px",tdPaddingBorderedLarge:"16px 24px",tdPaddingSmall:"0 0 8px 0",tdPaddingMedium:"0 0 12px 0",tdPaddingLarge:"0 0 16px 0"},bp=e=>{const{tableHeaderColor:o,textColor2:t,textColor1:r,cardColor:n,modalColor:l,popoverColor:a,dividerColor:s,borderRadius:d,fontWeightStrong:c,lineHeight:u,fontSizeSmall:f,fontSizeMedium:p,fontSizeLarge:v}=e;return Object.assign(Object.assign({},mp),{lineHeight:u,fontSizeSmall:f,fontSizeMedium:p,fontSizeLarge:v,titleTextColor:r,thColor:Re(n,o),thColorModal:Re(l,o),thColorPopover:Re(a,o),thTextColor:r,thFontWeight:c,tdTextColor:t,tdColor:n,tdColorModal:l,tdColorPopover:a,borderColor:Re(n,s),borderColorModal:Re(l,s),borderColorPopover:Re(a,s),borderRadius:d})},xp={name:"Descriptions",common:ue,self:bp},Cp=xp,yp={titleFontSize:"18px",padding:"16px 28px 20px 28px",iconSize:"28px",actionSpace:"12px",contentMargin:"8px 0 16px 0",iconMargin:"0 4px 0 0",iconMarginIconTop:"4px 0 8px 0",closeSize:"22px",closeIconSize:"18px",closeMargin:"20px 26px 0 0",closeMarginIconTop:"10px 16px 0 0"},$a=e=>{const{textColor1:o,textColor2:t,modalColor:r,closeIconColor:n,closeIconColorHover:l,closeIconColorPressed:a,closeColorHover:s,closeColorPressed:d,infoColor:c,successColor:u,warningColor:f,errorColor:p,primaryColor:v,dividerColor:h,borderRadius:m,fontWeightStrong:x,lineHeight:y,fontSize:b}=e;return Object.assign(Object.assign({},yp),{fontSize:b,lineHeight:y,border:`1px solid ${h}`,titleTextColor:o,textColor:t,color:r,closeColorHover:s,closeColorPressed:d,closeIconColor:n,closeIconColorHover:l,closeIconColorPressed:a,closeBorderRadius:m,iconColor:v,iconColorInfo:c,iconColorSuccess:u,iconColorWarning:f,iconColorError:p,borderRadius:m,titleFontWeight:x})},wp={name:"Dialog",common:Ae,peers:{Button:Yt},self:$a},Pa=wp,Sp={name:"Dialog",common:ue,peers:{Button:Po},self:$a},Ra=Sp,Wr={icon:Function,type:{type:String,default:"default"},title:[String,Function],closable:{type:Boolean,default:!0},negativeText:String,positiveText:String,positiveButtonProps:Object,negativeButtonProps:Object,content:[String,Function],action:Function,showIcon:{type:Boolean,default:!0},loading:Boolean,bordered:Boolean,iconPlacement:String,onPositiveClick:Function,onNegativeClick:Function,onClose:Function},ka=wo(Wr),zp=w([g("dialog",` + --n-icon-margin: var(--n-icon-margin-top) var(--n-icon-margin-right) var(--n-icon-margin-bottom) var(--n-icon-margin-left); + word-break: break-word; + line-height: var(--n-line-height); + position: relative; + background: var(--n-color); + color: var(--n-text-color); + box-sizing: border-box; + margin: auto; + border-radius: var(--n-border-radius); + padding: var(--n-padding); + transition: + border-color .3s var(--n-bezier), + background-color .3s var(--n-bezier), + color .3s var(--n-bezier); + `,[S("icon",{color:"var(--n-icon-color)"}),P("bordered",{border:"var(--n-border)"}),P("icon-top",[S("close",{margin:"var(--n-close-margin)"}),S("icon",{margin:"var(--n-icon-margin)"}),S("content",{textAlign:"center"}),S("title",{justifyContent:"center"}),S("action",{justifyContent:"center"})]),P("icon-left",[S("icon",{margin:"var(--n-icon-margin)"}),P("closable",[S("title",` + padding-right: calc(var(--n-close-size) + 6px); + `)])]),S("close",` + position: absolute; + right: 0; + top: 0; + margin: var(--n-close-margin); + transition: + background-color .3s var(--n-bezier), + color .3s var(--n-bezier); + z-index: 1; + `),S("content",` + font-size: var(--n-font-size); + margin: var(--n-content-margin); + position: relative; + word-break: break-word; + `,[P("last","margin-bottom: 0;")]),S("action",` + display: flex; + justify-content: flex-end; + `,[w("> *:not(:last-child)",` + margin-right: var(--n-action-space); + `)]),S("icon",` + font-size: var(--n-icon-size); + transition: color .3s var(--n-bezier); + `),S("title",` + transition: color .3s var(--n-bezier); + display: flex; + align-items: center; + font-size: var(--n-title-font-size); + font-weight: var(--n-title-font-weight); + color: var(--n-title-text-color); + `),g("dialog-icon-container",` + display: flex; + justify-content: center; + `)]),Dr(g("dialog",` + width: 446px; + max-width: calc(100vw - 32px); + `)),g("dialog",[sl(` + width: 446px; + max-width: calc(100vw - 32px); + `)])]),$p={default:()=>i(wt,null),info:()=>i(wt,null),success:()=>i(Ut,null),warning:()=>i(Pt,null),error:()=>i(Vt,null)},Ia=Z({name:"Dialog",alias:["NimbusConfirmCard","Confirm"],props:Object.assign(Object.assign({},ae.props),Wr),setup(e){const{mergedComponentPropsRef:o,mergedClsPrefixRef:t,inlineThemeDisabled:r,mergedRtlRef:n}=Ie(e),l=eo("Dialog",n,t),a=$(()=>{var v,h;const{iconPlacement:m}=e;return m||((h=(v=o==null?void 0:o.value)===null||v===void 0?void 0:v.Dialog)===null||h===void 0?void 0:h.iconPlacement)||"left"});function s(v){const{onPositiveClick:h}=e;h&&h(v)}function d(v){const{onNegativeClick:h}=e;h&&h(v)}function c(){const{onClose:v}=e;v&&v()}const u=ae("Dialog","-dialog",zp,Pa,e,t),f=$(()=>{const{type:v}=e,h=a.value,{common:{cubicBezierEaseInOut:m},self:{fontSize:x,lineHeight:y,border:b,titleTextColor:_,textColor:I,color:R,closeBorderRadius:z,closeColorHover:C,closeColorPressed:H,closeIconColor:k,closeIconColorHover:D,closeIconColorPressed:W,closeIconSize:L,borderRadius:j,titleFontWeight:V,titleFontSize:E,padding:Y,iconSize:K,actionSpace:te,contentMargin:xe,closeSize:se,[h==="top"?"iconMarginIconTop":"iconMargin"]:ie,[h==="top"?"closeMarginIconTop":"closeMargin"]:O,[N("iconColor",v)]:B}}=u.value,G=yo(ie);return{"--n-font-size":x,"--n-icon-color":B,"--n-bezier":m,"--n-close-margin":O,"--n-icon-margin-top":G.top,"--n-icon-margin-right":G.right,"--n-icon-margin-bottom":G.bottom,"--n-icon-margin-left":G.left,"--n-icon-size":K,"--n-close-size":se,"--n-close-icon-size":L,"--n-close-border-radius":z,"--n-close-color-hover":C,"--n-close-color-pressed":H,"--n-close-icon-color":k,"--n-close-icon-color-hover":D,"--n-close-icon-color-pressed":W,"--n-color":R,"--n-text-color":I,"--n-border-radius":j,"--n-padding":Y,"--n-line-height":y,"--n-border":b,"--n-content-margin":xe,"--n-title-font-size":E,"--n-title-font-weight":V,"--n-title-text-color":_,"--n-action-space":te}}),p=r?We("dialog",$(()=>`${e.type[0]}${a.value[0]}`),f,e):void 0;return{mergedClsPrefix:t,rtlEnabled:l,mergedIconPlacement:a,mergedTheme:u,handlePositiveClick:s,handleNegativeClick:d,handleCloseClick:c,cssVars:r?void 0:f,themeClass:p==null?void 0:p.themeClass,onRender:p==null?void 0:p.onRender}},render(){var e;const{bordered:o,mergedIconPlacement:t,cssVars:r,closable:n,showIcon:l,title:a,content:s,action:d,negativeText:c,positiveText:u,positiveButtonProps:f,negativeButtonProps:p,handlePositiveClick:v,handleNegativeClick:h,mergedTheme:m,loading:x,type:y,mergedClsPrefix:b}=this;(e=this.onRender)===null||e===void 0||e.call(this);const _=l?i(Le,{clsPrefix:b,class:`${b}-dialog__icon`},{default:()=>je(this.$slots.icon,R=>R||(this.icon?Qe(this.icon):$p[this.type]()))}):null,I=je(this.$slots.action,R=>R||u||c||d?i("div",{class:`${b}-dialog__action`},R||(d?[Qe(d)]:[this.negativeText&&i(Bo,Object.assign({theme:m.peers.Button,themeOverrides:m.peerOverrides.Button,ghost:!0,size:"small",onClick:h},p),{default:()=>Qe(this.negativeText)}),this.positiveText&&i(Bo,Object.assign({theme:m.peers.Button,themeOverrides:m.peerOverrides.Button,size:"small",type:y==="default"?"primary":y,disabled:x,loading:x,onClick:v},f),{default:()=>Qe(this.positiveText)})])):null);return i("div",{class:[`${b}-dialog`,this.themeClass,this.closable&&`${b}-dialog--closable`,`${b}-dialog--icon-${t}`,o&&`${b}-dialog--bordered`,this.rtlEnabled&&`${b}-dialog--rtl`],style:r,role:"dialog"},n?je(this.$slots.close,R=>{const z=[`${b}-dialog__close`,this.rtlEnabled&&`${b}-dialog--rtl`];return R?i("div",{class:z},R):i(kt,{clsPrefix:b,class:z,onClick:this.handleCloseClick})}):null,l&&t==="top"?i("div",{class:`${b}-dialog-icon-container`},_):null,i("div",{class:`${b}-dialog__title`},l&&t==="left"?_:null,so(this.$slots.header,()=>[Qe(a)])),i("div",{class:[`${b}-dialog__content`,I?"":`${b}-dialog__content--last`]},so(this.$slots.default,()=>[Qe(s)])),I)}}),Ba="n-dialog-provider",Ta="n-dialog-api",Pp="n-dialog-reactive-list",Fa=e=>{const{modalColor:o,textColor2:t,boxShadow3:r}=e;return{color:o,textColor:t,boxShadow:r}},Rp={name:"Modal",common:Ae,peers:{Scrollbar:Hr,Dialog:Pa,Card:oa},self:Fa},kp=Rp,Ip={name:"Modal",common:ue,peers:{Scrollbar:$o,Dialog:Ra,Card:ta},self:Fa},Bp=Ip,En=Object.assign(Object.assign({},_n),Wr),Tp=wo(En),Fp=Z({name:"ModalBody",inheritAttrs:!1,props:Object.assign(Object.assign({show:{type:Boolean,required:!0},preset:String,displayDirective:{type:String,required:!0},trapFocus:{type:Boolean,default:!0},autoFocus:{type:Boolean,default:!0},blockScroll:Boolean},En),{renderMask:Function,onClickoutside:Function,onBeforeLeave:{type:Function,required:!0},onAfterLeave:{type:Function,required:!0},onPositiveClick:{type:Function,required:!0},onNegativeClick:{type:Function,required:!0},onClose:{type:Function,required:!0},onAfterEnter:Function,onEsc:Function}),setup(e){const o=M(null),t=M(null),r=M(e.show),n=M(null),l=M(null);Xe(le(e,"show"),x=>{x&&(r.value=!0)}),gl($(()=>e.blockScroll&&r.value));const a=$e(fl);function s(){if(a.transformOriginRef.value==="center")return"";const{value:x}=n,{value:y}=l;if(x===null||y===null)return"";if(t.value){const b=t.value.containerScrollTop;return`${x}px ${y+b}px`}return""}function d(x){if(a.transformOriginRef.value==="center")return;const y=a.getMousePosition();if(!y||!t.value)return;const b=t.value.containerScrollTop,{offsetLeft:_,offsetTop:I}=x;if(y){const R=y.y,z=y.x;n.value=-(_-z),l.value=-(I-R-b)}x.style.transformOrigin=s()}function c(x){ao(()=>{d(x)})}function u(x){x.style.transformOrigin=s(),e.onBeforeLeave()}function f(){r.value=!1,n.value=null,l.value=null,e.onAfterLeave()}function p(){const{onClose:x}=e;x&&x()}function v(){e.onNegativeClick()}function h(){e.onPositiveClick()}const m=M(null);return Xe(m,x=>{x&&ao(()=>{const y=x.el;y&&o.value!==y&&(o.value=y)})}),De(hr,o),De(pr,null),De(Nt,null),{mergedTheme:a.mergedThemeRef,appear:a.appearRef,isMounted:a.isMountedRef,mergedClsPrefix:a.mergedClsPrefixRef,bodyRef:o,scrollbarRef:t,displayed:r,childNodeRef:m,handlePositiveClick:h,handleNegativeClick:v,handleCloseClick:p,handleAfterLeave:f,handleBeforeLeave:u,handleEnter:c}},render(){const{$slots:e,$attrs:o,handleEnter:t,handleAfterLeave:r,handleBeforeLeave:n,preset:l,mergedClsPrefix:a}=this;let s=null;if(!l){if(s=hn(e),!s){qo("modal","default slot is empty");return}s=rr(s),s.props=To({class:`${a}-modal`},o,s.props||{})}return this.displayDirective==="show"||this.displayed||this.show?Lo(i("div",{role:"none",class:`${a}-modal-body-wrapper`},i(vr,{ref:"scrollbarRef",theme:this.mergedTheme.peers.Scrollbar,themeOverrides:this.mergedTheme.peerOverrides.Scrollbar,contentClass:`${a}-modal-scroll-content`},{default:()=>{var d;return[(d=this.renderMask)===null||d===void 0?void 0:d.call(this),i(zn,{disabled:!this.trapFocus,active:this.show,onEsc:this.onEsc,autoFocus:this.autoFocus},{default:()=>{var c;return i(lo,{name:"fade-in-scale-up-transition",appear:(c=this.appear)!==null&&c!==void 0?c:this.isMounted,onEnter:t,onAfterEnter:this.onAfterEnter,onAfterLeave:r,onBeforeLeave:n},{default:()=>{const u=[[Go,this.show]],{onClickoutside:f}=this;return f&&u.push([At,this.onClickoutside,void 0,{capture:!0}]),Lo(this.preset==="confirm"||this.preset==="dialog"?i(Ia,Object.assign({},this.$attrs,{class:[`${a}-modal`,this.$attrs.class],ref:"bodyRef",theme:this.mergedTheme.peers.Dialog,themeOverrides:this.mergedTheme.peerOverrides.Dialog},mo(this.$props,ka),{"aria-modal":"true"}),e):this.preset==="card"?i(_f,Object.assign({},this.$attrs,{ref:"bodyRef",class:[`${a}-modal`,this.$attrs.class],theme:this.mergedTheme.peers.Card,themeOverrides:this.mergedTheme.peerOverrides.Card},mo(this.$props,Ff),{"aria-modal":"true",role:"dialog"}),e):this.childNodeRef=s,u)}})}})]}})),[[Go,this.displayDirective==="if"||this.displayed||this.show]]):null}}),Op=w([g("modal-container",` + position: fixed; + left: 0; + top: 0; + height: 0; + width: 0; + display: flex; + `),g("modal-mask",` + position: fixed; + left: 0; + right: 0; + top: 0; + bottom: 0; + background-color: rgba(0, 0, 0, .4); + `,[jt({enterDuration:".25s",leaveDuration:".25s",enterCubicBezier:"var(--n-bezier-ease-out)",leaveCubicBezier:"var(--n-bezier-ease-out)"})]),g("modal-body-wrapper",` + position: fixed; + left: 0; + right: 0; + top: 0; + bottom: 0; + overflow: visible; + `,[g("modal-scroll-content",` + min-height: 100%; + display: flex; + position: relative; + `)]),g("modal",` + position: relative; + align-self: center; + color: var(--n-text-color); + margin: auto; + box-shadow: var(--n-box-shadow); + `,[ut({duration:".25s",enterScale:".5"})])]),_p=Object.assign(Object.assign(Object.assign(Object.assign({},ae.props),{show:Boolean,unstableShowMask:{type:Boolean,default:!0},maskClosable:{type:Boolean,default:!0},preset:String,to:[String,Object],displayDirective:{type:String,default:"if"},transformOrigin:{type:String,default:"mouse"},zIndex:Number,autoFocus:{type:Boolean,default:!0},trapFocus:{type:Boolean,default:!0},closeOnEsc:{type:Boolean,default:!0},blockScroll:{type:Boolean,default:!0}}),En),{onEsc:Function,"onUpdate:show":[Function,Array],onUpdateShow:[Function,Array],onAfterEnter:Function,onBeforeLeave:Function,onAfterLeave:Function,onClose:Function,onPositiveClick:Function,onNegativeClick:Function,onMaskClick:Function,internalDialog:Boolean,internalModal:Boolean,internalAppear:{type:Boolean,default:void 0},overlayStyle:[String,Object],onBeforeHide:Function,onAfterHide:Function,onHide:Function}),Mp=Z({name:"Modal",inheritAttrs:!1,props:_p,setup(e){const o=M(null),{mergedClsPrefixRef:t,namespaceRef:r,inlineThemeDisabled:n}=Ie(e),l=ae("Modal","-modal",Op,kp,e,t),a=tl(64),s=rl(),d=$t(),c=e.internalDialog?$e(Ba,null):null,u=e.internalModal?$e(Hd,null):null,f=ml();function p(z){const{onUpdateShow:C,"onUpdate:show":H,onHide:k}=e;C&&de(C,z),H&&de(H,z),k&&!z&&k(z)}function v(){const{onClose:z}=e;z?Promise.resolve(z()).then(C=>{C!==!1&&p(!1)}):p(!1)}function h(){const{onPositiveClick:z}=e;z?Promise.resolve(z()).then(C=>{C!==!1&&p(!1)}):p(!1)}function m(){const{onNegativeClick:z}=e;z?Promise.resolve(z()).then(C=>{C!==!1&&p(!1)}):p(!1)}function x(){const{onBeforeLeave:z,onBeforeHide:C}=e;z&&de(z),C&&C()}function y(){const{onAfterLeave:z,onAfterHide:C}=e;z&&de(z),C&&C()}function b(z){var C;const{onMaskClick:H}=e;H&&H(z),e.maskClosable&&!((C=o.value)===null||C===void 0)&&C.contains(tr(z))&&p(!1)}function _(z){var C;(C=e.onEsc)===null||C===void 0||C.call(e),e.show&&e.closeOnEsc&&cl(z)&&!f.value&&p(!1)}De(fl,{getMousePosition:()=>{const z=c||u;if(z){const{clickedRef:C,clickedPositionRef:H}=z;if(C.value&&H.value)return H.value}return a.value?s.value:null},mergedClsPrefixRef:t,mergedThemeRef:l,isMountedRef:d,appearRef:le(e,"internalAppear"),transformOriginRef:le(e,"transformOrigin")});const I=$(()=>{const{common:{cubicBezierEaseOut:z},self:{boxShadow:C,color:H,textColor:k}}=l.value;return{"--n-bezier-ease-out":z,"--n-box-shadow":C,"--n-color":H,"--n-text-color":k}}),R=n?We("theme-class",void 0,I,e):void 0;return{mergedClsPrefix:t,namespace:r,isMounted:d,containerRef:o,presetProps:$(()=>mo(e,Tp)),handleEsc:_,handleAfterLeave:y,handleClickoutside:b,handleBeforeLeave:x,doUpdateShow:p,handleNegativeClick:m,handlePositiveClick:h,handleCloseClick:v,cssVars:n?void 0:I,themeClass:R==null?void 0:R.themeClass,onRender:R==null?void 0:R.onRender}},render(){const{mergedClsPrefix:e}=this;return i($n,{to:this.to,show:this.show},{default:()=>{var o;(o=this.onRender)===null||o===void 0||o.call(this);const{unstableShowMask:t}=this;return Lo(i("div",{role:"none",ref:"containerRef",class:[`${e}-modal-container`,this.themeClass,this.namespace],style:this.cssVars},i(Fp,Object.assign({style:this.overlayStyle},this.$attrs,{ref:"bodyWrapper",displayDirective:this.displayDirective,show:this.show,preset:this.preset,autoFocus:this.autoFocus,trapFocus:this.trapFocus,blockScroll:this.blockScroll},this.presetProps,{onEsc:this.handleEsc,onClose:this.handleCloseClick,onNegativeClick:this.handleNegativeClick,onPositiveClick:this.handlePositiveClick,onBeforeLeave:this.handleBeforeLeave,onAfterEnter:this.onAfterEnter,onAfterLeave:this.handleAfterLeave,onClickoutside:t?void 0:this.handleClickoutside,renderMask:t?()=>{var r;return i(lo,{name:"fade-in-transition",key:"mask",appear:(r=this.internalAppear)!==null&&r!==void 0?r:this.isMounted},{default:()=>this.show?i("div",{"aria-hidden":!0,ref:"containerRef",class:`${e}-modal-mask`,onClick:this.handleClickoutside}):null})}:void 0}),this.$slots)),[[_r,{zIndex:this.zIndex,enabled:this.show}]])}})}}),Dp=Object.assign(Object.assign({},Wr),{onAfterEnter:Function,onAfterLeave:Function,transformOrigin:String,blockScroll:{type:Boolean,default:!0},closeOnEsc:{type:Boolean,default:!0},onEsc:Function,autoFocus:{type:Boolean,default:!0},internalStyle:[String,Object],maskClosable:{type:Boolean,default:!0},onPositiveClick:Function,onNegativeClick:Function,onClose:Function,onMaskClick:Function}),Hp=Z({name:"DialogEnvironment",props:Object.assign(Object.assign({},Dp),{internalKey:{type:String,required:!0},to:[String,Object],onInternalAfterLeave:{type:Function,required:!0}}),setup(e){const o=M(!0);function t(){const{onInternalAfterLeave:u,internalKey:f,onAfterLeave:p}=e;u&&u(f),p&&p()}function r(u){const{onPositiveClick:f}=e;f?Promise.resolve(f(u)).then(p=>{p!==!1&&d()}):d()}function n(u){const{onNegativeClick:f}=e;f?Promise.resolve(f(u)).then(p=>{p!==!1&&d()}):d()}function l(){const{onClose:u}=e;u?Promise.resolve(u()).then(f=>{f!==!1&&d()}):d()}function a(u){const{onMaskClick:f,maskClosable:p}=e;f&&(f(u),p&&d())}function s(){const{onEsc:u}=e;u&&u()}function d(){o.value=!1}function c(u){o.value=u}return{show:o,hide:d,handleUpdateShow:c,handleAfterLeave:t,handleCloseClick:l,handleNegativeClick:n,handlePositiveClick:r,handleMaskClick:a,handleEsc:s}},render(){const{handlePositiveClick:e,handleUpdateShow:o,handleNegativeClick:t,handleCloseClick:r,handleAfterLeave:n,handleMaskClick:l,handleEsc:a,to:s,maskClosable:d,show:c}=this;return i(Mp,{show:c,onUpdateShow:o,onMaskClick:l,onEsc:a,to:s,maskClosable:d,onAfterEnter:this.onAfterEnter,onAfterLeave:n,closeOnEsc:this.closeOnEsc,blockScroll:this.blockScroll,autoFocus:this.autoFocus,transformOrigin:this.transformOrigin,internalAppear:!0,internalDialog:!0},{default:()=>i(Ia,Object.assign({},mo(this.$props,ka),{style:this.internalStyle,onClose:r,onNegativeClick:t,onPositiveClick:e}))})}}),Lp={injectionKey:String,to:[String,Object]},N1=Z({name:"DialogProvider",props:Lp,setup(){const e=M([]),o={};function t(s={}){const d=nt(),c=el(Object.assign(Object.assign({},s),{key:d,destroy:()=>{o[`n-dialog-${d}`].hide()}}));return e.value.push(c),c}const r=["info","success","warning","error"].map(s=>d=>t(Object.assign(Object.assign({},d),{type:s})));function n(s){const{value:d}=e;d.splice(d.findIndex(c=>c.key===s),1)}function l(){Object.values(o).forEach(s=>{s.hide()})}const a={create:t,destroyAll:l,info:r[0],success:r[1],warning:r[2],error:r[3]};return De(Ta,a),De(Ba,{clickedRef:tl(64),clickedPositionRef:rl()}),De(Pp,e),Object.assign(Object.assign({},a),{dialogList:e,dialogInstRefs:o,handleAfterLeave:n})},render(){var e,o;return i(co,null,[this.dialogList.map(t=>i(Hp,Wt(t,["destroy","style"],{internalStyle:t.style,to:this.to,ref:r=>{r===null?delete this.dialogInstRefs[`n-dialog-${t.key}`]:this.dialogInstRefs[`n-dialog-${t.key}`]=r},internalKey:t.key,onInternalAfterLeave:this.handleAfterLeave}))),(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e)])}});function V1(){const e=$e(Ta,null);return e===null&&Wo("use-dialog","No outer founded."),e}const Oa=e=>{const{textColor1:o,dividerColor:t,fontWeightStrong:r}=e;return{textColor:o,color:t,fontWeight:r}},Ap={name:"Divider",common:Ae,self:Oa},Ep=Ap,jp={name:"Divider",common:ue,self:Oa},Wp=jp,Np=g("divider",` + position: relative; + display: flex; + width: 100%; + box-sizing: border-box; + font-size: 16px; + color: var(--n-text-color); + transition: + color .3s var(--n-bezier), + background-color .3s var(--n-bezier); +`,[Ve("vertical",` + margin-top: 24px; + margin-bottom: 24px; + `,[Ve("no-title",` + display: flex; + align-items: center; + `)]),S("title",` + display: flex; + align-items: center; + margin-left: 12px; + margin-right: 12px; + white-space: nowrap; + font-weight: var(--n-font-weight); + `),P("title-position-left",[S("line",[P("left",{width:"28px"})])]),P("title-position-right",[S("line",[P("right",{width:"28px"})])]),P("dashed",[S("line",` + background-color: #0000; + height: 0px; + width: 100%; + border-style: dashed; + border-width: 1px 0 0; + `)]),P("vertical",` + display: inline-block; + height: 1em; + margin: 0 8px; + vertical-align: middle; + width: 1px; + `),S("line",` + border: none; + transition: background-color .3s var(--n-bezier), border-color .3s var(--n-bezier); + height: 1px; + width: 100%; + margin: 0; + `),Ve("dashed",[S("line",{backgroundColor:"var(--n-color)"})]),P("dashed",[S("line",{borderColor:"var(--n-color)"})]),P("vertical",{backgroundColor:"var(--n-color)"})]),Vp=Object.assign(Object.assign({},ae.props),{titlePlacement:{type:String,default:"center"},dashed:Boolean,vertical:Boolean}),U1=Z({name:"Divider",props:Vp,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=ae("Divider","-divider",Np,Ep,e,o),n=$(()=>{const{common:{cubicBezierEaseInOut:a},self:{color:s,textColor:d,fontWeight:c}}=r.value;return{"--n-bezier":a,"--n-color":s,"--n-text-color":d,"--n-font-weight":c}}),l=t?We("divider",void 0,n,e):void 0;return{mergedClsPrefix:o,cssVars:t?void 0:n,themeClass:l==null?void 0:l.themeClass,onRender:l==null?void 0:l.onRender}},render(){var e;const{$slots:o,titlePlacement:t,vertical:r,dashed:n,cssVars:l,mergedClsPrefix:a}=this;return(e=this.onRender)===null||e===void 0||e.call(this),i("div",{role:"separator",class:[`${a}-divider`,this.themeClass,{[`${a}-divider--vertical`]:r,[`${a}-divider--no-title`]:!o.default,[`${a}-divider--dashed`]:n,[`${a}-divider--title-position-${t}`]:o.default&&t}],style:l},r?null:i("div",{class:`${a}-divider__line ${a}-divider__line--left`}),!r&&o.default?i(co,null,i("div",{class:`${a}-divider__title`},this.$slots),i("div",{class:`${a}-divider__line ${a}-divider__line--right`})):null)}}),_a=e=>{const{modalColor:o,textColor1:t,textColor2:r,boxShadow3:n,lineHeight:l,fontWeightStrong:a,dividerColor:s,closeColorHover:d,closeColorPressed:c,closeIconColor:u,closeIconColorHover:f,closeIconColorPressed:p,borderRadius:v,primaryColorHover:h}=e;return{bodyPadding:"16px 24px",borderRadius:v,headerPadding:"16px 24px",footerPadding:"16px 24px",color:o,textColor:r,titleTextColor:t,titleFontSize:"18px",titleFontWeight:a,boxShadow:n,lineHeight:l,headerBorderBottom:`1px solid ${s}`,footerBorderTop:`1px solid ${s}`,closeIconColor:u,closeIconColorHover:f,closeIconColorPressed:p,closeSize:"22px",closeIconSize:"18px",closeColorHover:d,closeColorPressed:c,closeBorderRadius:v,resizableTriggerColorHover:h}},Up={name:"Drawer",common:Ae,peers:{Scrollbar:Hr},self:_a},Kp=Up,Gp={name:"Drawer",common:ue,peers:{Scrollbar:$o},self:_a},qp=Gp,Yp=Z({name:"NDrawerContent",inheritAttrs:!1,props:{blockScroll:Boolean,show:{type:Boolean,default:void 0},displayDirective:{type:String,required:!0},placement:{type:String,required:!0},contentClass:String,contentStyle:[Object,String],nativeScrollbar:{type:Boolean,required:!0},scrollbarProps:Object,trapFocus:{type:Boolean,default:!0},autoFocus:{type:Boolean,default:!0},showMask:{type:[Boolean,String],required:!0},maxWidth:Number,maxHeight:Number,minWidth:Number,minHeight:Number,resizable:Boolean,onClickoutside:Function,onAfterLeave:Function,onAfterEnter:Function,onEsc:Function},setup(e){const o=M(!!e.show),t=M(null),r=$e(In);let n=0,l="",a=null;const s=M(!1),d=M(!1),c=$(()=>e.placement==="top"||e.placement==="bottom"),{mergedClsPrefixRef:u,mergedRtlRef:f}=Ie(e),p=eo("Drawer",f,u),v=k=>{d.value=!0,n=c.value?k.clientY:k.clientX,l=document.body.style.cursor,document.body.style.cursor=c.value?"ns-resize":"ew-resize",document.body.addEventListener("mousemove",I),document.body.addEventListener("mouseleave",z),document.body.addEventListener("mouseup",R)},h=()=>{a!==null&&(window.clearTimeout(a),a=null),d.value?s.value=!0:a=window.setTimeout(()=>{s.value=!0},300)},m=()=>{a!==null&&(window.clearTimeout(a),a=null),s.value=!1},{doUpdateHeight:x,doUpdateWidth:y}=r,b=k=>{const{maxWidth:D}=e;if(D&&k>D)return D;const{minWidth:W}=e;return W&&k{const{maxHeight:D}=e;if(D&&k>D)return D;const{minHeight:W}=e;return W&&k{var D,W;if(d.value)if(c.value){let L=((D=t.value)===null||D===void 0?void 0:D.offsetHeight)||0;const j=n-k.clientY;L+=e.placement==="bottom"?j:-j,L=_(L),x(L),n=k.clientY}else{let L=((W=t.value)===null||W===void 0?void 0:W.offsetWidth)||0;const j=n-k.clientX;L+=e.placement==="right"?j:-j,L=b(L),y(L),n=k.clientX}},R=()=>{d.value&&(n=0,d.value=!1,document.body.style.cursor=l,document.body.removeEventListener("mousemove",I),document.body.removeEventListener("mouseup",R),document.body.removeEventListener("mouseleave",z))},z=R;oo(()=>{e.show&&(o.value=!0)}),Xe(()=>e.show,k=>{k||R()}),So(()=>{R()});const C=$(()=>{const{show:k}=e,D=[[Go,k]];return e.showMask||D.push([At,e.onClickoutside,void 0,{capture:!0}]),D});function H(){var k;o.value=!1,(k=e.onAfterLeave)===null||k===void 0||k.call(e)}return gl($(()=>e.blockScroll&&o.value)),De(pr,t),De(Nt,null),De(hr,null),{bodyRef:t,rtlEnabled:p,mergedClsPrefix:r.mergedClsPrefixRef,isMounted:r.isMountedRef,mergedTheme:r.mergedThemeRef,displayed:o,transitionName:$(()=>({right:"slide-in-from-right-transition",left:"slide-in-from-left-transition",top:"slide-in-from-top-transition",bottom:"slide-in-from-bottom-transition"})[e.placement]),handleAfterLeave:H,bodyDirectives:C,handleMousedownResizeTrigger:v,handleMouseenterResizeTrigger:h,handleMouseleaveResizeTrigger:m,isDragging:d,isHoverOnResizeTrigger:s}},render(){const{$slots:e,mergedClsPrefix:o}=this;return this.displayDirective==="show"||this.displayed||this.show?Lo(i("div",{role:"none"},i(zn,{disabled:!this.showMask||!this.trapFocus,active:this.show,autoFocus:this.autoFocus,onEsc:this.onEsc},{default:()=>i(lo,{name:this.transitionName,appear:this.isMounted,onAfterEnter:this.onAfterEnter,onAfterLeave:this.handleAfterLeave},{default:()=>Lo(i("div",To(this.$attrs,{role:"dialog",ref:"bodyRef","aria-modal":"true",class:[`${o}-drawer`,this.rtlEnabled&&`${o}-drawer--rtl`,`${o}-drawer--${this.placement}-placement`,this.isDragging&&`${o}-drawer--unselectable`,this.nativeScrollbar&&`${o}-drawer--native-scrollbar`]}),[this.resizable?i("div",{class:[`${o}-drawer__resize-trigger`,(this.isDragging||this.isHoverOnResizeTrigger)&&`${o}-drawer__resize-trigger--hover`],onMouseenter:this.handleMouseenterResizeTrigger,onMouseleave:this.handleMouseleaveResizeTrigger,onMousedown:this.handleMousedownResizeTrigger}):null,this.nativeScrollbar?i("div",{class:[`${o}-drawer-content-wrapper`,this.contentClass],style:this.contentStyle,role:"none"},e):i(vr,Object.assign({},this.scrollbarProps,{contentStyle:this.contentStyle,contentClass:[`${o}-drawer-content-wrapper`,this.contentClass],theme:this.mergedTheme.peers.Scrollbar,themeOverrides:this.mergedTheme.peerOverrides.Scrollbar}),e)]),this.bodyDirectives)})})),[[Go,this.displayDirective==="if"||this.displayed||this.show]]):null}}),{cubicBezierEaseIn:Xp,cubicBezierEaseOut:Zp}=zo;function Qp({duration:e="0.3s",leaveDuration:o="0.2s",name:t="slide-in-from-right"}={}){return[w(`&.${t}-transition-leave-active`,{transition:`transform ${o} ${Xp}`}),w(`&.${t}-transition-enter-active`,{transition:`transform ${e} ${Zp}`}),w(`&.${t}-transition-enter-to`,{transform:"translateX(0)"}),w(`&.${t}-transition-enter-from`,{transform:"translateX(100%)"}),w(`&.${t}-transition-leave-from`,{transform:"translateX(0)"}),w(`&.${t}-transition-leave-to`,{transform:"translateX(100%)"})]}const{cubicBezierEaseIn:Jp,cubicBezierEaseOut:ev}=zo;function ov({duration:e="0.3s",leaveDuration:o="0.2s",name:t="slide-in-from-left"}={}){return[w(`&.${t}-transition-leave-active`,{transition:`transform ${o} ${Jp}`}),w(`&.${t}-transition-enter-active`,{transition:`transform ${e} ${ev}`}),w(`&.${t}-transition-enter-to`,{transform:"translateX(0)"}),w(`&.${t}-transition-enter-from`,{transform:"translateX(-100%)"}),w(`&.${t}-transition-leave-from`,{transform:"translateX(0)"}),w(`&.${t}-transition-leave-to`,{transform:"translateX(-100%)"})]}const{cubicBezierEaseIn:tv,cubicBezierEaseOut:rv}=zo;function nv({duration:e="0.3s",leaveDuration:o="0.2s",name:t="slide-in-from-top"}={}){return[w(`&.${t}-transition-leave-active`,{transition:`transform ${o} ${tv}`}),w(`&.${t}-transition-enter-active`,{transition:`transform ${e} ${rv}`}),w(`&.${t}-transition-enter-to`,{transform:"translateY(0)"}),w(`&.${t}-transition-enter-from`,{transform:"translateY(-100%)"}),w(`&.${t}-transition-leave-from`,{transform:"translateY(0)"}),w(`&.${t}-transition-leave-to`,{transform:"translateY(-100%)"})]}const{cubicBezierEaseIn:iv,cubicBezierEaseOut:lv}=zo;function av({duration:e="0.3s",leaveDuration:o="0.2s",name:t="slide-in-from-bottom"}={}){return[w(`&.${t}-transition-leave-active`,{transition:`transform ${o} ${iv}`}),w(`&.${t}-transition-enter-active`,{transition:`transform ${e} ${lv}`}),w(`&.${t}-transition-enter-to`,{transform:"translateY(0)"}),w(`&.${t}-transition-enter-from`,{transform:"translateY(100%)"}),w(`&.${t}-transition-leave-from`,{transform:"translateY(0)"}),w(`&.${t}-transition-leave-to`,{transform:"translateY(100%)"})]}const sv=w([g("drawer",` + word-break: break-word; + line-height: var(--n-line-height); + position: absolute; + pointer-events: all; + box-shadow: var(--n-box-shadow); + transition: + background-color .3s var(--n-bezier), + color .3s var(--n-bezier); + background-color: var(--n-color); + color: var(--n-text-color); + box-sizing: border-box; + `,[Qp(),ov(),nv(),av(),P("unselectable",` + user-select: none; + -webkit-user-select: none; + `),P("native-scrollbar",[g("drawer-content-wrapper",` + overflow: auto; + height: 100%; + `)]),S("resize-trigger",` + position: absolute; + background-color: #0000; + transition: background-color .3s var(--n-bezier); + `,[P("hover",` + background-color: var(--n-resize-trigger-color-hover); + `)]),g("drawer-content-wrapper",` + box-sizing: border-box; + `),g("drawer-content",` + height: 100%; + display: flex; + flex-direction: column; + `,[P("native-scrollbar",[g("drawer-body-content-wrapper",` + height: 100%; + overflow: auto; + `)]),g("drawer-body",` + flex: 1 0 0; + overflow: hidden; + `),g("drawer-body-content-wrapper",` + box-sizing: border-box; + padding: var(--n-body-padding); + `),g("drawer-header",` + font-weight: var(--n-title-font-weight); + line-height: 1; + font-size: var(--n-title-font-size); + color: var(--n-title-text-color); + padding: var(--n-header-padding); + transition: border .3s var(--n-bezier); + border-bottom: 1px solid var(--n-divider-color); + border-bottom: var(--n-header-border-bottom); + display: flex; + justify-content: space-between; + align-items: center; + `,[S("close",` + margin-left: 6px; + transition: + background-color .3s var(--n-bezier), + color .3s var(--n-bezier); + `)]),g("drawer-footer",` + display: flex; + justify-content: flex-end; + border-top: var(--n-footer-border-top); + transition: border .3s var(--n-bezier); + padding: var(--n-footer-padding); + `)]),P("right-placement",` + top: 0; + bottom: 0; + right: 0; + border-top-left-radius: var(--n-border-radius); + border-bottom-left-radius: var(--n-border-radius); + `,[S("resize-trigger",` + width: 3px; + height: 100%; + top: 0; + left: 0; + transform: translateX(-1.5px); + cursor: ew-resize; + `)]),P("left-placement",` + top: 0; + bottom: 0; + left: 0; + border-top-right-radius: var(--n-border-radius); + border-bottom-right-radius: var(--n-border-radius); + `,[S("resize-trigger",` + width: 3px; + height: 100%; + top: 0; + right: 0; + transform: translateX(1.5px); + cursor: ew-resize; + `)]),P("top-placement",` + top: 0; + left: 0; + right: 0; + border-bottom-left-radius: var(--n-border-radius); + border-bottom-right-radius: var(--n-border-radius); + `,[S("resize-trigger",` + width: 100%; + height: 3px; + bottom: 0; + left: 0; + transform: translateY(1.5px); + cursor: ns-resize; + `)]),P("bottom-placement",` + left: 0; + bottom: 0; + right: 0; + border-top-left-radius: var(--n-border-radius); + border-top-right-radius: var(--n-border-radius); + `,[S("resize-trigger",` + width: 100%; + height: 3px; + top: 0; + left: 0; + transform: translateY(-1.5px); + cursor: ns-resize; + `)])]),w("body",[w(">",[g("drawer-container",` + position: fixed; + `)])]),g("drawer-container",` + position: relative; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + pointer-events: none; + `,[w("> *",` + pointer-events: all; + `)]),g("drawer-mask",` + background-color: rgba(0, 0, 0, .3); + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + `,[P("invisible",` + background-color: rgba(0, 0, 0, 0) + `),jt({enterDuration:"0.2s",leaveDuration:"0.2s",enterCubicBezier:"var(--n-bezier-in)",leaveCubicBezier:"var(--n-bezier-out)"})])]),dv=Object.assign(Object.assign({},ae.props),{show:Boolean,width:[Number,String],height:[Number,String],placement:{type:String,default:"right"},maskClosable:{type:Boolean,default:!0},showMask:{type:[Boolean,String],default:!0},to:[String,Object],displayDirective:{type:String,default:"if"},nativeScrollbar:{type:Boolean,default:!0},zIndex:Number,onMaskClick:Function,scrollbarProps:Object,contentClass:String,contentStyle:[Object,String],trapFocus:{type:Boolean,default:!0},onEsc:Function,autoFocus:{type:Boolean,default:!0},closeOnEsc:{type:Boolean,default:!0},blockScroll:{type:Boolean,default:!0},maxWidth:Number,maxHeight:Number,minWidth:Number,minHeight:Number,resizable:Boolean,defaultWidth:{type:[Number,String],default:251},defaultHeight:{type:[Number,String],default:251},onUpdateWidth:[Function,Array],onUpdateHeight:[Function,Array],"onUpdate:width":[Function,Array],"onUpdate:height":[Function,Array],"onUpdate:show":[Function,Array],onUpdateShow:[Function,Array],onAfterEnter:Function,onAfterLeave:Function,drawerStyle:[String,Object],drawerClass:String,target:null,onShow:Function,onHide:Function}),K1=Z({name:"Drawer",inheritAttrs:!1,props:dv,setup(e){const{mergedClsPrefixRef:o,namespaceRef:t,inlineThemeDisabled:r}=Ie(e),n=$t(),l=ae("Drawer","-drawer",sv,Kp,e,o),a=M(e.defaultWidth),s=M(e.defaultHeight),d=uo(le(e,"width"),a),c=uo(le(e,"height"),s),u=$(()=>{const{placement:z}=e;return z==="top"||z==="bottom"?"":ro(d.value)}),f=$(()=>{const{placement:z}=e;return z==="left"||z==="right"?"":ro(c.value)}),p=z=>{const{onUpdateWidth:C,"onUpdate:width":H}=e;C&&de(C,z),H&&de(H,z),a.value=z},v=z=>{const{onUpdateHeight:C,"onUpdate:width":H}=e;C&&de(C,z),H&&de(H,z),s.value=z},h=$(()=>[{width:u.value,height:f.value},e.drawerStyle||""]);function m(z){const{onMaskClick:C,maskClosable:H}=e;H&&_(!1),C&&C(z)}function x(z){m(z)}const y=ml();function b(z){var C;(C=e.onEsc)===null||C===void 0||C.call(e),e.show&&e.closeOnEsc&&cl(z)&&!y.value&&_(!1)}function _(z){const{onHide:C,onUpdateShow:H,"onUpdate:show":k}=e;H&&de(H,z),k&&de(k,z),C&&!z&&de(C,z)}De(In,{isMountedRef:n,mergedThemeRef:l,mergedClsPrefixRef:o,doUpdateShow:_,doUpdateHeight:v,doUpdateWidth:p});const I=$(()=>{const{common:{cubicBezierEaseInOut:z,cubicBezierEaseIn:C,cubicBezierEaseOut:H},self:{color:k,textColor:D,boxShadow:W,lineHeight:L,headerPadding:j,footerPadding:V,borderRadius:E,bodyPadding:Y,titleFontSize:K,titleTextColor:te,titleFontWeight:xe,headerBorderBottom:se,footerBorderTop:ie,closeIconColor:O,closeIconColorHover:B,closeIconColorPressed:G,closeColorHover:oe,closeColorPressed:me,closeIconSize:be,closeSize:Be,closeBorderRadius:T,resizableTriggerColorHover:fe}}=l.value;return{"--n-line-height":L,"--n-color":k,"--n-border-radius":E,"--n-text-color":D,"--n-box-shadow":W,"--n-bezier":z,"--n-bezier-out":H,"--n-bezier-in":C,"--n-header-padding":j,"--n-body-padding":Y,"--n-footer-padding":V,"--n-title-text-color":te,"--n-title-font-size":K,"--n-title-font-weight":xe,"--n-header-border-bottom":se,"--n-footer-border-top":ie,"--n-close-icon-color":O,"--n-close-icon-color-hover":B,"--n-close-icon-color-pressed":G,"--n-close-size":Be,"--n-close-color-hover":oe,"--n-close-color-pressed":me,"--n-close-icon-size":be,"--n-close-border-radius":T,"--n-resize-trigger-color-hover":fe}}),R=r?We("drawer",void 0,I,e):void 0;return{mergedClsPrefix:o,namespace:t,mergedBodyStyle:h,handleOutsideClick:x,handleMaskClick:m,handleEsc:b,mergedTheme:l,cssVars:r?void 0:I,themeClass:R==null?void 0:R.themeClass,onRender:R==null?void 0:R.onRender,isMounted:n}},render(){const{mergedClsPrefix:e}=this;return i($n,{to:this.to,show:this.show},{default:()=>{var o;return(o=this.onRender)===null||o===void 0||o.call(this),Lo(i("div",{class:[`${e}-drawer-container`,this.namespace,this.themeClass],style:this.cssVars,role:"none"},this.showMask?i(lo,{name:"fade-in-transition",appear:this.isMounted},{default:()=>this.show?i("div",{"aria-hidden":!0,class:[`${e}-drawer-mask`,this.showMask==="transparent"&&`${e}-drawer-mask--invisible`],onClick:this.handleMaskClick}):null}):null,i(Yp,Object.assign({},this.$attrs,{class:[this.drawerClass,this.$attrs.class],style:[this.mergedBodyStyle,this.$attrs.style],blockScroll:this.blockScroll,contentStyle:this.contentStyle,contentClass:this.contentClass,placement:this.placement,scrollbarProps:this.scrollbarProps,show:this.show,displayDirective:this.displayDirective,nativeScrollbar:this.nativeScrollbar,onAfterEnter:this.onAfterEnter,onAfterLeave:this.onAfterLeave,trapFocus:this.trapFocus,autoFocus:this.autoFocus,resizable:this.resizable,maxHeight:this.maxHeight,minHeight:this.minHeight,maxWidth:this.maxWidth,minWidth:this.minWidth,showMask:this.showMask,onEsc:this.handleEsc,onClickoutside:this.handleOutsideClick}),this.$slots)),[[_r,{zIndex:this.zIndex,enabled:this.show}]])}})}}),cv={title:String,headerClass:String,headerStyle:[Object,String],footerClass:String,footerStyle:[Object,String],bodyClass:String,bodyStyle:[Object,String],bodyContentClass:String,bodyContentStyle:[Object,String],nativeScrollbar:{type:Boolean,default:!0},scrollbarProps:Object,closable:Boolean},G1=Z({name:"DrawerContent",props:cv,setup(){const e=$e(In,null);e||Wo("drawer-content","`n-drawer-content` must be placed inside `n-drawer`.");const{doUpdateShow:o}=e;function t(){o(!1)}return{handleCloseClick:t,mergedTheme:e.mergedThemeRef,mergedClsPrefix:e.mergedClsPrefixRef}},render(){const{title:e,mergedClsPrefix:o,nativeScrollbar:t,mergedTheme:r,bodyClass:n,bodyStyle:l,bodyContentClass:a,bodyContentStyle:s,headerClass:d,headerStyle:c,footerClass:u,footerStyle:f,scrollbarProps:p,closable:v,$slots:h}=this;return i("div",{role:"none",class:[`${o}-drawer-content`,t&&`${o}-drawer-content--native-scrollbar`]},h.header||e||v?i("div",{class:[`${o}-drawer-header`,d],style:c,role:"none"},i("div",{class:`${o}-drawer-header__main`,role:"heading","aria-level":"1"},h.header!==void 0?h.header():e),v&&i(kt,{onClick:this.handleCloseClick,clsPrefix:o,class:`${o}-drawer-header__close`,absolute:!0})):null,t?i("div",{class:[`${o}-drawer-body`,n],style:l,role:"none"},i("div",{class:[`${o}-drawer-body-content-wrapper`,a],style:s,role:"none"},h)):i(vr,Object.assign({themeOverrides:r.peerOverrides.Scrollbar,theme:r.peers.Scrollbar},p,{class:`${o}-drawer-body`,contentClass:[`${o}-drawer-body-content-wrapper`,a],contentStyle:s}),h),h.footer?i("div",{class:[`${o}-drawer-footer`,u],style:f,role:"none"},h.footer()):null)}}),Ma={actionMargin:"0 0 0 20px",actionMarginRtl:"0 20px 0 0"},uv={name:"DynamicInput",common:ue,peers:{Input:Ao,Button:Po},self(){return Ma}},fv=uv,hv=()=>Ma,pv={name:"DynamicInput",common:Ae,peers:{Input:br,Button:Yt},self:hv},vv=pv,jn="n-dynamic-input",gv=Z({name:"DynamicInputInputPreset",props:{clsPrefix:{type:String,required:!0},value:{type:String,default:""},disabled:Boolean,parentPath:String,path:String,onUpdateValue:{type:Function,required:!0}},setup(){const{mergedThemeRef:e,placeholderRef:o}=$e(jn);return{mergedTheme:e,placeholder:o}},render(){const{mergedTheme:e,placeholder:o,value:t,clsPrefix:r,onUpdateValue:n,disabled:l}=this;return i("div",{class:`${r}-dynamic-input-preset-input`},i(zt,{theme:e.peers.Input,"theme-overrides":e.peerOverrides.Input,value:t,placeholder:o,onUpdateValue:n,disabled:l}))}}),mv=Z({name:"DynamicInputPairPreset",props:{clsPrefix:{type:String,required:!0},value:{type:Object,default:()=>({key:"",value:""})},disabled:Boolean,parentPath:String,path:String,onUpdateValue:{type:Function,required:!0}},setup(e){const{mergedThemeRef:o,keyPlaceholderRef:t,valuePlaceholderRef:r}=$e(jn);return{mergedTheme:o,keyPlaceholder:t,valuePlaceholder:r,handleKeyInput(n){e.onUpdateValue({key:n,value:e.value.value})},handleValueInput(n){e.onUpdateValue({key:e.value.key,value:n})}}},render(){const{mergedTheme:e,keyPlaceholder:o,valuePlaceholder:t,value:r,clsPrefix:n,disabled:l}=this;return i("div",{class:`${n}-dynamic-input-preset-pair`},i(zt,{theme:e.peers.Input,"theme-overrides":e.peerOverrides.Input,value:r.key,class:`${n}-dynamic-input-pair-input`,placeholder:o,onUpdateValue:this.handleKeyInput,disabled:l}),i(zt,{theme:e.peers.Input,"theme-overrides":e.peerOverrides.Input,value:r.value,class:`${n}-dynamic-input-pair-input`,placeholder:t,onUpdateValue:this.handleValueInput,disabled:l}))}}),bv=g("dynamic-input",{width:"100%"},[g("dynamic-input-item",` + margin-bottom: 10px; + display: flex; + flex-wrap: nowrap; + `,[g("dynamic-input-preset-input",{flex:1,alignItems:"center"}),g("dynamic-input-preset-pair",` + flex: 1; + display: flex; + align-items: center; + `,[g("dynamic-input-pair-input",[w("&:first-child",{"margin-right":"12px"})])]),S("action",` + align-self: flex-start; + display: flex; + justify-content: flex-end; + flex-shrink: 0; + flex-grow: 0; + margin: var(--action-margin); + `,[P("icon",{cursor:"pointer"})]),w("&:last-child",{marginBottom:0})]),g("form-item",` + padding-top: 0 !important; + margin-right: 0 !important; + `,[g("form-item-blank",{paddingTop:"0 !important"})])]),Sr=new WeakMap,xv=Object.assign(Object.assign({},ae.props),{max:Number,min:{type:Number,default:0},value:Array,defaultValue:{type:Array,default:()=>[]},preset:{type:String,default:"input"},keyField:String,itemClass:String,itemStyle:[String,Object],keyPlaceholder:{type:String,default:""},valuePlaceholder:{type:String,default:""},placeholder:{type:String,default:""},disabled:Boolean,showSortButton:Boolean,createButtonProps:Object,onCreate:Function,onRemove:Function,"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],onClear:Function,onInput:[Function,Array]}),q1=Z({name:"DynamicInput",props:xv,setup(e,{slots:o}){const{mergedComponentPropsRef:t,mergedClsPrefixRef:r,mergedRtlRef:n,inlineThemeDisabled:l}=Ie(),a=$e(kr,null),s=M(e.defaultValue),d=le(e,"value"),c=uo(d,s),u=ae("DynamicInput","-dynamic-input",bv,vv,e,r),f=$(()=>{const{value:k}=c;if(Array.isArray(k)){const{max:D}=e;return D!==void 0&&k.length>=D}return!1}),p=$(()=>{const{value:k}=c;return Array.isArray(k)?k.length<=e.min:!0}),v=$(()=>{var k,D;return(D=(k=t==null?void 0:t.value)===null||k===void 0?void 0:k.DynamicInput)===null||D===void 0?void 0:D.buttonSize});function h(k){const{onInput:D,"onUpdate:value":W,onUpdateValue:L}=e;D&&de(D,k),W&&de(W,k),L&&de(L,k),s.value=k}function m(k,D){if(k==null||typeof k!="object")return D;const W=Gr(k)?qr(k):k;let L=Sr.get(W);return L===void 0&&Sr.set(W,L=nt()),L}function x(k,D){const{value:W}=c,L=Array.from(W??[]),j=L[k];if(L[k]=D,j&&D&&typeof j=="object"&&typeof D=="object"){const V=Gr(j)?qr(j):j,E=Gr(D)?qr(D):D,Y=Sr.get(V);Y!==void 0&&Sr.set(E,Y)}h(L)}function y(){b(-1)}function b(k){const{value:D}=c,{onCreate:W}=e,L=Array.from(D??[]);if(W)L.splice(k+1,0,W(k+1)),h(L);else if(o.default)L.splice(k+1,0,null),h(L);else switch(e.preset){case"input":L.splice(k+1,0,""),h(L);break;case"pair":L.splice(k+1,0,{key:"",value:""}),h(L);break}}function _(k){const{value:D}=c;if(!Array.isArray(D))return;const{min:W}=e;if(D.length<=W)return;const{onRemove:L}=e;L&&L(k);const j=Array.from(D);j.splice(k,1),h(j)}function I(k,D,W){if(D<0||W<0||D>=k.length||W>=k.length||D===W)return;const L=k[D];k[D]=k[W],k[W]=L}function R(k,D){const{value:W}=c;if(!Array.isArray(W))return;const L=Array.from(W);k==="up"&&I(L,D,D-1),k==="down"&&I(L,D,D+1),h(L)}De(jn,{mergedThemeRef:u,keyPlaceholderRef:le(e,"keyPlaceholder"),valuePlaceholderRef:le(e,"valuePlaceholder"),placeholderRef:le(e,"placeholder")});const z=eo("DynamicInput",n,r),C=$(()=>{const{self:{actionMargin:k,actionMarginRtl:D}}=u.value;return{"--action-margin":k,"--action-margin-rtl":D}}),H=l?We("dynamic-input",void 0,C,e):void 0;return{locale:Yo("DynamicInput").localeRef,rtlEnabled:z,buttonSize:v,mergedClsPrefix:r,NFormItem:a,uncontrolledValue:s,mergedValue:c,insertionDisabled:f,removeDisabled:p,handleCreateClick:y,ensureKey:m,handleValueChange:x,remove:_,move:R,createItem:b,mergedTheme:u,cssVars:l?void 0:C,themeClass:H==null?void 0:H.themeClass,onRender:H==null?void 0:H.onRender}},render(){const{$slots:e,itemClass:o,buttonSize:t,mergedClsPrefix:r,mergedValue:n,locale:l,mergedTheme:a,keyField:s,itemStyle:d,preset:c,showSortButton:u,NFormItem:f,ensureKey:p,handleValueChange:v,remove:h,createItem:m,move:x,onRender:y,disabled:b}=this;return y==null||y(),i("div",{class:[`${r}-dynamic-input`,this.rtlEnabled&&`${r}-dynamic-input--rtl`,this.themeClass],style:this.cssVars},!Array.isArray(n)||n.length===0?i(Bo,Object.assign({block:!0,ghost:!0,dashed:!0,size:t},this.createButtonProps,{disabled:this.insertionDisabled||b,theme:a.peers.Button,themeOverrides:a.peerOverrides.Button,onClick:this.handleCreateClick}),{default:()=>so(e["create-button-default"],()=>[l.create]),icon:()=>so(e["create-button-icon"],()=>[i(Le,{clsPrefix:r},{default:()=>i(ar,null)})])}):n.map((_,I)=>i("div",{key:s?_[s]:p(_,I),"data-key":s?_[s]:p(_,I),class:[`${r}-dynamic-input-item`,o],style:d},pn(e.default,{value:n[I],index:I},()=>[c==="input"?i(gv,{disabled:b,clsPrefix:r,value:n[I],parentPath:f?f.path.value:void 0,path:f!=null&&f.path.value?`${f.path.value}[${I}]`:void 0,onUpdateValue:R=>{v(I,R)}}):c==="pair"?i(mv,{disabled:b,clsPrefix:r,value:n[I],parentPath:f?f.path.value:void 0,path:f!=null&&f.path.value?`${f.path.value}[${I}]`:void 0,onUpdateValue:R=>{v(I,R)}}):null]),pn(e.action,{value:n[I],index:I,create:m,remove:h,move:x},()=>[i("div",{class:`${r}-dynamic-input-item__action`},i(Cf,{size:t},{default:()=>[i(Bo,{disabled:this.removeDisabled||b,theme:a.peers.Button,themeOverrides:a.peerOverrides.Button,circle:!0,onClick:()=>{h(I)}},{icon:()=>i(Le,{clsPrefix:r},{default:()=>i(yl,null)})}),i(Bo,{disabled:this.insertionDisabled||b,circle:!0,theme:a.peers.Button,themeOverrides:a.peerOverrides.Button,onClick:()=>{m(I)}},{icon:()=>i(Le,{clsPrefix:r},{default:()=>i(ar,null)})}),u?i(Bo,{disabled:I===0||b,circle:!0,theme:a.peers.Button,themeOverrides:a.peerOverrides.Button,onClick:()=>{x("up",I)}},{icon:()=>i(Le,{clsPrefix:r},{default:()=>i(qd,null)})}):null,u?i(Bo,{disabled:I===n.length-1||b,circle:!0,theme:a.peers.Button,themeOverrides:a.peerOverrides.Button,onClick:()=>{x("down",I)}},{icon:()=>i(Le,{clsPrefix:r},{default:()=>i(Gd,null)})}):null]}))]))))}}),Da={gapSmall:"4px 8px",gapMedium:"8px 12px",gapLarge:"12px 16px"},Cv={name:"Space",self(){return Da}},Ha=Cv,yv=()=>Da,wv={name:"Space",self:yv},Sv=wv;let nn;const zv=()=>{if(!No)return!0;if(nn===void 0){const e=document.createElement("div");e.style.display="flex",e.style.flexDirection="column",e.style.rowGap="1px",e.appendChild(document.createElement("div")),e.appendChild(document.createElement("div")),document.body.appendChild(e);const o=e.scrollHeight===1;return document.body.removeChild(e),nn=o}return nn},$v=Object.assign(Object.assign({},ae.props),{align:String,justify:{type:String,default:"start"},inline:Boolean,vertical:Boolean,reverse:Boolean,size:{type:[String,Number,Array],default:"medium"},wrapItem:{type:Boolean,default:!0},itemClass:String,itemStyle:[String,Object],wrap:{type:Boolean,default:!0},internalUseGap:{type:Boolean,default:void 0}}),Y1=Z({name:"Space",props:$v,setup(e){const{mergedClsPrefixRef:o,mergedRtlRef:t}=Ie(e),r=ae("Space","-space",void 0,Sv,e,o),n=eo("Space",t,o);return{useGap:zv(),rtlEnabled:n,mergedClsPrefix:o,margin:$(()=>{const{size:l}=e;if(Array.isArray(l))return{horizontal:l[0],vertical:l[1]};if(typeof l=="number")return{horizontal:l,vertical:l};const{self:{[N("gap",l)]:a}}=r.value,{row:s,col:d}=id(a);return{horizontal:ko(d),vertical:ko(s)}})}},render(){const{vertical:e,reverse:o,align:t,inline:r,justify:n,itemClass:l,itemStyle:a,margin:s,wrap:d,mergedClsPrefix:c,rtlEnabled:u,useGap:f,wrapItem:p,internalUseGap:v}=this,h=rt(Pn(this),!1);if(!h.length)return null;const m=`${s.horizontal}px`,x=`${s.horizontal/2}px`,y=`${s.vertical}px`,b=`${s.vertical/2}px`,_=h.length-1,I=n.startsWith("space-");return i("div",{role:"none",class:[`${c}-space`,u&&`${c}-space--rtl`],style:{display:r?"inline-flex":"flex",flexDirection:e&&!o?"column":e&&o?"column-reverse":!e&&o?"row-reverse":"row",justifyContent:["start","end"].includes(n)?"flex-"+n:n,flexWrap:!d||e?"nowrap":"wrap",marginTop:f||e?"":`-${b}`,marginBottom:f||e?"":`-${b}`,alignItems:t,gap:f?`${s.vertical}px ${s.horizontal}px`:""}},!p&&(f||v)?h:h.map((R,z)=>R.type===wn?R:i("div",{role:"none",class:l,style:[a,{maxWidth:"100%"},f?"":e?{marginBottom:z!==_?y:""}:u?{marginLeft:I?n==="space-between"&&z===_?"":x:z!==_?m:"",marginRight:I?n==="space-between"&&z===0?"":x:"",paddingTop:b,paddingBottom:b}:{marginRight:I?n==="space-between"&&z===_?"":x:z!==_?m:"",marginLeft:I?n==="space-between"&&z===0?"":x:"",paddingTop:b,paddingBottom:b}]},R)))}}),Pv={name:"DynamicTags",common:ue,peers:{Input:Ao,Button:Po,Tag:_l,Space:Ha},self(){return{inputWidth:"64px"}}},Rv=Pv,kv={name:"Element",common:ue},Iv=kv,Bv={gapSmall:"4px 8px",gapMedium:"8px 12px",gapLarge:"12px 16px"},Tv={name:"Flex",self(){return Bv}},Fv=Tv,Ov={feedbackPadding:"4px 0 0 2px",feedbackHeightSmall:"24px",feedbackHeightMedium:"24px",feedbackHeightLarge:"26px",feedbackFontSizeSmall:"13px",feedbackFontSizeMedium:"14px",feedbackFontSizeLarge:"14px",labelFontSizeLeftSmall:"14px",labelFontSizeLeftMedium:"14px",labelFontSizeLeftLarge:"15px",labelFontSizeTopSmall:"13px",labelFontSizeTopMedium:"14px",labelFontSizeTopLarge:"14px",labelHeightSmall:"24px",labelHeightMedium:"26px",labelHeightLarge:"28px",labelPaddingVertical:"0 0 6px 2px",labelPaddingHorizontal:"0 12px 0 0",labelTextAlignVertical:"left",labelTextAlignHorizontal:"right",labelFontWeight:"400"},La=e=>{const{heightSmall:o,heightMedium:t,heightLarge:r,textColor1:n,errorColor:l,warningColor:a,lineHeight:s,textColor3:d}=e;return Object.assign(Object.assign({},Ov),{blankHeightSmall:o,blankHeightMedium:t,blankHeightLarge:r,lineHeight:s,labelTextColor:n,asteriskColor:l,feedbackTextColorError:l,feedbackTextColorWarning:a,feedbackTextColor:d})},_v={name:"Form",common:Ae,self:La},Aa=_v,Mv={name:"Form",common:ue,self:La},Dv=Mv,Hv=g("form",[P("inline",` + width: 100%; + display: inline-flex; + align-items: flex-start; + align-content: space-around; + `,[g("form-item",{width:"auto",marginRight:"18px"},[w("&:last-child",{marginRight:0})])])]),xr="n-form",Ea="n-form-item-insts";var Lv=function(e,o,t,r){function n(l){return l instanceof t?l:new t(function(a){a(l)})}return new(t||(t=Promise))(function(l,a){function s(u){try{c(r.next(u))}catch(f){a(f)}}function d(u){try{c(r.throw(u))}catch(f){a(f)}}function c(u){u.done?l(u.value):n(u.value).then(s,d)}c((r=r.apply(e,o||[])).next())})};const Av=Object.assign(Object.assign({},ae.props),{inline:Boolean,labelWidth:[Number,String],labelAlign:String,labelPlacement:{type:String,default:"top"},model:{type:Object,default:()=>{}},rules:Object,disabled:Boolean,size:String,showRequireMark:{type:Boolean,default:void 0},requireMarkPlacement:String,showFeedback:{type:Boolean,default:!0},onSubmit:{type:Function,default:e=>{e.preventDefault()}},showLabel:{type:Boolean,default:void 0},validateMessages:Object}),X1=Z({name:"Form",props:Av,setup(e){const{mergedClsPrefixRef:o}=Ie(e);ae("Form","-form",Hv,Aa,e,o);const t={},r=M(void 0),n=d=>{const c=r.value;(c===void 0||d>=c)&&(r.value=d)};function l(d,c=()=>!0){return Lv(this,void 0,void 0,function*(){return yield new Promise((u,f)=>{const p=[];for(const v of wo(t)){const h=t[v];for(const m of h)m.path&&p.push(m.internalValidate(null,c))}Promise.all(p).then(v=>{const h=v.some(y=>!y.valid),m=[],x=[];v.forEach(y=>{var b,_;!((b=y.errors)===null||b===void 0)&&b.length&&m.push(y.errors),!((_=y.warnings)===null||_===void 0)&&_.length&&x.push(y.warnings)}),d&&d(m.length?m:void 0,{warnings:x.length?x:void 0}),h?f(m.length?m:void 0):u({warnings:x.length?x:void 0})})})})}function a(){for(const d of wo(t)){const c=t[d];for(const u of c)u.restoreValidation()}}return De(xr,{props:e,maxChildLabelWidthRef:r,deriveMaxChildLabelWidth:n}),De(Ea,{formItems:t}),Object.assign({validate:l,restoreValidation:a},{mergedClsPrefix:o})},render(){const{mergedClsPrefix:e}=this;return i("form",{class:[`${e}-form`,this.inline&&`${e}-form--inline`],onSubmit:this.onSubmit},this.$slots)}});function Ev(e){const o=$e(xr,null);return{mergedSize:$(()=>e.size!==void 0?e.size:(o==null?void 0:o.props.size)!==void 0?o.props.size:"medium")}}function jv(e){const o=$e(xr,null),t=$(()=>{const{labelPlacement:h}=e;return h!==void 0?h:o!=null&&o.props.labelPlacement?o.props.labelPlacement:"top"}),r=$(()=>t.value==="left"&&(e.labelWidth==="auto"||(o==null?void 0:o.props.labelWidth)==="auto")),n=$(()=>{if(t.value==="top")return;const{labelWidth:h}=e;if(h!==void 0&&h!=="auto")return ro(h);if(r.value){const m=o==null?void 0:o.maxChildLabelWidthRef.value;return m!==void 0?ro(m):void 0}if((o==null?void 0:o.props.labelWidth)!==void 0)return ro(o.props.labelWidth)}),l=$(()=>{const{labelAlign:h}=e;if(h)return h;if(o!=null&&o.props.labelAlign)return o.props.labelAlign}),a=$(()=>{var h;return[(h=e.labelProps)===null||h===void 0?void 0:h.style,e.labelStyle,{width:n.value}]}),s=$(()=>{const{showRequireMark:h}=e;return h!==void 0?h:o==null?void 0:o.props.showRequireMark}),d=$(()=>{const{requireMarkPlacement:h}=e;return h!==void 0?h:(o==null?void 0:o.props.requireMarkPlacement)||"right"}),c=M(!1),u=M(!1),f=$(()=>{const{validationStatus:h}=e;if(h!==void 0)return h;if(c.value)return"error";if(u.value)return"warning"}),p=$(()=>{const{showFeedback:h}=e;return h!==void 0?h:(o==null?void 0:o.props.showFeedback)!==void 0?o.props.showFeedback:!0}),v=$(()=>{const{showLabel:h}=e;return h!==void 0?h:(o==null?void 0:o.props.showLabel)!==void 0?o.props.showLabel:!0});return{validationErrored:c,validationWarned:u,mergedLabelStyle:a,mergedLabelPlacement:t,mergedLabelAlign:l,mergedShowRequireMark:s,mergedRequireMarkPlacement:d,mergedValidationStatus:f,mergedShowFeedback:p,mergedShowLabel:v,isAutoLabelWidth:r}}function Wv(e){const o=$e(xr,null),t=$(()=>{const{rulePath:a}=e;if(a!==void 0)return a;const{path:s}=e;if(s!==void 0)return s}),r=$(()=>{const a=[],{rule:s}=e;if(s!==void 0&&(Array.isArray(s)?a.push(...s):a.push(s)),o){const{rules:d}=o.props,{value:c}=t;if(d!==void 0&&c!==void 0){const u=nl(d,c);u!==void 0&&(Array.isArray(u)?a.push(...u):a.push(u))}}return a}),n=$(()=>r.value.some(a=>a.required)),l=$(()=>n.value||e.required);return{mergedRules:r,mergedRequired:l}}const{cubicBezierEaseInOut:Oi}=zo;function Nv({name:e="fade-down",fromOffset:o="-4px",enterDuration:t=".3s",leaveDuration:r=".3s",enterCubicBezier:n=Oi,leaveCubicBezier:l=Oi}={}){return[w(`&.${e}-transition-enter-from, &.${e}-transition-leave-to`,{opacity:0,transform:`translateY(${o})`}),w(`&.${e}-transition-enter-to, &.${e}-transition-leave-from`,{opacity:1,transform:"translateY(0)"}),w(`&.${e}-transition-leave-active`,{transition:`opacity ${r} ${l}, transform ${r} ${l}`}),w(`&.${e}-transition-enter-active`,{transition:`opacity ${t} ${n}, transform ${t} ${n}`})]}const Vv=g("form-item",` + display: grid; + line-height: var(--n-line-height); +`,[g("form-item-label",` + grid-area: label; + align-items: center; + line-height: 1.25; + text-align: var(--n-label-text-align); + font-size: var(--n-label-font-size); + min-height: var(--n-label-height); + padding: var(--n-label-padding); + color: var(--n-label-text-color); + transition: color .3s var(--n-bezier); + box-sizing: border-box; + font-weight: var(--n-label-font-weight); + `,[S("asterisk",` + white-space: nowrap; + user-select: none; + -webkit-user-select: none; + color: var(--n-asterisk-color); + transition: color .3s var(--n-bezier); + `),S("asterisk-placeholder",` + grid-area: mark; + user-select: none; + -webkit-user-select: none; + visibility: hidden; + `)]),g("form-item-blank",` + grid-area: blank; + min-height: var(--n-blank-height); + `),P("auto-label-width",[g("form-item-label","white-space: nowrap;")]),P("left-labelled",` + grid-template-areas: + "label blank" + "label feedback"; + grid-template-columns: auto minmax(0, 1fr); + grid-template-rows: auto 1fr; + align-items: flex-start; + `,[g("form-item-label",` + display: grid; + grid-template-columns: 1fr auto; + min-height: var(--n-blank-height); + height: auto; + box-sizing: border-box; + flex-shrink: 0; + flex-grow: 0; + `,[P("reverse-columns-space",` + grid-template-columns: auto 1fr; + `),P("left-mark",` + grid-template-areas: + "mark text" + ". text"; + `),P("right-mark",` + grid-template-areas: + "text mark" + "text ."; + `),P("right-hanging-mark",` + grid-template-areas: + "text mark" + "text ."; + `),S("text",` + grid-area: text; + `),S("asterisk",` + grid-area: mark; + align-self: end; + `)])]),P("top-labelled",` + grid-template-areas: + "label" + "blank" + "feedback"; + grid-template-rows: minmax(var(--n-label-height), auto) 1fr; + grid-template-columns: minmax(0, 100%); + `,[P("no-label",` + grid-template-areas: + "blank" + "feedback"; + grid-template-rows: 1fr; + `),g("form-item-label",` + display: flex; + align-items: flex-start; + justify-content: var(--n-label-text-align); + `)]),g("form-item-blank",` + box-sizing: border-box; + display: flex; + align-items: center; + position: relative; + `),g("form-item-feedback-wrapper",` + grid-area: feedback; + box-sizing: border-box; + min-height: var(--n-feedback-height); + font-size: var(--n-feedback-font-size); + line-height: 1.25; + transform-origin: top left; + `,[w("&:not(:empty)",` + padding: var(--n-feedback-padding); + `),g("form-item-feedback",{transition:"color .3s var(--n-bezier)",color:"var(--n-feedback-text-color)"},[P("warning",{color:"var(--n-feedback-text-color-warning)"}),P("error",{color:"var(--n-feedback-text-color-error)"}),Nv({fromOffset:"-3px",enterDuration:".3s",leaveDuration:".2s"})])])]);var _i=function(e,o,t,r){function n(l){return l instanceof t?l:new t(function(a){a(l)})}return new(t||(t=Promise))(function(l,a){function s(u){try{c(r.next(u))}catch(f){a(f)}}function d(u){try{c(r.throw(u))}catch(f){a(f)}}function c(u){u.done?l(u.value):n(u.value).then(s,d)}c((r=r.apply(e,o||[])).next())})};const Wn=Object.assign(Object.assign({},ae.props),{label:String,labelWidth:[Number,String],labelStyle:[String,Object],labelAlign:String,labelPlacement:String,path:String,first:Boolean,rulePath:String,required:Boolean,showRequireMark:{type:Boolean,default:void 0},requireMarkPlacement:String,showFeedback:{type:Boolean,default:void 0},rule:[Object,Array],size:String,ignorePathChange:Boolean,validationStatus:String,feedback:String,showLabel:{type:Boolean,default:void 0},labelProps:Object}),Uv=wo(Wn);function Mi(e,o){return(...t)=>{try{const r=e(...t);return!o&&(typeof r=="boolean"||r instanceof Error||Array.isArray(r))||r!=null&&r.then?r:(r===void 0||qo("form-item/validate",`You return a ${typeof r} typed value in the validator method, which is not recommended. Please use `+(o?"`Promise`":"`boolean`, `Error` or `Promise`")+" typed value instead."),!0)}catch(r){qo("form-item/validate","An error is catched in the validation, so the validation won't be done. Your callback in `validate` method of `n-form` or `n-form-item` won't be called in this validation."),console.error(r);return}}}const Kv=Z({name:"FormItem",props:Wn,setup(e){Md(Ea,"formItems",le(e,"path"));const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=$e(xr,null),n=Ev(e),l=jv(e),{validationErrored:a,validationWarned:s}=l,{mergedRequired:d,mergedRules:c}=Wv(e),{mergedSize:u}=n,{mergedLabelPlacement:f,mergedLabelAlign:p,mergedRequireMarkPlacement:v}=l,h=M([]),m=M(nt()),x=r?le(r.props,"disabled"):M(!1),y=ae("Form","-form-item",Vv,Aa,e,o);Xe(le(e,"path"),()=>{e.ignorePathChange||b()});function b(){h.value=[],a.value=!1,s.value=!1,e.feedback&&(m.value=nt())}function _(){H("blur")}function I(){H("change")}function R(){H("focus")}function z(){H("input")}function C(V,E){return _i(this,void 0,void 0,function*(){let Y,K,te,xe;return typeof V=="string"?(Y=V,K=E):V!==null&&typeof V=="object"&&(Y=V.trigger,K=V.callback,te=V.shouldRuleBeApplied,xe=V.options),yield new Promise((se,ie)=>{H(Y,te,xe).then(({valid:O,errors:B,warnings:G})=>{O?(K&&K(void 0,{warnings:G}),se({warnings:G})):(K&&K(B,{warnings:G}),ie(B))})})})}const H=(V=null,E=()=>!0,Y={suppressWarning:!0})=>_i(this,void 0,void 0,function*(){const{path:K}=e;Y?Y.first||(Y.first=e.first):Y={};const{value:te}=c,xe=r?nl(r.props.model,K||""):void 0,se={},ie={},O=(V?te.filter(we=>Array.isArray(we.trigger)?we.trigger.includes(V):we.trigger===V):te).filter(E).map((we,Me)=>{const ne=Object.assign({},we);if(ne.validator&&(ne.validator=Mi(ne.validator,!1)),ne.asyncValidator&&(ne.asyncValidator=Mi(ne.asyncValidator,!0)),ne.renderMessage){const Ce=`__renderMessage__${Me}`;ie[Ce]=ne.message,ne.message=Ce,se[Ce]=ne.renderMessage}return ne}),B=O.filter(we=>we.level!=="warning"),G=O.filter(we=>we.level==="warning"),oe=K??"__n_no_path__",me=new oi({[oe]:B}),be=new oi({[oe]:G}),{validateMessages:Be}=(r==null?void 0:r.props)||{};Be&&(me.messages(Be),be.messages(Be));const T=we=>{h.value=we.map(Me=>{const ne=(Me==null?void 0:Me.message)||"";return{key:ne,render:()=>ne.startsWith("__renderMessage__")?se[ne]():ne}}),we.forEach(Me=>{var ne;!((ne=Me.message)===null||ne===void 0)&&ne.startsWith("__renderMessage__")&&(Me.message=ie[Me.message])})},fe={valid:!0,errors:void 0,warnings:void 0};if(B.length){const we=yield new Promise(Me=>{me.validate({[oe]:xe},Y,Me)});we!=null&&we.length&&(a.value=!0,fe.valid=!1,fe.errors=we,T(we))}if(G.length&&!fe.errors){const we=yield new Promise(Me=>{be.validate({[oe]:xe},Y,Me)});we!=null&&we.length&&(T(we),s.value=!0,fe.warnings=we)}return B.length+G.length>0&&!fe.errors&&!fe.warnings&&b(),fe});De(kr,{path:le(e,"path"),disabled:x,mergedSize:n.mergedSize,mergedValidationStatus:l.mergedValidationStatus,restoreValidation:b,handleContentBlur:_,handleContentChange:I,handleContentFocus:R,handleContentInput:z});const k={validate:C,restoreValidation:b,internalValidate:H},D=M(null);po(()=>{if(!l.isAutoLabelWidth.value)return;const V=D.value;if(V!==null){const E=V.style.whiteSpace;V.style.whiteSpace="nowrap",V.style.width="",r==null||r.deriveMaxChildLabelWidth(Number(getComputedStyle(V).width.slice(0,-2))),V.style.whiteSpace=E}});const W=$(()=>{var V;const{value:E}=u,{value:Y}=f,K=Y==="top"?"vertical":"horizontal",{common:{cubicBezierEaseInOut:te},self:{labelTextColor:xe,asteriskColor:se,lineHeight:ie,feedbackTextColor:O,feedbackTextColorWarning:B,feedbackTextColorError:G,feedbackPadding:oe,labelFontWeight:me,[N("labelHeight",E)]:be,[N("blankHeight",E)]:Be,[N("feedbackFontSize",E)]:T,[N("feedbackHeight",E)]:fe,[N("labelPadding",K)]:we,[N("labelTextAlign",K)]:Me,[N(N("labelFontSize",Y),E)]:ne}}=y.value;let Ce=(V=p.value)!==null&&V!==void 0?V:Me;return Y==="top"&&(Ce=Ce==="right"?"flex-end":"flex-start"),{"--n-bezier":te,"--n-line-height":ie,"--n-blank-height":Be,"--n-label-font-size":ne,"--n-label-text-align":Ce,"--n-label-height":be,"--n-label-padding":we,"--n-label-font-weight":me,"--n-asterisk-color":se,"--n-label-text-color":xe,"--n-feedback-padding":oe,"--n-feedback-font-size":T,"--n-feedback-height":fe,"--n-feedback-text-color":O,"--n-feedback-text-color-warning":B,"--n-feedback-text-color-error":G}}),L=t?We("form-item",$(()=>{var V;return`${u.value[0]}${f.value[0]}${((V=p.value)===null||V===void 0?void 0:V[0])||""}`}),W,e):void 0,j=$(()=>f.value==="left"&&v.value==="left"&&p.value==="left");return Object.assign(Object.assign(Object.assign(Object.assign({labelElementRef:D,mergedClsPrefix:o,mergedRequired:d,feedbackId:m,renderExplains:h,reverseColSpace:j},l),n),k),{cssVars:t?void 0:W,themeClass:L==null?void 0:L.themeClass,onRender:L==null?void 0:L.onRender})},render(){const{$slots:e,mergedClsPrefix:o,mergedShowLabel:t,mergedShowRequireMark:r,mergedRequireMarkPlacement:n,onRender:l}=this,a=r!==void 0?r:this.mergedRequired;l==null||l();const s=()=>{const d=this.$slots.label?this.$slots.label():this.label;if(!d)return null;const c=i("span",{class:`${o}-form-item-label__text`},d),u=a?i("span",{class:`${o}-form-item-label__asterisk`},n!=="left"?" *":"* "):n==="right-hanging"&&i("span",{class:`${o}-form-item-label__asterisk-placeholder`}," *"),{labelProps:f}=this;return i("label",Object.assign({},f,{class:[f==null?void 0:f.class,`${o}-form-item-label`,`${o}-form-item-label--${n}-mark`,this.reverseColSpace&&`${o}-form-item-label--reverse-columns-space`],style:this.mergedLabelStyle,ref:"labelElementRef"}),n==="left"?[u,c]:[c,u])};return i("div",{class:[`${o}-form-item`,this.themeClass,`${o}-form-item--${this.mergedSize}-size`,`${o}-form-item--${this.mergedLabelPlacement}-labelled`,this.isAutoLabelWidth&&`${o}-form-item--auto-label-width`,!t&&`${o}-form-item--no-label`],style:this.cssVars},t&&s(),i("div",{class:[`${o}-form-item-blank`,this.mergedValidationStatus&&`${o}-form-item-blank--${this.mergedValidationStatus}`]},e),this.mergedShowFeedback?i("div",{key:this.feedbackId,class:`${o}-form-item-feedback-wrapper`},i(lo,{name:"fade-down-transition",mode:"out-in"},{default:()=>{const{mergedValidationStatus:d}=this;return je(e.feedback,c=>{var u;const{feedback:f}=this,p=c||f?i("div",{key:"__feedback__",class:`${o}-form-item-feedback__line`},c||f):this.renderExplains.length?(u=this.renderExplains)===null||u===void 0?void 0:u.map(({key:v,render:h})=>i("div",{key:v,class:`${o}-form-item-feedback__line`},h())):null;return p?d==="warning"?i("div",{key:"controlled-warning",class:`${o}-form-item-feedback ${o}-form-item-feedback--warning`},p):d==="error"?i("div",{key:"controlled-error",class:`${o}-form-item-feedback ${o}-form-item-feedback--error`},p):d==="success"?i("div",{key:"controlled-success",class:`${o}-form-item-feedback ${o}-form-item-feedback--success`},p):i("div",{key:"controlled-default",class:`${o}-form-item-feedback`},p):null})}})):null)}}),Di=1,ja="n-grid",Wa=1,Gv={span:{type:[Number,String],default:Wa},offset:{type:[Number,String],default:0},suffix:Boolean,privateOffset:Number,privateSpan:Number,privateColStart:Number,privateShow:{type:Boolean,default:!0}},Z1=Z({__GRID_ITEM__:!0,name:"GridItem",alias:["Gi"],props:Gv,setup(){const{isSsrRef:e,xGapRef:o,itemStyleRef:t,overflowRef:r,layoutShiftDisabledRef:n}=$e(ja),l=Br();return{overflow:r,itemStyle:t,layoutShiftDisabled:n,mergedXGap:$(()=>Do(o.value||0)),deriveStyle:()=>{e.value;const{privateSpan:a=Wa,privateShow:s=!0,privateColStart:d=void 0,privateOffset:c=0}=l.vnode.props,{value:u}=o,f=Do(u||0);return{display:s?"":"none",gridColumn:`${d??`span ${a}`} / span ${a}`,marginLeft:c?`calc((100% - (${a} - 1) * ${f}) / ${a} * ${c} + ${f} * ${c})`:""}}}},render(){var e,o;if(this.layoutShiftDisabled){const{span:t,offset:r,mergedXGap:n}=this;return i("div",{style:{gridColumn:`span ${t} / span ${t}`,marginLeft:r?`calc((100% - (${t} - 1) * ${n}) / ${t} * ${r} + ${n} * ${r})`:""}},this.$slots)}return i("div",{style:[this.itemStyle,this.deriveStyle()]},(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e,{overflow:this.overflow}))}}),qv=Xi(24,null).map((e,o)=>{const t=o+1,r=`calc(100% / 24 * ${t})`;return[P(`${t}-span`,{width:r}),P(`${t}-offset`,{marginLeft:r}),P(`${t}-push`,{left:r}),P(`${t}-pull`,{right:r})]}),Yv=w([g("row",{width:"100%",display:"flex",flexWrap:"wrap"}),g("col",{verticalAlign:"top",boxSizing:"border-box",display:"inline-block",position:"relative",zIndex:"auto"},[S("box",{position:"relative",zIndex:"auto",width:"100%",height:"100%"}),qv])]),Na="n-row",Nn={gutter:{type:[Array,Number,String],default:0},alignItems:String,justifyContent:String},Xv=wo(Nn),Zv=Z({name:"Row",props:Nn,setup(e){const{mergedClsPrefixRef:o,mergedRtlRef:t}=Ie(e);Xo("-legacy-grid",Yv,o);const r=eo("Row",t,o),n=Ue(()=>{const{gutter:a}=e;return Array.isArray(a)&&a[1]||0}),l=Ue(()=>{const{gutter:a}=e;return Array.isArray(a)?a[0]:Number(a)});return De(Na,{mergedClsPrefixRef:o,gutterRef:le(e,"gutter"),verticalGutterRef:n,horizontalGutterRef:l}),{mergedClsPrefix:o,rtlEnabled:r,styleMargin:Ue(()=>`-${ro(n.value,{c:.5})} -${ro(l.value,{c:.5})}`),styleWidth:Ue(()=>`calc(100% + ${ro(l.value)})`)}},render(){return i("div",{class:[`${this.mergedClsPrefix}-row`,this.rtlEnabled&&`${this.mergedClsPrefix}-row--rtl`],style:{margin:this.styleMargin,width:this.styleWidth,alignItems:this.alignItems,justifyContent:this.justifyContent}},this.$slots)}}),Vn={span:{type:[String,Number],default:1},push:{type:[String,Number],default:0},pull:{type:[String,Number],default:0},offset:{type:[String,Number],default:0}},Qv=wo(Vn),Jv=Z({name:"Col",props:Vn,setup(e){const o=$e(Na,null);return o||Wo("col","`n-col` must be placed inside `n-row`."),{mergedClsPrefix:o.mergedClsPrefixRef,gutter:o.gutterRef,stylePadding:$(()=>`${ro(o.verticalGutterRef.value,{c:.5})} ${ro(o.horizontalGutterRef.value,{c:.5})}`),mergedPush:$(()=>Number(e.push)-Number(e.pull))}},render(){const{$slots:e,span:o,mergedPush:t,offset:r,stylePadding:n,gutter:l,mergedClsPrefix:a}=this;return i("div",{class:[`${a}-col`,{[`${a}-col--${o}-span`]:!0,[`${a}-col--${t}-push`]:t>0,[`${a}-col--${-t}-pull`]:t<0,[`${a}-col--${r}-offset`]:r}],style:{padding:n}},l?i("div",null,e):e)}}),Un=Object.assign(Object.assign({},Vn),Wn),eg=wo(Un),og=Z({name:"FormItemCol",props:Un,setup(){const e=M(null);return{formItemInstRef:e,validate:(...r)=>{const{value:n}=e;if(n)return n.validate(...r)},restoreValidation:()=>{const{value:r}=e;r&&r.restoreValidation()}}},render(){return i(Jv,mo(this.$props,Qv),{default:()=>{const e=mo(this.$props,Uv);return i(Kv,Object.assign({ref:"formItemInstRef"},e),this.$slots)}})}}),tg=Object.assign(Object.assign({},Nn),Un),Q1=Z({name:"FormItemRow",props:tg,setup(){const e=M(null);return{formItemColInstRef:e,validate:(...r)=>{const{value:n}=e;if(n)return n.validate(...r)},restoreValidation:()=>{const{value:r}=e;r&&r.restoreValidation()}}},render(){return i(Zv,mo(this.$props,Xv),{default:()=>{const e=mo(this.$props,eg);return i(og,Object.assign(Object.assign({ref:"formItemColInstRef"},e),{span:24}),this.$slots)}})}}),rg={closeMargin:"16px 12px",closeSize:"20px",closeIconSize:"16px",width:"365px",padding:"16px",titleFontSize:"16px",metaFontSize:"12px",descriptionFontSize:"12px"},ng=e=>{const{textColor2:o,successColor:t,infoColor:r,warningColor:n,errorColor:l,popoverColor:a,closeIconColor:s,closeIconColorHover:d,closeIconColorPressed:c,closeColorHover:u,closeColorPressed:f,textColor1:p,textColor3:v,borderRadius:h,fontWeightStrong:m,boxShadow2:x,lineHeight:y,fontSize:b}=e;return Object.assign(Object.assign({},rg),{borderRadius:h,lineHeight:y,fontSize:b,headerFontWeight:m,iconColor:o,iconColorSuccess:t,iconColorInfo:r,iconColorWarning:n,iconColorError:l,color:a,textColor:o,closeIconColor:s,closeIconColorHover:d,closeIconColorPressed:c,closeBorderRadius:h,closeColorHover:u,closeColorPressed:f,headerTextColor:p,descriptionTextColor:v,actionTextColor:o,boxShadow:x})},ig={name:"Notification",common:ue,peers:{Scrollbar:$o},self:ng},lg=ig,ag={margin:"0 0 8px 0",padding:"10px 20px",maxWidth:"720px",minWidth:"420px",iconMargin:"0 10px 0 0",closeMargin:"0 0 0 10px",closeSize:"20px",closeIconSize:"16px",iconSize:"20px",fontSize:"14px"},Va=e=>{const{textColor2:o,closeIconColor:t,closeIconColorHover:r,closeIconColorPressed:n,infoColor:l,successColor:a,errorColor:s,warningColor:d,popoverColor:c,boxShadow2:u,primaryColor:f,lineHeight:p,borderRadius:v,closeColorHover:h,closeColorPressed:m}=e;return Object.assign(Object.assign({},ag),{closeBorderRadius:v,textColor:o,textColorInfo:o,textColorSuccess:o,textColorError:o,textColorWarning:o,textColorLoading:o,color:c,colorInfo:c,colorSuccess:c,colorError:c,colorWarning:c,colorLoading:c,boxShadow:u,boxShadowInfo:u,boxShadowSuccess:u,boxShadowError:u,boxShadowWarning:u,boxShadowLoading:u,iconColor:o,iconColorInfo:l,iconColorSuccess:a,iconColorWarning:d,iconColorError:s,iconColorLoading:f,closeColorHover:h,closeColorPressed:m,closeIconColor:t,closeIconColorHover:r,closeIconColorPressed:n,closeColorHoverInfo:h,closeColorPressedInfo:m,closeIconColorInfo:t,closeIconColorHoverInfo:r,closeIconColorPressedInfo:n,closeColorHoverSuccess:h,closeColorPressedSuccess:m,closeIconColorSuccess:t,closeIconColorHoverSuccess:r,closeIconColorPressedSuccess:n,closeColorHoverError:h,closeColorPressedError:m,closeIconColorError:t,closeIconColorHoverError:r,closeIconColorPressedError:n,closeColorHoverWarning:h,closeColorPressedWarning:m,closeIconColorWarning:t,closeIconColorHoverWarning:r,closeIconColorPressedWarning:n,closeColorHoverLoading:h,closeColorPressedLoading:m,closeIconColorLoading:t,closeIconColorHoverLoading:r,closeIconColorPressedLoading:n,loadingColor:f,lineHeight:p,borderRadius:v})},sg={name:"Message",common:Ae,self:Va},dg=sg,cg={name:"Message",common:ue,self:Va},ug=cg,fg={name:"ButtonGroup",common:ue},hg=fg,pg={name:"GradientText",common:ue,self(e){const{primaryColor:o,successColor:t,warningColor:r,errorColor:n,infoColor:l,primaryColorSuppl:a,successColorSuppl:s,warningColorSuppl:d,errorColorSuppl:c,infoColorSuppl:u,fontWeightStrong:f}=e;return{fontWeight:f,rotate:"252deg",colorStartPrimary:o,colorEndPrimary:a,colorStartInfo:l,colorEndInfo:u,colorStartWarning:r,colorEndWarning:d,colorStartError:n,colorEndError:c,colorStartSuccess:t,colorEndSuccess:s}}},vg=pg,gg=e=>{const{primaryColor:o,successColor:t,warningColor:r,errorColor:n,infoColor:l,fontWeightStrong:a}=e;return{fontWeight:a,rotate:"252deg",colorStartPrimary:ee(o,{alpha:.6}),colorEndPrimary:o,colorStartInfo:ee(l,{alpha:.6}),colorEndInfo:l,colorStartWarning:ee(r,{alpha:.6}),colorEndWarning:r,colorStartError:ee(n,{alpha:.6}),colorEndError:n,colorStartSuccess:ee(t,{alpha:.6}),colorEndSuccess:t}},mg={name:"GradientText",common:Ae,self:gg},bg=mg,xg={name:"InputNumber",common:ue,peers:{Button:Po,Input:Ao},self(e){const{textColorDisabled:o}=e;return{iconColorDisabled:o}}},Cg=xg,yg=e=>{const{textColorDisabled:o}=e;return{iconColorDisabled:o}},wg={name:"InputNumber",common:Ae,peers:{Button:Yt,Input:br},self:yg},Sg=wg,zg={name:"Layout",common:ue,peers:{Scrollbar:$o},self(e){const{textColor2:o,bodyColor:t,popoverColor:r,cardColor:n,dividerColor:l,scrollbarColor:a,scrollbarColorHover:s}=e;return{textColor:o,textColorInverted:o,color:t,colorEmbedded:t,headerColor:n,headerColorInverted:n,footerColor:n,footerColorInverted:n,headerBorderColor:l,headerBorderColorInverted:l,footerBorderColor:l,footerBorderColorInverted:l,siderBorderColor:l,siderBorderColorInverted:l,siderColor:n,siderColorInverted:n,siderToggleButtonBorder:"1px solid transparent",siderToggleButtonColor:r,siderToggleButtonIconColor:o,siderToggleButtonIconColorInverted:o,siderToggleBarColor:Re(t,a),siderToggleBarColorHover:Re(t,s),__invertScrollbar:"false"}}},$g=zg,Ua=e=>{const{textColor2:o,cardColor:t,modalColor:r,popoverColor:n,dividerColor:l,borderRadius:a,fontSize:s,hoverColor:d}=e;return{textColor:o,color:t,colorHover:d,colorModal:r,colorHoverModal:Re(r,d),colorPopover:n,colorHoverPopover:Re(n,d),borderColor:l,borderColorModal:Re(r,l),borderColorPopover:Re(n,l),borderRadius:a,fontSize:s}},Pg={name:"List",common:Ae,self:Ua},Rg=Pg,kg={name:"List",common:ue,self:Ua},Ig=kg,Bg={name:"LoadingBar",common:ue,self(e){const{primaryColor:o}=e;return{colorError:"red",colorLoading:o,height:"2px"}}},Tg=Bg,Fg={name:"Log",common:ue,peers:{Scrollbar:$o,Code:ra},self(e){const{textColor2:o,inputColor:t,fontSize:r,primaryColor:n}=e;return{loaderFontSize:r,loaderTextColor:o,loaderColor:t,loaderBorder:"1px solid #0000",loadingColor:n}}},Og=Fg,_g={name:"Mention",common:ue,peers:{InternalSelectMenu:gr,Input:Ao},self(e){const{boxShadow2:o}=e;return{menuBoxShadow:o}}},Mg=_g,Dg=e=>{const{boxShadow2:o}=e;return{menuBoxShadow:o}},Hg={name:"Mention",common:Ae,peers:{InternalSelectMenu:Lr,Input:br},self:Dg},Lg=Hg;function Ag(e,o,t,r){return{itemColorHoverInverted:"#0000",itemColorActiveInverted:o,itemColorActiveHoverInverted:o,itemColorActiveCollapsedInverted:o,itemTextColorInverted:e,itemTextColorHoverInverted:t,itemTextColorChildActiveInverted:t,itemTextColorChildActiveHoverInverted:t,itemTextColorActiveInverted:t,itemTextColorActiveHoverInverted:t,itemTextColorHorizontalInverted:e,itemTextColorHoverHorizontalInverted:t,itemTextColorChildActiveHorizontalInverted:t,itemTextColorChildActiveHoverHorizontalInverted:t,itemTextColorActiveHorizontalInverted:t,itemTextColorActiveHoverHorizontalInverted:t,itemIconColorInverted:e,itemIconColorHoverInverted:t,itemIconColorActiveInverted:t,itemIconColorActiveHoverInverted:t,itemIconColorChildActiveInverted:t,itemIconColorChildActiveHoverInverted:t,itemIconColorCollapsedInverted:e,itemIconColorHorizontalInverted:e,itemIconColorHoverHorizontalInverted:t,itemIconColorActiveHorizontalInverted:t,itemIconColorActiveHoverHorizontalInverted:t,itemIconColorChildActiveHorizontalInverted:t,itemIconColorChildActiveHoverHorizontalInverted:t,arrowColorInverted:e,arrowColorHoverInverted:t,arrowColorActiveInverted:t,arrowColorActiveHoverInverted:t,arrowColorChildActiveInverted:t,arrowColorChildActiveHoverInverted:t,groupTextColorInverted:r}}const Ka=e=>{const{borderRadius:o,textColor3:t,primaryColor:r,textColor2:n,textColor1:l,fontSize:a,dividerColor:s,hoverColor:d,primaryColorHover:c}=e;return Object.assign({borderRadius:o,color:"#0000",groupTextColor:t,itemColorHover:d,itemColorActive:ee(r,{alpha:.1}),itemColorActiveHover:ee(r,{alpha:.1}),itemColorActiveCollapsed:ee(r,{alpha:.1}),itemTextColor:n,itemTextColorHover:n,itemTextColorActive:r,itemTextColorActiveHover:r,itemTextColorChildActive:r,itemTextColorChildActiveHover:r,itemTextColorHorizontal:n,itemTextColorHoverHorizontal:c,itemTextColorActiveHorizontal:r,itemTextColorActiveHoverHorizontal:r,itemTextColorChildActiveHorizontal:r,itemTextColorChildActiveHoverHorizontal:r,itemIconColor:l,itemIconColorHover:l,itemIconColorActive:r,itemIconColorActiveHover:r,itemIconColorChildActive:r,itemIconColorChildActiveHover:r,itemIconColorCollapsed:l,itemIconColorHorizontal:l,itemIconColorHoverHorizontal:c,itemIconColorActiveHorizontal:r,itemIconColorActiveHoverHorizontal:r,itemIconColorChildActiveHorizontal:r,itemIconColorChildActiveHoverHorizontal:r,itemHeight:"42px",arrowColor:n,arrowColorHover:n,arrowColorActive:r,arrowColorActiveHover:r,arrowColorChildActive:r,arrowColorChildActiveHover:r,colorInverted:"#0000",borderColorHorizontal:"#0000",fontSize:a,dividerColor:s},Ag("#BBB",r,"#FFF","#AAA"))},Eg={name:"Menu",common:Ae,peers:{Tooltip:Er,Dropdown:ma},self:Ka},jg=Eg,Wg={name:"Menu",common:ue,peers:{Tooltip:Ar,Dropdown:Hn},self(e){const{primaryColor:o,primaryColorSuppl:t}=e,r=Ka(e);return r.itemColorActive=ee(o,{alpha:.15}),r.itemColorActiveHover=ee(o,{alpha:.15}),r.itemColorActiveCollapsed=ee(o,{alpha:.15}),r.itemColorActiveInverted=t,r.itemColorActiveHoverInverted=t,r.itemColorActiveCollapsedInverted=t,r}},Ng=Wg,Vg={titleFontSize:"18px",backSize:"22px"};function Ug(e){const{textColor1:o,textColor2:t,textColor3:r,fontSize:n,fontWeightStrong:l,primaryColorHover:a,primaryColorPressed:s}=e;return Object.assign(Object.assign({},Vg),{titleFontWeight:l,fontSize:n,titleTextColor:o,backColor:t,backColorHover:a,backColorPressed:s,subtitleTextColor:r})}const Kg={name:"PageHeader",common:ue,self:Ug},Gg={iconSize:"22px"},Ga=e=>{const{fontSize:o,warningColor:t}=e;return Object.assign(Object.assign({},Gg),{fontSize:o,iconColor:t})},qg={name:"Popconfirm",common:Ae,peers:{Button:Yt,Popover:qt},self:Ga},Yg=qg,Xg={name:"Popconfirm",common:ue,peers:{Button:Po,Popover:Bt},self:Ga},Zg=Xg,qa=e=>{const{infoColor:o,successColor:t,warningColor:r,errorColor:n,textColor2:l,progressRailColor:a,fontSize:s,fontWeight:d}=e;return{fontSize:s,fontSizeCircle:"28px",fontWeightCircle:d,railColor:a,railHeight:"8px",iconSizeCircle:"36px",iconSizeLine:"18px",iconColor:o,iconColorInfo:o,iconColorSuccess:t,iconColorWarning:r,iconColorError:n,textColorCircle:l,textColorLineInner:"rgb(255, 255, 255)",textColorLineOuter:l,fillColor:o,fillColorInfo:o,fillColorSuccess:t,fillColorWarning:r,fillColorError:n,lineBgProcessing:"linear-gradient(90deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .5) 100%)"}},Qg={name:"Progress",common:Ae,self:qa},Ya=Qg,Jg={name:"Progress",common:ue,self(e){const o=qa(e);return o.textColorLineInner="rgb(0, 0, 0)",o.lineBgProcessing="linear-gradient(90deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .5) 100%)",o}},Xa=Jg,em={name:"Rate",common:ue,self(e){const{railColor:o}=e;return{itemColor:o,itemColorActive:"#CCAA33",itemSize:"20px",sizeSmall:"16px",sizeMedium:"20px",sizeLarge:"24px"}}},om=em,tm={titleFontSizeSmall:"26px",titleFontSizeMedium:"32px",titleFontSizeLarge:"40px",titleFontSizeHuge:"48px",fontSizeSmall:"14px",fontSizeMedium:"14px",fontSizeLarge:"15px",fontSizeHuge:"16px",iconSizeSmall:"64px",iconSizeMedium:"80px",iconSizeLarge:"100px",iconSizeHuge:"125px",iconColor418:void 0,iconColor404:void 0,iconColor403:void 0,iconColor500:void 0},Za=e=>{const{textColor2:o,textColor1:t,errorColor:r,successColor:n,infoColor:l,warningColor:a,lineHeight:s,fontWeightStrong:d}=e;return Object.assign(Object.assign({},tm),{lineHeight:s,titleFontWeight:d,titleTextColor:t,textColor:o,iconColorError:r,iconColorSuccess:n,iconColorInfo:l,iconColorWarning:a})},rm={name:"Result",common:Ae,self:Za},nm=rm,im={name:"Result",common:ue,self:Za},lm=im,am={railHeight:"4px",railWidthVertical:"4px",handleSize:"18px",dotHeight:"8px",dotWidth:"8px",dotBorderRadius:"4px"},sm={name:"Slider",common:ue,self(e){const o="0 2px 8px 0 rgba(0, 0, 0, 0.12)",{railColor:t,modalColor:r,primaryColorSuppl:n,popoverColor:l,textColor2:a,cardColor:s,borderRadius:d,fontSize:c,opacityDisabled:u}=e;return Object.assign(Object.assign({},am),{fontSize:c,markFontSize:c,railColor:t,railColorHover:t,fillColor:n,fillColorHover:n,opacityDisabled:u,handleColor:"#FFF",dotColor:s,dotColorModal:r,dotColorPopover:l,handleBoxShadow:"0px 2px 4px 0 rgba(0, 0, 0, 0.4)",handleBoxShadowHover:"0px 2px 4px 0 rgba(0, 0, 0, 0.4)",handleBoxShadowActive:"0px 2px 4px 0 rgba(0, 0, 0, 0.4)",handleBoxShadowFocus:"0px 2px 4px 0 rgba(0, 0, 0, 0.4)",indicatorColor:l,indicatorBoxShadow:o,indicatorTextColor:a,indicatorBorderRadius:d,dotBorder:`2px solid ${t}`,dotBorderActive:`2px solid ${n}`,dotBoxShadow:""})}},dm=sm,Qa=e=>{const{opacityDisabled:o,heightTiny:t,heightSmall:r,heightMedium:n,heightLarge:l,heightHuge:a,primaryColor:s,fontSize:d}=e;return{fontSize:d,textColor:s,sizeTiny:t,sizeSmall:r,sizeMedium:n,sizeLarge:l,sizeHuge:a,color:s,opacitySpinning:o}},cm={name:"Spin",common:Ae,self:Qa},um=cm,fm={name:"Spin",common:ue,self:Qa},hm=fm,Ja=e=>{const{textColor2:o,textColor3:t,fontSize:r,fontWeight:n}=e;return{labelFontSize:r,labelFontWeight:n,valueFontWeight:n,valueFontSize:"24px",labelTextColor:t,valuePrefixTextColor:o,valueSuffixTextColor:o,valueTextColor:o}},pm={name:"Statistic",common:Ae,self:Ja},vm=pm,gm={name:"Statistic",common:ue,self:Ja},mm=gm,bm={stepHeaderFontSizeSmall:"14px",stepHeaderFontSizeMedium:"16px",indicatorIndexFontSizeSmall:"14px",indicatorIndexFontSizeMedium:"16px",indicatorSizeSmall:"22px",indicatorSizeMedium:"28px",indicatorIconSizeSmall:"14px",indicatorIconSizeMedium:"18px"},xm=e=>{const{fontWeightStrong:o,baseColor:t,textColorDisabled:r,primaryColor:n,errorColor:l,textColor1:a,textColor2:s}=e;return Object.assign(Object.assign({},bm),{stepHeaderFontWeight:o,indicatorTextColorProcess:t,indicatorTextColorWait:r,indicatorTextColorFinish:n,indicatorTextColorError:l,indicatorBorderColorProcess:n,indicatorBorderColorWait:r,indicatorBorderColorFinish:n,indicatorBorderColorError:l,indicatorColorProcess:n,indicatorColorWait:"#0000",indicatorColorFinish:"#0000",indicatorColorError:"#0000",splitorColorProcess:r,splitorColorWait:r,splitorColorFinish:n,splitorColorError:r,headerTextColorProcess:a,headerTextColorWait:r,headerTextColorFinish:r,headerTextColorError:l,descriptionTextColorProcess:s,descriptionTextColorWait:r,descriptionTextColorFinish:r,descriptionTextColorError:l})},Cm={name:"Steps",common:ue,self:xm},ym=Cm,es={buttonHeightSmall:"14px",buttonHeightMedium:"18px",buttonHeightLarge:"22px",buttonWidthSmall:"14px",buttonWidthMedium:"18px",buttonWidthLarge:"22px",buttonWidthPressedSmall:"20px",buttonWidthPressedMedium:"24px",buttonWidthPressedLarge:"28px",railHeightSmall:"18px",railHeightMedium:"22px",railHeightLarge:"26px",railWidthSmall:"32px",railWidthMedium:"40px",railWidthLarge:"48px"},wm={name:"Switch",common:ue,self(e){const{primaryColorSuppl:o,opacityDisabled:t,borderRadius:r,primaryColor:n,textColor2:l,baseColor:a}=e;return Object.assign(Object.assign({},es),{iconColor:a,textColor:l,loadingColor:o,opacityDisabled:t,railColor:"rgba(255, 255, 255, .20)",railColorActive:o,buttonBoxShadow:"0px 2px 4px 0 rgba(0, 0, 0, 0.4)",buttonColor:"#FFF",railBorderRadiusSmall:r,railBorderRadiusMedium:r,railBorderRadiusLarge:r,buttonBorderRadiusSmall:r,buttonBorderRadiusMedium:r,buttonBorderRadiusLarge:r,boxShadowFocus:`0 0 8px 0 ${ee(n,{alpha:.3})}`})}},Sm=wm,zm=e=>{const{primaryColor:o,opacityDisabled:t,borderRadius:r,textColor3:n}=e;return Object.assign(Object.assign({},es),{iconColor:n,textColor:"white",loadingColor:o,opacityDisabled:t,railColor:"rgba(0, 0, 0, .14)",railColorActive:o,buttonBoxShadow:"0 1px 4px 0 rgba(0, 0, 0, 0.3), inset 0 0 1px 0 rgba(0, 0, 0, 0.05)",buttonColor:"#FFF",railBorderRadiusSmall:r,railBorderRadiusMedium:r,railBorderRadiusLarge:r,buttonBorderRadiusSmall:r,buttonBorderRadiusMedium:r,buttonBorderRadiusLarge:r,boxShadowFocus:`0 0 0 2px ${ee(o,{alpha:.2})}`})},$m={name:"Switch",common:Ae,self:zm},Pm=$m,Rm={thPaddingSmall:"6px",thPaddingMedium:"12px",thPaddingLarge:"12px",tdPaddingSmall:"6px",tdPaddingMedium:"12px",tdPaddingLarge:"12px"},km=e=>{const{dividerColor:o,cardColor:t,modalColor:r,popoverColor:n,tableHeaderColor:l,tableColorStriped:a,textColor1:s,textColor2:d,borderRadius:c,fontWeightStrong:u,lineHeight:f,fontSizeSmall:p,fontSizeMedium:v,fontSizeLarge:h}=e;return Object.assign(Object.assign({},Rm),{fontSizeSmall:p,fontSizeMedium:v,fontSizeLarge:h,lineHeight:f,borderRadius:c,borderColor:Re(t,o),borderColorModal:Re(r,o),borderColorPopover:Re(n,o),tdColor:t,tdColorModal:r,tdColorPopover:n,tdColorStriped:Re(t,a),tdColorStripedModal:Re(r,a),tdColorStripedPopover:Re(n,a),thColor:Re(t,l),thColorModal:Re(r,l),thColorPopover:Re(n,l),thTextColor:s,tdTextColor:d,thFontWeight:u})},Im={name:"Table",common:ue,self:km},Bm=Im,Tm={tabFontSizeSmall:"14px",tabFontSizeMedium:"14px",tabFontSizeLarge:"16px",tabGapSmallLine:"36px",tabGapMediumLine:"36px",tabGapLargeLine:"36px",tabGapSmallLineVertical:"8px",tabGapMediumLineVertical:"8px",tabGapLargeLineVertical:"8px",tabPaddingSmallLine:"6px 0",tabPaddingMediumLine:"10px 0",tabPaddingLargeLine:"14px 0",tabPaddingVerticalSmallLine:"6px 12px",tabPaddingVerticalMediumLine:"8px 16px",tabPaddingVerticalLargeLine:"10px 20px",tabGapSmallBar:"36px",tabGapMediumBar:"36px",tabGapLargeBar:"36px",tabGapSmallBarVertical:"8px",tabGapMediumBarVertical:"8px",tabGapLargeBarVertical:"8px",tabPaddingSmallBar:"4px 0",tabPaddingMediumBar:"6px 0",tabPaddingLargeBar:"10px 0",tabPaddingVerticalSmallBar:"6px 12px",tabPaddingVerticalMediumBar:"8px 16px",tabPaddingVerticalLargeBar:"10px 20px",tabGapSmallCard:"4px",tabGapMediumCard:"4px",tabGapLargeCard:"4px",tabGapSmallCardVertical:"4px",tabGapMediumCardVertical:"4px",tabGapLargeCardVertical:"4px",tabPaddingSmallCard:"8px 16px",tabPaddingMediumCard:"10px 20px",tabPaddingLargeCard:"12px 24px",tabPaddingSmallSegment:"4px 0",tabPaddingMediumSegment:"6px 0",tabPaddingLargeSegment:"8px 0",tabPaddingVerticalLargeSegment:"0 8px",tabPaddingVerticalSmallCard:"8px 12px",tabPaddingVerticalMediumCard:"10px 16px",tabPaddingVerticalLargeCard:"12px 20px",tabPaddingVerticalSmallSegment:"0 4px",tabPaddingVerticalMediumSegment:"0 6px",tabGapSmallSegment:"0",tabGapMediumSegment:"0",tabGapLargeSegment:"0",tabGapSmallSegmentVertical:"0",tabGapMediumSegmentVertical:"0",tabGapLargeSegmentVertical:"0",panePaddingSmall:"8px 0 0 0",panePaddingMedium:"12px 0 0 0",panePaddingLarge:"16px 0 0 0",closeSize:"18px",closeIconSize:"14px"},os=e=>{const{textColor2:o,primaryColor:t,textColorDisabled:r,closeIconColor:n,closeIconColorHover:l,closeIconColorPressed:a,closeColorHover:s,closeColorPressed:d,tabColor:c,baseColor:u,dividerColor:f,fontWeight:p,textColor1:v,borderRadius:h,fontSize:m,fontWeightStrong:x}=e;return Object.assign(Object.assign({},Tm),{colorSegment:c,tabFontSizeCard:m,tabTextColorLine:v,tabTextColorActiveLine:t,tabTextColorHoverLine:t,tabTextColorDisabledLine:r,tabTextColorSegment:v,tabTextColorActiveSegment:o,tabTextColorHoverSegment:o,tabTextColorDisabledSegment:r,tabTextColorBar:v,tabTextColorActiveBar:t,tabTextColorHoverBar:t,tabTextColorDisabledBar:r,tabTextColorCard:v,tabTextColorHoverCard:v,tabTextColorActiveCard:t,tabTextColorDisabledCard:r,barColor:t,closeIconColor:n,closeIconColorHover:l,closeIconColorPressed:a,closeColorHover:s,closeColorPressed:d,closeBorderRadius:h,tabColor:c,tabColorSegment:u,tabBorderColor:f,tabFontWeightActive:p,tabFontWeight:p,tabBorderRadius:h,paneTextColor:o,fontWeightStrong:x})},Fm={name:"Tabs",common:Ae,self:os},Om=Fm,_m={name:"Tabs",common:ue,self(e){const o=os(e),{inputColor:t}=e;return o.colorSegment=t,o.tabColorSegment=t,o}},Mm=_m,ts=e=>{const{textColor1:o,textColor2:t,fontWeightStrong:r,fontSize:n}=e;return{fontSize:n,titleTextColor:o,textColor:t,titleFontWeight:r}},Dm={name:"Thing",common:Ae,self:ts},Hm=Dm,Lm={name:"Thing",common:ue,self:ts},Am=Lm,Em={titleMarginMedium:"0 0 6px 0",titleMarginLarge:"-2px 0 6px 0",titleFontSizeMedium:"14px",titleFontSizeLarge:"16px",iconSizeMedium:"14px",iconSizeLarge:"14px"},jm={name:"Timeline",common:ue,self(e){const{textColor3:o,infoColorSuppl:t,errorColorSuppl:r,successColorSuppl:n,warningColorSuppl:l,textColor1:a,textColor2:s,railColor:d,fontWeightStrong:c,fontSize:u}=e;return Object.assign(Object.assign({},Em),{contentFontSize:u,titleFontWeight:c,circleBorder:`2px solid ${o}`,circleBorderInfo:`2px solid ${t}`,circleBorderError:`2px solid ${r}`,circleBorderSuccess:`2px solid ${n}`,circleBorderWarning:`2px solid ${l}`,iconColor:o,iconColorInfo:t,iconColorError:r,iconColorSuccess:n,iconColorWarning:l,titleTextColor:a,contentTextColor:s,metaTextColor:o,lineColor:d})}},Wm=jm,Nm={extraFontSizeSmall:"12px",extraFontSizeMedium:"12px",extraFontSizeLarge:"14px",titleFontSizeSmall:"14px",titleFontSizeMedium:"16px",titleFontSizeLarge:"16px",closeSize:"20px",closeIconSize:"16px",headerHeightSmall:"44px",headerHeightMedium:"44px",headerHeightLarge:"50px"},Vm={name:"Transfer",common:ue,peers:{Checkbox:Xt,Scrollbar:$o,Input:Ao,Empty:It,Button:Po},self(e){const{fontWeight:o,fontSizeLarge:t,fontSizeMedium:r,fontSizeSmall:n,heightLarge:l,heightMedium:a,borderRadius:s,inputColor:d,tableHeaderColor:c,textColor1:u,textColorDisabled:f,textColor2:p,textColor3:v,hoverColor:h,closeColorHover:m,closeColorPressed:x,closeIconColor:y,closeIconColorHover:b,closeIconColorPressed:_,dividerColor:I}=e;return Object.assign(Object.assign({},Nm),{itemHeightSmall:a,itemHeightMedium:a,itemHeightLarge:l,fontSizeSmall:n,fontSizeMedium:r,fontSizeLarge:t,borderRadius:s,dividerColor:I,borderColor:"#0000",listColor:d,headerColor:c,titleTextColor:u,titleTextColorDisabled:f,extraTextColor:v,extraTextColorDisabled:f,itemTextColor:p,itemTextColorDisabled:f,itemColorPending:h,titleFontWeight:o,closeColorHover:m,closeColorPressed:x,closeIconColor:y,closeIconColorHover:b,closeIconColorPressed:_})}},Um=Vm,Km=e=>{const{borderRadiusSmall:o,dividerColor:t,hoverColor:r,pressedColor:n,primaryColor:l,textColor3:a,textColor2:s,textColorDisabled:d,fontSize:c}=e;return{fontSize:c,lineHeight:"1.5",nodeHeight:"30px",nodeWrapperPadding:"3px 0",nodeBorderRadius:o,nodeColorHover:r,nodeColorPressed:n,nodeColorActive:ee(l,{alpha:.1}),arrowColor:a,nodeTextColor:s,nodeTextColorDisabled:d,loadingColor:l,dropMarkColor:l,lineColor:t}},Gm={name:"Tree",common:ue,peers:{Checkbox:Xt,Scrollbar:$o,Empty:It},self(e){const{primaryColor:o}=e,t=Km(e);return t.nodeColorActive=ee(o,{alpha:.15}),t}},rs=Gm,qm={name:"TreeSelect",common:ue,peers:{Tree:rs,Empty:It,InternalSelection:On}},Ym=qm,Xm={headerFontSize1:"30px",headerFontSize2:"22px",headerFontSize3:"18px",headerFontSize4:"16px",headerFontSize5:"16px",headerFontSize6:"16px",headerMargin1:"28px 0 20px 0",headerMargin2:"28px 0 20px 0",headerMargin3:"28px 0 20px 0",headerMargin4:"28px 0 18px 0",headerMargin5:"28px 0 18px 0",headerMargin6:"28px 0 18px 0",headerPrefixWidth1:"16px",headerPrefixWidth2:"16px",headerPrefixWidth3:"12px",headerPrefixWidth4:"12px",headerPrefixWidth5:"12px",headerPrefixWidth6:"12px",headerBarWidth1:"4px",headerBarWidth2:"4px",headerBarWidth3:"3px",headerBarWidth4:"3px",headerBarWidth5:"3px",headerBarWidth6:"3px",pMargin:"16px 0 16px 0",liMargin:".25em 0 0 0",olPadding:"0 0 0 2em",ulPadding:"0 0 0 2em"},ns=e=>{const{primaryColor:o,textColor2:t,borderColor:r,lineHeight:n,fontSize:l,borderRadiusSmall:a,dividerColor:s,fontWeightStrong:d,textColor1:c,textColor3:u,infoColor:f,warningColor:p,errorColor:v,successColor:h,codeColor:m}=e;return Object.assign(Object.assign({},Xm),{aTextColor:o,blockquoteTextColor:t,blockquotePrefixColor:r,blockquoteLineHeight:n,blockquoteFontSize:l,codeBorderRadius:a,liTextColor:t,liLineHeight:n,liFontSize:l,hrColor:s,headerFontWeight:d,headerTextColor:c,pTextColor:t,pTextColor1Depth:c,pTextColor2Depth:t,pTextColor3Depth:u,pLineHeight:n,pFontSize:l,headerBarColor:o,headerBarColorPrimary:o,headerBarColorInfo:f,headerBarColorError:v,headerBarColorWarning:p,headerBarColorSuccess:h,textColor:t,textColor1Depth:c,textColor2Depth:t,textColor3Depth:u,textColorPrimary:o,textColorInfo:f,textColorSuccess:h,textColorWarning:p,textColorError:v,codeTextColor:t,codeColor:m,codeBorder:"1px solid #0000"})},Zm={name:"Typography",common:Ae,self:ns},is=Zm,Qm={name:"Typography",common:ue,self:ns},Jm=Qm,ls=e=>{const{iconColor:o,primaryColor:t,errorColor:r,textColor2:n,successColor:l,opacityDisabled:a,actionColor:s,borderColor:d,hoverColor:c,lineHeight:u,borderRadius:f,fontSize:p}=e;return{fontSize:p,lineHeight:u,borderRadius:f,draggerColor:s,draggerBorder:`1px dashed ${d}`,draggerBorderHover:`1px dashed ${t}`,itemColorHover:c,itemColorHoverError:ee(r,{alpha:.06}),itemTextColor:n,itemTextColorError:r,itemTextColorSuccess:l,itemIconColor:o,itemDisabledOpacity:a,itemBorderImageCardError:`1px solid ${r}`,itemBorderImageCard:`1px solid ${d}`}},eb={name:"Upload",common:Ae,peers:{Button:Yt,Progress:Ya},self:ls},ob=eb,tb={name:"Upload",common:ue,peers:{Button:Po,Progress:Xa},self(e){const{errorColor:o}=e,t=ls(e);return t.itemColorHoverError=ee(o,{alpha:.09}),t}},rb=tb,nb={name:"Watermark",common:ue,self(e){const{fontFamily:o}=e;return{fontFamily:o}}},ib=nb,lb={name:"Row",common:ue},ab=lb,sb={name:"FloatButton",common:ue,self(e){const{popoverColor:o,textColor2:t,buttonColor2Hover:r,buttonColor2Pressed:n,primaryColor:l,primaryColorHover:a,primaryColorPressed:s,baseColor:d,borderRadius:c}=e;return{color:o,textColor:t,boxShadow:"0 2px 8px 0px rgba(0, 0, 0, .12)",boxShadowHover:"0 2px 12px 0px rgba(0, 0, 0, .18)",boxShadowPressed:"0 2px 12px 0px rgba(0, 0, 0, .18)",colorHover:r,colorPressed:n,colorPrimary:l,colorPrimaryHover:a,colorPrimaryPressed:s,textColorPrimary:d,borderRadiusSquare:c}}},db=sb,J1=Z({name:"GlobalStyle",setup(){if(typeof document>"u")return;const e=$e(jo,null),{body:o}=document,{style:t}=o;let r=!1,n=!0;ur(()=>{oo(()=>{var l,a;const{textColor2:s,fontSize:d,fontFamily:c,bodyColor:u,cubicBezierEaseInOut:f,lineHeight:p}=e?Lt({},((l=e.mergedThemeRef.value)===null||l===void 0?void 0:l.common)||Ae,(a=e.mergedThemeOverridesRef.value)===null||a===void 0?void 0:a.common):Ae;if(r||!o.hasAttribute("n-styled")){t.setProperty("-webkit-text-size-adjust","100%"),t.setProperty("-webkit-tap-highlight-color","transparent"),t.padding="0",t.margin="0",t.backgroundColor=u,t.color=s,t.fontSize=d,t.fontFamily=c,t.lineHeight=p;const v=`color .3s ${f}, background-color .3s ${f}`;n?setTimeout(()=>{t.transition=v},0):t.transition=v,o.setAttribute("n-styled",""),r=!0,n=!1}})}),dd(()=>{r&&o.removeAttribute("n-styled")})},render(){return null}}),cb=g("gradient-text",` + display: inline-block; + font-weight: var(--n-font-weight); + -webkit-background-clip: text; + background-clip: text; + color: #0000; + white-space: nowrap; + background-image: linear-gradient(var(--n-rotate), var(--n-color-start) 0%, var(--n-color-end) 100%); + transition: + --n-color-start .3s var(--n-bezier), + --n-color-end .3s var(--n-bezier); +`),ub=Object.assign(Object.assign({},ae.props),{size:[String,Number],fontSize:[String,Number],type:{type:String,default:"primary"},color:[Object,String],gradient:[Object,String]}),ex=Z({name:"GradientText",props:ub,setup(e){pl();const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=$(()=>{const{type:c}=e;return c==="danger"?"error":c}),n=$(()=>{let c=e.size||e.fontSize;return c&&(c=ro(c)),c||void 0}),l=$(()=>{const c=e.color||e.gradient;if(typeof c=="string")return c;if(c){const u=c.deg||0,f=c.from,p=c.to;return`linear-gradient(${u}deg, ${f} 0%, ${p} 100%)`}}),a=ae("GradientText","-gradient-text",cb,bg,e,o),s=$(()=>{const{value:c}=r,{common:{cubicBezierEaseInOut:u},self:{rotate:f,[N("colorStart",c)]:p,[N("colorEnd",c)]:v,fontWeight:h}}=a.value;return{"--n-bezier":u,"--n-rotate":f,"--n-color-start":p,"--n-color-end":v,"--n-font-weight":h}}),d=t?We("gradient-text",$(()=>r.value[0]),s,e):void 0;return{mergedClsPrefix:o,compatibleType:r,styleFontSize:n,styleBgImage:l,cssVars:t?void 0:s,themeClass:d==null?void 0:d.themeClass,onRender:d==null?void 0:d.onRender}},render(){const{mergedClsPrefix:e,onRender:o}=this;return o==null||o(),i("span",{class:[`${e}-gradient-text`,`${e}-gradient-text--${this.compatibleType}-type`,this.themeClass],style:[{fontSize:this.styleFontSize,backgroundImage:this.styleBgImage},this.cssVars]},this.$slots)}}),fb={xs:0,s:640,m:1024,l:1280,xl:1536,xxl:1920},as=24,ln="__ssr__",hb={layoutShiftDisabled:Boolean,responsive:{type:[String,Boolean],default:"self"},cols:{type:[Number,String],default:as},itemResponsive:Boolean,collapsed:Boolean,collapsedRows:{type:Number,default:1},itemStyle:[Object,String],xGap:{type:[Number,String],default:0},yGap:{type:[Number,String],default:0}},ox=Z({name:"Grid",inheritAttrs:!1,props:hb,setup(e){const{mergedClsPrefixRef:o,mergedBreakpointsRef:t}=Ie(e),r=/^\d+$/,n=M(void 0),l=vd((t==null?void 0:t.value)||fb),a=Ue(()=>!!(e.itemResponsive||!r.test(e.cols.toString())||!r.test(e.xGap.toString())||!r.test(e.yGap.toString()))),s=$(()=>{if(a.value)return e.responsive==="self"?n.value:l.value}),d=Ue(()=>{var y;return(y=Number(Ot(e.cols.toString(),s.value)))!==null&&y!==void 0?y:as}),c=Ue(()=>Ot(e.xGap.toString(),s.value)),u=Ue(()=>Ot(e.yGap.toString(),s.value)),f=y=>{n.value=y.contentRect.width},p=y=>{Zi(f,y)},v=M(!1),h=$(()=>{if(e.responsive==="self")return p}),m=M(!1),x=M();return po(()=>{const{value:y}=x;y&&y.hasAttribute(ln)&&(y.removeAttribute(ln),m.value=!0)}),De(ja,{layoutShiftDisabledRef:le(e,"layoutShiftDisabled"),isSsrRef:m,itemStyleRef:le(e,"itemStyle"),xGapRef:c,overflowRef:v}),{isSsr:!No,contentEl:x,mergedClsPrefix:o,style:$(()=>e.layoutShiftDisabled?{width:"100%",display:"grid",gridTemplateColumns:`repeat(${e.cols}, minmax(0, 1fr))`,columnGap:Do(e.xGap),rowGap:Do(e.yGap)}:{width:"100%",display:"grid",gridTemplateColumns:`repeat(${d.value}, minmax(0, 1fr))`,columnGap:Do(c.value),rowGap:Do(u.value)}),isResponsive:a,responsiveQuery:s,responsiveCols:d,handleResize:h,overflow:v}},render(){if(this.layoutShiftDisabled)return i("div",To({ref:"contentEl",class:`${this.mergedClsPrefix}-grid`,style:this.style},this.$attrs),this.$slots);const e=()=>{var o,t,r,n,l,a,s;this.overflow=!1;const d=rt(Pn(this)),c=[],{collapsed:u,collapsedRows:f,responsiveCols:p,responsiveQuery:v}=this;d.forEach(b=>{var _,I,R,z,C;if(((_=b==null?void 0:b.type)===null||_===void 0?void 0:_.__GRID_ITEM__)!==!0)return;if(Rd(b)){const D=rr(b);D.props?D.props.privateShow=!1:D.props={privateShow:!1},c.push({child:D,rawChildSpan:0});return}b.dirs=((I=b.dirs)===null||I===void 0?void 0:I.filter(({dir:D})=>D!==Go))||null,((R=b.dirs)===null||R===void 0?void 0:R.length)===0&&(b.dirs=null);const H=rr(b),k=Number((C=Ot((z=H.props)===null||z===void 0?void 0:z.span,v))!==null&&C!==void 0?C:Di);k!==0&&c.push({child:H,rawChildSpan:k})});let h=0;const m=(o=c[c.length-1])===null||o===void 0?void 0:o.child;if(m!=null&&m.props){const b=(t=m.props)===null||t===void 0?void 0:t.suffix;b!==void 0&&b!==!1&&(h=Number((n=Ot((r=m.props)===null||r===void 0?void 0:r.span,v))!==null&&n!==void 0?n:Di),m.props.privateSpan=h,m.props.privateColStart=p+1-h,m.props.privateShow=(l=m.props.privateShow)!==null&&l!==void 0?l:!0)}let x=0,y=!1;for(const{child:b,rawChildSpan:_}of c){if(y&&(this.overflow=!0),!y){const I=Number((s=Ot((a=b.props)===null||a===void 0?void 0:a.offset,v))!==null&&s!==void 0?s:0),R=Math.min(_+I,p);if(b.props?(b.props.privateSpan=R,b.props.privateOffset=I):b.props={privateSpan:R,privateOffset:I},u){const z=x%p;R+z>p&&(x+=p-z),R+x+h>f*p?y=!0:x+=R}}y&&(b.props?b.props.privateShow!==!0&&(b.props.privateShow=!1):b.props={privateShow:!1})}return i("div",To({ref:"contentEl",class:`${this.mergedClsPrefix}-grid`,style:this.style,[ln]:this.isSsr||void 0},this.$attrs),c.map(({child:b})=>b))};return this.isResponsive&&this.responsive==="self"?i(tt,{onResize:this.handleResize},{default:e}):e()}}),pb=e=>{const{primaryColor:o,baseColor:t}=e;return{color:o,iconColor:t}},vb={name:"IconWrapper",common:ue,self:pb},gb=vb,Kn=Object.assign(Object.assign({},ae.props),{onPreviewPrev:Function,onPreviewNext:Function,showToolbar:{type:Boolean,default:!0},showToolbarTooltip:Boolean}),ss="n-image";function mb(){return{toolbarIconColor:"rgba(255, 255, 255, .9)",toolbarColor:"rgba(0, 0, 0, .35)",toolbarBoxShadow:"none",toolbarBorderRadius:"24px"}}const bb={name:"Image",common:Ae,peers:{Tooltip:Er},self:mb},xb={name:"Image",common:ue,peers:{Tooltip:Ar},self:e=>{const{textColor2:o}=e;return{toolbarIconColor:o,toolbarColor:"rgba(0, 0, 0, .35)",toolbarBoxShadow:"none",toolbarBorderRadius:"24px"}}},Cb=i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M6 5C5.75454 5 5.55039 5.17688 5.50806 5.41012L5.5 5.5V14.5C5.5 14.7761 5.72386 15 6 15C6.24546 15 6.44961 14.8231 6.49194 14.5899L6.5 14.5V5.5C6.5 5.22386 6.27614 5 6 5ZM13.8536 5.14645C13.68 4.97288 13.4106 4.9536 13.2157 5.08859L13.1464 5.14645L8.64645 9.64645C8.47288 9.82001 8.4536 10.0894 8.58859 10.2843L8.64645 10.3536L13.1464 14.8536C13.3417 15.0488 13.6583 15.0488 13.8536 14.8536C14.0271 14.68 14.0464 14.4106 13.9114 14.2157L13.8536 14.1464L9.70711 10L13.8536 5.85355C14.0488 5.65829 14.0488 5.34171 13.8536 5.14645Z",fill:"currentColor"})),yb=i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M13.5 5C13.7455 5 13.9496 5.17688 13.9919 5.41012L14 5.5V14.5C14 14.7761 13.7761 15 13.5 15C13.2545 15 13.0504 14.8231 13.0081 14.5899L13 14.5V5.5C13 5.22386 13.2239 5 13.5 5ZM5.64645 5.14645C5.82001 4.97288 6.08944 4.9536 6.28431 5.08859L6.35355 5.14645L10.8536 9.64645C11.0271 9.82001 11.0464 10.0894 10.9114 10.2843L10.8536 10.3536L6.35355 14.8536C6.15829 15.0488 5.84171 15.0488 5.64645 14.8536C5.47288 14.68 5.4536 14.4106 5.58859 14.2157L5.64645 14.1464L9.79289 10L5.64645 5.85355C5.45118 5.65829 5.45118 5.34171 5.64645 5.14645Z",fill:"currentColor"})),wb=i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M4.089 4.216l.057-.07a.5.5 0 0 1 .638-.057l.07.057L10 9.293l5.146-5.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 .057.638l-.057.07L10.707 10l5.147 5.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.638.057l-.07-.057L10 10.707l-5.146 5.147a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1-.057-.638l.057-.07L9.293 10L4.146 4.854a.5.5 0 0 1-.057-.638l.057-.07l-.057.07z",fill:"currentColor"})),Sb=i("svg",{xmlns:"http://www.w3.org/2000/svg",width:"32",height:"32",viewBox:"0 0 1024 1024"},i("path",{fill:"currentColor",d:"M505.7 661a8 8 0 0 0 12.6 0l112-141.7c4.1-5.2.4-12.9-6.3-12.9h-74.1V168c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v338.3H400c-6.7 0-10.4 7.7-6.3 12.9l112 141.8zM878 626h-60c-4.4 0-8 3.6-8 8v154H214V634c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v198c0 17.7 14.3 32 32 32h684c17.7 0 32-14.3 32-32V634c0-4.4-3.6-8-8-8z"})),zb=w([w("body >",[g("image-container","position: fixed;")]),g("image-preview-container",` + position: fixed; + left: 0; + right: 0; + top: 0; + bottom: 0; + display: flex; + `),g("image-preview-overlay",` + z-index: -1; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + background: rgba(0, 0, 0, .3); + `,[jt()]),g("image-preview-toolbar",` + z-index: 1; + position: absolute; + left: 50%; + transform: translateX(-50%); + border-radius: var(--n-toolbar-border-radius); + height: 48px; + bottom: 40px; + padding: 0 12px; + background: var(--n-toolbar-color); + box-shadow: var(--n-toolbar-box-shadow); + color: var(--n-toolbar-icon-color); + transition: color .3s var(--n-bezier); + display: flex; + align-items: center; + `,[g("base-icon",` + padding: 0 8px; + font-size: 28px; + cursor: pointer; + `),jt()]),g("image-preview-wrapper",` + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + display: flex; + pointer-events: none; + `,[ut()]),g("image-preview",` + user-select: none; + -webkit-user-select: none; + pointer-events: all; + margin: auto; + max-height: calc(100vh - 32px); + max-width: calc(100vw - 32px); + transition: transform .3s var(--n-bezier); + `),g("image",` + display: inline-flex; + max-height: 100%; + max-width: 100%; + `,[Ve("preview-disabled",` + cursor: pointer; + `),w("img",` + border-radius: inherit; + `)])]),zr=32,ds=Z({name:"ImagePreview",props:Object.assign(Object.assign({},Kn),{onNext:Function,onPrev:Function,clsPrefix:{type:String,required:!0}}),setup(e){const o=ae("Image","-image",zb,bb,e,le(e,"clsPrefix"));let t=null;const r=M(null),n=M(null),l=M(void 0),a=M(!1),s=M(!1),{localeRef:d}=Yo("Image");function c(){const{value:ne}=n;if(!t||!ne)return;const{style:Ce}=ne,ge=t.getBoundingClientRect(),Ee=ge.left+ge.width/2,Q=ge.top+ge.height/2;Ce.transformOrigin=`${Ee}px ${Q}px`}function u(ne){var Ce,ge;switch(ne.key){case" ":ne.preventDefault();break;case"ArrowLeft":(Ce=e.onPrev)===null||Ce===void 0||Ce.call(e);break;case"ArrowRight":(ge=e.onNext)===null||ge===void 0||ge.call(e);break;case"Escape":me();break}}Xe(a,ne=>{ne?Ho("keydown",document,u):Io("keydown",document,u)}),So(()=>{Io("keydown",document,u)});let f=0,p=0,v=0,h=0,m=0,x=0,y=0,b=0,_=!1;function I(ne){const{clientX:Ce,clientY:ge}=ne;v=Ce-f,h=ge-p,Zi(oe)}function R(ne){const{mouseUpClientX:Ce,mouseUpClientY:ge,mouseDownClientX:Ee,mouseDownClientY:Q}=ne,ve=Ee-Ce,ze=Q-ge,U=`vertical${ze>0?"Top":"Bottom"}`,q=`horizontal${ve>0?"Left":"Right"}`;return{moveVerticalDirection:U,moveHorizontalDirection:q,deltaHorizontal:ve,deltaVertical:ze}}function z(ne){const{value:Ce}=r;if(!Ce)return{offsetX:0,offsetY:0};const ge=Ce.getBoundingClientRect(),{moveVerticalDirection:Ee,moveHorizontalDirection:Q,deltaHorizontal:ve,deltaVertical:ze}=ne||{};let U=0,q=0;return ge.width<=window.innerWidth?U=0:ge.left>0?U=(ge.width-window.innerWidth)/2:ge.right0?q=(ge.height-window.innerHeight)/2:ge.bottom.5){const ne=j;L-=1,j=Math.max(.5,Math.pow(W,L));const Ce=ne-j;oe(!1);const ge=z();j+=Ce,oe(!1),j-=Ce,v=ge.offsetX,h=ge.offsetY,oe()}}function G(){const ne=l.value;ne&&bl(ne,void 0)}function oe(ne=!0){var Ce;const{value:ge}=r;if(!ge)return;const{style:Ee}=ge,Q=cd((Ce=H==null?void 0:H.previewedImgPropsRef.value)===null||Ce===void 0?void 0:Ce.style);let ve="";if(typeof Q=="string")ve=Q+";";else for(const U in Q)ve+=`${Cd(U)}: ${Q[U]};`;const ze=`transform-origin: center; transform: translateX(${v}px) translateY(${h}px) rotate(${V}deg) scale(${j});`;_?Ee.cssText=ve+"cursor: grabbing; transition: none;"+ze:Ee.cssText=ve+"cursor: grab;"+ze+(ne?"":"transition: none;"),ne||ge.offsetHeight}function me(){a.value=!a.value,s.value=!0}function be(){j=ie(),L=Math.ceil(Math.log(j)/Math.log(W)),v=0,h=0,oe()}const Be={setPreviewSrc:ne=>{l.value=ne},setThumbnailEl:ne=>{t=ne},toggleShow:me};function T(ne,Ce){if(e.showToolbarTooltip){const{value:ge}=o;return i(Ln,{to:!1,theme:ge.peers.Tooltip,themeOverrides:ge.peerOverrides.Tooltip,keepAliveOnHover:!1},{default:()=>d.value[Ce],trigger:()=>ne})}else return ne}const fe=$(()=>{const{common:{cubicBezierEaseInOut:ne},self:{toolbarIconColor:Ce,toolbarBorderRadius:ge,toolbarBoxShadow:Ee,toolbarColor:Q}}=o.value;return{"--n-bezier":ne,"--n-toolbar-icon-color":Ce,"--n-toolbar-color":Q,"--n-toolbar-border-radius":ge,"--n-toolbar-box-shadow":Ee}}),{inlineThemeDisabled:we}=Ie(),Me=we?We("image-preview",void 0,fe,e):void 0;return Object.assign({previewRef:r,previewWrapperRef:n,previewSrc:l,show:a,appear:$t(),displayed:s,previewedImgProps:H==null?void 0:H.previewedImgPropsRef,handleWheel(ne){ne.preventDefault()},handlePreviewMousedown:k,handlePreviewDblclick:D,syncTransformOrigin:c,handleAfterLeave:()=>{E(),V=0,s.value=!1},handleDragStart:ne=>{var Ce,ge;(ge=(Ce=H==null?void 0:H.previewedImgPropsRef.value)===null||Ce===void 0?void 0:Ce.onDragstart)===null||ge===void 0||ge.call(Ce,ne),ne.preventDefault()},zoomIn:O,zoomOut:B,handleDownloadClick:G,rotateCounterclockwise:te,rotateClockwise:xe,handleSwitchPrev:Y,handleSwitchNext:K,withTooltip:T,resizeToOrignalImageSize:be,cssVars:we?void 0:fe,themeClass:Me==null?void 0:Me.themeClass,onRender:Me==null?void 0:Me.onRender},Be)},render(){var e,o;const{clsPrefix:t}=this;return i(co,null,(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e),i($n,{show:this.show},{default:()=>{var r;return this.show||this.displayed?((r=this.onRender)===null||r===void 0||r.call(this),Lo(i("div",{class:[`${t}-image-preview-container`,this.themeClass],style:this.cssVars,onWheel:this.handleWheel},i(lo,{name:"fade-in-transition",appear:this.appear},{default:()=>this.show?i("div",{class:`${t}-image-preview-overlay`,onClick:this.toggleShow}):null}),this.showToolbar?i(lo,{name:"fade-in-transition",appear:this.appear},{default:()=>{if(!this.show)return null;const{withTooltip:n}=this;return i("div",{class:`${t}-image-preview-toolbar`},this.onPrev?i(co,null,n(i(Le,{clsPrefix:t,onClick:this.handleSwitchPrev},{default:()=>Cb}),"tipPrevious"),n(i(Le,{clsPrefix:t,onClick:this.handleSwitchNext},{default:()=>yb}),"tipNext")):null,n(i(Le,{clsPrefix:t,onClick:this.rotateCounterclockwise},{default:()=>i(dc,null)}),"tipCounterclockwise"),n(i(Le,{clsPrefix:t,onClick:this.rotateClockwise},{default:()=>i(sc,null)}),"tipClockwise"),n(i(Le,{clsPrefix:t,onClick:this.resizeToOrignalImageSize},{default:()=>i(fc,null)}),"tipOriginalSize"),n(i(Le,{clsPrefix:t,onClick:this.zoomOut},{default:()=>i(uc,null)}),"tipZoomOut"),n(i(Le,{clsPrefix:t,onClick:this.zoomIn},{default:()=>i(cc,null)}),"tipZoomIn"),n(i(Le,{clsPrefix:t,onClick:this.handleDownloadClick},{default:()=>Sb}),"tipDownload"),n(i(Le,{clsPrefix:t,onClick:this.toggleShow},{default:()=>wb}),"tipClose"))}}):null,i(lo,{name:"fade-in-scale-up-transition",onAfterLeave:this.handleAfterLeave,appear:this.appear,onEnter:this.syncTransformOrigin,onBeforeLeave:this.syncTransformOrigin},{default:()=>{const{previewedImgProps:n={}}=this;return Lo(i("div",{class:`${t}-image-preview-wrapper`,ref:"previewWrapperRef"},i("img",Object.assign({},n,{draggable:!1,onMousedown:this.handlePreviewMousedown,onDblclick:this.handlePreviewDblclick,class:[`${t}-image-preview`,n.class],key:this.previewSrc,src:this.previewSrc,ref:"previewRef",onDragstart:this.handleDragStart}))),[[Go,this.show]])}})),[[_r,{enabled:this.show}]])):null}}))}}),cs="n-image-group",$b=Kn,Pb=Z({name:"ImageGroup",props:$b,setup(e){let o;const{mergedClsPrefixRef:t}=Ie(e),r=`c${nt()}`,n=Br(),l=d=>{var c;o=d,(c=s.value)===null||c===void 0||c.setPreviewSrc(d)};function a(d){var c,u;if(!(n!=null&&n.proxy))return;const p=n.proxy.$el.parentElement.querySelectorAll(`[data-group-id=${r}]:not([data-error=true])`);if(!p.length)return;const v=Array.from(p).findIndex(h=>h.dataset.previewSrc===o);~v?l(p[(v+d+p.length)%p.length].dataset.previewSrc):l(p[0].dataset.previewSrc),d===1?(c=e.onPreviewNext)===null||c===void 0||c.call(e):(u=e.onPreviewPrev)===null||u===void 0||u.call(e)}De(cs,{mergedClsPrefixRef:t,setPreviewSrc:l,setThumbnailEl:d=>{var c;(c=s.value)===null||c===void 0||c.setThumbnailEl(d)},toggleShow:()=>{var d;(d=s.value)===null||d===void 0||d.toggleShow()},groupId:r});const s=M(null);return{mergedClsPrefix:t,previewInstRef:s,next:()=>{a(1)},prev:()=>{a(-1)}}},render(){return i(ds,{theme:this.theme,themeOverrides:this.themeOverrides,clsPrefix:this.mergedClsPrefix,ref:"previewInstRef",onPrev:this.prev,onNext:this.next,showToolbar:this.showToolbar,showToolbarTooltip:this.showToolbarTooltip},this.$slots)}}),Rb=Object.assign({alt:String,height:[String,Number],imgProps:Object,previewedImgProps:Object,lazy:Boolean,intersectionObserverOptions:Object,objectFit:{type:String,default:"fill"},previewSrc:String,fallbackSrc:String,width:[String,Number],src:String,previewDisabled:Boolean,loadDescription:String,onError:Function,onLoad:Function},Kn),kb=Z({name:"Image",props:Rb,inheritAttrs:!1,setup(e){const o=M(null),t=M(!1),r=M(null),n=$e(cs,null),{mergedClsPrefixRef:l}=n||Ie(e),a={click:()=>{if(e.previewDisabled||t.value)return;const c=e.previewSrc||e.src;if(n){n.setPreviewSrc(c),n.setThumbnailEl(o.value),n.toggleShow();return}const{value:u}=r;u&&(u.setPreviewSrc(c),u.setThumbnailEl(o.value),u.toggleShow())}},s=M(!e.lazy);po(()=>{var c;(c=o.value)===null||c===void 0||c.setAttribute("data-group-id",(n==null?void 0:n.groupId)||"")}),po(()=>{if(e.lazy&&e.intersectionObserverOptions){let c;const u=oo(()=>{c==null||c(),c=void 0,c=Gl(o.value,e.intersectionObserverOptions,s)});So(()=>{u(),c==null||c()})}}),oo(()=>{var c;e.src||((c=e.imgProps)===null||c===void 0||c.src),t.value=!1});const d=M(!1);return De(ss,{previewedImgPropsRef:le(e,"previewedImgProps")}),Object.assign({mergedClsPrefix:l,groupId:n==null?void 0:n.groupId,previewInstRef:r,imageRef:o,showError:t,shouldStartLoading:s,loaded:d,mergedOnClick:c=>{var u,f;a.click(),(f=(u=e.imgProps)===null||u===void 0?void 0:u.onClick)===null||f===void 0||f.call(u,c)},mergedOnError:c=>{if(!s.value)return;t.value=!0;const{onError:u,imgProps:{onError:f}={}}=e;u==null||u(c),f==null||f(c)},mergedOnLoad:c=>{const{onLoad:u,imgProps:{onLoad:f}={}}=e;u==null||u(c),f==null||f(c),d.value=!0}},a)},render(){var e,o;const{mergedClsPrefix:t,imgProps:r={},loaded:n,$attrs:l,lazy:a}=this,s=(o=(e=this.$slots).placeholder)===null||o===void 0?void 0:o.call(e),d=this.src||r.src,c=i("img",Object.assign(Object.assign({},r),{ref:"imageRef",width:this.width||r.width,height:this.height||r.height,src:this.showError?this.fallbackSrc:a&&this.intersectionObserverOptions?this.shouldStartLoading?d:void 0:d,alt:this.alt||r.alt,"aria-label":this.alt||r.alt,onClick:this.mergedOnClick,onError:this.mergedOnError,onLoad:this.mergedOnLoad,loading:Kl&&a&&!this.intersectionObserverOptions?"lazy":"eager",style:[r.style||"",s&&!n?{height:"0",width:"0",visibility:"hidden"}:"",{objectFit:this.objectFit}],"data-error":this.showError,"data-preview-src":this.previewSrc||this.src}));return i("div",Object.assign({},l,{role:"none",class:[l.class,`${t}-image`,(this.previewDisabled||this.showError)&&`${t}-image--preview-disabled`]}),this.groupId?c:i(ds,{theme:this.theme,themeOverrides:this.themeOverrides,clsPrefix:t,ref:"previewInstRef",showToolbar:this.showToolbar,showToolbarTooltip:this.showToolbarTooltip},{default:()=>c}),!n&&s)}});function Ib(e){return e==null||typeof e=="string"&&e.trim()===""?null:Number(e)}function Bb(e){return e.includes(".")&&(/^(-)?\d+.*(\.|0)$/.test(e)||/^\.\d+$/.test(e))}function an(e){return e==null?!0:!Number.isNaN(e)}function Hi(e,o){return e==null?"":o===void 0?String(e):e.toFixed(o)}function sn(e){if(e===null)return null;if(typeof e=="number")return e;{const o=Number(e);return Number.isNaN(o)?null:o}}const Tb=w([g("input-number-suffix",` + display: inline-block; + margin-right: 10px; + `),g("input-number-prefix",` + display: inline-block; + margin-left: 10px; + `)]),Li=800,Ai=100,Fb=Object.assign(Object.assign({},ae.props),{autofocus:Boolean,loading:{type:Boolean,default:void 0},placeholder:String,defaultValue:{type:Number,default:null},value:Number,step:{type:[Number,String],default:1},min:[Number,String],max:[Number,String],size:String,disabled:{type:Boolean,default:void 0},validator:Function,bordered:{type:Boolean,default:void 0},showButton:{type:Boolean,default:!0},buttonPlacement:{type:String,default:"right"},inputProps:Object,readonly:Boolean,clearable:Boolean,keyboard:{type:Object,default:{}},updateValueOnInput:{type:Boolean,default:!0},parse:Function,format:Function,precision:Number,status:String,"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],onFocus:[Function,Array],onBlur:[Function,Array],onClear:[Function,Array],onChange:[Function,Array]}),tx=Z({name:"InputNumber",props:Fb,setup(e){const{mergedBorderedRef:o,mergedClsPrefixRef:t,mergedRtlRef:r}=Ie(e),n=ae("InputNumber","-input-number",Tb,Sg,e,t),{localeRef:l}=Yo("InputNumber"),a=it(e),{mergedSizeRef:s,mergedDisabledRef:d,mergedStatusRef:c}=a,u=M(null),f=M(null),p=M(null),v=M(e.defaultValue),h=le(e,"value"),m=uo(h,v),x=M(""),y=Q=>{const ve=String(Q).split(".")[1];return ve?ve.length:0},b=Q=>{const ve=[e.min,e.max,e.step,Q].map(ze=>ze===void 0?0:y(ze));return Math.max(...ve)},_=Ue(()=>{const{placeholder:Q}=e;return Q!==void 0?Q:l.value.placeholder}),I=Ue(()=>{const Q=sn(e.step);return Q!==null?Q===0?1:Math.abs(Q):1}),R=Ue(()=>{const Q=sn(e.min);return Q!==null?Q:null}),z=Ue(()=>{const Q=sn(e.max);return Q!==null?Q:null}),C=Q=>{const{value:ve}=m;if(Q===ve){k();return}const{"onUpdate:value":ze,onUpdateValue:U,onChange:q}=e,{nTriggerFormInput:pe,nTriggerFormChange:Se}=a;q&&de(q,Q),U&&de(U,Q),ze&&de(ze,Q),v.value=Q,pe(),Se()},H=({offset:Q,doUpdateIfValid:ve,fixPrecision:ze,isInputing:U})=>{const{value:q}=x;if(U&&Bb(q))return!1;const pe=(e.parse||Ib)(q);if(pe===null)return ve&&C(null),null;if(an(pe)){const Se=y(pe),{precision:J}=e;if(J!==void 0&&JNe){if(!ve||U)return!1;he=Ne}if(no!==null&&he{const{value:Q}=m;if(an(Q)){const{format:ve,precision:ze}=e;ve?x.value=ve(Q):Q===null||ze===void 0||y(Q)>ze?x.value=Hi(Q,void 0):x.value=Hi(Q,ze)}else x.value=String(Q)};k();const D=Ue(()=>H({offset:0,doUpdateIfValid:!1,isInputing:!1,fixPrecision:!1})===!1),W=Ue(()=>{const{value:Q}=m;if(e.validator&&Q===null)return!1;const{value:ve}=I;return H({offset:-ve,doUpdateIfValid:!1,isInputing:!1,fixPrecision:!1})!==!1}),L=Ue(()=>{const{value:Q}=m;if(e.validator&&Q===null)return!1;const{value:ve}=I;return H({offset:+ve,doUpdateIfValid:!1,isInputing:!1,fixPrecision:!1})!==!1});function j(Q){const{onFocus:ve}=e,{nTriggerFormFocus:ze}=a;ve&&de(ve,Q),ze()}function V(Q){var ve,ze;if(Q.target===((ve=u.value)===null||ve===void 0?void 0:ve.wrapperElRef))return;const U=H({offset:0,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0});if(U!==!1){const Se=(ze=u.value)===null||ze===void 0?void 0:ze.inputElRef;Se&&(Se.value=String(U||"")),m.value===U&&k()}else k();const{onBlur:q}=e,{nTriggerFormBlur:pe}=a;q&&de(q,Q),pe(),ao(()=>{k()})}function E(Q){const{onClear:ve}=e;ve&&de(ve,Q)}function Y(){const{value:Q}=L;if(!Q){be();return}const{value:ve}=m;if(ve===null)e.validator||C(se());else{const{value:ze}=I;H({offset:ze,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0})}}function K(){const{value:Q}=W;if(!Q){me();return}const{value:ve}=m;if(ve===null)e.validator||C(se());else{const{value:ze}=I;H({offset:-ze,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0})}}const te=j,xe=V;function se(){if(e.validator)return null;const{value:Q}=R,{value:ve}=z;return Q!==null?Math.max(0,Q):ve!==null?Math.min(0,ve):0}function ie(Q){E(Q),C(null)}function O(Q){var ve,ze,U;!((ve=p.value)===null||ve===void 0)&&ve.$el.contains(Q.target)&&Q.preventDefault(),!((ze=f.value)===null||ze===void 0)&&ze.$el.contains(Q.target)&&Q.preventDefault(),(U=u.value)===null||U===void 0||U.activate()}let B=null,G=null,oe=null;function me(){oe&&(window.clearTimeout(oe),oe=null),B&&(window.clearInterval(B),B=null)}function be(){T&&(window.clearTimeout(T),T=null),G&&(window.clearInterval(G),G=null)}function Be(){me(),oe=window.setTimeout(()=>{B=window.setInterval(()=>{K()},Ai)},Li),Ho("mouseup",document,me,{once:!0})}let T=null;function fe(){be(),T=window.setTimeout(()=>{G=window.setInterval(()=>{Y()},Ai)},Li),Ho("mouseup",document,be,{once:!0})}const we=()=>{G||Y()},Me=()=>{B||K()};function ne(Q){var ve,ze;if(Q.key==="Enter"){if(Q.target===((ve=u.value)===null||ve===void 0?void 0:ve.wrapperElRef))return;H({offset:0,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0})!==!1&&((ze=u.value)===null||ze===void 0||ze.deactivate())}else if(Q.key==="ArrowUp"){if(!L.value||e.keyboard.ArrowUp===!1)return;Q.preventDefault(),H({offset:0,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0})!==!1&&Y()}else if(Q.key==="ArrowDown"){if(!W.value||e.keyboard.ArrowDown===!1)return;Q.preventDefault(),H({offset:0,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0})!==!1&&K()}}function Ce(Q){x.value=Q,e.updateValueOnInput&&!e.format&&!e.parse&&e.precision===void 0&&H({offset:0,doUpdateIfValid:!0,isInputing:!0,fixPrecision:!1})}Xe(m,()=>{k()});const ge={focus:()=>{var Q;return(Q=u.value)===null||Q===void 0?void 0:Q.focus()},blur:()=>{var Q;return(Q=u.value)===null||Q===void 0?void 0:Q.blur()},select:()=>{var Q;return(Q=u.value)===null||Q===void 0?void 0:Q.select()}},Ee=eo("InputNumber",r,t);return Object.assign(Object.assign({},ge),{rtlEnabled:Ee,inputInstRef:u,minusButtonInstRef:f,addButtonInstRef:p,mergedClsPrefix:t,mergedBordered:o,uncontrolledValue:v,mergedValue:m,mergedPlaceholder:_,displayedValueInvalid:D,mergedSize:s,mergedDisabled:d,displayedValue:x,addable:L,minusable:W,mergedStatus:c,handleFocus:te,handleBlur:xe,handleClear:ie,handleMouseDown:O,handleAddClick:we,handleMinusClick:Me,handleAddMousedown:fe,handleMinusMousedown:Be,handleKeyDown:ne,handleUpdateDisplayedValue:Ce,mergedTheme:n,inputThemeOverrides:{paddingSmall:"0 8px 0 10px",paddingMedium:"0 8px 0 12px",paddingLarge:"0 8px 0 14px"},buttonThemeOverrides:$(()=>{const{self:{iconColorDisabled:Q}}=n.value,[ve,ze,U,q]=cr(Q);return{textColorTextDisabled:`rgb(${ve}, ${ze}, ${U})`,opacityDisabled:`${q}`}})})},render(){const{mergedClsPrefix:e,$slots:o}=this,t=()=>i($i,{text:!0,disabled:!this.minusable||this.mergedDisabled||this.readonly,focusable:!1,theme:this.mergedTheme.peers.Button,themeOverrides:this.mergedTheme.peerOverrides.Button,builtinThemeOverrides:this.buttonThemeOverrides,onClick:this.handleMinusClick,onMousedown:this.handleMinusMousedown,ref:"minusButtonInstRef"},{icon:()=>so(o["minus-icon"],()=>[i(Le,{clsPrefix:e},{default:()=>i(yl,null)})])}),r=()=>i($i,{text:!0,disabled:!this.addable||this.mergedDisabled||this.readonly,focusable:!1,theme:this.mergedTheme.peers.Button,themeOverrides:this.mergedTheme.peerOverrides.Button,builtinThemeOverrides:this.buttonThemeOverrides,onClick:this.handleAddClick,onMousedown:this.handleAddMousedown,ref:"addButtonInstRef"},{icon:()=>so(o["add-icon"],()=>[i(Le,{clsPrefix:e},{default:()=>i(ar,null)})])});return i("div",{class:[`${e}-input-number`,this.rtlEnabled&&`${e}-input-number--rtl`]},i(zt,{ref:"inputInstRef",autofocus:this.autofocus,status:this.mergedStatus,bordered:this.mergedBordered,loading:this.loading,value:this.displayedValue,onUpdateValue:this.handleUpdateDisplayedValue,theme:this.mergedTheme.peers.Input,themeOverrides:this.mergedTheme.peerOverrides.Input,builtinThemeOverrides:this.inputThemeOverrides,size:this.mergedSize,placeholder:this.mergedPlaceholder,disabled:this.mergedDisabled,readonly:this.readonly,textDecoration:this.displayedValueInvalid?"line-through":void 0,onFocus:this.handleFocus,onBlur:this.handleBlur,onKeydown:this.handleKeyDown,onMousedown:this.handleMouseDown,onClear:this.handleClear,clearable:this.clearable,inputProps:this.inputProps,internalLoadingBeforeSuffix:!0},{prefix:()=>{var n;return this.showButton&&this.buttonPlacement==="both"?[t(),je(o.prefix,l=>l?i("span",{class:`${e}-input-number-prefix`},l):null)]:(n=o.prefix)===null||n===void 0?void 0:n.call(o)},suffix:()=>{var n;return this.showButton?[je(o.suffix,l=>l?i("span",{class:`${e}-input-number-suffix`},l):null),this.buttonPlacement==="right"?t():null,r()]:(n=o.suffix)===null||n===void 0?void 0:n.call(o)}}))}}),Ob="n-layout-sider",_b={extraFontSize:"12px",width:"440px"},Mb={name:"Transfer",common:ue,peers:{Checkbox:Xt,Scrollbar:$o,Input:Ao,Empty:It,Button:Po},self(e){const{iconColorDisabled:o,iconColor:t,fontWeight:r,fontSizeLarge:n,fontSizeMedium:l,fontSizeSmall:a,heightLarge:s,heightMedium:d,heightSmall:c,borderRadius:u,inputColor:f,tableHeaderColor:p,textColor1:v,textColorDisabled:h,textColor2:m,hoverColor:x}=e;return Object.assign(Object.assign({},_b),{itemHeightSmall:c,itemHeightMedium:d,itemHeightLarge:s,fontSizeSmall:a,fontSizeMedium:l,fontSizeLarge:n,borderRadius:u,borderColor:"#0000",listColor:f,headerColor:p,titleTextColor:v,titleTextColorDisabled:h,extraTextColor:m,filterDividerColor:"#0000",itemTextColor:m,itemTextColorDisabled:h,itemColorPending:x,titleFontWeight:r,iconColor:t,iconColorDisabled:o})}},Db=Mb,Hb=w([g("list",` + --n-merged-border-color: var(--n-border-color); + --n-merged-color: var(--n-color); + --n-merged-color-hover: var(--n-color-hover); + margin: 0; + font-size: var(--n-font-size); + transition: + background-color .3s var(--n-bezier), + color .3s var(--n-bezier), + border-color .3s var(--n-bezier); + padding: 0; + list-style-type: none; + color: var(--n-text-color); + background-color: var(--n-merged-color); + `,[P("show-divider",[g("list-item",[w("&:not(:last-child)",[S("divider",` + background-color: var(--n-merged-border-color); + `)])])]),P("clickable",[g("list-item",` + cursor: pointer; + `)]),P("bordered",` + border: 1px solid var(--n-merged-border-color); + border-radius: var(--n-border-radius); + `),P("hoverable",[g("list-item",` + border-radius: var(--n-border-radius); + `,[w("&:hover",` + background-color: var(--n-merged-color-hover); + `,[S("divider",` + background-color: transparent; + `)])])]),P("bordered, hoverable",[g("list-item",` + padding: 12px 20px; + `),S("header, footer",` + padding: 12px 20px; + `)]),S("header, footer",` + padding: 12px 0; + box-sizing: border-box; + transition: border-color .3s var(--n-bezier); + `,[w("&:not(:last-child)",` + border-bottom: 1px solid var(--n-merged-border-color); + `)]),g("list-item",` + position: relative; + padding: 12px 0; + box-sizing: border-box; + display: flex; + flex-wrap: nowrap; + align-items: center; + transition: + background-color .3s var(--n-bezier), + border-color .3s var(--n-bezier); + `,[S("prefix",` + margin-right: 20px; + flex: 0; + `),S("suffix",` + margin-left: 20px; + flex: 0; + `),S("main",` + flex: 1; + `),S("divider",` + height: 1px; + position: absolute; + bottom: 0; + left: 0; + right: 0; + background-color: transparent; + transition: background-color .3s var(--n-bezier); + pointer-events: none; + `)])]),Dr(g("list",` + --n-merged-color-hover: var(--n-color-hover-modal); + --n-merged-color: var(--n-color-modal); + --n-merged-border-color: var(--n-border-color-modal); + `)),Rn(g("list",` + --n-merged-color-hover: var(--n-color-hover-popover); + --n-merged-color: var(--n-color-popover); + --n-merged-border-color: var(--n-border-color-popover); + `))]),Lb=Object.assign(Object.assign({},ae.props),{size:{type:String,default:"medium"},bordered:Boolean,clickable:Boolean,hoverable:Boolean,showDivider:{type:Boolean,default:!0}}),us="n-list",rx=Z({name:"List",props:Lb,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t,mergedRtlRef:r}=Ie(e),n=eo("List",r,o),l=ae("List","-list",Hb,Rg,e,o);De(us,{showDividerRef:le(e,"showDivider"),mergedClsPrefixRef:o});const a=$(()=>{const{common:{cubicBezierEaseInOut:d},self:{fontSize:c,textColor:u,color:f,colorModal:p,colorPopover:v,borderColor:h,borderColorModal:m,borderColorPopover:x,borderRadius:y,colorHover:b,colorHoverModal:_,colorHoverPopover:I}}=l.value;return{"--n-font-size":c,"--n-bezier":d,"--n-text-color":u,"--n-color":f,"--n-border-radius":y,"--n-border-color":h,"--n-border-color-modal":m,"--n-border-color-popover":x,"--n-color-modal":p,"--n-color-popover":v,"--n-color-hover":b,"--n-color-hover-modal":_,"--n-color-hover-popover":I}}),s=t?We("list",void 0,a,e):void 0;return{mergedClsPrefix:o,rtlEnabled:n,cssVars:t?void 0:a,themeClass:s==null?void 0:s.themeClass,onRender:s==null?void 0:s.onRender}},render(){var e;const{$slots:o,mergedClsPrefix:t,onRender:r}=this;return r==null||r(),i("ul",{class:[`${t}-list`,this.rtlEnabled&&`${t}-list--rtl`,this.bordered&&`${t}-list--bordered`,this.showDivider&&`${t}-list--show-divider`,this.hoverable&&`${t}-list--hoverable`,this.clickable&&`${t}-list--clickable`,this.themeClass],style:this.cssVars},o.header?i("div",{class:`${t}-list__header`},o.header()):null,(e=o.default)===null||e===void 0?void 0:e.call(o),o.footer?i("div",{class:`${t}-list__footer`},o.footer()):null)}}),nx=Z({name:"ListItem",setup(){const e=$e(us,null);return e||Wo("list-item","`n-list-item` must be placed in `n-list`."),{showDivider:e.showDividerRef,mergedClsPrefix:e.mergedClsPrefixRef}},render(){const{$slots:e,mergedClsPrefix:o}=this;return i("li",{class:`${o}-list-item`},e.prefix?i("div",{class:`${o}-list-item__prefix`},e.prefix()):null,e.default?i("div",{class:`${o}-list-item__main`},e):null,e.suffix?i("div",{class:`${o}-list-item__suffix`},e.suffix()):null,this.showDivider&&i("div",{class:`${o}-list-item__divider`}))}}),Cr="n-menu",Gn="n-submenu",qn="n-menu-item-group",$r=8;function Yn(e){const o=$e(Cr),{props:t,mergedCollapsedRef:r}=o,n=$e(Gn,null),l=$e(qn,null),a=$(()=>t.mode==="horizontal"),s=$(()=>a.value?t.dropdownPlacement:"tmNodes"in e?"right-start":"right"),d=$(()=>{var p;return Math.max((p=t.collapsedIconSize)!==null&&p!==void 0?p:t.iconSize,t.iconSize)}),c=$(()=>{var p;return!a.value&&e.root&&r.value&&(p=t.collapsedIconSize)!==null&&p!==void 0?p:t.iconSize}),u=$(()=>{if(a.value||a.value)return;const{collapsedWidth:p,indent:v,rootIndent:h}=t,{root:m,isGroup:x}=e,y=h===void 0?v:h;return m?r.value?p/2-d.value/2:y:l&&typeof l.paddingLeftRef.value=="number"?v/2+l.paddingLeftRef.value:n&&typeof n.paddingLeftRef.value=="number"?(x?v/2:v)+n.paddingLeftRef.value:0}),f=$(()=>{const{collapsedWidth:p,indent:v,rootIndent:h}=t,{value:m}=d,{root:x}=e;return a.value||!x||!r.value?$r:(h===void 0?v:h)+m+$r-(p+m)/2});return{dropdownPlacement:s,activeIconSize:c,maxIconSize:d,paddingLeft:u,iconMarginRight:f,NMenu:o,NSubmenu:n}}const Xn={internalKey:{type:[String,Number],required:!0},root:Boolean,isGroup:Boolean,level:{type:Number,required:!0},title:[String,Function],extra:[String,Function]},fs=Object.assign(Object.assign({},Xn),{tmNode:{type:Object,required:!0},tmNodes:{type:Array,required:!0}}),Ab=Z({name:"MenuOptionGroup",props:fs,setup(e){De(Gn,null);const o=Yn(e);De(qn,{paddingLeftRef:o.paddingLeft});const{mergedClsPrefixRef:t,props:r}=$e(Cr);return function(){const{value:n}=t,l=o.paddingLeft.value,{nodeProps:a}=r,s=a==null?void 0:a(e.tmNode.rawNode);return i("div",{class:`${n}-menu-item-group`,role:"group"},i("div",Object.assign({},s,{class:[`${n}-menu-item-group-title`,s==null?void 0:s.class],style:[(s==null?void 0:s.style)||"",l!==void 0?`padding-left: ${l}px;`:""]}),Qe(e.title),e.extra?i(co,null," ",Qe(e.extra)):null),i("div",null,e.tmNodes.map(d=>Zn(d,r))))}}}),hs=Z({name:"MenuOptionContent",props:{collapsed:Boolean,disabled:Boolean,title:[String,Function],icon:Function,extra:[String,Function],showArrow:Boolean,childActive:Boolean,hover:Boolean,paddingLeft:Number,selected:Boolean,maxIconSize:{type:Number,required:!0},activeIconSize:{type:Number,required:!0},iconMarginRight:{type:Number,required:!0},clsPrefix:{type:String,required:!0},onClick:Function,tmNode:{type:Object,required:!0},isEllipsisPlaceholder:Boolean},setup(e){const{props:o}=$e(Cr);return{menuProps:o,style:$(()=>{const{paddingLeft:t}=e;return{paddingLeft:t&&`${t}px`}}),iconStyle:$(()=>{const{maxIconSize:t,activeIconSize:r,iconMarginRight:n}=e;return{width:`${t}px`,height:`${t}px`,fontSize:`${r}px`,marginRight:`${n}px`}})}},render(){const{clsPrefix:e,tmNode:o,menuProps:{renderIcon:t,renderLabel:r,renderExtra:n,expandIcon:l}}=this,a=t?t(o.rawNode):Qe(this.icon);return i("div",{onClick:s=>{var d;(d=this.onClick)===null||d===void 0||d.call(this,s)},role:"none",class:[`${e}-menu-item-content`,{[`${e}-menu-item-content--selected`]:this.selected,[`${e}-menu-item-content--collapsed`]:this.collapsed,[`${e}-menu-item-content--child-active`]:this.childActive,[`${e}-menu-item-content--disabled`]:this.disabled,[`${e}-menu-item-content--hover`]:this.hover}],style:this.style},a&&i("div",{class:`${e}-menu-item-content__icon`,style:this.iconStyle,role:"none"},[a]),i("div",{class:`${e}-menu-item-content-header`,role:"none"},this.isEllipsisPlaceholder?this.title:r?r(o.rawNode):Qe(this.title),this.extra||n?i("span",{class:`${e}-menu-item-content-header__extra`}," ",n?n(o.rawNode):Qe(this.extra)):null),this.showArrow?i(Le,{ariaHidden:!0,class:`${e}-menu-item-content__arrow`,clsPrefix:e},{default:()=>l?l(o.rawNode):i(lc,null)}):null)}}),ps=Object.assign(Object.assign({},Xn),{rawNodes:{type:Array,default:()=>[]},tmNodes:{type:Array,default:()=>[]},tmNode:{type:Object,required:!0},disabled:Boolean,icon:Function,onClick:Function,domId:String,virtualChildActive:{type:Boolean,default:void 0},isEllipsisPlaceholder:Boolean}),bn=Z({name:"Submenu",props:ps,setup(e){const o=Yn(e),{NMenu:t,NSubmenu:r}=o,{props:n,mergedCollapsedRef:l,mergedThemeRef:a}=t,s=$(()=>{const{disabled:p}=e;return r!=null&&r.mergedDisabledRef.value||n.disabled?!0:p}),d=M(!1);De(Gn,{paddingLeftRef:o.paddingLeft,mergedDisabledRef:s}),De(qn,null);function c(){const{onClick:p}=e;p&&p()}function u(){s.value||(l.value||t.toggleExpand(e.internalKey),c())}function f(p){d.value=p}return{menuProps:n,mergedTheme:a,doSelect:t.doSelect,inverted:t.invertedRef,isHorizontal:t.isHorizontalRef,mergedClsPrefix:t.mergedClsPrefixRef,maxIconSize:o.maxIconSize,activeIconSize:o.activeIconSize,iconMarginRight:o.iconMarginRight,dropdownPlacement:o.dropdownPlacement,dropdownShow:d,paddingLeft:o.paddingLeft,mergedDisabled:s,mergedValue:t.mergedValueRef,childActive:Ue(()=>{var p;return(p=e.virtualChildActive)!==null&&p!==void 0?p:t.activePathRef.value.includes(e.internalKey)}),collapsed:$(()=>n.mode==="horizontal"?!1:l.value?!0:!t.mergedExpandedKeysRef.value.includes(e.internalKey)),dropdownEnabled:$(()=>!s.value&&(n.mode==="horizontal"||l.value)),handlePopoverShowChange:f,handleClick:u}},render(){var e;const{mergedClsPrefix:o,menuProps:{renderIcon:t,renderLabel:r}}=this,n=()=>{const{isHorizontal:a,paddingLeft:s,collapsed:d,mergedDisabled:c,maxIconSize:u,activeIconSize:f,title:p,childActive:v,icon:h,handleClick:m,menuProps:{nodeProps:x},dropdownShow:y,iconMarginRight:b,tmNode:_,mergedClsPrefix:I,isEllipsisPlaceholder:R,extra:z}=this,C=x==null?void 0:x(_.rawNode);return i("div",Object.assign({},C,{class:[`${I}-menu-item`,C==null?void 0:C.class],role:"menuitem"}),i(hs,{tmNode:_,paddingLeft:s,collapsed:d,disabled:c,iconMarginRight:b,maxIconSize:u,activeIconSize:f,title:p,extra:z,showArrow:!a,childActive:v,clsPrefix:I,icon:h,hover:y,onClick:m,isEllipsisPlaceholder:R}))},l=()=>i(Rt,null,{default:()=>{const{tmNodes:a,collapsed:s}=this;return s?null:i("div",{class:`${o}-submenu-children`,role:"menu"},a.map(d=>Zn(d,this.menuProps)))}});return this.root?i(dp,Object.assign({size:"large",trigger:"hover"},(e=this.menuProps)===null||e===void 0?void 0:e.dropdownProps,{themeOverrides:this.mergedTheme.peerOverrides.Dropdown,theme:this.mergedTheme.peers.Dropdown,builtinThemeOverrides:{fontSizeLarge:"14px",optionIconSizeLarge:"18px"},value:this.mergedValue,disabled:!this.dropdownEnabled,placement:this.dropdownPlacement,keyField:this.menuProps.keyField,labelField:this.menuProps.labelField,childrenField:this.menuProps.childrenField,onUpdateShow:this.handlePopoverShowChange,options:this.rawNodes,onSelect:this.doSelect,inverted:this.inverted,renderIcon:t,renderLabel:r}),{default:()=>i("div",{class:`${o}-submenu`,role:"menuitem","aria-expanded":!this.collapsed,id:this.domId},n(),this.isHorizontal?null:l())}):i("div",{class:`${o}-submenu`,role:"menuitem","aria-expanded":!this.collapsed,id:this.domId},n(),l())}}),vs=Object.assign(Object.assign({},Xn),{tmNode:{type:Object,required:!0},disabled:Boolean,icon:Function,onClick:Function}),Eb=Z({name:"MenuOption",props:vs,setup(e){const o=Yn(e),{NSubmenu:t,NMenu:r}=o,{props:n,mergedClsPrefixRef:l,mergedCollapsedRef:a}=r,s=t?t.mergedDisabledRef:{value:!1},d=$(()=>s.value||e.disabled);function c(f){const{onClick:p}=e;p&&p(f)}function u(f){d.value||(r.doSelect(e.internalKey,e.tmNode.rawNode),c(f))}return{mergedClsPrefix:l,dropdownPlacement:o.dropdownPlacement,paddingLeft:o.paddingLeft,iconMarginRight:o.iconMarginRight,maxIconSize:o.maxIconSize,activeIconSize:o.activeIconSize,mergedTheme:r.mergedThemeRef,menuProps:n,dropdownEnabled:Ue(()=>e.root&&a.value&&n.mode!=="horizontal"&&!d.value),selected:Ue(()=>r.mergedValueRef.value===e.internalKey),mergedDisabled:d,handleClick:u}},render(){const{mergedClsPrefix:e,mergedTheme:o,tmNode:t,menuProps:{renderLabel:r,nodeProps:n}}=this,l=n==null?void 0:n(t.rawNode);return i("div",Object.assign({},l,{role:"menuitem",class:[`${e}-menu-item`,l==null?void 0:l.class]}),i(Ln,{theme:o.peers.Tooltip,themeOverrides:o.peerOverrides.Tooltip,trigger:"hover",placement:this.dropdownPlacement,disabled:!this.dropdownEnabled||this.title===void 0,internalExtraClass:["menu-tooltip"]},{default:()=>r?r(t.rawNode):Qe(this.title),trigger:()=>i(hs,{tmNode:t,clsPrefix:e,paddingLeft:this.paddingLeft,iconMarginRight:this.iconMarginRight,maxIconSize:this.maxIconSize,activeIconSize:this.activeIconSize,selected:this.selected,title:this.title,extra:this.extra,disabled:this.mergedDisabled,icon:this.icon,onClick:this.handleClick})}))}}),jb=Z({name:"MenuDivider",setup(){const e=$e(Cr),{mergedClsPrefixRef:o,isHorizontalRef:t}=e;return()=>t.value?null:i("div",{class:`${o.value}-menu-divider`})}}),Wb=wo(fs),Nb=wo(vs),Vb=wo(ps);function xn(e){return e.type==="divider"||e.type==="render"}function Ub(e){return e.type==="divider"}function Zn(e,o){const{rawNode:t}=e,{show:r}=t;if(r===!1)return null;if(xn(t))return Ub(t)?i(jb,Object.assign({key:e.key},t.props)):null;const{labelField:n}=o,{key:l,level:a,isGroup:s}=e,d=Object.assign(Object.assign({},t),{title:t.title||t[n],extra:t.titleExtra||t.extra,key:l,internalKey:l,level:a,root:a===0,isGroup:s});return e.children?e.isGroup?i(Ab,mo(d,Wb,{tmNode:e,tmNodes:e.children,key:l})):i(bn,mo(d,Vb,{key:l,rawNodes:t[o.childrenField],tmNodes:e.children,tmNode:e})):i(Eb,mo(d,Nb,{key:l,tmNode:e}))}const Ei=[w("&::before","background-color: var(--n-item-color-hover);"),S("arrow",` + color: var(--n-arrow-color-hover); + `),S("icon",` + color: var(--n-item-icon-color-hover); + `),g("menu-item-content-header",` + color: var(--n-item-text-color-hover); + `,[w("a",` + color: var(--n-item-text-color-hover); + `),S("extra",` + color: var(--n-item-text-color-hover); + `)])],ji=[S("icon",` + color: var(--n-item-icon-color-hover-horizontal); + `),g("menu-item-content-header",` + color: var(--n-item-text-color-hover-horizontal); + `,[w("a",` + color: var(--n-item-text-color-hover-horizontal); + `),S("extra",` + color: var(--n-item-text-color-hover-horizontal); + `)])],Kb=w([g("menu",` + background-color: var(--n-color); + color: var(--n-item-text-color); + overflow: hidden; + transition: background-color .3s var(--n-bezier); + box-sizing: border-box; + font-size: var(--n-font-size); + padding-bottom: 6px; + `,[P("horizontal",` + max-width: 100%; + width: 100%; + display: flex; + overflow: hidden; + padding-bottom: 0; + `,[g("submenu","margin: 0;"),g("menu-item","margin: 0;"),g("menu-item-content",` + padding: 0 20px; + border-bottom: 2px solid #0000; + `,[w("&::before","display: none;"),P("selected","border-bottom: 2px solid var(--n-border-color-horizontal)")]),g("menu-item-content",[P("selected",[S("icon","color: var(--n-item-icon-color-active-horizontal);"),g("menu-item-content-header",` + color: var(--n-item-text-color-active-horizontal); + `,[w("a","color: var(--n-item-text-color-active-horizontal);"),S("extra","color: var(--n-item-text-color-active-horizontal);")])]),P("child-active",` + border-bottom: 2px solid var(--n-border-color-horizontal); + `,[g("menu-item-content-header",` + color: var(--n-item-text-color-child-active-horizontal); + `,[w("a",` + color: var(--n-item-text-color-child-active-horizontal); + `),S("extra",` + color: var(--n-item-text-color-child-active-horizontal); + `)]),S("icon",` + color: var(--n-item-icon-color-child-active-horizontal); + `)]),Ve("disabled",[Ve("selected, child-active",[w("&:focus-within",ji)]),P("selected",[bt(null,[S("icon","color: var(--n-item-icon-color-active-hover-horizontal);"),g("menu-item-content-header",` + color: var(--n-item-text-color-active-hover-horizontal); + `,[w("a","color: var(--n-item-text-color-active-hover-horizontal);"),S("extra","color: var(--n-item-text-color-active-hover-horizontal);")])])]),P("child-active",[bt(null,[S("icon","color: var(--n-item-icon-color-child-active-hover-horizontal);"),g("menu-item-content-header",` + color: var(--n-item-text-color-child-active-hover-horizontal); + `,[w("a","color: var(--n-item-text-color-child-active-hover-horizontal);"),S("extra","color: var(--n-item-text-color-child-active-hover-horizontal);")])])]),bt("border-bottom: 2px solid var(--n-border-color-horizontal);",ji)]),g("menu-item-content-header",[w("a","color: var(--n-item-text-color-horizontal);")])])]),Ve("responsive",[g("menu-item-content-header",` + overflow: hidden; + text-overflow: ellipsis; + `)]),P("collapsed",[g("menu-item-content",[P("selected",[w("&::before",` + background-color: var(--n-item-color-active-collapsed) !important; + `)]),g("menu-item-content-header","opacity: 0;"),S("arrow","opacity: 0;"),S("icon","color: var(--n-item-icon-color-collapsed);")])]),g("menu-item",` + height: var(--n-item-height); + margin-top: 6px; + position: relative; + `),g("menu-item-content",` + box-sizing: border-box; + line-height: 1.75; + height: 100%; + display: grid; + grid-template-areas: "icon content arrow"; + grid-template-columns: auto 1fr auto; + align-items: center; + cursor: pointer; + position: relative; + padding-right: 18px; + transition: + background-color .3s var(--n-bezier), + padding-left .3s var(--n-bezier), + border-color .3s var(--n-bezier); + `,[w("> *","z-index: 1;"),w("&::before",` + z-index: auto; + content: ""; + background-color: #0000; + position: absolute; + left: 8px; + right: 8px; + top: 0; + bottom: 0; + pointer-events: none; + border-radius: var(--n-border-radius); + transition: background-color .3s var(--n-bezier); + `),P("disabled",` + opacity: .45; + cursor: not-allowed; + `),P("collapsed",[S("arrow","transform: rotate(0);")]),P("selected",[w("&::before","background-color: var(--n-item-color-active);"),S("arrow","color: var(--n-arrow-color-active);"),S("icon","color: var(--n-item-icon-color-active);"),g("menu-item-content-header",` + color: var(--n-item-text-color-active); + `,[w("a","color: var(--n-item-text-color-active);"),S("extra","color: var(--n-item-text-color-active);")])]),P("child-active",[g("menu-item-content-header",` + color: var(--n-item-text-color-child-active); + `,[w("a",` + color: var(--n-item-text-color-child-active); + `),S("extra",` + color: var(--n-item-text-color-child-active); + `)]),S("arrow",` + color: var(--n-arrow-color-child-active); + `),S("icon",` + color: var(--n-item-icon-color-child-active); + `)]),Ve("disabled",[Ve("selected, child-active",[w("&:focus-within",Ei)]),P("selected",[bt(null,[S("arrow","color: var(--n-arrow-color-active-hover);"),S("icon","color: var(--n-item-icon-color-active-hover);"),g("menu-item-content-header",` + color: var(--n-item-text-color-active-hover); + `,[w("a","color: var(--n-item-text-color-active-hover);"),S("extra","color: var(--n-item-text-color-active-hover);")])])]),P("child-active",[bt(null,[S("arrow","color: var(--n-arrow-color-child-active-hover);"),S("icon","color: var(--n-item-icon-color-child-active-hover);"),g("menu-item-content-header",` + color: var(--n-item-text-color-child-active-hover); + `,[w("a","color: var(--n-item-text-color-child-active-hover);"),S("extra","color: var(--n-item-text-color-child-active-hover);")])])]),P("selected",[bt(null,[w("&::before","background-color: var(--n-item-color-active-hover);")])]),bt(null,Ei)]),S("icon",` + grid-area: icon; + color: var(--n-item-icon-color); + transition: + color .3s var(--n-bezier), + font-size .3s var(--n-bezier), + margin-right .3s var(--n-bezier); + box-sizing: content-box; + display: inline-flex; + align-items: center; + justify-content: center; + `),S("arrow",` + grid-area: arrow; + font-size: 16px; + color: var(--n-arrow-color); + transform: rotate(180deg); + opacity: 1; + transition: + color .3s var(--n-bezier), + transform 0.2s var(--n-bezier), + opacity 0.2s var(--n-bezier); + `),g("menu-item-content-header",` + grid-area: content; + transition: + color .3s var(--n-bezier), + opacity .3s var(--n-bezier); + opacity: 1; + white-space: nowrap; + color: var(--n-item-text-color); + `,[w("a",` + outline: none; + text-decoration: none; + transition: color .3s var(--n-bezier); + color: var(--n-item-text-color); + `,[w("&::before",` + content: ""; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + `)]),S("extra",` + font-size: .93em; + color: var(--n-group-text-color); + transition: color .3s var(--n-bezier); + `)])]),g("submenu",` + cursor: pointer; + position: relative; + margin-top: 6px; + `,[g("menu-item-content",` + height: var(--n-item-height); + `),g("submenu-children",` + overflow: hidden; + padding: 0; + `,[sr({duration:".2s"})])]),g("menu-item-group",[g("menu-item-group-title",` + margin-top: 6px; + color: var(--n-group-text-color); + cursor: default; + font-size: .93em; + height: 36px; + display: flex; + align-items: center; + transition: + padding-left .3s var(--n-bezier), + color .3s var(--n-bezier); + `)])]),g("menu-tooltip",[w("a",` + color: inherit; + text-decoration: none; + `)]),g("menu-divider",` + transition: background-color .3s var(--n-bezier); + background-color: var(--n-divider-color); + height: 1px; + margin: 6px 18px; + `)]);function bt(e,o){return[P("hover",e,o),w("&:hover",e,o)]}const Gb=Object.assign(Object.assign({},ae.props),{options:{type:Array,default:()=>[]},collapsed:{type:Boolean,default:void 0},collapsedWidth:{type:Number,default:48},iconSize:{type:Number,default:20},collapsedIconSize:{type:Number,default:24},rootIndent:Number,indent:{type:Number,default:32},labelField:{type:String,default:"label"},keyField:{type:String,default:"key"},childrenField:{type:String,default:"children"},disabledField:{type:String,default:"disabled"},defaultExpandAll:Boolean,defaultExpandedKeys:Array,expandedKeys:Array,value:[String,Number],defaultValue:{type:[String,Number],default:null},mode:{type:String,default:"vertical"},watchProps:{type:Array,default:void 0},disabled:Boolean,show:{type:Boolean,default:!0},inverted:Boolean,"onUpdate:expandedKeys":[Function,Array],onUpdateExpandedKeys:[Function,Array],onUpdateValue:[Function,Array],"onUpdate:value":[Function,Array],expandIcon:Function,renderIcon:Function,renderLabel:Function,renderExtra:Function,dropdownProps:Object,accordion:Boolean,nodeProps:Function,dropdownPlacement:{type:String,default:"bottom"},responsive:Boolean,items:Array,onOpenNamesChange:[Function,Array],onSelect:[Function,Array],onExpandedNamesChange:[Function,Array],expandedNames:Array,defaultExpandedNames:Array}),ix=Z({name:"Menu",props:Gb,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=ae("Menu","-menu",Kb,jg,e,o),n=$e(Ob,null),l=$(()=>{var ie;const{collapsed:O}=e;if(O!==void 0)return O;if(n){const{collapseModeRef:B,collapsedRef:G}=n;if(B.value==="width")return(ie=G.value)!==null&&ie!==void 0?ie:!1}return!1}),a=$(()=>{const{keyField:ie,childrenField:O,disabledField:B}=e;return xt(e.items||e.options,{getIgnored(G){return xn(G)},getChildren(G){return G[O]},getDisabled(G){return G[B]},getKey(G){var oe;return(oe=G[ie])!==null&&oe!==void 0?oe:G.name}})}),s=$(()=>new Set(a.value.treeNodes.map(ie=>ie.key))),{watchProps:d}=e,c=M(null);d!=null&&d.includes("defaultValue")?oo(()=>{c.value=e.defaultValue}):c.value=e.defaultValue;const u=le(e,"value"),f=uo(u,c),p=M([]),v=()=>{p.value=e.defaultExpandAll?a.value.getNonLeafKeys():e.defaultExpandedNames||e.defaultExpandedKeys||a.value.getPath(f.value,{includeSelf:!1}).keyPath};d!=null&&d.includes("defaultExpandedKeys")?oo(v):v();const h=yt(e,["expandedNames","expandedKeys"]),m=uo(h,p),x=$(()=>a.value.treeNodes),y=$(()=>a.value.getPath(f.value).keyPath);De(Cr,{props:e,mergedCollapsedRef:l,mergedThemeRef:r,mergedValueRef:f,mergedExpandedKeysRef:m,activePathRef:y,mergedClsPrefixRef:o,isHorizontalRef:$(()=>e.mode==="horizontal"),invertedRef:le(e,"inverted"),doSelect:b,toggleExpand:I});function b(ie,O){const{"onUpdate:value":B,onUpdateValue:G,onSelect:oe}=e;G&&de(G,ie,O),B&&de(B,ie,O),oe&&de(oe,ie,O),c.value=ie}function _(ie){const{"onUpdate:expandedKeys":O,onUpdateExpandedKeys:B,onExpandedNamesChange:G,onOpenNamesChange:oe}=e;O&&de(O,ie),B&&de(B,ie),G&&de(G,ie),oe&&de(oe,ie),p.value=ie}function I(ie){const O=Array.from(m.value),B=O.findIndex(G=>G===ie);if(~B)O.splice(B,1);else{if(e.accordion&&s.value.has(ie)){const G=O.findIndex(oe=>s.value.has(oe));G>-1&&O.splice(G,1)}O.push(ie)}_(O)}const R=ie=>{const O=a.value.getPath(ie??f.value,{includeSelf:!1}).keyPath;if(!O.length)return;const B=Array.from(m.value),G=new Set([...B,...O]);e.accordion&&s.value.forEach(oe=>{G.has(oe)&&!O.includes(oe)&&G.delete(oe)}),_(Array.from(G))},z=$(()=>{const{inverted:ie}=e,{common:{cubicBezierEaseInOut:O},self:B}=r.value,{borderRadius:G,borderColorHorizontal:oe,fontSize:me,itemHeight:be,dividerColor:Be}=B,T={"--n-divider-color":Be,"--n-bezier":O,"--n-font-size":me,"--n-border-color-horizontal":oe,"--n-border-radius":G,"--n-item-height":be};return ie?(T["--n-group-text-color"]=B.groupTextColorInverted,T["--n-color"]=B.colorInverted,T["--n-item-text-color"]=B.itemTextColorInverted,T["--n-item-text-color-hover"]=B.itemTextColorHoverInverted,T["--n-item-text-color-active"]=B.itemTextColorActiveInverted,T["--n-item-text-color-child-active"]=B.itemTextColorChildActiveInverted,T["--n-item-text-color-child-active-hover"]=B.itemTextColorChildActiveInverted,T["--n-item-text-color-active-hover"]=B.itemTextColorActiveHoverInverted,T["--n-item-icon-color"]=B.itemIconColorInverted,T["--n-item-icon-color-hover"]=B.itemIconColorHoverInverted,T["--n-item-icon-color-active"]=B.itemIconColorActiveInverted,T["--n-item-icon-color-active-hover"]=B.itemIconColorActiveHoverInverted,T["--n-item-icon-color-child-active"]=B.itemIconColorChildActiveInverted,T["--n-item-icon-color-child-active-hover"]=B.itemIconColorChildActiveHoverInverted,T["--n-item-icon-color-collapsed"]=B.itemIconColorCollapsedInverted,T["--n-item-text-color-horizontal"]=B.itemTextColorHorizontalInverted,T["--n-item-text-color-hover-horizontal"]=B.itemTextColorHoverHorizontalInverted,T["--n-item-text-color-active-horizontal"]=B.itemTextColorActiveHorizontalInverted,T["--n-item-text-color-child-active-horizontal"]=B.itemTextColorChildActiveHorizontalInverted,T["--n-item-text-color-child-active-hover-horizontal"]=B.itemTextColorChildActiveHoverHorizontalInverted,T["--n-item-text-color-active-hover-horizontal"]=B.itemTextColorActiveHoverHorizontalInverted,T["--n-item-icon-color-horizontal"]=B.itemIconColorHorizontalInverted,T["--n-item-icon-color-hover-horizontal"]=B.itemIconColorHoverHorizontalInverted,T["--n-item-icon-color-active-horizontal"]=B.itemIconColorActiveHorizontalInverted,T["--n-item-icon-color-active-hover-horizontal"]=B.itemIconColorActiveHoverHorizontalInverted,T["--n-item-icon-color-child-active-horizontal"]=B.itemIconColorChildActiveHorizontalInverted,T["--n-item-icon-color-child-active-hover-horizontal"]=B.itemIconColorChildActiveHoverHorizontalInverted,T["--n-arrow-color"]=B.arrowColorInverted,T["--n-arrow-color-hover"]=B.arrowColorHoverInverted,T["--n-arrow-color-active"]=B.arrowColorActiveInverted,T["--n-arrow-color-active-hover"]=B.arrowColorActiveHoverInverted,T["--n-arrow-color-child-active"]=B.arrowColorChildActiveInverted,T["--n-arrow-color-child-active-hover"]=B.arrowColorChildActiveHoverInverted,T["--n-item-color-hover"]=B.itemColorHoverInverted,T["--n-item-color-active"]=B.itemColorActiveInverted,T["--n-item-color-active-hover"]=B.itemColorActiveHoverInverted,T["--n-item-color-active-collapsed"]=B.itemColorActiveCollapsedInverted):(T["--n-group-text-color"]=B.groupTextColor,T["--n-color"]=B.color,T["--n-item-text-color"]=B.itemTextColor,T["--n-item-text-color-hover"]=B.itemTextColorHover,T["--n-item-text-color-active"]=B.itemTextColorActive,T["--n-item-text-color-child-active"]=B.itemTextColorChildActive,T["--n-item-text-color-child-active-hover"]=B.itemTextColorChildActiveHover,T["--n-item-text-color-active-hover"]=B.itemTextColorActiveHover,T["--n-item-icon-color"]=B.itemIconColor,T["--n-item-icon-color-hover"]=B.itemIconColorHover,T["--n-item-icon-color-active"]=B.itemIconColorActive,T["--n-item-icon-color-active-hover"]=B.itemIconColorActiveHover,T["--n-item-icon-color-child-active"]=B.itemIconColorChildActive,T["--n-item-icon-color-child-active-hover"]=B.itemIconColorChildActiveHover,T["--n-item-icon-color-collapsed"]=B.itemIconColorCollapsed,T["--n-item-text-color-horizontal"]=B.itemTextColorHorizontal,T["--n-item-text-color-hover-horizontal"]=B.itemTextColorHoverHorizontal,T["--n-item-text-color-active-horizontal"]=B.itemTextColorActiveHorizontal,T["--n-item-text-color-child-active-horizontal"]=B.itemTextColorChildActiveHorizontal,T["--n-item-text-color-child-active-hover-horizontal"]=B.itemTextColorChildActiveHoverHorizontal,T["--n-item-text-color-active-hover-horizontal"]=B.itemTextColorActiveHoverHorizontal,T["--n-item-icon-color-horizontal"]=B.itemIconColorHorizontal,T["--n-item-icon-color-hover-horizontal"]=B.itemIconColorHoverHorizontal,T["--n-item-icon-color-active-horizontal"]=B.itemIconColorActiveHorizontal,T["--n-item-icon-color-active-hover-horizontal"]=B.itemIconColorActiveHoverHorizontal,T["--n-item-icon-color-child-active-horizontal"]=B.itemIconColorChildActiveHorizontal,T["--n-item-icon-color-child-active-hover-horizontal"]=B.itemIconColorChildActiveHoverHorizontal,T["--n-arrow-color"]=B.arrowColor,T["--n-arrow-color-hover"]=B.arrowColorHover,T["--n-arrow-color-active"]=B.arrowColorActive,T["--n-arrow-color-active-hover"]=B.arrowColorActiveHover,T["--n-arrow-color-child-active"]=B.arrowColorChildActive,T["--n-arrow-color-child-active-hover"]=B.arrowColorChildActiveHover,T["--n-item-color-hover"]=B.itemColorHover,T["--n-item-color-active"]=B.itemColorActive,T["--n-item-color-active-hover"]=B.itemColorActiveHover,T["--n-item-color-active-collapsed"]=B.itemColorActiveCollapsed),T}),C=t?We("menu",$(()=>e.inverted?"a":"b"),z,e):void 0,H=nt(),k=M(null),D=M(null);let W=!0;const L=()=>{var ie;W?W=!1:(ie=k.value)===null||ie===void 0||ie.sync({showAllItemsBeforeCalculate:!0})};function j(){return document.getElementById(H)}const V=M(-1);function E(ie){V.value=e.options.length-ie}function Y(ie){ie||(V.value=-1)}const K=$(()=>{const ie=V.value;return{children:ie===-1?[]:e.options.slice(ie)}}),te=$(()=>{const{childrenField:ie,disabledField:O,keyField:B}=e;return xt([K.value],{getIgnored(G){return xn(G)},getChildren(G){return G[ie]},getDisabled(G){return G[O]},getKey(G){var oe;return(oe=G[B])!==null&&oe!==void 0?oe:G.name}})}),xe=$(()=>xt([{}]).treeNodes[0]);function se(){var ie;if(V.value===-1)return i(bn,{root:!0,level:0,key:"__ellpisisGroupPlaceholder__",internalKey:"__ellpisisGroupPlaceholder__",title:"···",tmNode:xe.value,domId:H,isEllipsisPlaceholder:!0});const O=te.value.treeNodes[0],B=y.value,G=!!(!((ie=O.children)===null||ie===void 0)&&ie.some(oe=>B.includes(oe.key)));return i(bn,{level:0,root:!0,key:"__ellpisisGroup__",internalKey:"__ellpisisGroup__",title:"···",virtualChildActive:G,tmNode:O,domId:H,rawNodes:O.rawNode.children||[],tmNodes:O.children||[],isEllipsisPlaceholder:!0})}return{mergedClsPrefix:o,controlledExpandedKeys:h,uncontrolledExpanededKeys:p,mergedExpandedKeys:m,uncontrolledValue:c,mergedValue:f,activePath:y,tmNodes:x,mergedTheme:r,mergedCollapsed:l,cssVars:t?void 0:z,themeClass:C==null?void 0:C.themeClass,overflowRef:k,counterRef:D,updateCounter:()=>{},onResize:L,onUpdateOverflow:Y,onUpdateCount:E,renderCounter:se,getCounter:j,onRender:C==null?void 0:C.onRender,showOption:R,deriveResponsiveState:L}},render(){const{mergedClsPrefix:e,mode:o,themeClass:t,onRender:r}=this;r==null||r();const n=()=>this.tmNodes.map(d=>Zn(d,this.$props)),a=o==="horizontal"&&this.responsive,s=()=>i("div",{role:o==="horizontal"?"menubar":"menu",class:[`${e}-menu`,t,`${e}-menu--${o}`,a&&`${e}-menu--responsive`,this.mergedCollapsed&&`${e}-menu--collapsed`],style:this.cssVars},a?i(un,{ref:"overflowRef",onUpdateOverflow:this.onUpdateOverflow,getCounter:this.getCounter,onUpdateCount:this.onUpdateCount,updateCounter:this.updateCounter,style:{width:"100%",display:"flex",overflow:"hidden"}},{default:n,counter:this.renderCounter}):n());return a?i(tt,{onResize:this.onResize},{default:s}):s()}});function qb(e,o={debug:!1,useSelectionEnd:!1,checkWidthOverflow:!0}){const t=e.selectionStart!==null?e.selectionStart:0,r=e.selectionEnd!==null?e.selectionEnd:0,n=o.useSelectionEnd?r:t,l=["direction","boxSizing","width","height","overflowX","overflowY","borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth","borderStyle","paddingTop","paddingRight","paddingBottom","paddingLeft","fontStyle","fontVariant","fontWeight","fontStretch","fontSize","fontSizeAdjust","lineHeight","fontFamily","textAlign","textTransform","textIndent","textDecoration","letterSpacing","wordSpacing","tabSize","MozTabSize"],a=navigator.userAgent.toLowerCase().includes("firefox");if(!No)throw new Error("textarea-caret-position#getCaretPosition should only be called in a browser");const s=o==null?void 0:o.debug;if(s){const h=document.querySelector("#input-textarea-caret-position-mirror-div");h!=null&&h.parentNode&&h.parentNode.removeChild(h)}const d=document.createElement("div");d.id="input-textarea-caret-position-mirror-div",document.body.appendChild(d);const c=d.style,u=window.getComputedStyle?window.getComputedStyle(e):e.currentStyle,f=e.nodeName==="INPUT";c.whiteSpace=f?"nowrap":"pre-wrap",f||(c.wordWrap="break-word"),c.position="absolute",s||(c.visibility="hidden"),l.forEach(h=>{if(f&&h==="lineHeight")if(u.boxSizing==="border-box"){const m=parseInt(u.height),x=parseInt(u.paddingTop)+parseInt(u.paddingBottom)+parseInt(u.borderTopWidth)+parseInt(u.borderBottomWidth),y=x+parseInt(u.lineHeight);m>y?c.lineHeight=`${m-x}px`:m===y?c.lineHeight=u.lineHeight:c.lineHeight="0"}else c.lineHeight=u.height;else c[h]=u[h]}),a?e.scrollHeight>parseInt(u.height)&&(c.overflowY="scroll"):c.overflow="hidden",d.textContent=e.value.substring(0,n),f&&d.textContent&&(d.textContent=d.textContent.replace(/\s/g," "));const p=document.createElement("span");p.textContent=e.value.substring(n)||".",p.style.position="relative",p.style.left=`${-e.scrollLeft}px`,p.style.top=`${-e.scrollTop}px`,d.appendChild(p);const v={top:p.offsetTop+parseInt(u.borderTopWidth),left:p.offsetLeft+parseInt(u.borderLeftWidth),absolute:!1,height:parseInt(u.fontSize)*1.5};return s?p.style.backgroundColor="#aaa":document.body.removeChild(d),v.left>=e.clientWidth&&o.checkWidthOverflow&&(v.left=e.clientWidth),v}const Yb=w([g("mention","width: 100%; z-index: auto; position: relative;"),g("mention-menu",` + box-shadow: var(--n-menu-box-shadow); + `,[ut({originalTransition:"background-color .3s var(--n-bezier), box-shadow .3s var(--n-bezier)"})])]),Xb=Object.assign(Object.assign({},ae.props),{to:Fo.propTo,autosize:[Boolean,Object],options:{type:Array,default:[]},type:{type:String,default:"text"},separator:{type:String,validator:e=>e.length!==1?(qo("mention","`separator`'s length must be 1."),!1):!0,default:" "},bordered:{type:Boolean,default:void 0},disabled:Boolean,value:String,defaultValue:{type:String,default:""},loading:Boolean,prefix:{type:[String,Array],default:"@"},placeholder:{type:String,default:""},placement:{type:String,default:"bottom-start"},size:String,renderLabel:Function,status:String,"onUpdate:show":[Array,Function],onUpdateShow:[Array,Function],"onUpdate:value":[Array,Function],onUpdateValue:[Array,Function],onSearch:Function,onSelect:Function,onFocus:Function,onBlur:Function,internalDebug:Boolean}),lx=Z({name:"Mention",props:Xb,setup(e){const{namespaceRef:o,mergedClsPrefixRef:t,mergedBorderedRef:r,inlineThemeDisabled:n}=Ie(e),l=ae("Mention","-mention",Yb,Lg,e,t),a=it(e),s=M(null),d=M(null),c=M(null),u=M("");let f=null,p=null,v=null;const h=$(()=>{const{value:O}=u;return e.options.filter(B=>O?typeof B.label=="string"?B.label.startsWith(O):typeof B.value=="string"?B.value.startsWith(O):!1:!0)}),m=$(()=>xt(h.value,{getKey:O=>O.value})),x=M(null),y=M(!1),b=M(e.defaultValue),_=le(e,"value"),I=uo(_,b),R=$(()=>{const{self:{menuBoxShadow:O}}=l.value;return{"--n-menu-box-shadow":O}}),z=n?We("mention",void 0,R,e):void 0;function C(O){if(e.disabled)return;const{onUpdateShow:B,"onUpdate:show":G}=e;B&&de(B,O),G&&de(G,O),O||(f=null,p=null,v=null),y.value=O}function H(O){const{onUpdateValue:B,"onUpdate:value":G}=e,{nTriggerFormChange:oe,nTriggerFormInput:me}=a;G&&de(G,O),B&&de(B,O),me(),oe(),b.value=O}function k(){return e.type==="text"?s.value.inputElRef:s.value.textareaElRef}function D(){var O;const B=k();if(document.activeElement!==B){C(!1);return}const{selectionEnd:G}=B;if(G===null){C(!1);return}const oe=B.value,{separator:me}=e,{prefix:be}=e,Be=typeof be=="string"?[be]:be;for(let T=G-1;T>=0;--T){const fe=oe[T];if(fe===me||fe===` +`||fe==="\r"){C(!1);return}if(Be.includes(fe)){const we=oe.slice(T+1,G);C(!0),(O=e.onSearch)===null||O===void 0||O.call(e,we,fe),u.value=we,f=fe,p=T+1,v=G;return}}C(!1)}function W(){const{value:O}=d;if(!O)return;const B=k(),G=qb(B);G.left+=B.parentElement.offsetLeft,O.style.left=`${G.left}px`,O.style.top=`${G.top+G.height}px`}function L(){var O;y.value&&((O=c.value)===null||O===void 0||O.syncPosition())}function j(O){H(O),V()}function V(){setTimeout(()=>{W(),D(),ao().then(L)},0)}function E(O){var B,G;if(O.key==="ArrowLeft"||O.key==="ArrowRight"){if(!((B=s.value)===null||B===void 0)&&B.isCompositing)return;V()}else if(O.key==="ArrowUp"||O.key==="ArrowDown"||O.key==="Enter"){if(!((G=s.value)===null||G===void 0)&&G.isCompositing)return;const{value:oe}=x;if(y.value){if(oe)if(O.preventDefault(),O.key==="ArrowUp")oe.prev();else if(O.key==="ArrowDown")oe.next();else{const me=oe.getPendingTmNode();me?se(me):C(!1)}}else V()}}function Y(O){const{onFocus:B}=e;B==null||B(O);const{nTriggerFormFocus:G}=a;G(),V()}function K(){var O;(O=s.value)===null||O===void 0||O.focus()}function te(){var O;(O=s.value)===null||O===void 0||O.blur()}function xe(O){const{onBlur:B}=e;B==null||B(O);const{nTriggerFormBlur:G}=a;G(),C(!1)}function se(O){var B;if(f===null||p===null||v===null)return;const{rawNode:{value:G=""}}=O,oe=k(),me=oe.value,{separator:be}=e,Be=me.slice(v),T=Be.startsWith(be),fe=`${G}${T?"":be}`;H(me.slice(0,p)+fe+Be),(B=e.onSelect)===null||B===void 0||B.call(e,O.rawNode,f);const we=p+fe.length+(T?1:0);ao().then(()=>{oe.selectionStart=we,oe.selectionEnd=we,D()})}function ie(){e.disabled||V()}return{namespace:o,mergedClsPrefix:t,mergedBordered:r,mergedSize:a.mergedSizeRef,mergedStatus:a.mergedStatusRef,mergedTheme:l,treeMate:m,selectMenuInstRef:x,inputInstRef:s,cursorRef:d,followerRef:c,showMenu:y,adjustedTo:Fo(e),isMounted:$t(),mergedValue:I,handleInputFocus:Y,handleInputBlur:xe,handleInputUpdateValue:j,handleInputKeyDown:E,handleSelect:se,handleInputMouseDown:ie,focus:K,blur:te,cssVars:n?void 0:R,themeClass:z==null?void 0:z.themeClass,onRender:z==null?void 0:z.onRender}},render(){const{mergedTheme:e,mergedClsPrefix:o,$slots:t}=this;return i("div",{class:`${o}-mention`},i(zt,{status:this.mergedStatus,themeOverrides:e.peerOverrides.Input,theme:e.peers.Input,size:this.mergedSize,autosize:this.autosize,type:this.type,ref:"inputInstRef",placeholder:this.placeholder,onMousedown:this.handleInputMouseDown,onUpdateValue:this.handleInputUpdateValue,onKeydown:this.handleInputKeyDown,onFocus:this.handleInputFocus,onBlur:this.handleInputBlur,bordered:this.mergedBordered,disabled:this.disabled,value:this.mergedValue}),i(Or,null,{default:()=>[i(Fr,null,{default:()=>i("div",{style:{position:"absolute",width:0,height:0},ref:"cursorRef"})}),i(Tr,{ref:"followerRef",placement:this.placement,show:this.showMenu,containerClass:this.namespace,to:this.adjustedTo,teleportDisabled:this.adjustedTo===Fo.tdkey},{default:()=>i(lo,{name:"fade-in-scale-up-transition",appear:this.isMounted},{default:()=>{const{mergedTheme:r,onRender:n}=this;return n==null||n(),this.showMenu?i(Fn,{clsPrefix:o,theme:r.peers.InternalSelectMenu,themeOverrides:r.peerOverrides.InternalSelectMenu,autoPending:!0,ref:"selectMenuInstRef",class:[`${o}-mention-menu`,this.themeClass],loading:this.loading,treeMate:this.treeMate,virtualScroll:!1,style:this.cssVars,onToggle:this.handleSelect,renderLabel:this.renderLabel},t):null}})})]}))}}),gs={icon:Function,type:{type:String,default:"info"},content:[String,Number,Function],showIcon:{type:Boolean,default:!0},closable:Boolean,keepAliveOnHover:Boolean,onClose:Function,onMouseenter:Function,onMouseleave:Function},ms="n-message-api",bs="n-message-provider",Zb=w([g("message-wrapper",` + margin: var(--n-margin); + z-index: 0; + transform-origin: top center; + display: flex; + `,[sr({overflow:"visible",originalTransition:"transform .3s var(--n-bezier)",enterToProps:{transform:"scale(1)"},leaveToProps:{transform:"scale(0.85)"}})]),g("message",` + box-sizing: border-box; + display: flex; + align-items: center; + transition: + color .3s var(--n-bezier), + box-shadow .3s var(--n-bezier), + background-color .3s var(--n-bezier), + opacity .3s var(--n-bezier), + transform .3s var(--n-bezier), + margin-bottom .3s var(--n-bezier); + padding: var(--n-padding); + border-radius: var(--n-border-radius); + flex-wrap: nowrap; + overflow: hidden; + max-width: var(--n-max-width); + color: var(--n-text-color); + background-color: var(--n-color); + box-shadow: var(--n-box-shadow); + `,[S("content",` + display: inline-block; + line-height: var(--n-line-height); + font-size: var(--n-font-size); + `),S("icon",` + position: relative; + margin: var(--n-icon-margin); + height: var(--n-icon-size); + width: var(--n-icon-size); + font-size: var(--n-icon-size); + flex-shrink: 0; + `,[["default","info","success","warning","error","loading"].map(e=>P(`${e}-type`,[w("> *",` + color: var(--n-icon-color-${e}); + transition: color .3s var(--n-bezier); + `)])),w("> *",` + position: absolute; + left: 0; + top: 0; + right: 0; + bottom: 0; + `,[ct()])]),S("close",` + margin: var(--n-close-margin); + transition: + background-color .3s var(--n-bezier), + color .3s var(--n-bezier); + flex-shrink: 0; + `,[w("&:hover",` + color: var(--n-close-icon-color-hover); + `),w("&:active",` + color: var(--n-close-icon-color-pressed); + `)])]),g("message-container",` + z-index: 6000; + position: fixed; + height: 0; + overflow: visible; + display: flex; + flex-direction: column; + align-items: center; + `,[P("top",` + top: 12px; + left: 0; + right: 0; + `),P("top-left",` + top: 12px; + left: 12px; + right: 0; + align-items: flex-start; + `),P("top-right",` + top: 12px; + left: 0; + right: 12px; + align-items: flex-end; + `),P("bottom",` + bottom: 4px; + left: 0; + right: 0; + justify-content: flex-end; + `),P("bottom-left",` + bottom: 4px; + left: 12px; + right: 0; + justify-content: flex-end; + align-items: flex-start; + `),P("bottom-right",` + bottom: 4px; + left: 0; + right: 12px; + justify-content: flex-end; + align-items: flex-end; + `)])]),Qb={info:()=>i(wt,null),success:()=>i(Ut,null),warning:()=>i(Pt,null),error:()=>i(Vt,null),default:()=>null},Jb=Z({name:"Message",props:Object.assign(Object.assign({},gs),{render:Function}),setup(e){const{inlineThemeDisabled:o,mergedRtlRef:t}=Ie(e),{props:r,mergedClsPrefixRef:n}=$e(bs),l=eo("Message",t,n),a=ae("Message","-message",Zb,dg,r,n),s=$(()=>{const{type:c}=e,{common:{cubicBezierEaseInOut:u},self:{padding:f,margin:p,maxWidth:v,iconMargin:h,closeMargin:m,closeSize:x,iconSize:y,fontSize:b,lineHeight:_,borderRadius:I,iconColorInfo:R,iconColorSuccess:z,iconColorWarning:C,iconColorError:H,iconColorLoading:k,closeIconSize:D,closeBorderRadius:W,[N("textColor",c)]:L,[N("boxShadow",c)]:j,[N("color",c)]:V,[N("closeColorHover",c)]:E,[N("closeColorPressed",c)]:Y,[N("closeIconColor",c)]:K,[N("closeIconColorPressed",c)]:te,[N("closeIconColorHover",c)]:xe}}=a.value;return{"--n-bezier":u,"--n-margin":p,"--n-padding":f,"--n-max-width":v,"--n-font-size":b,"--n-icon-margin":h,"--n-icon-size":y,"--n-close-icon-size":D,"--n-close-border-radius":W,"--n-close-size":x,"--n-close-margin":m,"--n-text-color":L,"--n-color":V,"--n-box-shadow":j,"--n-icon-color-info":R,"--n-icon-color-success":z,"--n-icon-color-warning":C,"--n-icon-color-error":H,"--n-icon-color-loading":k,"--n-close-color-hover":E,"--n-close-color-pressed":Y,"--n-close-icon-color":K,"--n-close-icon-color-pressed":te,"--n-close-icon-color-hover":xe,"--n-line-height":_,"--n-border-radius":I}}),d=o?We("message",$(()=>e.type[0]),s,{}):void 0;return{mergedClsPrefix:n,rtlEnabled:l,messageProviderProps:r,handleClose(){var c;(c=e.onClose)===null||c===void 0||c.call(e)},cssVars:o?void 0:s,themeClass:d==null?void 0:d.themeClass,onRender:d==null?void 0:d.onRender,placement:r.placement}},render(){const{render:e,type:o,closable:t,content:r,mergedClsPrefix:n,cssVars:l,themeClass:a,onRender:s,icon:d,handleClose:c,showIcon:u}=this;s==null||s();let f;return i("div",{class:[`${n}-message-wrapper`,a],onMouseenter:this.onMouseenter,onMouseleave:this.onMouseleave,style:[{alignItems:this.placement.startsWith("top")?"flex-start":"flex-end"},l]},e?e(this.$props):i("div",{class:[`${n}-message ${n}-message--${o}-type`,this.rtlEnabled&&`${n}-message--rtl`]},(f=e0(d,o,n))&&u?i("div",{class:`${n}-message__icon ${n}-message__icon--${o}-type`},i(Kt,null,{default:()=>f})):null,i("div",{class:`${n}-message__content`},Qe(r)),t?i(kt,{clsPrefix:n,class:`${n}-message__close`,onClick:c,absolute:!0}):null))}});function e0(e,o,t){if(typeof e=="function")return e();{const r=o==="loading"?i(Gt,{clsPrefix:t,strokeWidth:24,scale:.85}):Qb[o]();return r?i(Le,{clsPrefix:t,key:o},{default:()=>r}):null}}const o0=Z({name:"MessageEnvironment",props:Object.assign(Object.assign({},gs),{duration:{type:Number,default:3e3},onAfterLeave:Function,onLeave:Function,internalKey:{type:String,required:!0},onInternalAfterLeave:Function,onHide:Function,onAfterHide:Function}),setup(e){let o=null;const t=M(!0);po(()=>{r()});function r(){const{duration:u}=e;u&&(o=window.setTimeout(a,u))}function n(u){u.currentTarget===u.target&&o!==null&&(window.clearTimeout(o),o=null)}function l(u){u.currentTarget===u.target&&r()}function a(){const{onHide:u}=e;t.value=!1,o&&(window.clearTimeout(o),o=null),u&&u()}function s(){const{onClose:u}=e;u&&u(),a()}function d(){const{onAfterLeave:u,onInternalAfterLeave:f,onAfterHide:p,internalKey:v}=e;u&&u(),f&&f(v),p&&p()}function c(){a()}return{show:t,hide:a,handleClose:s,handleAfterLeave:d,handleMouseleave:l,handleMouseenter:n,deactivate:c}},render(){return i(Rt,{appear:!0,onAfterLeave:this.handleAfterLeave,onLeave:this.onLeave},{default:()=>[this.show?i(Jb,{content:this.content,type:this.type,icon:this.icon,showIcon:this.showIcon,closable:this.closable,onClose:this.handleClose,onMouseenter:this.keepAliveOnHover?this.handleMouseenter:void 0,onMouseleave:this.keepAliveOnHover?this.handleMouseleave:void 0}):null]})}}),t0=Object.assign(Object.assign({},ae.props),{to:[String,Object],duration:{type:Number,default:3e3},keepAliveOnHover:Boolean,max:Number,placement:{type:String,default:"top"},closable:Boolean,containerClass:String,containerStyle:[String,Object]}),ax=Z({name:"MessageProvider",props:t0,setup(e){const{mergedClsPrefixRef:o}=Ie(e),t=M([]),r=M({}),n={create(d,c){return l(d,Object.assign({type:"default"},c))},info(d,c){return l(d,Object.assign(Object.assign({},c),{type:"info"}))},success(d,c){return l(d,Object.assign(Object.assign({},c),{type:"success"}))},warning(d,c){return l(d,Object.assign(Object.assign({},c),{type:"warning"}))},error(d,c){return l(d,Object.assign(Object.assign({},c),{type:"error"}))},loading(d,c){return l(d,Object.assign(Object.assign({},c),{type:"loading"}))},destroyAll:s};De(bs,{props:e,mergedClsPrefixRef:o}),De(ms,n);function l(d,c){const u=nt(),f=el(Object.assign(Object.assign({},c),{content:d,key:u,destroy:()=>{var v;(v=r.value[u])===null||v===void 0||v.hide()}})),{max:p}=e;return p&&t.value.length>=p&&t.value.shift(),t.value.push(f),f}function a(d){t.value.splice(t.value.findIndex(c=>c.key===d),1),delete r.value[d]}function s(){Object.values(r.value).forEach(d=>{d.hide()})}return Object.assign({mergedClsPrefix:o,messageRefs:r,messageList:t,handleAfterLeave:a},n)},render(){var e,o,t;return i(co,null,(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e),this.messageList.length?i(ol,{to:(t=this.to)!==null&&t!==void 0?t:"body"},i("div",{class:[`${this.mergedClsPrefix}-message-container`,`${this.mergedClsPrefix}-message-container--${this.placement}`,this.containerClass],key:"message-container",style:this.containerStyle},this.messageList.map(r=>i(o0,Object.assign({ref:n=>{n&&(this.messageRefs[r.key]=n)},internalKey:r.key,onInternalAfterLeave:this.handleAfterLeave},Wt(r,["destroy"],void 0),{duration:r.duration===void 0?this.duration:r.duration,keepAliveOnHover:r.keepAliveOnHover===void 0?this.keepAliveOnHover:r.keepAliveOnHover,closable:r.closable===void 0?this.closable:r.closable}))))):null)}});function sx(){const e=$e(ms,null);return e===null&&Wo("use-message","No outer founded. See prerequisite in https://www.naiveui.com/en-US/os-theme/components/message for more details. If you want to use `useMessage` outside setup, please check https://www.naiveui.com/zh-CN/os-theme/components/message#Q-&-A."),e}const xs="n-popconfirm",Cs={positiveText:String,negativeText:String,showIcon:{type:Boolean,default:!0},onPositiveClick:{type:Function,required:!0},onNegativeClick:{type:Function,required:!0}},Wi=wo(Cs),r0=Z({name:"NPopconfirmPanel",props:Cs,setup(e){const{localeRef:o}=Yo("Popconfirm"),{inlineThemeDisabled:t}=Ie(),{mergedClsPrefixRef:r,mergedThemeRef:n,props:l}=$e(xs),a=$(()=>{const{common:{cubicBezierEaseInOut:d},self:{fontSize:c,iconSize:u,iconColor:f}}=n.value;return{"--n-bezier":d,"--n-font-size":c,"--n-icon-size":u,"--n-icon-color":f}}),s=t?We("popconfirm-panel",void 0,a,l):void 0;return Object.assign(Object.assign({},Yo("Popconfirm")),{mergedClsPrefix:r,cssVars:t?void 0:a,localizedPositiveText:$(()=>e.positiveText||o.value.positiveText),localizedNegativeText:$(()=>e.negativeText||o.value.negativeText),positiveButtonProps:le(l,"positiveButtonProps"),negativeButtonProps:le(l,"negativeButtonProps"),handlePositiveClick(d){e.onPositiveClick(d)},handleNegativeClick(d){e.onNegativeClick(d)},themeClass:s==null?void 0:s.themeClass,onRender:s==null?void 0:s.onRender})},render(){var e;const{mergedClsPrefix:o,showIcon:t,$slots:r}=this,n=so(r.action,()=>this.negativeText===null&&this.positiveText===null?[]:[this.negativeText!==null&&i(Bo,Object.assign({size:"small",onClick:this.handleNegativeClick},this.negativeButtonProps),{default:()=>this.localizedNegativeText}),this.positiveText!==null&&i(Bo,Object.assign({size:"small",type:"primary",onClick:this.handlePositiveClick},this.positiveButtonProps),{default:()=>this.localizedPositiveText})]);return(e=this.onRender)===null||e===void 0||e.call(this),i("div",{class:[`${o}-popconfirm__panel`,this.themeClass],style:this.cssVars},je(r.default,l=>t||l?i("div",{class:`${o}-popconfirm__body`},t?i("div",{class:`${o}-popconfirm__icon`},so(r.icon,()=>[i(Le,{clsPrefix:o},{default:()=>i(Pt,null)})])):null,l):null),n?i("div",{class:[`${o}-popconfirm__action`]},n):null)}}),n0=g("popconfirm",[S("body",` + font-size: var(--n-font-size); + display: flex; + align-items: center; + flex-wrap: nowrap; + position: relative; + `,[S("icon",` + display: flex; + font-size: var(--n-icon-size); + color: var(--n-icon-color); + transition: color .3s var(--n-bezier); + margin: 0 8px 0 0; + `)]),S("action",` + display: flex; + justify-content: flex-end; + `,[w("&:not(:first-child)","margin-top: 8px"),g("button",[w("&:not(:last-child)","margin-right: 8px;")])])]),i0=Object.assign(Object.assign(Object.assign({},ae.props),St),{positiveText:String,negativeText:String,showIcon:{type:Boolean,default:!0},trigger:{type:String,default:"click"},positiveButtonProps:Object,negativeButtonProps:Object,onPositiveClick:Function,onNegativeClick:Function}),dx=Z({name:"Popconfirm",props:i0,__popover__:!0,setup(e){const{mergedClsPrefixRef:o}=Ie(),t=ae("Popconfirm","-popconfirm",n0,Yg,e,o),r=M(null);function n(s){var d;if(!(!((d=r.value)===null||d===void 0)&&d.getMergedShow()))return;const{onPositiveClick:c,"onUpdate:show":u}=e;Promise.resolve(c?c(s):!0).then(f=>{var p;f!==!1&&((p=r.value)===null||p===void 0||p.setShow(!1),u&&de(u,!1))})}function l(s){var d;if(!(!((d=r.value)===null||d===void 0)&&d.getMergedShow()))return;const{onNegativeClick:c,"onUpdate:show":u}=e;Promise.resolve(c?c(s):!0).then(f=>{var p;f!==!1&&((p=r.value)===null||p===void 0||p.setShow(!1),u&&de(u,!1))})}return De(xs,{mergedThemeRef:t,mergedClsPrefixRef:o,props:e}),{setShow(s){var d;(d=r.value)===null||d===void 0||d.setShow(s)},syncPosition(){var s;(s=r.value)===null||s===void 0||s.syncPosition()},mergedTheme:t,popoverInstRef:r,handlePositiveClick:n,handleNegativeClick:l}},render(){const{$slots:e,$props:o,mergedTheme:t}=this;return i(mr,Wt(o,Wi,{theme:t.peers.Popover,themeOverrides:t.peerOverrides.Popover,internalExtraClass:["popconfirm"],ref:"popoverInstRef"}),{trigger:e.activator||e.trigger,default:()=>{const r=mo(o,Wi);return i(r0,Object.assign(Object.assign({},r),{onPositiveClick:this.handlePositiveClick,onNegativeClick:this.handleNegativeClick}),e)}})}}),l0=w([g("progress",{display:"inline-block"},[g("progress-icon",` + color: var(--n-icon-color); + transition: color .3s var(--n-bezier); + `),P("line",` + width: 100%; + display: block; + `,[g("progress-content",` + display: flex; + align-items: center; + `,[g("progress-graph",{flex:1})]),g("progress-custom-content",{marginLeft:"14px"}),g("progress-icon",` + width: 30px; + padding-left: 14px; + height: var(--n-icon-size-line); + line-height: var(--n-icon-size-line); + font-size: var(--n-icon-size-line); + `,[P("as-text",` + color: var(--n-text-color-line-outer); + text-align: center; + width: 40px; + font-size: var(--n-font-size); + padding-left: 4px; + transition: color .3s var(--n-bezier); + `)])]),P("circle, dashboard",{width:"120px"},[g("progress-custom-content",` + position: absolute; + left: 50%; + top: 50%; + transform: translateX(-50%) translateY(-50%); + display: flex; + align-items: center; + justify-content: center; + `),g("progress-text",` + position: absolute; + left: 50%; + top: 50%; + transform: translateX(-50%) translateY(-50%); + display: flex; + align-items: center; + color: inherit; + font-size: var(--n-font-size-circle); + color: var(--n-text-color-circle); + font-weight: var(--n-font-weight-circle); + transition: color .3s var(--n-bezier); + white-space: nowrap; + `),g("progress-icon",` + position: absolute; + left: 50%; + top: 50%; + transform: translateX(-50%) translateY(-50%); + display: flex; + align-items: center; + color: var(--n-icon-color); + font-size: var(--n-icon-size-circle); + `)]),P("multiple-circle",` + width: 200px; + color: inherit; + `,[g("progress-text",` + font-weight: var(--n-font-weight-circle); + color: var(--n-text-color-circle); + position: absolute; + left: 50%; + top: 50%; + transform: translateX(-50%) translateY(-50%); + display: flex; + align-items: center; + justify-content: center; + transition: color .3s var(--n-bezier); + `)]),g("progress-content",{position:"relative"}),g("progress-graph",{position:"relative"},[g("progress-graph-circle",[w("svg",{verticalAlign:"bottom"}),g("progress-graph-circle-fill",` + stroke: var(--n-fill-color); + transition: + opacity .3s var(--n-bezier), + stroke .3s var(--n-bezier), + stroke-dasharray .3s var(--n-bezier); + `,[P("empty",{opacity:0})]),g("progress-graph-circle-rail",` + transition: stroke .3s var(--n-bezier); + overflow: hidden; + stroke: var(--n-rail-color); + `)]),g("progress-graph-line",[P("indicator-inside",[g("progress-graph-line-rail",` + height: 16px; + line-height: 16px; + border-radius: 10px; + `,[g("progress-graph-line-fill",` + height: inherit; + border-radius: 10px; + `),g("progress-graph-line-indicator",` + background: #0000; + white-space: nowrap; + text-align: right; + margin-left: 14px; + margin-right: 14px; + height: inherit; + font-size: 12px; + color: var(--n-text-color-line-inner); + transition: color .3s var(--n-bezier); + `)])]),P("indicator-inside-label",` + height: 16px; + display: flex; + align-items: center; + `,[g("progress-graph-line-rail",` + flex: 1; + transition: background-color .3s var(--n-bezier); + `),g("progress-graph-line-indicator",` + background: var(--n-fill-color); + font-size: 12px; + transform: translateZ(0); + display: flex; + vertical-align: middle; + height: 16px; + line-height: 16px; + padding: 0 10px; + border-radius: 10px; + position: absolute; + white-space: nowrap; + color: var(--n-text-color-line-inner); + transition: + right .2s var(--n-bezier), + color .3s var(--n-bezier), + background-color .3s var(--n-bezier); + `)]),g("progress-graph-line-rail",` + position: relative; + overflow: hidden; + height: var(--n-rail-height); + border-radius: 5px; + background-color: var(--n-rail-color); + transition: background-color .3s var(--n-bezier); + `,[g("progress-graph-line-fill",` + background: var(--n-fill-color); + position: relative; + border-radius: 5px; + height: inherit; + width: 100%; + max-width: 0%; + transition: + background-color .3s var(--n-bezier), + max-width .2s var(--n-bezier); + `,[P("processing",[w("&::after",` + content: ""; + background-image: var(--n-line-bg-processing); + animation: progress-processing-animation 2s var(--n-bezier) infinite; + `)])])])])])]),w("@keyframes progress-processing-animation",` + 0% { + position: absolute; + left: 0; + top: 0; + bottom: 0; + right: 100%; + opacity: 1; + } + 66% { + position: absolute; + left: 0; + top: 0; + bottom: 0; + right: 0; + opacity: 0; + } + 100% { + position: absolute; + left: 0; + top: 0; + bottom: 0; + right: 0; + opacity: 0; + } + `)]),a0={success:i(Ut,null),error:i(Vt,null),warning:i(Pt,null),info:i(wt,null)},s0=Z({name:"ProgressLine",props:{clsPrefix:{type:String,required:!0},percentage:{type:Number,default:0},railColor:String,railStyle:[String,Object],fillColor:String,status:{type:String,required:!0},indicatorPlacement:{type:String,required:!0},indicatorTextColor:String,unit:{type:String,default:"%"},processing:{type:Boolean,required:!0},showIndicator:{type:Boolean,required:!0},height:[String,Number],railBorderRadius:[String,Number],fillBorderRadius:[String,Number]},setup(e,{slots:o}){const t=$(()=>ro(e.height)),r=$(()=>e.railBorderRadius!==void 0?ro(e.railBorderRadius):e.height!==void 0?ro(e.height,{c:.5}):""),n=$(()=>e.fillBorderRadius!==void 0?ro(e.fillBorderRadius):e.railBorderRadius!==void 0?ro(e.railBorderRadius):e.height!==void 0?ro(e.height,{c:.5}):"");return()=>{const{indicatorPlacement:l,railColor:a,railStyle:s,percentage:d,unit:c,indicatorTextColor:u,status:f,showIndicator:p,fillColor:v,processing:h,clsPrefix:m}=e;return i("div",{class:`${m}-progress-content`,role:"none"},i("div",{class:`${m}-progress-graph`,"aria-hidden":!0},i("div",{class:[`${m}-progress-graph-line`,{[`${m}-progress-graph-line--indicator-${l}`]:!0}]},i("div",{class:`${m}-progress-graph-line-rail`,style:[{backgroundColor:a,height:t.value,borderRadius:r.value},s]},i("div",{class:[`${m}-progress-graph-line-fill`,h&&`${m}-progress-graph-line-fill--processing`],style:{maxWidth:`${e.percentage}%`,backgroundColor:v,height:t.value,lineHeight:t.value,borderRadius:n.value}},l==="inside"?i("div",{class:`${m}-progress-graph-line-indicator`,style:{color:u}},o.default?o.default():`${d}${c}`):null)))),p&&l==="outside"?i("div",null,o.default?i("div",{class:`${m}-progress-custom-content`,style:{color:u},role:"none"},o.default()):f==="default"?i("div",{role:"none",class:`${m}-progress-icon ${m}-progress-icon--as-text`,style:{color:u}},d,c):i("div",{class:`${m}-progress-icon`,"aria-hidden":!0},i(Le,{clsPrefix:m},{default:()=>a0[f]}))):null)}}}),d0={success:i(Ut,null),error:i(Vt,null),warning:i(Pt,null),info:i(wt,null)},c0=Z({name:"ProgressCircle",props:{clsPrefix:{type:String,required:!0},status:{type:String,required:!0},strokeWidth:{type:Number,required:!0},fillColor:String,railColor:String,railStyle:[String,Object],percentage:{type:Number,default:0},offsetDegree:{type:Number,default:0},showIndicator:{type:Boolean,required:!0},indicatorTextColor:String,unit:String,viewBoxWidth:{type:Number,required:!0},gapDegree:{type:Number,required:!0},gapOffsetDegree:{type:Number,default:0}},setup(e,{slots:o}){function t(r,n,l){const{gapDegree:a,viewBoxWidth:s,strokeWidth:d}=e,c=50,u=0,f=c,p=0,v=2*c,h=50+d/2,m=`M ${h},${h} m ${u},${f} + a ${c},${c} 0 1 1 ${p},${-v} + a ${c},${c} 0 1 1 ${-p},${v}`,x=Math.PI*2*c,y={stroke:l,strokeDasharray:`${r/100*(x-a)}px ${s*8}px`,strokeDashoffset:`-${a/2}px`,transformOrigin:n?"center":void 0,transform:n?`rotate(${n}deg)`:void 0};return{pathString:m,pathStyle:y}}return()=>{const{fillColor:r,railColor:n,strokeWidth:l,offsetDegree:a,status:s,percentage:d,showIndicator:c,indicatorTextColor:u,unit:f,gapOffsetDegree:p,clsPrefix:v}=e,{pathString:h,pathStyle:m}=t(100,0,n),{pathString:x,pathStyle:y}=t(d,a,r),b=100+l;return i("div",{class:`${v}-progress-content`,role:"none"},i("div",{class:`${v}-progress-graph`,"aria-hidden":!0},i("div",{class:`${v}-progress-graph-circle`,style:{transform:p?`rotate(${p}deg)`:void 0}},i("svg",{viewBox:`0 0 ${b} ${b}`},i("g",null,i("path",{class:`${v}-progress-graph-circle-rail`,d:h,"stroke-width":l,"stroke-linecap":"round",fill:"none",style:m})),i("g",null,i("path",{class:[`${v}-progress-graph-circle-fill`,d===0&&`${v}-progress-graph-circle-fill--empty`],d:x,"stroke-width":l,"stroke-linecap":"round",fill:"none",style:y}))))),c?i("div",null,o.default?i("div",{class:`${v}-progress-custom-content`,role:"none"},o.default()):s!=="default"?i("div",{class:`${v}-progress-icon`,"aria-hidden":!0},i(Le,{clsPrefix:v},{default:()=>d0[s]})):i("div",{class:`${v}-progress-text`,style:{color:u},role:"none"},i("span",{class:`${v}-progress-text__percentage`},d),i("span",{class:`${v}-progress-text__unit`},f))):null)}}});function Ni(e,o,t=100){return`m ${t/2} ${t/2-e} a ${e} ${e} 0 1 1 0 ${2*e} a ${e} ${e} 0 1 1 0 -${2*e}`}const u0=Z({name:"ProgressMultipleCircle",props:{clsPrefix:{type:String,required:!0},viewBoxWidth:{type:Number,required:!0},percentage:{type:Array,default:[0]},strokeWidth:{type:Number,required:!0},circleGap:{type:Number,required:!0},showIndicator:{type:Boolean,required:!0},fillColor:{type:Array,default:()=>[]},railColor:{type:Array,default:()=>[]},railStyle:{type:Array,default:()=>[]}},setup(e,{slots:o}){const t=$(()=>e.percentage.map((n,l)=>`${Math.PI*n/100*(e.viewBoxWidth/2-e.strokeWidth/2*(1+2*l)-e.circleGap*l)*2}, ${e.viewBoxWidth*8}`));return()=>{const{viewBoxWidth:r,strokeWidth:n,circleGap:l,showIndicator:a,fillColor:s,railColor:d,railStyle:c,percentage:u,clsPrefix:f}=e;return i("div",{class:`${f}-progress-content`,role:"none"},i("div",{class:`${f}-progress-graph`,"aria-hidden":!0},i("div",{class:`${f}-progress-graph-circle`},i("svg",{viewBox:`0 0 ${r} ${r}`},u.map((p,v)=>i("g",{key:v},i("path",{class:`${f}-progress-graph-circle-rail`,d:Ni(r/2-n/2*(1+2*v)-l*v,n,r),"stroke-width":n,"stroke-linecap":"round",fill:"none",style:[{strokeDashoffset:0,stroke:d[v]},c[v]]}),i("path",{class:[`${f}-progress-graph-circle-fill`,p===0&&`${f}-progress-graph-circle-fill--empty`],d:Ni(r/2-n/2*(1+2*v)-l*v,n,r),"stroke-width":n,"stroke-linecap":"round",fill:"none",style:{strokeDasharray:t.value[v],strokeDashoffset:0,stroke:s[v]}})))))),a&&o.default?i("div",null,i("div",{class:`${f}-progress-text`},o.default())):null)}}}),f0=Object.assign(Object.assign({},ae.props),{processing:Boolean,type:{type:String,default:"line"},gapDegree:Number,gapOffsetDegree:Number,status:{type:String,default:"default"},railColor:[String,Array],railStyle:[String,Array],color:[String,Array],viewBoxWidth:{type:Number,default:100},strokeWidth:{type:Number,default:7},percentage:[Number,Array],unit:{type:String,default:"%"},showIndicator:{type:Boolean,default:!0},indicatorPosition:{type:String,default:"outside"},indicatorPlacement:{type:String,default:"outside"},indicatorTextColor:String,circleGap:{type:Number,default:1},height:Number,borderRadius:[String,Number],fillBorderRadius:[String,Number],offsetDegree:Number}),h0=Z({name:"Progress",props:f0,setup(e){const o=$(()=>e.indicatorPlacement||e.indicatorPosition),t=$(()=>{if(e.gapDegree||e.gapDegree===0)return e.gapDegree;if(e.type==="dashboard")return 75}),{mergedClsPrefixRef:r,inlineThemeDisabled:n}=Ie(e),l=ae("Progress","-progress",l0,Ya,e,r),a=$(()=>{const{status:d}=e,{common:{cubicBezierEaseInOut:c},self:{fontSize:u,fontSizeCircle:f,railColor:p,railHeight:v,iconSizeCircle:h,iconSizeLine:m,textColorCircle:x,textColorLineInner:y,textColorLineOuter:b,lineBgProcessing:_,fontWeightCircle:I,[N("iconColor",d)]:R,[N("fillColor",d)]:z}}=l.value;return{"--n-bezier":c,"--n-fill-color":z,"--n-font-size":u,"--n-font-size-circle":f,"--n-font-weight-circle":I,"--n-icon-color":R,"--n-icon-size-circle":h,"--n-icon-size-line":m,"--n-line-bg-processing":_,"--n-rail-color":p,"--n-rail-height":v,"--n-text-color-circle":x,"--n-text-color-line-inner":y,"--n-text-color-line-outer":b}}),s=n?We("progress",$(()=>e.status[0]),a,e):void 0;return{mergedClsPrefix:r,mergedIndicatorPlacement:o,gapDeg:t,cssVars:n?void 0:a,themeClass:s==null?void 0:s.themeClass,onRender:s==null?void 0:s.onRender}},render(){const{type:e,cssVars:o,indicatorTextColor:t,showIndicator:r,status:n,railColor:l,railStyle:a,color:s,percentage:d,viewBoxWidth:c,strokeWidth:u,mergedIndicatorPlacement:f,unit:p,borderRadius:v,fillBorderRadius:h,height:m,processing:x,circleGap:y,mergedClsPrefix:b,gapDeg:_,gapOffsetDegree:I,themeClass:R,$slots:z,onRender:C}=this;return C==null||C(),i("div",{class:[R,`${b}-progress`,`${b}-progress--${e}`,`${b}-progress--${n}`],style:o,"aria-valuemax":100,"aria-valuemin":0,"aria-valuenow":d,role:e==="circle"||e==="line"||e==="dashboard"?"progressbar":"none"},e==="circle"||e==="dashboard"?i(c0,{clsPrefix:b,status:n,showIndicator:r,indicatorTextColor:t,railColor:l,fillColor:s,railStyle:a,offsetDegree:this.offsetDegree,percentage:d,viewBoxWidth:c,strokeWidth:u,gapDegree:_===void 0?e==="dashboard"?75:0:_,gapOffsetDegree:I,unit:p},z):e==="line"?i(s0,{clsPrefix:b,status:n,showIndicator:r,indicatorTextColor:t,railColor:l,fillColor:s,railStyle:a,percentage:d,processing:x,indicatorPlacement:f,unit:p,fillBorderRadius:h,railBorderRadius:v,height:m},z):e==="multiple-circle"?i(u0,{clsPrefix:b,strokeWidth:u,railColor:l,fillColor:s,railStyle:a,viewBoxWidth:c,percentage:d,showIndicator:r,circleGap:y},z):null)}}),p0={name:"QrCode",common:ue,self:e=>({borderRadius:e.borderRadius})},v0=p0,g0=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 36"},i("circle",{fill:"#FFCB4C",cx:"18",cy:"17.018",r:"17"}),i("path",{fill:"#65471B",d:"M14.524 21.036c-.145-.116-.258-.274-.312-.464-.134-.46.13-.918.59-1.021 4.528-1.021 7.577 1.363 7.706 1.465.384.306.459.845.173 1.205-.286.358-.828.401-1.211.097-.11-.084-2.523-1.923-6.182-1.098-.274.061-.554-.016-.764-.184z"}),i("ellipse",{fill:"#65471B",cx:"13.119",cy:"11.174",rx:"2.125",ry:"2.656"}),i("ellipse",{fill:"#65471B",cx:"24.375",cy:"12.236",rx:"2.125",ry:"2.656"}),i("path",{fill:"#F19020",d:"M17.276 35.149s1.265-.411 1.429-1.352c.173-.972-.624-1.167-.624-1.167s1.041-.208 1.172-1.376c.123-1.101-.861-1.363-.861-1.363s.97-.4 1.016-1.539c.038-.959-.995-1.428-.995-1.428s5.038-1.221 5.556-1.341c.516-.12 1.32-.615 1.069-1.694-.249-1.08-1.204-1.118-1.697-1.003-.494.115-6.744 1.566-8.9 2.068l-1.439.334c-.54.127-.785-.11-.404-.512.508-.536.833-1.129.946-2.113.119-1.035-.232-2.313-.433-2.809-.374-.921-1.005-1.649-1.734-1.899-1.137-.39-1.945.321-1.542 1.561.604 1.854.208 3.375-.833 4.293-2.449 2.157-3.588 3.695-2.83 6.973.828 3.575 4.377 5.876 7.952 5.048l3.152-.681z"}),i("path",{fill:"#65471B",d:"M9.296 6.351c-.164-.088-.303-.224-.391-.399-.216-.428-.04-.927.393-1.112 4.266-1.831 7.699-.043 7.843.034.433.231.608.747.391 1.154-.216.405-.74.546-1.173.318-.123-.063-2.832-1.432-6.278.047-.257.109-.547.085-.785-.042zm12.135 3.75c-.156-.098-.286-.243-.362-.424-.187-.442.023-.927.468-1.084 4.381-1.536 7.685.48 7.823.567.415.26.555.787.312 1.178-.242.39-.776.495-1.191.238-.12-.072-2.727-1.621-6.267-.379-.266.091-.553.046-.783-.096z"})),m0=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 36"},i("path",{fill:"#FFCC4D",d:"M36 18c0 9.941-8.059 18-18 18-9.94 0-18-8.059-18-18C0 8.06 8.06 0 18 0c9.941 0 18 8.06 18 18"}),i("ellipse",{fill:"#664500",cx:"18",cy:"27",rx:"5",ry:"6"}),i("path",{fill:"#664500",d:"M5.999 11c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C8.462 5.05 12.816 5 13 5c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.155.002-3.568.086-6.204 3.6-.196.262-.497.4-.801.4zm24.002 0c-.305 0-.604-.138-.801-.4-2.64-3.521-6.061-3.598-6.206-3.6-.55-.006-.994-.456-.991-1.005C22.006 5.444 22.45 5 23 5c.184 0 4.537.05 7.8 4.4.332.442.242 1.069-.2 1.4-.18.135-.39.2-.599.2zm-16.087 4.5l1.793-1.793c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0L12.5 14.086l-1.793-1.793c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.793 1.793-1.793 1.793c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l1.793-1.793 1.793 1.793c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414L13.914 15.5zm11 0l1.793-1.793c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0L23.5 14.086l-1.793-1.793c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.793 1.793-1.793 1.793c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l1.793-1.793 1.793 1.793c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414L24.914 15.5z"})),b0=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 36"},i("ellipse",{fill:"#292F33",cx:"18",cy:"26",rx:"18",ry:"10"}),i("ellipse",{fill:"#66757F",cx:"18",cy:"24",rx:"18",ry:"10"}),i("path",{fill:"#E1E8ED",d:"M18 31C3.042 31 1 16 1 12h34c0 2-1.958 19-17 19z"}),i("path",{fill:"#77B255",d:"M35 12.056c0 5.216-7.611 9.444-17 9.444S1 17.271 1 12.056C1 6.84 8.611 3.611 18 3.611s17 3.229 17 8.445z"}),i("ellipse",{fill:"#A6D388",cx:"18",cy:"13",rx:"15",ry:"7"}),i("path",{d:"M21 17c-.256 0-.512-.098-.707-.293-2.337-2.337-2.376-4.885-.125-8.262.739-1.109.9-2.246.478-3.377-.461-1.236-1.438-1.996-1.731-2.077-.553 0-.958-.443-.958-.996 0-.552.491-.995 1.043-.995.997 0 2.395 1.153 3.183 2.625 1.034 1.933.91 4.039-.351 5.929-1.961 2.942-1.531 4.332-.125 5.738.391.391.391 1.023 0 1.414-.195.196-.451.294-.707.294zm-6-2c-.256 0-.512-.098-.707-.293-2.337-2.337-2.376-4.885-.125-8.262.727-1.091.893-2.083.494-2.947-.444-.961-1.431-1.469-1.684-1.499-.552 0-.989-.447-.989-1 0-.552.458-1 1.011-1 .997 0 2.585.974 3.36 2.423.481.899 1.052 2.761-.528 5.131-1.961 2.942-1.531 4.332-.125 5.738.391.391.391 1.023 0 1.414-.195.197-.451.295-.707.295z",fill:"#5C913B"})),x0=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 36"},i("path",{fill:"#EF9645",d:"M15.5 2.965c1.381 0 2.5 1.119 2.5 2.5v.005L20.5.465c1.381 0 2.5 1.119 2.5 2.5V4.25l2.5-1.535c1.381 0 2.5 1.119 2.5 2.5V8.75L29 18H15.458L15.5 2.965z"}),i("path",{fill:"#FFDC5D",d:"M4.625 16.219c1.381-.611 3.354.208 4.75 2.188.917 1.3 1.187 3.151 2.391 3.344.46.073 1.234-.313 1.234-1.397V4.5s0-2 2-2 2 2 2 2v11.633c0-.029 1-.064 1-.082V2s0-2 2-2 2 2 2 2v14.053c0 .017 1 .041 1 .069V4.25s0-2 2-2 2 2 2 2v12.638c0 .118 1 .251 1 .398V8.75s0-2 2-2 2 2 2 2V24c0 6.627-5.373 12-12 12-4.775 0-8.06-2.598-9.896-5.292C8.547 28.423 8.096 26.051 8 25.334c0 0-.123-1.479-1.156-2.865-1.469-1.969-2.5-3.156-3.125-3.866-.317-.359-.625-1.707.906-2.384z"})),C0=g("result",` + color: var(--n-text-color); + line-height: var(--n-line-height); + font-size: var(--n-font-size); + transition: + color .3s var(--n-bezier); +`,[g("result-icon",` + display: flex; + justify-content: center; + transition: color .3s var(--n-bezier); + `,[S("status-image",` + font-size: var(--n-icon-size); + width: 1em; + height: 1em; + `),g("base-icon",` + color: var(--n-icon-color); + font-size: var(--n-icon-size); + `)]),g("result-content",{marginTop:"24px"}),g("result-footer",` + margin-top: 24px; + text-align: center; + `),g("result-header",[S("title",` + margin-top: 16px; + font-weight: var(--n-title-font-weight); + transition: color .3s var(--n-bezier); + text-align: center; + color: var(--n-title-text-color); + font-size: var(--n-title-font-size); + `),S("description",` + margin-top: 4px; + text-align: center; + font-size: var(--n-font-size); + `)])]),y0={403:()=>x0,404:()=>g0,418:()=>b0,500:()=>m0,info:()=>i(wt,null),success:()=>i(Ut,null),warning:()=>i(Pt,null),error:()=>i(Vt,null)},w0=Object.assign(Object.assign({},ae.props),{size:{type:String,default:"medium"},status:{type:String,default:"info"},title:String,description:String}),cx=Z({name:"Result",props:w0,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=ae("Result","-result",C0,nm,e,o),n=$(()=>{const{size:a,status:s}=e,{common:{cubicBezierEaseInOut:d},self:{textColor:c,lineHeight:u,titleTextColor:f,titleFontWeight:p,[N("iconColor",s)]:v,[N("fontSize",a)]:h,[N("titleFontSize",a)]:m,[N("iconSize",a)]:x}}=r.value;return{"--n-bezier":d,"--n-font-size":h,"--n-icon-size":x,"--n-line-height":u,"--n-text-color":c,"--n-title-font-size":m,"--n-title-font-weight":p,"--n-title-text-color":f,"--n-icon-color":v||""}}),l=t?We("result",$(()=>{const{size:a,status:s}=e;let d="";return a&&(d+=a[0]),s&&(d+=s[0]),d}),n,e):void 0;return{mergedClsPrefix:o,cssVars:t?void 0:n,themeClass:l==null?void 0:l.themeClass,onRender:l==null?void 0:l.onRender}},render(){var e;const{status:o,$slots:t,mergedClsPrefix:r,onRender:n}=this;return n==null||n(),i("div",{class:[`${r}-result`,this.themeClass],style:this.cssVars},i("div",{class:`${r}-result-icon`},((e=t.icon)===null||e===void 0?void 0:e.call(t))||i(Le,{clsPrefix:r},{default:()=>y0[o]()})),i("div",{class:`${r}-result-header`},this.title?i("div",{class:`${r}-result-header__title`},this.title):null,this.description?i("div",{class:`${r}-result-header__description`},this.description):null),t.default&&i("div",{class:`${r}-result-content`},t),t.footer&&i("div",{class:`${r}-result-footer`},t.footer()))}}),S0={name:"Skeleton",common:ue,self(e){const{heightSmall:o,heightMedium:t,heightLarge:r,borderRadius:n}=e;return{color:"rgba(255, 255, 255, 0.12)",colorEnd:"rgba(255, 255, 255, 0.18)",borderRadius:n,heightSmall:o,heightMedium:t,heightLarge:r}}},z0=e=>{const{heightSmall:o,heightMedium:t,heightLarge:r,borderRadius:n}=e;return{color:"#eee",colorEnd:"#ddd",borderRadius:n,heightSmall:o,heightMedium:t,heightLarge:r}},$0={name:"Skeleton",common:Ae,self:z0},P0=w([g("skeleton",` + height: 1em; + width: 100%; + transition: + --n-color-start .3s var(--n-bezier), + --n-color-end .3s var(--n-bezier), + background-color .3s var(--n-bezier); + animation: 2s skeleton-loading infinite cubic-bezier(0.36, 0, 0.64, 1); + background-color: var(--n-color-start); + `),w("@keyframes skeleton-loading",` + 0% { + background: var(--n-color-start); + } + 40% { + background: var(--n-color-end); + } + 80% { + background: var(--n-color-start); + } + 100% { + background: var(--n-color-start); + } + `)]),R0=Object.assign(Object.assign({},ae.props),{text:Boolean,round:Boolean,circle:Boolean,height:[String,Number],width:[String,Number],size:String,repeat:{type:Number,default:1},animated:{type:Boolean,default:!0},sharp:{type:Boolean,default:!0}}),ux=Z({name:"Skeleton",inheritAttrs:!1,props:R0,setup(e){pl();const{mergedClsPrefixRef:o}=Ie(e),t=ae("Skeleton","-skeleton",P0,$0,e,o);return{mergedClsPrefix:o,style:$(()=>{var r,n;const l=t.value,{common:{cubicBezierEaseInOut:a}}=l,s=l.self,{color:d,colorEnd:c,borderRadius:u}=s;let f;const{circle:p,sharp:v,round:h,width:m,height:x,size:y,text:b,animated:_}=e;y!==void 0&&(f=s[N("height",y)]);const I=p?(r=m??x)!==null&&r!==void 0?r:f:m,R=(n=p?m??x:x)!==null&&n!==void 0?n:f;return{display:b?"inline-block":"",verticalAlign:b?"-0.125em":"",borderRadius:p?"50%":h?"4096px":v?"":u,width:typeof I=="number"?Do(I):I,height:typeof R=="number"?Do(R):R,animation:_?"":"none","--n-bezier":a,"--n-color-start":d,"--n-color-end":c}})}},render(){const{repeat:e,style:o,mergedClsPrefix:t,$attrs:r}=this,n=i("div",To({class:`${t}-skeleton`,style:o},r));return e>1?i(co,null,Xi(e,null).map(l=>[n,` +`])):n}}),k0=w([w("@keyframes spin-rotate",` + from { + transform: rotate(0); + } + to { + transform: rotate(360deg); + } + `),g("spin-container",` + position: relative; + `,[g("spin-body",` + position: absolute; + top: 50%; + left: 50%; + transform: translateX(-50%) translateY(-50%); + `,[jt()])]),g("spin-body",` + display: inline-flex; + align-items: center; + justify-content: center; + flex-direction: column; + `),g("spin",` + display: inline-flex; + height: var(--n-size); + width: var(--n-size); + font-size: var(--n-size); + color: var(--n-color); + `,[P("rotate",` + animation: spin-rotate 2s linear infinite; + `)]),g("spin-description",` + display: inline-block; + font-size: var(--n-font-size); + color: var(--n-text-color); + transition: color .3s var(--n-bezier); + margin-top: 8px; + `),g("spin-content",` + opacity: 1; + transition: opacity .3s var(--n-bezier); + pointer-events: all; + `,[P("spinning",` + user-select: none; + -webkit-user-select: none; + pointer-events: none; + opacity: var(--n-opacity-spinning); + `)])]),I0={small:20,medium:18,large:16},B0=Object.assign(Object.assign({},ae.props),{contentClass:String,contentStyle:[Object,String],description:String,stroke:String,size:{type:[String,Number],default:"medium"},show:{type:Boolean,default:!0},strokeWidth:Number,rotate:{type:Boolean,default:!0},spinning:{type:Boolean,validator:()=>!0,default:void 0},delay:Number}),fx=Z({name:"Spin",props:B0,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=ae("Spin","-spin",k0,um,e,o),n=$(()=>{const{size:d}=e,{common:{cubicBezierEaseInOut:c},self:u}=r.value,{opacitySpinning:f,color:p,textColor:v}=u,h=typeof d=="number"?Do(d):u[N("size",d)];return{"--n-bezier":c,"--n-opacity-spinning":f,"--n-size":h,"--n-color":p,"--n-text-color":v}}),l=t?We("spin",$(()=>{const{size:d}=e;return typeof d=="number"?String(d):d[0]}),n,e):void 0,a=yt(e,["spinning","show"]),s=M(!1);return oo(d=>{let c;if(a.value){const{delay:u}=e;if(u){c=window.setTimeout(()=>{s.value=!0},u),d(()=>{clearTimeout(c)});return}}s.value=a.value}),{mergedClsPrefix:o,active:s,mergedStrokeWidth:$(()=>{const{strokeWidth:d}=e;if(d!==void 0)return d;const{size:c}=e;return I0[typeof c=="number"?"medium":c]}),cssVars:t?void 0:n,themeClass:l==null?void 0:l.themeClass,onRender:l==null?void 0:l.onRender}},render(){var e,o;const{$slots:t,mergedClsPrefix:r,description:n}=this,l=t.icon&&this.rotate,a=(n||t.description)&&i("div",{class:`${r}-spin-description`},n||((e=t.description)===null||e===void 0?void 0:e.call(t))),s=t.icon?i("div",{class:[`${r}-spin-body`,this.themeClass]},i("div",{class:[`${r}-spin`,l&&`${r}-spin--rotate`],style:t.default?"":this.cssVars},t.icon()),a):i("div",{class:[`${r}-spin-body`,this.themeClass]},i(Gt,{clsPrefix:r,style:t.default?"":this.cssVars,stroke:this.stroke,"stroke-width":this.mergedStrokeWidth,class:`${r}-spin`}),a);return(o=this.onRender)===null||o===void 0||o.call(this),t.default?i("div",{class:[`${r}-spin-container`,this.themeClass],style:this.cssVars},i("div",{class:[`${r}-spin-content`,this.active&&`${r}-spin-content--spinning`,this.contentClass],style:this.contentStyle},t),i(lo,{name:"fade-in-transition"},{default:()=>this.active?s:null})):s}}),T0={name:"Split",common:ue},F0=T0,O0=g("statistic",[S("label",` + font-weight: var(--n-label-font-weight); + transition: .3s color var(--n-bezier); + font-size: var(--n-label-font-size); + color: var(--n-label-text-color); + `),g("statistic-value",` + margin-top: 4px; + font-weight: var(--n-value-font-weight); + `,[S("prefix",` + margin: 0 4px 0 0; + font-size: var(--n-value-font-size); + transition: .3s color var(--n-bezier); + color: var(--n-value-prefix-text-color); + `,[g("icon",{verticalAlign:"-0.125em"})]),S("content",` + font-size: var(--n-value-font-size); + transition: .3s color var(--n-bezier); + color: var(--n-value-text-color); + `),S("suffix",` + margin: 0 0 0 4px; + font-size: var(--n-value-font-size); + transition: .3s color var(--n-bezier); + color: var(--n-value-suffix-text-color); + `,[g("icon",{verticalAlign:"-0.125em"})])])]),_0=Object.assign(Object.assign({},ae.props),{tabularNums:Boolean,label:String,value:[String,Number]}),hx=Z({name:"Statistic",props:_0,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t,mergedRtlRef:r}=Ie(e),n=ae("Statistic","-statistic",O0,vm,e,o),l=eo("Statistic",r,o),a=$(()=>{const{self:{labelFontWeight:d,valueFontSize:c,valueFontWeight:u,valuePrefixTextColor:f,labelTextColor:p,valueSuffixTextColor:v,valueTextColor:h,labelFontSize:m},common:{cubicBezierEaseInOut:x}}=n.value;return{"--n-bezier":x,"--n-label-font-size":m,"--n-label-font-weight":d,"--n-label-text-color":p,"--n-value-font-weight":u,"--n-value-font-size":c,"--n-value-prefix-text-color":f,"--n-value-suffix-text-color":v,"--n-value-text-color":h}}),s=t?We("statistic",void 0,a,e):void 0;return{rtlEnabled:l,mergedClsPrefix:o,cssVars:t?void 0:a,themeClass:s==null?void 0:s.themeClass,onRender:s==null?void 0:s.onRender}},render(){var e;const{mergedClsPrefix:o,$slots:{default:t,label:r,prefix:n,suffix:l}}=this;return(e=this.onRender)===null||e===void 0||e.call(this),i("div",{class:[`${o}-statistic`,this.themeClass,this.rtlEnabled&&`${o}-statistic--rtl`],style:this.cssVars},je(r,a=>i("div",{class:`${o}-statistic__label`},this.label||a)),i("div",{class:`${o}-statistic-value`,style:{fontVariantNumeric:this.tabularNums?"tabular-nums":""}},je(n,a=>a&&i("span",{class:`${o}-statistic-value__prefix`},a)),this.value!==void 0?i("span",{class:`${o}-statistic-value__content`},this.value):je(t,a=>a&&i("span",{class:`${o}-statistic-value__content`},a)),je(l,a=>a&&i("span",{class:`${o}-statistic-value__suffix`},a))))}}),M0=g("switch",` + height: var(--n-height); + min-width: var(--n-width); + vertical-align: middle; + user-select: none; + -webkit-user-select: none; + display: inline-flex; + outline: none; + justify-content: center; + align-items: center; +`,[S("children-placeholder",` + height: var(--n-rail-height); + display: flex; + flex-direction: column; + overflow: hidden; + pointer-events: none; + visibility: hidden; + `),S("rail-placeholder",` + display: flex; + flex-wrap: none; + `),S("button-placeholder",` + width: calc(1.75 * var(--n-rail-height)); + height: var(--n-rail-height); + `),g("base-loading",` + position: absolute; + top: 50%; + left: 50%; + transform: translateX(-50%) translateY(-50%); + font-size: calc(var(--n-button-width) - 4px); + color: var(--n-loading-color); + transition: color .3s var(--n-bezier); + `,[ct({left:"50%",top:"50%",originalTransform:"translateX(-50%) translateY(-50%)"})]),S("checked, unchecked",` + transition: color .3s var(--n-bezier); + color: var(--n-text-color); + box-sizing: border-box; + position: absolute; + white-space: nowrap; + top: 0; + bottom: 0; + display: flex; + align-items: center; + line-height: 1; + `),S("checked",` + right: 0; + padding-right: calc(1.25 * var(--n-rail-height) - var(--n-offset)); + `),S("unchecked",` + left: 0; + justify-content: flex-end; + padding-left: calc(1.25 * var(--n-rail-height) - var(--n-offset)); + `),w("&:focus",[S("rail",` + box-shadow: var(--n-box-shadow-focus); + `)]),P("round",[S("rail","border-radius: calc(var(--n-rail-height) / 2);",[S("button","border-radius: calc(var(--n-button-height) / 2);")])]),Ve("disabled",[Ve("icon",[P("rubber-band",[P("pressed",[S("rail",[S("button","max-width: var(--n-button-width-pressed);")])]),S("rail",[w("&:active",[S("button","max-width: var(--n-button-width-pressed);")])]),P("active",[P("pressed",[S("rail",[S("button","left: calc(100% - var(--n-offset) - var(--n-button-width-pressed));")])]),S("rail",[w("&:active",[S("button","left: calc(100% - var(--n-offset) - var(--n-button-width-pressed));")])])])])])]),P("active",[S("rail",[S("button","left: calc(100% - var(--n-button-width) - var(--n-offset))")])]),S("rail",` + overflow: hidden; + height: var(--n-rail-height); + min-width: var(--n-rail-width); + border-radius: var(--n-rail-border-radius); + cursor: pointer; + position: relative; + transition: + opacity .3s var(--n-bezier), + background .3s var(--n-bezier), + box-shadow .3s var(--n-bezier); + background-color: var(--n-rail-color); + `,[S("button-icon",` + color: var(--n-icon-color); + transition: color .3s var(--n-bezier); + font-size: calc(var(--n-button-height) - 4px); + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + display: flex; + justify-content: center; + align-items: center; + line-height: 1; + `,[ct()]),S("button",` + align-items: center; + top: var(--n-offset); + left: var(--n-offset); + height: var(--n-button-height); + width: var(--n-button-width-pressed); + max-width: var(--n-button-width); + border-radius: var(--n-button-border-radius); + background-color: var(--n-button-color); + box-shadow: var(--n-button-box-shadow); + box-sizing: border-box; + cursor: inherit; + content: ""; + position: absolute; + transition: + background-color .3s var(--n-bezier), + left .3s var(--n-bezier), + opacity .3s var(--n-bezier), + max-width .3s var(--n-bezier), + box-shadow .3s var(--n-bezier); + `)]),P("active",[S("rail","background-color: var(--n-rail-color-active);")]),P("loading",[S("rail",` + cursor: wait; + `)]),P("disabled",[S("rail",` + cursor: not-allowed; + opacity: .5; + `)])]),D0=Object.assign(Object.assign({},ae.props),{size:{type:String,default:"medium"},value:{type:[String,Number,Boolean],default:void 0},loading:Boolean,defaultValue:{type:[String,Number,Boolean],default:!1},disabled:{type:Boolean,default:void 0},round:{type:Boolean,default:!0},"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],checkedValue:{type:[String,Number,Boolean],default:!0},uncheckedValue:{type:[String,Number,Boolean],default:!1},railStyle:Function,rubberBand:{type:Boolean,default:!0},onChange:[Function,Array]});let er;const px=Z({name:"Switch",props:D0,setup(e){er===void 0&&(typeof CSS<"u"?typeof CSS.supports<"u"?er=CSS.supports("width","max(1px)"):er=!1:er=!0);const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=ae("Switch","-switch",M0,Pm,e,o),n=it(e),{mergedSizeRef:l,mergedDisabledRef:a}=n,s=M(e.defaultValue),d=le(e,"value"),c=uo(d,s),u=$(()=>c.value===e.checkedValue),f=M(!1),p=M(!1),v=$(()=>{const{railStyle:H}=e;if(H)return H({focused:p.value,checked:u.value})});function h(H){const{"onUpdate:value":k,onChange:D,onUpdateValue:W}=e,{nTriggerFormInput:L,nTriggerFormChange:j}=n;k&&de(k,H),W&&de(W,H),D&&de(D,H),s.value=H,L(),j()}function m(){const{nTriggerFormFocus:H}=n;H()}function x(){const{nTriggerFormBlur:H}=n;H()}function y(){e.loading||a.value||(c.value!==e.checkedValue?h(e.checkedValue):h(e.uncheckedValue))}function b(){p.value=!0,m()}function _(){p.value=!1,x(),f.value=!1}function I(H){e.loading||a.value||H.key===" "&&(c.value!==e.checkedValue?h(e.checkedValue):h(e.uncheckedValue),f.value=!1)}function R(H){e.loading||a.value||H.key===" "&&(H.preventDefault(),f.value=!0)}const z=$(()=>{const{value:H}=l,{self:{opacityDisabled:k,railColor:D,railColorActive:W,buttonBoxShadow:L,buttonColor:j,boxShadowFocus:V,loadingColor:E,textColor:Y,iconColor:K,[N("buttonHeight",H)]:te,[N("buttonWidth",H)]:xe,[N("buttonWidthPressed",H)]:se,[N("railHeight",H)]:ie,[N("railWidth",H)]:O,[N("railBorderRadius",H)]:B,[N("buttonBorderRadius",H)]:G},common:{cubicBezierEaseInOut:oe}}=r.value;let me,be,Be;return er?(me=`calc((${ie} - ${te}) / 2)`,be=`max(${ie}, ${te})`,Be=`max(${O}, calc(${O} + ${te} - ${ie}))`):(me=Do((ko(ie)-ko(te))/2),be=Do(Math.max(ko(ie),ko(te))),Be=ko(ie)>ko(te)?O:Do(ko(O)+ko(te)-ko(ie))),{"--n-bezier":oe,"--n-button-border-radius":G,"--n-button-box-shadow":L,"--n-button-color":j,"--n-button-width":xe,"--n-button-width-pressed":se,"--n-button-height":te,"--n-height":be,"--n-offset":me,"--n-opacity-disabled":k,"--n-rail-border-radius":B,"--n-rail-color":D,"--n-rail-color-active":W,"--n-rail-height":ie,"--n-rail-width":O,"--n-width":Be,"--n-box-shadow-focus":V,"--n-loading-color":E,"--n-text-color":Y,"--n-icon-color":K}}),C=t?We("switch",$(()=>l.value[0]),z,e):void 0;return{handleClick:y,handleBlur:_,handleFocus:b,handleKeyup:I,handleKeydown:R,mergedRailStyle:v,pressed:f,mergedClsPrefix:o,mergedValue:c,checked:u,mergedDisabled:a,cssVars:t?void 0:z,themeClass:C==null?void 0:C.themeClass,onRender:C==null?void 0:C.onRender}},render(){const{mergedClsPrefix:e,mergedDisabled:o,checked:t,mergedRailStyle:r,onRender:n,$slots:l}=this;n==null||n();const{checked:a,unchecked:s,icon:d,"checked-icon":c,"unchecked-icon":u}=l,f=!(Ct(d)&&Ct(c)&&Ct(u));return i("div",{role:"switch","aria-checked":t,class:[`${e}-switch`,this.themeClass,f&&`${e}-switch--icon`,t&&`${e}-switch--active`,o&&`${e}-switch--disabled`,this.round&&`${e}-switch--round`,this.loading&&`${e}-switch--loading`,this.pressed&&`${e}-switch--pressed`,this.rubberBand&&`${e}-switch--rubber-band`],tabindex:this.mergedDisabled?void 0:0,style:this.cssVars,onClick:this.handleClick,onFocus:this.handleFocus,onBlur:this.handleBlur,onKeyup:this.handleKeyup,onKeydown:this.handleKeydown},i("div",{class:`${e}-switch__rail`,"aria-hidden":"true",style:r},je(a,p=>je(s,v=>p||v?i("div",{"aria-hidden":!0,class:`${e}-switch__children-placeholder`},i("div",{class:`${e}-switch__rail-placeholder`},i("div",{class:`${e}-switch__button-placeholder`}),p),i("div",{class:`${e}-switch__rail-placeholder`},i("div",{class:`${e}-switch__button-placeholder`}),v)):null)),i("div",{class:`${e}-switch__button`},je(d,p=>je(c,v=>je(u,h=>i(Kt,null,{default:()=>this.loading?i(Gt,{key:"loading",clsPrefix:e,strokeWidth:20}):this.checked&&(v||p)?i("div",{class:`${e}-switch__button-icon`,key:v?"checked-icon":"icon"},v||p):!this.checked&&(h||p)?i("div",{class:`${e}-switch__button-icon`,key:h?"unchecked-icon":"icon"},h||p):null})))),je(a,p=>p&&i("div",{key:"checked",class:`${e}-switch__checked`},p)),je(s,p=>p&&i("div",{key:"unchecked",class:`${e}-switch__unchecked`},p)))))}}),Qn="n-tabs",ys={tab:[String,Number,Object,Function],name:{type:[String,Number],required:!0},disabled:Boolean,displayDirective:{type:String,default:"if"},closable:{type:Boolean,default:void 0},tabProps:Object,label:[String,Number,Object,Function]},vx=Z({__TAB_PANE__:!0,name:"TabPane",alias:["TabPanel"],props:ys,setup(e){const o=$e(Qn,null);return o||Wo("tab-pane","`n-tab-pane` must be placed inside `n-tabs`."),{style:o.paneStyleRef,class:o.paneClassRef,mergedClsPrefix:o.mergedClsPrefixRef}},render(){return i("div",{class:[`${this.mergedClsPrefix}-tab-pane`,this.class],style:this.style},this.$slots)}}),H0=Object.assign({internalLeftPadded:Boolean,internalAddable:Boolean,internalCreatedByPane:Boolean},Wt(ys,["displayDirective"])),Cn=Z({__TAB__:!0,inheritAttrs:!1,name:"Tab",props:H0,setup(e){const{mergedClsPrefixRef:o,valueRef:t,typeRef:r,closableRef:n,tabStyleRef:l,addTabStyleRef:a,tabClassRef:s,addTabClassRef:d,tabChangeIdRef:c,onBeforeLeaveRef:u,triggerRef:f,handleAdd:p,activateTab:v,handleClose:h}=$e(Qn);return{trigger:f,mergedClosable:$(()=>{if(e.internalAddable)return!1;const{closable:m}=e;return m===void 0?n.value:m}),style:l,addStyle:a,tabClass:s,addTabClass:d,clsPrefix:o,value:t,type:r,handleClose(m){m.stopPropagation(),!e.disabled&&h(e.name)},activateTab(){if(e.disabled)return;if(e.internalAddable){p();return}const{name:m}=e,x=++c.id;if(m!==t.value){const{value:y}=u;y?Promise.resolve(y(e.name,t.value)).then(b=>{b&&c.id===x&&v(m)}):v(m)}}}},render(){const{internalAddable:e,clsPrefix:o,name:t,disabled:r,label:n,tab:l,value:a,mergedClosable:s,trigger:d,$slots:{default:c}}=this,u=n??l;return i("div",{class:`${o}-tabs-tab-wrapper`},this.internalLeftPadded?i("div",{class:`${o}-tabs-tab-pad`}):null,i("div",Object.assign({key:t,"data-name":t,"data-disabled":r?!0:void 0},To({class:[`${o}-tabs-tab`,a===t&&`${o}-tabs-tab--active`,r&&`${o}-tabs-tab--disabled`,s&&`${o}-tabs-tab--closable`,e&&`${o}-tabs-tab--addable`,e?this.addTabClass:this.tabClass],onClick:d==="click"?this.activateTab:void 0,onMouseenter:d==="hover"?this.activateTab:void 0,style:e?this.addStyle:this.style},this.internalCreatedByPane?this.tabProps||{}:this.$attrs)),i("span",{class:`${o}-tabs-tab__label`},e?i(co,null,i("div",{class:`${o}-tabs-tab__height-placeholder`}," "),i(Le,{clsPrefix:o},{default:()=>i(ar,null)})):c?c():typeof u=="object"?u:Qe(u??t)),s&&this.type==="card"?i(kt,{clsPrefix:o,class:`${o}-tabs-tab__close`,onClick:this.handleClose,disabled:r}):null))}}),L0=g("tabs",` + box-sizing: border-box; + width: 100%; + display: flex; + flex-direction: column; + transition: + background-color .3s var(--n-bezier), + border-color .3s var(--n-bezier); +`,[P("segment-type",[g("tabs-rail",[w("&.transition-disabled",[g("tabs-capsule",` + transition: none; + `)])])]),P("top",[g("tab-pane",` + padding: var(--n-pane-padding-top) var(--n-pane-padding-right) var(--n-pane-padding-bottom) var(--n-pane-padding-left); + `)]),P("left",[g("tab-pane",` + padding: var(--n-pane-padding-right) var(--n-pane-padding-bottom) var(--n-pane-padding-left) var(--n-pane-padding-top); + `)]),P("left, right",` + flex-direction: row; + `,[g("tabs-bar",` + width: 2px; + right: 0; + transition: + top .2s var(--n-bezier), + max-height .2s var(--n-bezier), + background-color .3s var(--n-bezier); + `),g("tabs-tab",` + padding: var(--n-tab-padding-vertical); + `)]),P("right",` + flex-direction: row-reverse; + `,[g("tab-pane",` + padding: var(--n-pane-padding-left) var(--n-pane-padding-top) var(--n-pane-padding-right) var(--n-pane-padding-bottom); + `),g("tabs-bar",` + left: 0; + `)]),P("bottom",` + flex-direction: column-reverse; + justify-content: flex-end; + `,[g("tab-pane",` + padding: var(--n-pane-padding-bottom) var(--n-pane-padding-right) var(--n-pane-padding-top) var(--n-pane-padding-left); + `),g("tabs-bar",` + top: 0; + `)]),g("tabs-rail",` + padding: 3px; + border-radius: var(--n-tab-border-radius); + width: 100%; + background-color: var(--n-color-segment); + transition: background-color .3s var(--n-bezier); + display: flex; + align-items: center; + `,[g("tabs-capsule",` + border-radius: var(--n-tab-border-radius); + position: absolute; + pointer-events: none; + background-color: var(--n-tab-color-segment); + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .08); + transition: transform 0.3s var(--n-bezier); + `),g("tabs-tab-wrapper",` + flex-basis: 0; + flex-grow: 1; + display: flex; + align-items: center; + justify-content: center; + `,[g("tabs-tab",` + overflow: hidden; + border-radius: var(--n-tab-border-radius); + width: 100%; + display: flex; + align-items: center; + justify-content: center; + `,[P("active",` + font-weight: var(--n-font-weight-strong); + color: var(--n-tab-text-color-active); + `),w("&:hover",` + color: var(--n-tab-text-color-hover); + `)])])]),P("flex",[g("tabs-nav",` + width: 100%; + position: relative; + `,[g("tabs-wrapper",` + width: 100%; + `,[g("tabs-tab",` + margin-right: 0; + `)])])]),g("tabs-nav",` + box-sizing: border-box; + line-height: 1.5; + display: flex; + transition: border-color .3s var(--n-bezier); + `,[S("prefix, suffix",` + display: flex; + align-items: center; + `),S("prefix","padding-right: 16px;"),S("suffix","padding-left: 16px;")]),P("top, bottom",[g("tabs-nav-scroll-wrapper",[w("&::before",` + top: 0; + bottom: 0; + left: 0; + width: 20px; + `),w("&::after",` + top: 0; + bottom: 0; + right: 0; + width: 20px; + `),P("shadow-start",[w("&::before",` + box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, .12); + `)]),P("shadow-end",[w("&::after",` + box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, .12); + `)])])]),P("left, right",[g("tabs-nav-scroll-content",` + flex-direction: column; + `),g("tabs-nav-scroll-wrapper",[w("&::before",` + top: 0; + left: 0; + right: 0; + height: 20px; + `),w("&::after",` + bottom: 0; + left: 0; + right: 0; + height: 20px; + `),P("shadow-start",[w("&::before",` + box-shadow: inset 0 10px 8px -8px rgba(0, 0, 0, .12); + `)]),P("shadow-end",[w("&::after",` + box-shadow: inset 0 -10px 8px -8px rgba(0, 0, 0, .12); + `)])])]),g("tabs-nav-scroll-wrapper",` + flex: 1; + position: relative; + overflow: hidden; + `,[g("tabs-nav-y-scroll",` + height: 100%; + width: 100%; + overflow-y: auto; + scrollbar-width: none; + `,[w("&::-webkit-scrollbar",` + width: 0; + height: 0; + `)]),w("&::before, &::after",` + transition: box-shadow .3s var(--n-bezier); + pointer-events: none; + content: ""; + position: absolute; + z-index: 1; + `)]),g("tabs-nav-scroll-content",` + display: flex; + position: relative; + min-width: 100%; + min-height: 100%; + width: fit-content; + box-sizing: border-box; + `),g("tabs-wrapper",` + display: inline-flex; + flex-wrap: nowrap; + position: relative; + `),g("tabs-tab-wrapper",` + display: flex; + flex-wrap: nowrap; + flex-shrink: 0; + flex-grow: 0; + `),g("tabs-tab",` + cursor: pointer; + white-space: nowrap; + flex-wrap: nowrap; + display: inline-flex; + align-items: center; + color: var(--n-tab-text-color); + font-size: var(--n-tab-font-size); + background-clip: padding-box; + padding: var(--n-tab-padding); + transition: + box-shadow .3s var(--n-bezier), + color .3s var(--n-bezier), + background-color .3s var(--n-bezier), + border-color .3s var(--n-bezier); + `,[P("disabled",{cursor:"not-allowed"}),S("close",` + margin-left: 6px; + transition: + background-color .3s var(--n-bezier), + color .3s var(--n-bezier); + `),S("label",` + display: flex; + align-items: center; + z-index: 1; + `)]),g("tabs-bar",` + position: absolute; + bottom: 0; + height: 2px; + border-radius: 1px; + background-color: var(--n-bar-color); + transition: + left .2s var(--n-bezier), + max-width .2s var(--n-bezier), + opacity .3s var(--n-bezier), + background-color .3s var(--n-bezier); + `,[w("&.transition-disabled",` + transition: none; + `),P("disabled",` + background-color: var(--n-tab-text-color-disabled) + `)]),g("tabs-pane-wrapper",` + position: relative; + overflow: hidden; + transition: max-height .2s var(--n-bezier); + `),g("tab-pane",` + color: var(--n-pane-text-color); + width: 100%; + transition: + color .3s var(--n-bezier), + background-color .3s var(--n-bezier), + opacity .2s var(--n-bezier); + left: 0; + right: 0; + top: 0; + `,[w("&.next-transition-leave-active, &.prev-transition-leave-active, &.next-transition-enter-active, &.prev-transition-enter-active",` + transition: + color .3s var(--n-bezier), + background-color .3s var(--n-bezier), + transform .2s var(--n-bezier), + opacity .2s var(--n-bezier); + `),w("&.next-transition-leave-active, &.prev-transition-leave-active",` + position: absolute; + `),w("&.next-transition-enter-from, &.prev-transition-leave-to",` + transform: translateX(32px); + opacity: 0; + `),w("&.next-transition-leave-to, &.prev-transition-enter-from",` + transform: translateX(-32px); + opacity: 0; + `),w("&.next-transition-leave-from, &.next-transition-enter-to, &.prev-transition-leave-from, &.prev-transition-enter-to",` + transform: translateX(0); + opacity: 1; + `)]),g("tabs-tab-pad",` + box-sizing: border-box; + width: var(--n-tab-gap); + flex-grow: 0; + flex-shrink: 0; + `),P("line-type, bar-type",[g("tabs-tab",` + font-weight: var(--n-tab-font-weight); + box-sizing: border-box; + vertical-align: bottom; + `,[w("&:hover",{color:"var(--n-tab-text-color-hover)"}),P("active",` + color: var(--n-tab-text-color-active); + font-weight: var(--n-tab-font-weight-active); + `),P("disabled",{color:"var(--n-tab-text-color-disabled)"})])]),g("tabs-nav",[P("line-type",[P("top",[S("prefix, suffix",` + border-bottom: 1px solid var(--n-tab-border-color); + `),g("tabs-nav-scroll-content",` + border-bottom: 1px solid var(--n-tab-border-color); + `),g("tabs-bar",` + bottom: -1px; + `)]),P("left",[S("prefix, suffix",` + border-right: 1px solid var(--n-tab-border-color); + `),g("tabs-nav-scroll-content",` + border-right: 1px solid var(--n-tab-border-color); + `),g("tabs-bar",` + right: -1px; + `)]),P("right",[S("prefix, suffix",` + border-left: 1px solid var(--n-tab-border-color); + `),g("tabs-nav-scroll-content",` + border-left: 1px solid var(--n-tab-border-color); + `),g("tabs-bar",` + left: -1px; + `)]),P("bottom",[S("prefix, suffix",` + border-top: 1px solid var(--n-tab-border-color); + `),g("tabs-nav-scroll-content",` + border-top: 1px solid var(--n-tab-border-color); + `),g("tabs-bar",` + top: -1px; + `)]),S("prefix, suffix",` + transition: border-color .3s var(--n-bezier); + `),g("tabs-nav-scroll-content",` + transition: border-color .3s var(--n-bezier); + `),g("tabs-bar",` + border-radius: 0; + `)]),P("card-type",[S("prefix, suffix",` + transition: border-color .3s var(--n-bezier); + border-bottom: 1px solid var(--n-tab-border-color); + `),g("tabs-pad",` + flex-grow: 1; + transition: border-color .3s var(--n-bezier); + `),g("tabs-tab-pad",` + transition: border-color .3s var(--n-bezier); + `),g("tabs-tab",` + font-weight: var(--n-tab-font-weight); + border: 1px solid var(--n-tab-border-color); + background-color: var(--n-tab-color); + box-sizing: border-box; + position: relative; + vertical-align: bottom; + display: flex; + justify-content: space-between; + font-size: var(--n-tab-font-size); + color: var(--n-tab-text-color); + `,[P("addable",` + padding-left: 8px; + padding-right: 8px; + font-size: 16px; + `,[S("height-placeholder",` + width: 0; + font-size: var(--n-tab-font-size); + `),Ve("disabled",[w("&:hover",` + color: var(--n-tab-text-color-hover); + `)])]),P("closable","padding-right: 8px;"),P("active",` + background-color: #0000; + font-weight: var(--n-tab-font-weight-active); + color: var(--n-tab-text-color-active); + `),P("disabled","color: var(--n-tab-text-color-disabled);")]),g("tabs-scroll-padding","border-bottom: 1px solid var(--n-tab-border-color);")]),P("left, right",[g("tabs-wrapper",` + flex-direction: column; + `,[g("tabs-tab-wrapper",` + flex-direction: column; + `,[g("tabs-tab-pad",` + height: var(--n-tab-gap-vertical); + width: 100%; + `)])])]),P("top",[P("card-type",[g("tabs-tab",` + border-top-left-radius: var(--n-tab-border-radius); + border-top-right-radius: var(--n-tab-border-radius); + `,[P("active",` + border-bottom: 1px solid #0000; + `)]),g("tabs-tab-pad",` + border-bottom: 1px solid var(--n-tab-border-color); + `),g("tabs-pad",` + border-bottom: 1px solid var(--n-tab-border-color); + `)])]),P("left",[P("card-type",[g("tabs-tab",` + border-top-left-radius: var(--n-tab-border-radius); + border-bottom-left-radius: var(--n-tab-border-radius); + `,[P("active",` + border-right: 1px solid #0000; + `)]),g("tabs-tab-pad",` + border-right: 1px solid var(--n-tab-border-color); + `),g("tabs-pad",` + border-right: 1px solid var(--n-tab-border-color); + `)])]),P("right",[P("card-type",[g("tabs-tab",` + border-top-right-radius: var(--n-tab-border-radius); + border-bottom-right-radius: var(--n-tab-border-radius); + `,[P("active",` + border-left: 1px solid #0000; + `)]),g("tabs-tab-pad",` + border-left: 1px solid var(--n-tab-border-color); + `),g("tabs-pad",` + border-left: 1px solid var(--n-tab-border-color); + `)])]),P("bottom",[P("card-type",[g("tabs-tab",` + border-bottom-left-radius: var(--n-tab-border-radius); + border-bottom-right-radius: var(--n-tab-border-radius); + `,[P("active",` + border-top: 1px solid #0000; + `)]),g("tabs-tab-pad",` + border-top: 1px solid var(--n-tab-border-color); + `),g("tabs-pad",` + border-top: 1px solid var(--n-tab-border-color); + `)])])])]),A0=Object.assign(Object.assign({},ae.props),{value:[String,Number],defaultValue:[String,Number],trigger:{type:String,default:"click"},type:{type:String,default:"bar"},closable:Boolean,justifyContent:String,size:{type:String,default:"medium"},placement:{type:String,default:"top"},tabStyle:[String,Object],tabClass:String,addTabStyle:[String,Object],addTabClass:String,barWidth:Number,paneClass:String,paneStyle:[String,Object],paneWrapperClass:String,paneWrapperStyle:[String,Object],addable:[Boolean,Object],tabsPadding:{type:Number,default:0},animated:Boolean,onBeforeLeave:Function,onAdd:Function,"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],onClose:[Function,Array],labelSize:String,activeName:[String,Number],onActiveNameChange:[Function,Array]}),gx=Z({name:"Tabs",props:A0,setup(e,{slots:o}){var t,r,n,l;const{mergedClsPrefixRef:a,inlineThemeDisabled:s}=Ie(e),d=ae("Tabs","-tabs",L0,Om,e,a),c=M(null),u=M(null),f=M(null),p=M(null),v=M(null),h=M(null),m=M(!0),x=M(!0),y=yt(e,["labelSize","size"]),b=yt(e,["activeName","value"]),_=M((r=(t=b.value)!==null&&t!==void 0?t:e.defaultValue)!==null&&r!==void 0?r:o.default?(l=(n=rt(o.default())[0])===null||n===void 0?void 0:n.props)===null||l===void 0?void 0:l.name:null),I=uo(b,_),R={id:0},z=$(()=>{if(!(!e.justifyContent||e.type==="card"))return{display:"flex",justifyContent:e.justifyContent}});Xe(I,()=>{R.id=0,W(),L()});function C(){var U;const{value:q}=I;return q===null?null:(U=c.value)===null||U===void 0?void 0:U.querySelector(`[data-name="${q}"]`)}function H(U){if(e.type==="card")return;const{value:q}=u;if(!q)return;const pe=q.style.opacity==="0";if(U){const Se=`${a.value}-tabs-bar--disabled`,{barWidth:J,placement:he}=e;if(U.dataset.disabled==="true"?q.classList.add(Se):q.classList.remove(Se),["top","bottom"].includes(he)){if(D(["top","maxHeight","height"]),typeof J=="number"&&U.offsetWidth>=J){const Ne=Math.floor((U.offsetWidth-J)/2)+U.offsetLeft;q.style.left=`${Ne}px`,q.style.maxWidth=`${J}px`}else q.style.left=`${U.offsetLeft}px`,q.style.maxWidth=`${U.offsetWidth}px`;q.style.width="8192px",pe&&(q.style.transition="none"),q.offsetWidth,pe&&(q.style.transition="",q.style.opacity="1")}else{if(D(["left","maxWidth","width"]),typeof J=="number"&&U.offsetHeight>=J){const Ne=Math.floor((U.offsetHeight-J)/2)+U.offsetTop;q.style.top=`${Ne}px`,q.style.maxHeight=`${J}px`}else q.style.top=`${U.offsetTop}px`,q.style.maxHeight=`${U.offsetHeight}px`;q.style.height="8192px",pe&&(q.style.transition="none"),q.offsetHeight,pe&&(q.style.transition="",q.style.opacity="1")}}}function k(){if(e.type==="card")return;const{value:U}=u;U&&(U.style.opacity="0")}function D(U){const{value:q}=u;if(q)for(const pe of U)q.style[pe]=""}function W(){if(e.type==="card")return;const U=C();U?H(U):k()}function L(U){var q;const pe=(q=v.value)===null||q===void 0?void 0:q.$el;if(!pe)return;const Se=C();if(!Se)return;const{scrollLeft:J,offsetWidth:he}=pe,{offsetLeft:Ne,offsetWidth:no}=Se;J>Ne?pe.scrollTo({top:0,left:Ne,behavior:"smooth"}):Ne+no>J+he&&pe.scrollTo({top:0,left:Ne+no-he,behavior:"smooth"})}const j=M(null);let V=0,E=null;function Y(U){const q=j.value;if(q){V=U.getBoundingClientRect().height;const pe=`${V}px`,Se=()=>{q.style.height=pe,q.style.maxHeight=pe};E?(Se(),E(),E=null):E=Se}}function K(U){const q=j.value;if(q){const pe=U.getBoundingClientRect().height,Se=()=>{document.body.offsetHeight,q.style.maxHeight=`${pe}px`,q.style.height=`${Math.max(V,pe)}px`};E?(E(),E=null,Se()):E=Se}}function te(){const U=j.value;if(U){U.style.maxHeight="",U.style.height="";const{paneWrapperStyle:q}=e;if(typeof q=="string")U.style.cssText=q;else if(q){const{maxHeight:pe,height:Se}=q;pe!==void 0&&(U.style.maxHeight=pe),Se!==void 0&&(U.style.height=Se)}}}const xe={value:[]},se=M("next");function ie(U){const q=I.value;let pe="next";for(const Se of xe.value){if(Se===q)break;if(Se===U){pe="prev";break}}se.value=pe,O(U)}function O(U){const{onActiveNameChange:q,onUpdateValue:pe,"onUpdate:value":Se}=e;q&&de(q,U),pe&&de(pe,U),Se&&de(Se,U),_.value=U}function B(U){const{onClose:q}=e;q&&de(q,U)}function G(){const{value:U}=u;if(!U)return;const q="transition-disabled";U.classList.add(q),W(),U.classList.remove(q)}const oe=M(null);function me({transitionDisabled:U}){const q=c.value;if(!q)return;U&&q.classList.add("transition-disabled");const pe=C();pe&&oe.value&&(oe.value.style.width=`${pe.offsetWidth}px`,oe.value.style.height=`${pe.offsetHeight}px`,oe.value.style.transform=`translateX(${pe.offsetLeft-q.offsetLeft-ko(getComputedStyle(q).paddingLeft)}px)`,U&&oe.value.offsetWidth),U&&q.classList.remove("transition-disabled")}Xe([I],()=>{e.type==="segment"&&ao(()=>{me({transitionDisabled:!1})})}),po(()=>{e.type==="segment"&&me({transitionDisabled:!0})});let be=0;function Be(U){var q;if(U.contentRect.width===0&&U.contentRect.height===0||be===U.contentRect.width)return;be=U.contentRect.width;const{type:pe}=e;if((pe==="line"||pe==="bar")&&G(),pe!=="segment"){const{placement:Se}=e;Ce((Se==="top"||Se==="bottom"?(q=v.value)===null||q===void 0?void 0:q.$el:h.value)||null)}}const T=Yr(Be,64);Xe([()=>e.justifyContent,()=>e.size],()=>{ao(()=>{const{type:U}=e;(U==="line"||U==="bar")&&G()})});const fe=M(!1);function we(U){var q;const{target:pe,contentRect:{width:Se}}=U,J=pe.parentElement.offsetWidth;if(!fe.value)Jhe.$el.offsetWidth&&(fe.value=!1)}Ce(((q=v.value)===null||q===void 0?void 0:q.$el)||null)}const Me=Yr(we,64);function ne(){const{onAdd:U}=e;U&&U(),ao(()=>{const q=C(),{value:pe}=v;!q||!pe||pe.scrollTo({left:q.offsetLeft,top:0,behavior:"smooth"})})}function Ce(U){if(!U)return;const{placement:q}=e;if(q==="top"||q==="bottom"){const{scrollLeft:pe,scrollWidth:Se,offsetWidth:J}=U;m.value=pe<=0,x.value=pe+J>=Se}else{const{scrollTop:pe,scrollHeight:Se,offsetHeight:J}=U;m.value=pe<=0,x.value=pe+J>=Se}}const ge=Yr(U=>{Ce(U.target)},64);De(Qn,{triggerRef:le(e,"trigger"),tabStyleRef:le(e,"tabStyle"),tabClassRef:le(e,"tabClass"),addTabStyleRef:le(e,"addTabStyle"),addTabClassRef:le(e,"addTabClass"),paneClassRef:le(e,"paneClass"),paneStyleRef:le(e,"paneStyle"),mergedClsPrefixRef:a,typeRef:le(e,"type"),closableRef:le(e,"closable"),valueRef:I,tabChangeIdRef:R,onBeforeLeaveRef:le(e,"onBeforeLeave"),activateTab:ie,handleClose:B,handleAdd:ne}),gd(()=>{W(),L()}),oo(()=>{const{value:U}=f;if(!U)return;const{value:q}=a,pe=`${q}-tabs-nav-scroll-wrapper--shadow-start`,Se=`${q}-tabs-nav-scroll-wrapper--shadow-end`;m.value?U.classList.remove(pe):U.classList.add(pe),x.value?U.classList.remove(Se):U.classList.add(Se)});const Ee={syncBarPosition:()=>{W()}},Q=()=>{me({transitionDisabled:!0})},ve=$(()=>{const{value:U}=y,{type:q}=e,pe={card:"Card",bar:"Bar",line:"Line",segment:"Segment"}[q],Se=`${U}${pe}`,{self:{barColor:J,closeIconColor:he,closeIconColorHover:Ne,closeIconColorPressed:no,tabColor:Ro,tabBorderColor:Oo,paneTextColor:xo,tabFontWeight:Co,tabBorderRadius:Eo,tabFontWeightActive:_o,colorSegment:fo,fontWeightStrong:vo,tabColorSegment:F,closeSize:X,closeIconSize:ce,closeColorHover:Pe,closeColorPressed:ke,closeBorderRadius:Te,[N("panePadding",U)]:Fe,[N("tabPadding",Se)]:He,[N("tabPaddingVertical",Se)]:qe,[N("tabGap",Se)]:go,[N("tabGap",`${Se}Vertical`)]:lt,[N("tabTextColor",q)]:ft,[N("tabTextColorActive",q)]:Vo,[N("tabTextColorHover",q)]:Uo,[N("tabTextColorDisabled",q)]:ht,[N("tabFontSize",U)]:pt},common:{cubicBezierEaseInOut:at}}=d.value;return{"--n-bezier":at,"--n-color-segment":fo,"--n-bar-color":J,"--n-tab-font-size":pt,"--n-tab-text-color":ft,"--n-tab-text-color-active":Vo,"--n-tab-text-color-disabled":ht,"--n-tab-text-color-hover":Uo,"--n-pane-text-color":xo,"--n-tab-border-color":Oo,"--n-tab-border-radius":Eo,"--n-close-size":X,"--n-close-icon-size":ce,"--n-close-color-hover":Pe,"--n-close-color-pressed":ke,"--n-close-border-radius":Te,"--n-close-icon-color":he,"--n-close-icon-color-hover":Ne,"--n-close-icon-color-pressed":no,"--n-tab-color":Ro,"--n-tab-font-weight":Co,"--n-tab-font-weight-active":_o,"--n-tab-padding":He,"--n-tab-padding-vertical":qe,"--n-tab-gap":go,"--n-tab-gap-vertical":lt,"--n-pane-padding-left":yo(Fe,"left"),"--n-pane-padding-right":yo(Fe,"right"),"--n-pane-padding-top":yo(Fe,"top"),"--n-pane-padding-bottom":yo(Fe,"bottom"),"--n-font-weight-strong":vo,"--n-tab-color-segment":F}}),ze=s?We("tabs",$(()=>`${y.value[0]}${e.type[0]}`),ve,e):void 0;return Object.assign({mergedClsPrefix:a,mergedValue:I,renderedNames:new Set,segmentCapsuleElRef:oe,tabsPaneWrapperRef:j,tabsElRef:c,barElRef:u,addTabInstRef:p,xScrollInstRef:v,scrollWrapperElRef:f,addTabFixed:fe,tabWrapperStyle:z,handleNavResize:T,mergedSize:y,handleScroll:ge,handleTabsResize:Me,cssVars:s?void 0:ve,themeClass:ze==null?void 0:ze.themeClass,animationDirection:se,renderNameListRef:xe,yScrollElRef:h,handleSegmentResize:Q,onAnimationBeforeLeave:Y,onAnimationEnter:K,onAnimationAfterEnter:te,onRender:ze==null?void 0:ze.onRender},Ee)},render(){const{mergedClsPrefix:e,type:o,placement:t,addTabFixed:r,addable:n,mergedSize:l,renderNameListRef:a,onRender:s,paneWrapperClass:d,paneWrapperStyle:c,$slots:{default:u,prefix:f,suffix:p}}=this;s==null||s();const v=u?rt(u()).filter(R=>R.type.__TAB_PANE__===!0):[],h=u?rt(u()).filter(R=>R.type.__TAB__===!0):[],m=!h.length,x=o==="card",y=o==="segment",b=!x&&!y&&this.justifyContent;a.value=[];const _=()=>{const R=i("div",{style:this.tabWrapperStyle,class:[`${e}-tabs-wrapper`]},b?null:i("div",{class:`${e}-tabs-scroll-padding`,style:{width:`${this.tabsPadding}px`}}),m?v.map((z,C)=>(a.value.push(z.props.name),dn(i(Cn,Object.assign({},z.props,{internalCreatedByPane:!0,internalLeftPadded:C!==0&&(!b||b==="center"||b==="start"||b==="end")}),z.children?{default:z.children.tab}:void 0)))):h.map((z,C)=>(a.value.push(z.props.name),dn(C!==0&&!b?Ki(z):z))),!r&&n&&x?Ui(n,(m?v.length:h.length)!==0):null,b?null:i("div",{class:`${e}-tabs-scroll-padding`,style:{width:`${this.tabsPadding}px`}}));return i("div",{ref:"tabsElRef",class:`${e}-tabs-nav-scroll-content`},x&&n?i(tt,{onResize:this.handleTabsResize},{default:()=>R}):R,x?i("div",{class:`${e}-tabs-pad`}):null,x?null:i("div",{ref:"barElRef",class:`${e}-tabs-bar`}))},I=y?"top":t;return i("div",{class:[`${e}-tabs`,this.themeClass,`${e}-tabs--${o}-type`,`${e}-tabs--${l}-size`,b&&`${e}-tabs--flex`,`${e}-tabs--${I}`],style:this.cssVars},i("div",{class:[`${e}-tabs-nav--${o}-type`,`${e}-tabs-nav--${I}`,`${e}-tabs-nav`]},je(f,R=>R&&i("div",{class:`${e}-tabs-nav__prefix`},R)),y?i(tt,{onResize:this.handleSegmentResize},{default:()=>i("div",{class:`${e}-tabs-rail`,ref:"tabsElRef"},i("div",{class:`${e}-tabs-capsule`,ref:"segmentCapsuleElRef"},i("div",{class:`${e}-tabs-wrapper`},i("div",{class:`${e}-tabs-tab`}))),m?v.map((R,z)=>(a.value.push(R.props.name),i(Cn,Object.assign({},R.props,{internalCreatedByPane:!0,internalLeftPadded:z!==0}),R.children?{default:R.children.tab}:void 0))):h.map((R,z)=>(a.value.push(R.props.name),z===0?R:Ki(R))))}):i(tt,{onResize:this.handleNavResize},{default:()=>i("div",{class:`${e}-tabs-nav-scroll-wrapper`,ref:"scrollWrapperElRef"},["top","bottom"].includes(I)?i(fd,{ref:"xScrollInstRef",onScroll:this.handleScroll},{default:_}):i("div",{class:`${e}-tabs-nav-y-scroll`,onScroll:this.handleScroll,ref:"yScrollElRef"},_()))}),r&&n&&x?Ui(n,!0):null,je(p,R=>R&&i("div",{class:`${e}-tabs-nav__suffix`},R))),m&&(this.animated&&(I==="top"||I==="bottom")?i("div",{ref:"tabsPaneWrapperRef",style:c,class:[`${e}-tabs-pane-wrapper`,d]},Vi(v,this.mergedValue,this.renderedNames,this.onAnimationBeforeLeave,this.onAnimationEnter,this.onAnimationAfterEnter,this.animationDirection)):Vi(v,this.mergedValue,this.renderedNames)))}});function Vi(e,o,t,r,n,l,a){const s=[];return e.forEach(d=>{const{name:c,displayDirective:u,"display-directive":f}=d.props,p=h=>u===h||f===h,v=o===c;if(d.key!==void 0&&(d.key=c),v||p("show")||p("show:lazy")&&t.has(c)){t.has(c)||t.add(c);const h=!p("if");s.push(h?Lo(d,[[Go,v]]):d)}}),a?i(Sn,{name:`${a}-transition`,onBeforeLeave:r,onEnter:n,onAfterEnter:l},{default:()=>s}):s}function Ui(e,o){return i(Cn,{ref:"addTabInstRef",key:"__addable",name:"__addable",internalCreatedByPane:!0,internalAddable:!0,internalLeftPadded:o,disabled:typeof e=="object"&&e.disabled})}function Ki(e){const o=rr(e);return o.props?o.props.internalLeftPadded=!0:o.props={internalLeftPadded:!0},o}function dn(e){return Array.isArray(e.dynamicProps)?e.dynamicProps.includes("internalLeftPadded")||e.dynamicProps.push("internalLeftPadded"):e.dynamicProps=["internalLeftPadded"],e}const E0=g("thing",` + display: flex; + transition: color .3s var(--n-bezier); + font-size: var(--n-font-size); + color: var(--n-text-color); +`,[g("thing-avatar",` + margin-right: 12px; + margin-top: 2px; + `),g("thing-avatar-header-wrapper",` + display: flex; + flex-wrap: nowrap; + `,[g("thing-header-wrapper",` + flex: 1; + `)]),g("thing-main",` + flex-grow: 1; + `,[g("thing-header",` + display: flex; + margin-bottom: 4px; + justify-content: space-between; + align-items: center; + `,[S("title",` + font-size: 16px; + font-weight: var(--n-title-font-weight); + transition: color .3s var(--n-bezier); + color: var(--n-title-text-color); + `)]),S("description",[w("&:not(:last-child)",` + margin-bottom: 4px; + `)]),S("content",[w("&:not(:first-child)",` + margin-top: 12px; + `)]),S("footer",[w("&:not(:first-child)",` + margin-top: 12px; + `)]),S("action",[w("&:not(:first-child)",` + margin-top: 12px; + `)])])]),j0=Object.assign(Object.assign({},ae.props),{title:String,titleExtra:String,description:String,descriptionClass:String,descriptionStyle:[String,Object],content:String,contentClass:String,contentStyle:[String,Object],contentIndented:Boolean}),mx=Z({name:"Thing",props:j0,setup(e,{slots:o}){const{mergedClsPrefixRef:t,inlineThemeDisabled:r,mergedRtlRef:n}=Ie(e),l=ae("Thing","-thing",E0,Hm,e,t),a=eo("Thing",n,t),s=$(()=>{const{self:{titleTextColor:c,textColor:u,titleFontWeight:f,fontSize:p},common:{cubicBezierEaseInOut:v}}=l.value;return{"--n-bezier":v,"--n-font-size":p,"--n-text-color":u,"--n-title-font-weight":f,"--n-title-text-color":c}}),d=r?We("thing",void 0,s,e):void 0;return()=>{var c;const{value:u}=t,f=a?a.value:!1;return(c=d==null?void 0:d.onRender)===null||c===void 0||c.call(d),i("div",{class:[`${u}-thing`,d==null?void 0:d.themeClass,f&&`${u}-thing--rtl`],style:r?void 0:s.value},o.avatar&&e.contentIndented?i("div",{class:`${u}-thing-avatar`},o.avatar()):null,i("div",{class:`${u}-thing-main`},!e.contentIndented&&(o.header||e.title||o["header-extra"]||e.titleExtra||o.avatar)?i("div",{class:`${u}-thing-avatar-header-wrapper`},o.avatar?i("div",{class:`${u}-thing-avatar`},o.avatar()):null,o.header||e.title||o["header-extra"]||e.titleExtra?i("div",{class:`${u}-thing-header-wrapper`},i("div",{class:`${u}-thing-header`},o.header||e.title?i("div",{class:`${u}-thing-header__title`},o.header?o.header():e.title):null,o["header-extra"]||e.titleExtra?i("div",{class:`${u}-thing-header__extra`},o["header-extra"]?o["header-extra"]():e.titleExtra):null),o.description||e.description?i("div",{class:[`${u}-thing-main__description`,e.descriptionClass],style:e.descriptionStyle},o.description?o.description():e.description):null):null):i(co,null,o.header||e.title||o["header-extra"]||e.titleExtra?i("div",{class:`${u}-thing-header`},o.header||e.title?i("div",{class:`${u}-thing-header__title`},o.header?o.header():e.title):null,o["header-extra"]||e.titleExtra?i("div",{class:`${u}-thing-header__extra`},o["header-extra"]?o["header-extra"]():e.titleExtra):null):null,o.description||e.description?i("div",{class:[`${u}-thing-main__description`,e.descriptionClass],style:e.descriptionStyle},o.description?o.description():e.description):null),o.default||e.content?i("div",{class:[`${u}-thing-main__content`,e.contentClass],style:e.contentStyle},o.default?o.default():e.content):null,o.footer?i("div",{class:`${u}-thing-main__footer`},o.footer()):null,o.action?i("div",{class:`${u}-thing-main__action`},o.action()):null))}}}),W0=g("h",` + font-size: var(--n-font-size); + font-weight: var(--n-font-weight); + margin: var(--n-margin); + transition: color .3s var(--n-bezier); + color: var(--n-text-color); +`,[w("&:first-child",{marginTop:0}),P("prefix-bar",{position:"relative",paddingLeft:"var(--n-prefix-width)"},[P("align-text",{paddingLeft:0},[w("&::before",{left:"calc(-1 * var(--n-prefix-width))"})]),w("&::before",` + content: ""; + width: var(--n-bar-width); + border-radius: calc(var(--n-bar-width) / 2); + transition: background-color .3s var(--n-bezier); + left: 0; + top: 0; + bottom: 0; + position: absolute; + `),w("&::before",{backgroundColor:"var(--n-bar-color)"})])]),N0=Object.assign(Object.assign({},ae.props),{type:{type:String,default:"default"},prefix:String,alignText:Boolean}),V0=e=>Z({name:`H${e}`,props:N0,setup(o){const{mergedClsPrefixRef:t,inlineThemeDisabled:r}=Ie(o),n=ae("Typography","-h",W0,is,o,t),l=$(()=>{const{type:s}=o,{common:{cubicBezierEaseInOut:d},self:{headerFontWeight:c,headerTextColor:u,[N("headerPrefixWidth",e)]:f,[N("headerFontSize",e)]:p,[N("headerMargin",e)]:v,[N("headerBarWidth",e)]:h,[N("headerBarColor",s)]:m}}=n.value;return{"--n-bezier":d,"--n-font-size":p,"--n-margin":v,"--n-bar-color":m,"--n-bar-width":h,"--n-font-weight":c,"--n-text-color":u,"--n-prefix-width":f}}),a=r?We(`h${e}`,$(()=>o.type[0]),l,o):void 0;return{mergedClsPrefix:t,cssVars:r?void 0:l,themeClass:a==null?void 0:a.themeClass,onRender:a==null?void 0:a.onRender}},render(){var o;const{prefix:t,alignText:r,mergedClsPrefix:n,cssVars:l,$slots:a}=this;return(o=this.onRender)===null||o===void 0||o.call(this),i(`h${e}`,{class:[`${n}-h`,`${n}-h${e}`,this.themeClass,{[`${n}-h--prefix-bar`]:t,[`${n}-h--align-text`]:r}],style:l},a)}}),bx=V0("3"),U0=g("text",` + transition: color .3s var(--n-bezier); + color: var(--n-text-color); +`,[P("strong",` + font-weight: var(--n-font-weight-strong); + `),P("italic",{fontStyle:"italic"}),P("underline",{textDecoration:"underline"}),P("code",` + line-height: 1.4; + display: inline-block; + font-family: var(--n-font-famliy-mono); + transition: + color .3s var(--n-bezier), + border-color .3s var(--n-bezier), + background-color .3s var(--n-bezier); + box-sizing: border-box; + padding: .05em .35em 0 .35em; + border-radius: var(--n-code-border-radius); + font-size: .9em; + color: var(--n-code-text-color); + background-color: var(--n-code-color); + border: var(--n-code-border); + `)]),K0=Object.assign(Object.assign({},ae.props),{code:Boolean,type:{type:String,default:"default"},delete:Boolean,strong:Boolean,italic:Boolean,underline:Boolean,depth:[String,Number],tag:String,as:{type:String,validator:()=>!0,default:void 0}}),xx=Z({name:"Text",props:K0,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=ae("Typography","-text",U0,is,e,o),n=$(()=>{const{depth:a,type:s}=e,d=s==="default"?a===void 0?"textColor":`textColor${a}Depth`:N("textColor",s),{common:{fontWeightStrong:c,fontFamilyMono:u,cubicBezierEaseInOut:f},self:{codeTextColor:p,codeBorderRadius:v,codeColor:h,codeBorder:m,[d]:x}}=r.value;return{"--n-bezier":f,"--n-text-color":x,"--n-font-weight-strong":c,"--n-font-famliy-mono":u,"--n-code-border-radius":v,"--n-code-text-color":p,"--n-code-color":h,"--n-code-border":m}}),l=t?We("text",$(()=>`${e.type[0]}${e.depth||""}`),n,e):void 0;return{mergedClsPrefix:o,compitableTag:yt(e,["as","tag"]),cssVars:t?void 0:n,themeClass:l==null?void 0:l.themeClass,onRender:l==null?void 0:l.onRender}},render(){var e,o,t;const{mergedClsPrefix:r}=this;(e=this.onRender)===null||e===void 0||e.call(this);const n=[`${r}-text`,this.themeClass,{[`${r}-text--code`]:this.code,[`${r}-text--delete`]:this.delete,[`${r}-text--strong`]:this.strong,[`${r}-text--italic`]:this.italic,[`${r}-text--underline`]:this.underline}],l=(t=(o=this.$slots).default)===null||t===void 0?void 0:t.call(o);return this.code?i("code",{class:n,style:this.cssVars},this.delete?i("del",null,l):l):this.delete?i("del",{class:n,style:this.cssVars},l):i(this.compitableTag||"span",{class:n,style:this.cssVars},l)}}),Zt="n-upload",ws="__UPLOAD_DRAGGER__",G0=Z({name:"UploadDragger",[ws]:!0,setup(e,{slots:o}){const t=$e(Zt,null);return t||Wo("upload-dragger","`n-upload-dragger` must be placed inside `n-upload`."),()=>{const{mergedClsPrefixRef:{value:r},mergedDisabledRef:{value:n},maxReachedRef:{value:l}}=t;return i("div",{class:[`${r}-upload-dragger`,(n||l)&&`${r}-upload-dragger--disabled`]},o)}}});var yn=function(e,o,t,r){function n(l){return l instanceof t?l:new t(function(a){a(l)})}return new(t||(t=Promise))(function(l,a){function s(u){try{c(r.next(u))}catch(f){a(f)}}function d(u){try{c(r.throw(u))}catch(f){a(f)}}function c(u){u.done?l(u.value):n(u.value).then(s,d)}c((r=r.apply(e,o||[])).next())})};const Ss=e=>e.includes("image/"),Gi=(e="")=>{const o=e.split("/"),r=o[o.length-1].split(/#|\?/)[0];return(/\.[^./\\]*$/.exec(r)||[""])[0]},qi=/(webp|svg|png|gif|jpg|jpeg|jfif|bmp|dpg|ico)$/i,zs=e=>{if(e.type)return Ss(e.type);const o=Gi(e.name||"");if(qi.test(o))return!0;const t=e.thumbnailUrl||e.url||"",r=Gi(t);return!!(/^data:image\//.test(t)||qi.test(r))};function q0(e){return yn(this,void 0,void 0,function*(){return yield new Promise(o=>{if(!e.type||!Ss(e.type)){o("");return}o(window.URL.createObjectURL(e))})})}const Y0=No&&window.FileReader&&window.File;function X0(e){return e.isDirectory}function Z0(e){return e.isFile}function Q0(e,o){return yn(this,void 0,void 0,function*(){const t=[];function r(n){return yn(this,void 0,void 0,function*(){for(const l of n)if(l){if(o&&X0(l)){const a=l.createReader();try{const s=yield new Promise((d,c)=>{a.readEntries(d,c)});yield r(s)}catch{}}else if(Z0(l))try{const a=yield new Promise((s,d)=>{l.file(s,d)});t.push({file:a,entry:l,source:"dnd"})}catch{}}})}return yield r(e),t})}function dr(e){const{id:o,name:t,percentage:r,status:n,url:l,file:a,thumbnailUrl:s,type:d,fullPath:c,batchId:u}=e;return{id:o,name:t,percentage:r??null,status:n,url:l??null,file:a??null,thumbnailUrl:s??null,type:d??null,fullPath:c??null,batchId:u??null}}function J0(e,o,t){return e=e.toLowerCase(),o=o.toLocaleLowerCase(),t=t.toLocaleLowerCase(),t.split(",").map(n=>n.trim()).filter(Boolean).some(n=>{if(n.startsWith(".")){if(e.endsWith(n))return!0}else if(n.includes("/")){const[l,a]=o.split("/"),[s,d]=n.split("/");if((s==="*"||l&&s&&s===l)&&(d==="*"||a&&d&&d===a))return!0}else return!0;return!1})}const $s=Z({name:"UploadTrigger",props:{abstract:Boolean},setup(e,{slots:o}){const t=$e(Zt,null);t||Wo("upload-trigger","`n-upload-trigger` must be placed inside `n-upload`.");const{mergedClsPrefixRef:r,mergedDisabledRef:n,maxReachedRef:l,listTypeRef:a,dragOverRef:s,openOpenFileDialog:d,draggerInsideRef:c,handleFileAddition:u,mergedDirectoryDndRef:f,triggerClassRef:p,triggerStyleRef:v}=t,h=$(()=>a.value==="image-card");function m(){n.value||l.value||d()}function x(I){I.preventDefault(),s.value=!0}function y(I){I.preventDefault(),s.value=!0}function b(I){I.preventDefault(),s.value=!1}function _(I){var R;if(I.preventDefault(),!c.value||n.value||l.value){s.value=!1;return}const z=(R=I.dataTransfer)===null||R===void 0?void 0:R.items;z!=null&&z.length?Q0(Array.from(z).map(C=>C.webkitGetAsEntry()),f.value).then(C=>{u(C)}).finally(()=>{s.value=!1}):s.value=!1}return()=>{var I;const{value:R}=r;return e.abstract?(I=o.default)===null||I===void 0?void 0:I.call(o,{handleClick:m,handleDrop:_,handleDragOver:x,handleDragEnter:y,handleDragLeave:b}):i("div",{class:[`${R}-upload-trigger`,(n.value||l.value)&&`${R}-upload-trigger--disabled`,h.value&&`${R}-upload-trigger--image-card`,p.value],style:v.value,onClick:m,onDrop:_,onDragover:x,onDragenter:y,onDragleave:b},h.value?i(G0,null,{default:()=>so(o.default,()=>[i(Le,{clsPrefix:R},{default:()=>i(ar,null)})])}):o)}}}),e1=Z({name:"UploadProgress",props:{show:Boolean,percentage:{type:Number,required:!0},status:{type:String,required:!0}},setup(){return{mergedTheme:$e(Zt).mergedThemeRef}},render(){return i(Rt,null,{default:()=>this.show?i(h0,{type:"line",showIndicator:!1,percentage:this.percentage,status:this.status,height:2,theme:this.mergedTheme.peers.Progress,themeOverrides:this.mergedTheme.peerOverrides.Progress}):null})}}),o1=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28 28"},i("g",{fill:"none"},i("path",{d:"M21.75 3A3.25 3.25 0 0 1 25 6.25v15.5A3.25 3.25 0 0 1 21.75 25H6.25A3.25 3.25 0 0 1 3 21.75V6.25A3.25 3.25 0 0 1 6.25 3h15.5zm.583 20.4l-7.807-7.68a.75.75 0 0 0-.968-.07l-.084.07l-7.808 7.68c.183.065.38.1.584.1h15.5c.204 0 .4-.035.583-.1l-7.807-7.68l7.807 7.68zM21.75 4.5H6.25A1.75 1.75 0 0 0 4.5 6.25v15.5c0 .208.036.408.103.593l7.82-7.692a2.25 2.25 0 0 1 3.026-.117l.129.117l7.82 7.692c.066-.185.102-.385.102-.593V6.25a1.75 1.75 0 0 0-1.75-1.75zm-3.25 3a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0-5zm0 1.5a1 1 0 1 0 0 2a1 1 0 0 0 0-2z",fill:"currentColor"}))),t1=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28 28"},i("g",{fill:"none"},i("path",{d:"M6.4 2A2.4 2.4 0 0 0 4 4.4v19.2A2.4 2.4 0 0 0 6.4 26h15.2a2.4 2.4 0 0 0 2.4-2.4V11.578c0-.729-.29-1.428-.805-1.944l-6.931-6.931A2.4 2.4 0 0 0 14.567 2H6.4zm-.9 2.4a.9.9 0 0 1 .9-.9H14V10a2 2 0 0 0 2 2h6.5v11.6a.9.9 0 0 1-.9.9H6.4a.9.9 0 0 1-.9-.9V4.4zm16.44 6.1H16a.5.5 0 0 1-.5-.5V4.06l6.44 6.44z",fill:"currentColor"})));var r1=function(e,o,t,r){function n(l){return l instanceof t?l:new t(function(a){a(l)})}return new(t||(t=Promise))(function(l,a){function s(u){try{c(r.next(u))}catch(f){a(f)}}function d(u){try{c(r.throw(u))}catch(f){a(f)}}function c(u){u.done?l(u.value):n(u.value).then(s,d)}c((r=r.apply(e,o||[])).next())})};const Pr={paddingMedium:"0 3px",heightMedium:"24px",iconSizeMedium:"18px"},n1=Z({name:"UploadFile",props:{clsPrefix:{type:String,required:!0},file:{type:Object,required:!0},listType:{type:String,required:!0}},setup(e){const o=$e(Zt),t=M(null),r=M(""),n=$(()=>{const{file:R}=e;return R.status==="finished"?"success":R.status==="error"?"error":"info"}),l=$(()=>{const{file:R}=e;if(R.status==="error")return"error"}),a=$(()=>{const{file:R}=e;return R.status==="uploading"}),s=$(()=>{if(!o.showCancelButtonRef.value)return!1;const{file:R}=e;return["uploading","pending","error"].includes(R.status)}),d=$(()=>{if(!o.showRemoveButtonRef.value)return!1;const{file:R}=e;return["finished"].includes(R.status)}),c=$(()=>{if(!o.showDownloadButtonRef.value)return!1;const{file:R}=e;return["finished"].includes(R.status)}),u=$(()=>{if(!o.showRetryButtonRef.value)return!1;const{file:R}=e;return["error"].includes(R.status)}),f=Ue(()=>r.value||e.file.thumbnailUrl||e.file.url),p=$(()=>{if(!o.showPreviewButtonRef.value)return!1;const{file:{status:R},listType:z}=e;return["finished"].includes(R)&&f.value&&z==="image-card"});function v(){o.submit(e.file.id)}function h(R){R.preventDefault();const{file:z}=e;["finished","pending","error"].includes(z.status)?x(z):["uploading"].includes(z.status)?b(z):qo("upload","The button clicked type is unknown.")}function m(R){R.preventDefault(),y(e.file)}function x(R){const{xhrMap:z,doChange:C,onRemoveRef:{value:H},mergedFileListRef:{value:k}}=o;Promise.resolve(H?H({file:Object.assign({},R),fileList:k}):!0).then(D=>{if(D===!1)return;const W=Object.assign({},R,{status:"removed"});z.delete(R.id),C(W,void 0,{remove:!0})})}function y(R){const{onDownloadRef:{value:z}}=o;Promise.resolve(z?z(Object.assign({},R)):!0).then(C=>{C!==!1&&bl(R.url,R.name)})}function b(R){const{xhrMap:z}=o,C=z.get(R.id);C==null||C.abort(),x(Object.assign({},R))}function _(){const{onPreviewRef:{value:R}}=o;if(R)R(e.file);else if(e.listType==="image-card"){const{value:z}=t;if(!z)return;z.click()}}const I=()=>r1(this,void 0,void 0,function*(){const{listType:R}=e;R!=="image"&&R!=="image-card"||o.shouldUseThumbnailUrlRef.value(e.file)&&(r.value=yield o.getFileThumbnailUrlResolver(e.file))});return oo(()=>{I()}),{mergedTheme:o.mergedThemeRef,progressStatus:n,buttonType:l,showProgress:a,disabled:o.mergedDisabledRef,showCancelButton:s,showRemoveButton:d,showDownloadButton:c,showRetryButton:u,showPreviewButton:p,mergedThumbnailUrl:f,shouldUseThumbnailUrl:o.shouldUseThumbnailUrlRef,renderIcon:o.renderIconRef,imageRef:t,handleRemoveOrCancelClick:h,handleDownloadClick:m,handleRetryClick:v,handlePreviewClick:_}},render(){const{clsPrefix:e,mergedTheme:o,listType:t,file:r,renderIcon:n}=this;let l;const a=t==="image";a||t==="image-card"?l=!this.shouldUseThumbnailUrl(r)||!this.mergedThumbnailUrl?i("span",{class:`${e}-upload-file-info__thumbnail`},n?n(r):zs(r)?i(Le,{clsPrefix:e},{default:()=>o1}):i(Le,{clsPrefix:e},{default:()=>t1})):i("a",{rel:"noopener noreferer",target:"_blank",href:r.url||void 0,class:`${e}-upload-file-info__thumbnail`,onClick:this.handlePreviewClick},t==="image-card"?i(kb,{src:this.mergedThumbnailUrl||void 0,previewSrc:r.url||void 0,alt:r.name,ref:"imageRef"}):i("img",{src:this.mergedThumbnailUrl||void 0,alt:r.name})):l=i("span",{class:`${e}-upload-file-info__thumbnail`},n?n(r):i(Le,{clsPrefix:e},{default:()=>i(Yd,null)}));const d=i(e1,{show:this.showProgress,percentage:r.percentage||0,status:this.progressStatus}),c=t==="text"||t==="image";return i("div",{class:[`${e}-upload-file`,`${e}-upload-file--${this.progressStatus}-status`,r.url&&r.status!=="error"&&t!=="image-card"&&`${e}-upload-file--with-url`,`${e}-upload-file--${t}-type`]},i("div",{class:`${e}-upload-file-info`},l,i("div",{class:`${e}-upload-file-info__name`},c&&(r.url&&r.status!=="error"?i("a",{rel:"noopener noreferer",target:"_blank",href:r.url||void 0,onClick:this.handlePreviewClick},r.name):i("span",{onClick:this.handlePreviewClick},r.name)),a&&d),i("div",{class:[`${e}-upload-file-info__action`,`${e}-upload-file-info__action--${t}-type`]},this.showPreviewButton?i(Bo,{key:"preview",quaternary:!0,type:this.buttonType,onClick:this.handlePreviewClick,theme:o.peers.Button,themeOverrides:o.peerOverrides.Button,builtinThemeOverrides:Pr},{icon:()=>i(Le,{clsPrefix:e},{default:()=>i(Cl,null)})}):null,(this.showRemoveButton||this.showCancelButton)&&!this.disabled&&i(Bo,{key:"cancelOrTrash",theme:o.peers.Button,themeOverrides:o.peerOverrides.Button,quaternary:!0,builtinThemeOverrides:Pr,type:this.buttonType,onClick:this.handleRemoveOrCancelClick},{icon:()=>i(Kt,null,{default:()=>this.showRemoveButton?i(Le,{clsPrefix:e,key:"trash"},{default:()=>i(ec,null)}):i(Le,{clsPrefix:e,key:"cancel"},{default:()=>i(rc,null)})})}),this.showRetryButton&&!this.disabled&&i(Bo,{key:"retry",quaternary:!0,type:this.buttonType,onClick:this.handleRetryClick,theme:o.peers.Button,themeOverrides:o.peerOverrides.Button,builtinThemeOverrides:Pr},{icon:()=>i(Le,{clsPrefix:e},{default:()=>i(ac,null)})}),this.showDownloadButton?i(Bo,{key:"download",quaternary:!0,type:this.buttonType,onClick:this.handleDownloadClick,theme:o.peers.Button,themeOverrides:o.peerOverrides.Button,builtinThemeOverrides:Pr},{icon:()=>i(Le,{clsPrefix:e},{default:()=>i(oc,null)})}):null)),!a&&d)}}),i1=Z({name:"UploadFileList",setup(e,{slots:o}){const t=$e(Zt,null);t||Wo("upload-file-list","`n-upload-file-list` must be placed inside `n-upload`.");const{abstractRef:r,mergedClsPrefixRef:n,listTypeRef:l,mergedFileListRef:a,fileListClassRef:s,fileListStyleRef:d,cssVarsRef:c,themeClassRef:u,maxReachedRef:f,showTriggerRef:p,imageGroupPropsRef:v}=t,h=$(()=>l.value==="image-card"),m=()=>a.value.map(y=>i(n1,{clsPrefix:n.value,key:y.id,file:y,listType:l.value})),x=()=>h.value?i(Pb,Object.assign({},v.value),{default:m}):i(Rt,{group:!0},{default:m});return()=>{const{value:y}=n,{value:b}=r;return i("div",{class:[`${y}-upload-file-list`,h.value&&`${y}-upload-file-list--grid`,b?u==null?void 0:u.value:void 0,s.value],style:[b&&c?c.value:"",d.value]},x(),p.value&&!f.value&&h.value&&i($s,null,o))}}}),l1=w([g("upload","width: 100%;",[P("dragger-inside",[g("upload-trigger",` + display: block; + `)]),P("drag-over",[g("upload-dragger",` + border: var(--n-dragger-border-hover); + `)])]),g("upload-dragger",` + cursor: pointer; + box-sizing: border-box; + width: 100%; + text-align: center; + border-radius: var(--n-border-radius); + padding: 24px; + opacity: 1; + transition: + opacity .3s var(--n-bezier), + border-color .3s var(--n-bezier), + background-color .3s var(--n-bezier); + background-color: var(--n-dragger-color); + border: var(--n-dragger-border); + `,[w("&:hover",` + border: var(--n-dragger-border-hover); + `),P("disabled",` + cursor: not-allowed; + `)]),g("upload-trigger",` + display: inline-block; + box-sizing: border-box; + opacity: 1; + transition: opacity .3s var(--n-bezier); + `,[w("+",[g("upload-file-list","margin-top: 8px;")]),P("disabled",` + opacity: var(--n-item-disabled-opacity); + cursor: not-allowed; + `),P("image-card",` + width: 96px; + height: 96px; + `,[g("base-icon",` + font-size: 24px; + `),g("upload-dragger",` + padding: 0; + height: 100%; + width: 100%; + display: flex; + align-items: center; + justify-content: center; + `)])]),g("upload-file-list",` + line-height: var(--n-line-height); + opacity: 1; + transition: opacity .3s var(--n-bezier); + `,[w("a, img","outline: none;"),P("disabled",` + opacity: var(--n-item-disabled-opacity); + cursor: not-allowed; + `,[g("upload-file","cursor: not-allowed;")]),P("grid",` + display: grid; + grid-template-columns: repeat(auto-fill, 96px); + grid-gap: 8px; + margin-top: 0; + `),g("upload-file",` + display: block; + box-sizing: border-box; + cursor: default; + padding: 0px 12px 0 6px; + transition: background-color .3s var(--n-bezier); + border-radius: var(--n-border-radius); + `,[sr(),g("progress",[sr({foldPadding:!0})]),w("&:hover",` + background-color: var(--n-item-color-hover); + `,[g("upload-file-info",[S("action",` + opacity: 1; + `)])]),P("image-type",` + border-radius: var(--n-border-radius); + text-decoration: underline; + text-decoration-color: #0000; + `,[g("upload-file-info",` + padding-top: 0px; + padding-bottom: 0px; + width: 100%; + height: 100%; + display: flex; + justify-content: space-between; + align-items: center; + padding: 6px 0; + `,[g("progress",` + padding: 2px 0; + margin-bottom: 0; + `),S("name",` + padding: 0 8px; + `),S("thumbnail",` + width: 32px; + height: 32px; + font-size: 28px; + display: flex; + justify-content: center; + align-items: center; + `,[w("img",` + width: 100%; + `)])])]),P("text-type",[g("progress",` + box-sizing: border-box; + padding-bottom: 6px; + margin-bottom: 6px; + `)]),P("image-card-type",` + position: relative; + width: 96px; + height: 96px; + border: var(--n-item-border-image-card); + border-radius: var(--n-border-radius); + padding: 0; + display: flex; + align-items: center; + justify-content: center; + transition: border-color .3s var(--n-bezier), background-color .3s var(--n-bezier); + border-radius: var(--n-border-radius); + overflow: hidden; + `,[g("progress",` + position: absolute; + left: 8px; + bottom: 8px; + right: 8px; + width: unset; + `),g("upload-file-info",` + padding: 0; + width: 100%; + height: 100%; + `,[S("thumbnail",` + width: 100%; + height: 100%; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + font-size: 36px; + `,[w("img",` + width: 100%; + `)])]),w("&::before",` + position: absolute; + z-index: 1; + left: 0; + right: 0; + top: 0; + bottom: 0; + border-radius: inherit; + opacity: 0; + transition: opacity .2s var(--n-bezier); + content: ""; + `),w("&:hover",[w("&::before","opacity: 1;"),g("upload-file-info",[S("thumbnail","opacity: .12;")])])]),P("error-status",[w("&:hover",` + background-color: var(--n-item-color-hover-error); + `),g("upload-file-info",[S("name","color: var(--n-item-text-color-error);"),S("thumbnail","color: var(--n-item-text-color-error);")]),P("image-card-type",` + border: var(--n-item-border-image-card-error); + `)]),P("with-url",` + cursor: pointer; + `,[g("upload-file-info",[S("name",` + color: var(--n-item-text-color-success); + text-decoration-color: var(--n-item-text-color-success); + `,[w("a",` + text-decoration: underline; + `)])])]),g("upload-file-info",` + position: relative; + padding-top: 6px; + padding-bottom: 6px; + display: flex; + flex-wrap: nowrap; + `,[S("thumbnail",` + font-size: 18px; + opacity: 1; + transition: opacity .2s var(--n-bezier); + color: var(--n-item-icon-color); + `,[g("base-icon",` + margin-right: 2px; + vertical-align: middle; + transition: color .3s var(--n-bezier); + `)]),S("action",` + padding-top: inherit; + padding-bottom: inherit; + position: absolute; + right: 0; + top: 0; + bottom: 0; + width: 80px; + display: flex; + align-items: center; + transition: opacity .2s var(--n-bezier); + justify-content: flex-end; + opacity: 0; + `,[g("button",[w("&:not(:last-child)",{marginRight:"4px"}),g("base-icon",[w("svg",[ct()])])]),P("image-type",` + position: relative; + max-width: 80px; + width: auto; + `),P("image-card-type",` + z-index: 2; + position: absolute; + width: 100%; + height: 100%; + left: 0; + right: 0; + bottom: 0; + top: 0; + display: flex; + justify-content: center; + align-items: center; + `)]),S("name",` + color: var(--n-item-text-color); + flex: 1; + display: flex; + justify-content: center; + text-overflow: ellipsis; + overflow: hidden; + flex-direction: column; + text-decoration-color: #0000; + font-size: var(--n-font-size); + transition: + color .3s var(--n-bezier), + text-decoration-color .3s var(--n-bezier); + `,[w("a",` + color: inherit; + text-decoration: underline; + `)])])])]),g("upload-file-input",` + display: none; + width: 0; + height: 0; + opacity: 0; + `)]);var Yi=function(e,o,t,r){function n(l){return l instanceof t?l:new t(function(a){a(l)})}return new(t||(t=Promise))(function(l,a){function s(u){try{c(r.next(u))}catch(f){a(f)}}function d(u){try{c(r.throw(u))}catch(f){a(f)}}function c(u){u.done?l(u.value):n(u.value).then(s,d)}c((r=r.apply(e,o||[])).next())})};function a1(e,o,t){const{doChange:r,xhrMap:n}=e;let l=0;function a(d){var c;let u=Object.assign({},o,{status:"error",percentage:l});n.delete(o.id),u=dr(((c=e.onError)===null||c===void 0?void 0:c.call(e,{file:u,event:d}))||u),r(u,d)}function s(d){var c;if(e.isErrorState){if(e.isErrorState(t)){a(d);return}}else if(t.status<200||t.status>=300){a(d);return}let u=Object.assign({},o,{status:"finished",percentage:l});n.delete(o.id),u=dr(((c=e.onFinish)===null||c===void 0?void 0:c.call(e,{file:u,event:d}))||u),r(u,d)}return{handleXHRLoad:s,handleXHRError:a,handleXHRAbort(d){const c=Object.assign({},o,{status:"removed",file:null,percentage:l});n.delete(o.id),r(c,d)},handleXHRProgress(d){const c=Object.assign({},o,{status:"uploading"});if(d.lengthComputable){const u=Math.ceil(d.loaded/d.total*100);c.percentage=u,l=u}r(c,d)}}}function s1(e){const{inst:o,file:t,data:r,headers:n,withCredentials:l,action:a,customRequest:s}=e,{doChange:d}=e.inst;let c=0;s({file:t,data:r,headers:n,withCredentials:l,action:a,onProgress(u){const f=Object.assign({},t,{status:"uploading"}),p=u.percent;f.percentage=p,c=p,d(f)},onFinish(){var u;let f=Object.assign({},t,{status:"finished",percentage:c});f=dr(((u=o.onFinish)===null||u===void 0?void 0:u.call(o,{file:f}))||f),d(f)},onError(){var u;let f=Object.assign({},t,{status:"error",percentage:c});f=dr(((u=o.onError)===null||u===void 0?void 0:u.call(o,{file:f}))||f),d(f)}})}function d1(e,o,t){const r=a1(e,o,t);t.onabort=r.handleXHRAbort,t.onerror=r.handleXHRError,t.onload=r.handleXHRLoad,t.upload&&(t.upload.onprogress=r.handleXHRProgress)}function Ps(e,o){return typeof e=="function"?e({file:o}):e||{}}function c1(e,o,t){const r=Ps(o,t);r&&Object.keys(r).forEach(n=>{e.setRequestHeader(n,r[n])})}function u1(e,o,t){const r=Ps(o,t);r&&Object.keys(r).forEach(n=>{e.append(n,r[n])})}function f1(e,o,t,{method:r,action:n,withCredentials:l,responseType:a,headers:s,data:d}){const c=new XMLHttpRequest;c.responseType=a,e.xhrMap.set(t.id,c),c.withCredentials=l;const u=new FormData;if(u1(u,d,t),t.file!==null&&u.append(o,t.file),d1(e,t,c),n!==void 0){c.open(r.toUpperCase(),n),c1(c,s,t),c.send(u);const f=Object.assign({},t,{status:"uploading"});e.doChange(f)}}const h1=Object.assign(Object.assign({},ae.props),{name:{type:String,default:"file"},accept:String,action:String,customRequest:Function,directory:Boolean,directoryDnd:{type:Boolean,default:void 0},method:{type:String,default:"POST"},multiple:Boolean,showFileList:{type:Boolean,default:!0},data:[Object,Function],headers:[Object,Function],withCredentials:Boolean,responseType:{type:String,default:""},disabled:{type:Boolean,default:void 0},onChange:Function,onRemove:Function,onFinish:Function,onError:Function,onBeforeUpload:Function,isErrorState:Function,onDownload:Function,defaultUpload:{type:Boolean,default:!0},fileList:Array,"onUpdate:fileList":[Function,Array],onUpdateFileList:[Function,Array],fileListClass:String,fileListStyle:[String,Object],defaultFileList:{type:Array,default:()=>[]},showCancelButton:{type:Boolean,default:!0},showRemoveButton:{type:Boolean,default:!0},showDownloadButton:Boolean,showRetryButton:{type:Boolean,default:!0},showPreviewButton:{type:Boolean,default:!0},listType:{type:String,default:"text"},onPreview:Function,shouldUseThumbnailUrl:{type:Function,default:e=>Y0?zs(e):!1},createThumbnailUrl:Function,abstract:Boolean,max:Number,showTrigger:{type:Boolean,default:!0},imageGroupProps:Object,inputProps:Object,triggerClass:String,triggerStyle:[String,Object],renderIcon:Function}),Cx=Z({name:"Upload",props:h1,setup(e){e.abstract&&e.listType==="image-card"&&Wo("upload","when the list-type is image-card, abstract is not supported.");const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=Ie(e),r=ae("Upload","-upload",l1,ob,e,o),n=it(e),l=$(()=>{const{max:k}=e;return k!==void 0?v.value.length>=k:!1}),a=M(e.defaultFileList),s=le(e,"fileList"),d=M(null),c={value:!1},u=M(!1),f=new Map,p=uo(s,a),v=$(()=>p.value.map(dr));function h(){var k;(k=d.value)===null||k===void 0||k.click()}function m(k){const D=k.target;b(D.files?Array.from(D.files).map(W=>({file:W,entry:null,source:"input"})):null,k),D.value=""}function x(k){const{"onUpdate:fileList":D,onUpdateFileList:W}=e;D&&de(D,k),W&&de(W,k),a.value=k}const y=$(()=>e.multiple||e.directory);function b(k,D){if(!k||k.length===0)return;const{onBeforeUpload:W}=e;k=y.value?k:[k[0]];const{max:L,accept:j}=e;k=k.filter(({file:E,source:Y})=>Y==="dnd"&&(j!=null&&j.trim())?J0(E.name,E.type,j):!0),L&&(k=k.slice(0,L-v.value.length));const V=nt();Promise.all(k.map(({file:E,entry:Y})=>Yi(this,void 0,void 0,function*(){var K;const te={id:nt(),batchId:V,name:E.name,status:"pending",percentage:0,file:E,url:null,type:E.type,thumbnailUrl:null,fullPath:(K=Y==null?void 0:Y.fullPath)!==null&&K!==void 0?K:`/${E.webkitRelativePath||E.name}`};return!W||(yield W({file:te,fileList:v.value}))!==!1?te:null}))).then(E=>Yi(this,void 0,void 0,function*(){let Y=Promise.resolve();E.forEach(K=>{Y=Y.then(ao).then(()=>{K&&I(K,D,{append:!0})})}),yield Y})).then(()=>{e.defaultUpload&&_()})}function _(k){const{method:D,action:W,withCredentials:L,headers:j,data:V,name:E}=e,Y=k!==void 0?v.value.filter(te=>te.id===k):v.value,K=k!==void 0;Y.forEach(te=>{const{status:xe}=te;(xe==="pending"||xe==="error"&&K)&&(e.customRequest?s1({inst:{doChange:I,xhrMap:f,onFinish:e.onFinish,onError:e.onError},file:te,action:W,withCredentials:L,headers:j,data:V,customRequest:e.customRequest}):f1({doChange:I,xhrMap:f,onFinish:e.onFinish,onError:e.onError,isErrorState:e.isErrorState},E,te,{method:D,action:W,withCredentials:L,responseType:e.responseType,headers:j,data:V}))})}const I=(k,D,W={append:!1,remove:!1})=>{const{append:L,remove:j}=W,V=Array.from(v.value),E=V.findIndex(Y=>Y.id===k.id);if(L||j||~E){L?V.push(k):j?V.splice(E,1):V.splice(E,1,k);const{onChange:Y}=e;Y&&Y({file:k,fileList:V,event:D}),x(V)}};function R(k){var D;if(k.thumbnailUrl)return k.thumbnailUrl;const{createThumbnailUrl:W}=e;return W?(D=W(k.file,k))!==null&&D!==void 0?D:k.url||"":k.url?k.url:k.file?q0(k.file):""}const z=$(()=>{const{common:{cubicBezierEaseInOut:k},self:{draggerColor:D,draggerBorder:W,draggerBorderHover:L,itemColorHover:j,itemColorHoverError:V,itemTextColorError:E,itemTextColorSuccess:Y,itemTextColor:K,itemIconColor:te,itemDisabledOpacity:xe,lineHeight:se,borderRadius:ie,fontSize:O,itemBorderImageCardError:B,itemBorderImageCard:G}}=r.value;return{"--n-bezier":k,"--n-border-radius":ie,"--n-dragger-border":W,"--n-dragger-border-hover":L,"--n-dragger-color":D,"--n-font-size":O,"--n-item-color-hover":j,"--n-item-color-hover-error":V,"--n-item-disabled-opacity":xe,"--n-item-icon-color":te,"--n-item-text-color":K,"--n-item-text-color-error":E,"--n-item-text-color-success":Y,"--n-line-height":se,"--n-item-border-image-card-error":B,"--n-item-border-image-card":G}}),C=t?We("upload",void 0,z,e):void 0;De(Zt,{mergedClsPrefixRef:o,mergedThemeRef:r,showCancelButtonRef:le(e,"showCancelButton"),showDownloadButtonRef:le(e,"showDownloadButton"),showRemoveButtonRef:le(e,"showRemoveButton"),showRetryButtonRef:le(e,"showRetryButton"),onRemoveRef:le(e,"onRemove"),onDownloadRef:le(e,"onDownload"),mergedFileListRef:v,triggerClassRef:le(e,"triggerClass"),triggerStyleRef:le(e,"triggerStyle"),shouldUseThumbnailUrlRef:le(e,"shouldUseThumbnailUrl"),renderIconRef:le(e,"renderIcon"),xhrMap:f,submit:_,doChange:I,showPreviewButtonRef:le(e,"showPreviewButton"),onPreviewRef:le(e,"onPreview"),getFileThumbnailUrlResolver:R,listTypeRef:le(e,"listType"),dragOverRef:u,openOpenFileDialog:h,draggerInsideRef:c,handleFileAddition:b,mergedDisabledRef:n.mergedDisabledRef,maxReachedRef:l,fileListClassRef:le(e,"fileListClass"),fileListStyleRef:le(e,"fileListStyle"),abstractRef:le(e,"abstract"),acceptRef:le(e,"accept"),cssVarsRef:t?void 0:z,themeClassRef:C==null?void 0:C.themeClass,onRender:C==null?void 0:C.onRender,showTriggerRef:le(e,"showTrigger"),imageGroupPropsRef:le(e,"imageGroupProps"),mergedDirectoryDndRef:$(()=>{var k;return(k=e.directoryDnd)!==null&&k!==void 0?k:e.directory})});const H={clear:()=>{a.value=[]},submit:_,openOpenFileDialog:h};return Object.assign({mergedClsPrefix:o,draggerInsideRef:c,inputElRef:d,mergedTheme:r,dragOver:u,mergedMultiple:y,cssVars:t?void 0:z,themeClass:C==null?void 0:C.themeClass,onRender:C==null?void 0:C.onRender,handleFileInputChange:m},H)},render(){var e,o;const{draggerInsideRef:t,mergedClsPrefix:r,$slots:n,directory:l,onRender:a}=this;if(n.default&&!this.abstract){const d=n.default()[0];!((e=d==null?void 0:d.type)===null||e===void 0)&&e[ws]&&(t.value=!0)}const s=i("input",Object.assign({},this.inputProps,{ref:"inputElRef",type:"file",class:`${r}-upload-file-input`,accept:this.accept,multiple:this.mergedMultiple,onChange:this.handleFileInputChange,webkitdirectory:l||void 0,directory:l||void 0}));return this.abstract?i(co,null,(o=n.default)===null||o===void 0?void 0:o.call(n),i(ol,{to:"body"},s)):(a==null||a(),i("div",{class:[`${r}-upload`,t.value&&`${r}-upload--dragger-inside`,this.dragOver&&`${r}-upload--drag-over`,this.themeClass],style:this.cssVars},s,this.showTrigger&&this.listType!=="image-card"&&i($s,null,n),this.showFileList&&i(i1,null,n)))}}),p1=()=>({}),v1={name:"Equation",common:ue,self:p1},g1=v1,m1={name:"FloatButtonGroup",common:ue,self(e){const{popoverColor:o,dividerColor:t,borderRadius:r}=e;return{color:o,buttonBorderColor:t,borderRadiusSquare:r,boxShadow:"0 2px 8px 0px rgba(0, 0, 0, .12)"}}},b1=m1,yx={name:"dark",common:ue,Alert:pu,Anchor:$u,AutoComplete:ju,Avatar:Yl,AvatarGroup:Zu,BackTop:ef,Badge:tf,Breadcrumb:ff,Button:Po,ButtonGroup:hg,Calendar:zf,Card:ta,Carousel:Hf,Cascader:Nf,Checkbox:Xt,Code:ra,Collapse:Gf,CollapseTransition:Xf,ColorPicker:Rf,DataTable:Dh,DatePicker:gp,Descriptions:Cp,Dialog:Ra,Divider:Wp,Drawer:qp,Dropdown:Hn,DynamicInput:fv,DynamicTags:Rv,Element:Iv,Empty:It,Ellipsis:fa,Equation:g1,Flex:Fv,Form:Dv,GradientText:vg,Icon:Xh,IconWrapper:gb,Image:xb,Input:Ao,InputNumber:Cg,LegacyTransfer:Db,Layout:$g,List:Ig,LoadingBar:Tg,Log:Og,Menu:Ng,Mention:Mg,Message:ug,Modal:Bp,Notification:lg,PageHeader:Kg,Pagination:ca,Popconfirm:Zg,Popover:Bt,Popselect:na,Progress:Xa,QrCode:v0,Radio:pa,Rate:om,Result:lm,Row:ab,Scrollbar:$o,Select:sa,Skeleton:S0,Slider:dm,Space:Ha,Spin:hm,Statistic:mm,Steps:ym,Switch:Sm,Table:Bm,Tabs:Mm,Tag:_l,Thing:Am,TimePicker:za,Timeline:Wm,Tooltip:Ar,Transfer:Um,Tree:rs,TreeSelect:Ym,Typography:Jm,Upload:rb,Watermark:ib,Split:F0,FloatButton:db,FloatButtonGroup:b1};export{Kv as $,tx as A,Cx as B,j1 as C,W1 as D,q1 as E,V1 as F,rx as G,nx as H,E1 as I,Tc as J,dx as K,_1 as L,Jr as M,bx as N,mx as O,dp as P,U1 as Q,A1 as R,ex as S,O1 as T,ux as U,Z1 as V,ox as W,Pb as X,L1 as Y,hx as Z,xx as _,Y1 as a,Jv as a0,Zv as a1,cx as a2,G1 as a3,K1 as a4,px as a5,zt as b,Q1 as c,X1 as d,Bo as e,vx as f,gx as g,_f as h,Mp as i,Jh as j,fx as k,D1 as l,kb as m,ix as n,M1 as o,H1 as p,yx as q,N1 as r,ax as s,J1 as t,sx as u,lx as v,$s as w,h0 as x,Ln as y,i1 as z}; diff --git a/web/dist/assets/naive-ui-eecf2ec3.js b/web/dist/assets/naive-ui-eecf2ec3.js deleted file mode 100644 index 2998c1f6..00000000 --- a/web/dist/assets/naive-ui-eecf2ec3.js +++ /dev/null @@ -1,3674 +0,0 @@ -import{r as ir,s as Je,c as $e,g as Qt,d as Mo,a as Ko,h as pt,b as J,e as it,f as Qs,p as _o,i as qt,j as Ai}from"./seemly-76b7b838.js";import{A as nn,F as ao,C as Ei,B as Js,D as Go,d as q,i as Se,g as Pr,E as Ke,G as wo,H as D,b as mo,o as lr,I as ed,J as ji,p as Oe,c as R,K as oo,h as i,T as no,L as fn,M as le,N as ko,n as io,O as Lo,P as Jt,Q as od,m as Wn,R as Wi,S as Nr,U as Vr,V as td,t as rd,W as Ni}from"./@vue-a481fc63.js";import{r as Nn,V as vt,a as nd,b as kr,F as hn,c as Ir,d as Br,e as Vn,L as pn,f as id}from"./vueuc-7c8d4b48.js";import{u as We,i as Ct,a as ld,b as so,c as gt,d as ad,e as Vi,f as Ui,g as sd,o as dd}from"./vooks-6d99783e.js";import{m as Tt,u as cd,a as ud,r as fd,g as Ki,k as hd,t as Ur}from"./lodash-es-8412e618.js";import{m as zr}from"./@emotion-8a8e73f6.js";import{c as pd,a as ar}from"./treemate-25c27bff.js";import{c as Ft,m as vd,z as Tr}from"./vdirs-b0483831.js";import{S as gd}from"./async-validator-dee29e8b.js";import{o as Do,a as Ro}from"./evtd-b614532e.js";import{p as md,u as Fr}from"./@css-render-7124a1a5.js";import{d as bd}from"./date-fns-975a2d8f.js";import{C as xd,e as Cd}from"./css-render-6a5c5852.js";function vn(e,o="default",t=[]){const n=e.$slots[o];return n===void 0?t:n()}function go(e,o=[],t){const r={};return o.forEach(n=>{r[n]=e[n]}),Object.assign(r,t)}function _t(e,o=[],t){const r={};return Object.getOwnPropertyNames(e).forEach(l=>{o.includes(l)||(r[l]=e[l])}),Object.assign(r,t)}function tt(e,o=!0,t=[]){return e.forEach(r=>{if(r!==null){if(typeof r!="object"){(typeof r=="string"||typeof r=="number")&&t.push(nn(String(r)));return}if(Array.isArray(r)){tt(r,o,t);return}if(r.type===ao){if(r.children===null)return;Array.isArray(r.children)&&tt(r.children,o,t)}else r.type!==Ei&&t.push(r)}}),t}function ae(e,...o){if(Array.isArray(e))e.forEach(t=>ae(t,...o));else return e(...o)}function yo(e){return Object.keys(e)}const qe=(e,...o)=>typeof e=="function"?e(...o):typeof e=="string"?nn(e):typeof e=="number"?nn(String(e)):null;function qo(e,o){console.error(`[naive/${e}]: ${o}`)}function Eo(e,o){throw new Error(`[naive/${e}]: ${o}`)}function Un(e){switch(e){case"tiny":return"mini";case"small":return"tiny";case"medium":return"small";case"large":return"medium";case"huge":return"large"}throw Error(`${e} has no smaller size.`)}function Gi(e){switch(typeof e){case"string":return e||void 0;case"number":return String(e);default:return}}function ln(e,o="default",t=void 0){const r=e[o];if(!r)return qo("getFirstSlotVNode",`slot[${o}] is empty`),null;const n=tt(r(t));return n.length===1?n[0]:(qo("getFirstSlotVNode",`slot[${o}] should have exactly one child`),null)}function qi(e){return o=>{o?e.value=o.$el:e.value=null}}function sr(e){return e.some(o=>Js(o)?!(o.type===Ei||o.type===ao&&!sr(o.children)):!0)?e:null}function lo(e,o){return e&&sr(e())||o()}function an(e,o,t){return e&&sr(e(o))||t(o)}function Ee(e,o){const t=e&&sr(e());return o(t||null)}function ht(e){return!(e&&sr(e()))}function Zt(e){const o=e.filter(t=>t!==void 0);if(o.length!==0)return o.length===1?o[0]:t=>{e.forEach(r=>{r&&r(t)})}}function yd(e){var o;const t=(o=e.dirs)===null||o===void 0?void 0:o.find(({dir:r})=>r===Go);return!!(t&&t.value===!1)}const sn=q({render(){var e,o;return(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e)}}),wd=/^(\d|\.)+$/,Kn=/(\d|\.)+/;function eo(e,{c:o=1,offset:t=0,attachPx:r=!0}={}){if(typeof e=="number"){const n=(e+t)*o;return n===0?"0":`${n}px`}else if(typeof e=="string")if(wd.test(e)){const n=(Number(e)+t)*o;return r?n===0?"0":`${n}px`:`${n}`}else{const n=Kn.exec(e);return n?e.replace(Kn,String((Number(n[0])+t)*o)):e}return e}function Ot(e){return e.replace(/#|\(|\)|,|\s/g,"_")}function W(e,o){return e+(o==="default"?"":o.replace(/^[a-z]/,t=>t.toUpperCase()))}W("abc","def");const Sd="n",er=`.${Sd}-`,zd="__",$d="--",Yi=xd(),Xi=md({blockPrefix:er,elementPrefix:zd,modifierPrefix:$d});Yi.use(Xi);const{c:C,find:u1}=Yi,{cB:g,cE:y,cM:P,cNotM:je}=Xi;function Or(e){return C(({props:{bPrefix:o}})=>`${o||er}modal, ${o||er}drawer`,[e])}function gn(e){return C(({props:{bPrefix:o}})=>`${o||er}popover`,[e])}function Zi(e){return C(({props:{bPrefix:o}})=>`&${o||er}modal`,e)}const Rd=(...e)=>C(">",[g(...e)]);let Kr;function Pd(){return Kr===void 0&&(Kr=navigator.userAgent.includes("Node.js")||navigator.userAgent.includes("jsdom")),Kr}const jo=typeof document<"u"&&typeof window<"u",Qi=new WeakSet;function kd(e){Qi.add(e)}function Ji(e){return!Qi.has(e)}function Id(e,o,t){var r;const n=Se(e,null);if(n===null)return;const l=(r=Pr())===null||r===void 0?void 0:r.proxy;Ke(t,a),a(t.value),wo(()=>{a(void 0,t.value)});function a(c,u){const f=n[o];u!==void 0&&s(f,u),c!==void 0&&d(f,c)}function s(c,u){c[u]||(c[u]=[]),c[u].splice(c[u].findIndex(f=>f===l),1)}function d(c,u){c[u]||(c[u]=[]),~c[u].findIndex(f=>f===l)||c[u].push(l)}}function Bd(e,o,t){if(!o)return e;const r=D(e.value);let n=null;return Ke(e,l=>{n!==null&&window.clearTimeout(n),l===!0?t&&!t.value?r.value=!0:n=window.setTimeout(()=>{r.value=!0},o):r.value=!1}),r}const mn="n-internal-select-menu",el="n-internal-select-menu-body",dr="n-modal-body",ol="n-modal",cr="n-drawer-body",bn="n-drawer",Dt="n-popover-body",tl="__disabled__";function Io(e){const o=Se(dr,null),t=Se(cr,null),r=Se(Dt,null),n=Se(el,null),l=D();if(typeof document<"u"){l.value=document.fullscreenElement;const a=()=>{l.value=document.fullscreenElement};mo(()=>{Do("fullscreenchange",document,a)}),wo(()=>{Ro("fullscreenchange",document,a)})}return We(()=>{var a;const{to:s}=e;return s!==void 0?s===!1?tl:s===!0?l.value||"body":s:o!=null&&o.value?(a=o.value.$el)!==null&&a!==void 0?a:o.value:t!=null&&t.value?t.value:r!=null&&r.value?r.value:n!=null&&n.value?n.value:s??(l.value||"body")})}Io.tdkey=tl;Io.propTo={type:[String,Object,Boolean],default:void 0};let Gn=!1;function rl(){if(jo&&window.CSS&&!Gn&&(Gn=!0,"registerProperty"in(window==null?void 0:window.CSS)))try{CSS.registerProperty({name:"--n-color-start",syntax:"",inherits:!1,initialValue:"#0000"}),CSS.registerProperty({name:"--n-color-end",syntax:"",inherits:!1,initialValue:"#0000"})}catch{}}function nl(e,o){o&&(mo(()=>{const{value:t}=e;t&&Nn.registerHandler(t,o)}),wo(()=>{const{value:t}=e;t&&Nn.unregisterHandler(t)}))}let Pt=0,qn="",Yn="",Xn="",Zn="";const Qn=D("0px");function il(e){if(typeof document>"u")return;const o=document.documentElement;let t,r=!1;const n=()=>{o.style.marginRight=qn,o.style.overflow=Yn,o.style.overflowX=Xn,o.style.overflowY=Zn,Qn.value="0px"};mo(()=>{t=Ke(e,l=>{if(l){if(!Pt){const a=window.innerWidth-o.offsetWidth;a>0&&(qn=o.style.marginRight,o.style.marginRight=`${a}px`,Qn.value=`${a}px`),Yn=o.style.overflow,Xn=o.style.overflowX,Zn=o.style.overflowY,o.style.overflow="hidden",o.style.overflowX="hidden",o.style.overflowY="hidden"}r=!0,Pt++}else Pt--,Pt||n(),r=!1},{immediate:!0})}),wo(()=>{t==null||t(),r&&(Pt--,Pt||n(),r=!1)})}const xn=D(!1),Jn=()=>{xn.value=!0},ei=()=>{xn.value=!1};let Yt=0;const ll=()=>(jo&&(lr(()=>{Yt||(window.addEventListener("compositionstart",Jn),window.addEventListener("compositionend",ei)),Yt++}),wo(()=>{Yt<=1?(window.removeEventListener("compositionstart",Jn),window.removeEventListener("compositionend",ei),Yt=0):Yt--})),xn);function Td(e){const o={isDeactivated:!1};let t=!1;return ed(()=>{if(o.isDeactivated=!1,!t){t=!0;return}e()}),ji(()=>{o.isDeactivated=!0,t||(t=!0)}),o}const $r="n-form-item";function rt(e,{defaultSize:o="medium",mergedSize:t,mergedDisabled:r}={}){const n=Se($r,null);Oe($r,null);const l=R(t?()=>t(n):()=>{const{size:d}=e;if(d)return d;if(n){const{mergedSize:c}=n;if(c.value!==void 0)return c.value}return o}),a=R(r?()=>r(n):()=>{const{disabled:d}=e;return d!==void 0?d:n?n.disabled.value:!1}),s=R(()=>{const{status:d}=e;return d||(n==null?void 0:n.mergedValidationStatus.value)});return wo(()=>{n&&n.restoreValidation()}),{mergedSizeRef:l,mergedDisabledRef:a,mergedStatusRef:s,nTriggerFormBlur(){n&&n.handleContentBlur()},nTriggerFormChange(){n&&n.handleContentChange()},nTriggerFormFocus(){n&&n.handleContentFocus()},nTriggerFormInput(){n&&n.handleContentInput()}}}const So={fontFamily:'v-sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"',fontFamilyMono:"v-mono, SFMono-Regular, Menlo, Consolas, Courier, monospace",fontWeight:"400",fontWeightStrong:"500",cubicBezierEaseInOut:"cubic-bezier(.4, 0, .2, 1)",cubicBezierEaseOut:"cubic-bezier(0, 0, .2, 1)",cubicBezierEaseIn:"cubic-bezier(.4, 0, 1, 1)",borderRadius:"3px",borderRadiusSmall:"2px",fontSize:"14px",fontSizeMini:"12px",fontSizeTiny:"12px",fontSizeSmall:"14px",fontSizeMedium:"14px",fontSizeLarge:"15px",fontSizeHuge:"16px",lineHeight:"1.6",heightMini:"16px",heightTiny:"22px",heightSmall:"28px",heightMedium:"34px",heightLarge:"40px",heightHuge:"46px"},{fontSize:Fd,fontFamily:Od,lineHeight:Md}=So,al=C("body",` - margin: 0; - font-size: ${Fd}; - font-family: ${Od}; - line-height: ${Md}; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: transparent; -`,[C("input",` - font-family: inherit; - font-size: inherit; - `)]),Yo="n-config-provider",or="naive-ui-style";function ne(e,o,t,r,n,l){const a=Fr(),s=Se(Yo,null);if(t){const c=()=>{const u=l==null?void 0:l.value;t.mount({id:u===void 0?o:u+o,head:!0,props:{bPrefix:u?`.${u}-`:void 0},anchorMetaName:or,ssr:a}),s!=null&&s.preflightStyleDisabled||al.mount({id:"n-global",head:!0,anchorMetaName:or,ssr:a})};a?c():lr(c)}return R(()=>{var c;const{theme:{common:u,self:f,peers:p={}}={},themeOverrides:v={},builtinThemeOverrides:h={}}=n,{common:m,peers:b}=v,{common:x=void 0,[e]:{common:S=void 0,self:B=void 0,peers:T={}}={}}=(s==null?void 0:s.mergedThemeRef.value)||{},{common:z=void 0,[e]:I={}}=(s==null?void 0:s.mergedThemeOverridesRef.value)||{},{common:w,peers:O={}}=I,k=Tt({},u||S||x||r.common,z,w,m),$=Tt((c=f||B||r.self)===null||c===void 0?void 0:c(k),h,I,v);return{common:k,self:$,peers:Tt({},r.peers,T,p),peerOverrides:Tt({},h.peers,O,b)}})}ne.props={theme:Object,themeOverrides:Object,builtinThemeOverrides:Object};const sl="n";function ke(e={},o={defaultBordered:!0}){const t=Se(Yo,null);return{inlineThemeDisabled:t==null?void 0:t.inlineThemeDisabled,mergedRtlRef:t==null?void 0:t.mergedRtlRef,mergedComponentPropsRef:t==null?void 0:t.mergedComponentPropsRef,mergedBreakpointsRef:t==null?void 0:t.mergedBreakpointsRef,mergedBorderedRef:R(()=>{var r,n;const{bordered:l}=e;return l!==void 0?l:(n=(r=t==null?void 0:t.mergedBorderedRef.value)!==null&&r!==void 0?r:o.defaultBordered)!==null&&n!==void 0?n:!0}),mergedClsPrefixRef:R(()=>(t==null?void 0:t.mergedClsPrefixRef.value)||sl),namespaceRef:R(()=>t==null?void 0:t.mergedNamespaceRef.value)}}const _d={name:"en-US",global:{undo:"Undo",redo:"Redo",confirm:"Confirm",clear:"Clear"},Popconfirm:{positiveText:"Confirm",negativeText:"Cancel"},Cascader:{placeholder:"Please Select",loading:"Loading",loadingRequiredMessage:e=>`Please load all ${e}'s descendants before checking it.`},Time:{dateFormat:"yyyy-MM-dd",dateTimeFormat:"yyyy-MM-dd HH:mm:ss"},DatePicker:{yearFormat:"yyyy",monthFormat:"MMM",dayFormat:"eeeeee",yearTypeFormat:"yyyy",monthTypeFormat:"yyyy-MM",dateFormat:"yyyy-MM-dd",dateTimeFormat:"yyyy-MM-dd HH:mm:ss",quarterFormat:"yyyy-qqq",clear:"Clear",now:"Now",confirm:"Confirm",selectTime:"Select Time",selectDate:"Select Date",datePlaceholder:"Select Date",datetimePlaceholder:"Select Date and Time",monthPlaceholder:"Select Month",yearPlaceholder:"Select Year",quarterPlaceholder:"Select Quarter",startDatePlaceholder:"Start Date",endDatePlaceholder:"End Date",startDatetimePlaceholder:"Start Date and Time",endDatetimePlaceholder:"End Date and Time",startMonthPlaceholder:"Start Month",endMonthPlaceholder:"End Month",monthBeforeYear:!0,firstDayOfWeek:6,today:"Today"},DataTable:{checkTableAll:"Select all in the table",uncheckTableAll:"Unselect all in the table",confirm:"Confirm",clear:"Clear"},LegacyTransfer:{sourceTitle:"Source",targetTitle:"Target"},Transfer:{selectAll:"Select all",unselectAll:"Unselect all",clearAll:"Clear",total:e=>`Total ${e} items`,selected:e=>`${e} items selected`},Empty:{description:"No Data"},Select:{placeholder:"Please Select"},TimePicker:{placeholder:"Select Time",positiveText:"OK",negativeText:"Cancel",now:"Now"},Pagination:{goto:"Goto",selectionSuffix:"page"},DynamicTags:{add:"Add"},Log:{loading:"Loading"},Input:{placeholder:"Please Input"},InputNumber:{placeholder:"Please Input"},DynamicInput:{create:"Create"},ThemeEditor:{title:"Theme Editor",clearAllVars:"Clear All Variables",clearSearch:"Clear Search",filterCompName:"Filter Component Name",filterVarName:"Filter Variable Name",import:"Import",export:"Export",restore:"Reset to Default"},Image:{tipPrevious:"Previous picture (←)",tipNext:"Next picture (→)",tipCounterclockwise:"Counterclockwise",tipClockwise:"Clockwise",tipZoomOut:"Zoom out",tipZoomIn:"Zoom in",tipClose:"Close (Esc)",tipOriginalSize:"Zoom to original size"}},Dd=_d,Ld={name:"en-US",locale:bd},Hd=Ld;function Xo(e){const{mergedLocaleRef:o,mergedDateLocaleRef:t}=Se(Yo,null)||{},r=R(()=>{var l,a;return(a=(l=o==null?void 0:o.value)===null||l===void 0?void 0:l[e])!==null&&a!==void 0?a:Dd[e]});return{dateLocaleRef:R(()=>{var l;return(l=t==null?void 0:t.value)!==null&&l!==void 0?l:Hd}),localeRef:r}}function Zo(e,o,t){if(!o)return;const r=Fr(),n=Se(Yo,null),l=()=>{const a=t==null?void 0:t.value;o.mount({id:a===void 0?e:a+e,head:!0,anchorMetaName:or,props:{bPrefix:a?`.${a}-`:void 0},ssr:r}),n!=null&&n.preflightStyleDisabled||al.mount({id:"n-global",head:!0,anchorMetaName:or,ssr:r})};r?l():lr(l)}function Ae(e,o,t,r){var n;t||Eo("useThemeClass","cssVarsRef is not passed");const l=(n=Se(Yo,null))===null||n===void 0?void 0:n.mergedThemeHashRef,a=D(""),s=Fr();let d;const c=`__${e}`,u=()=>{let f=c;const p=o?o.value:void 0,v=l==null?void 0:l.value;v&&(f+="-"+v),p&&(f+="-"+p);const{themeOverrides:h,builtinThemeOverrides:m}=r;h&&(f+="-"+zr(JSON.stringify(h))),m&&(f+="-"+zr(JSON.stringify(m))),a.value=f,d=()=>{const b=t.value;let x="";for(const S in b)x+=`${S}: ${b[S]};`;C(`.${f}`,x).mount({id:f,ssr:s}),d=void 0}};return oo(()=>{u()}),{themeClass:a,onRender:()=>{d==null||d()}}}function to(e,o,t){if(!o)return;const r=Fr(),n=R(()=>{const{value:a}=o;if(!a)return;const s=a[e];if(s)return s}),l=()=>{oo(()=>{const{value:a}=t,s=`${a}${e}Rtl`;if(Cd(s,r))return;const{value:d}=n;d&&d.style.mount({id:s,head:!0,anchorMetaName:or,props:{bPrefix:a?`.${a}-`:void 0},ssr:r})})};return r?l():lr(l),n}const tr=q({name:"Add",render(){return i("svg",{width:"512",height:"512",viewBox:"0 0 512 512",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M256 112V400M400 256H112",stroke:"currentColor","stroke-width":"32","stroke-linecap":"round","stroke-linejoin":"round"}))}}),Ad=q({name:"ArrowDown",render(){return i("svg",{viewBox:"0 0 28 28",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1","fill-rule":"evenodd"},i("g",{"fill-rule":"nonzero"},i("path",{d:"M23.7916,15.2664 C24.0788,14.9679 24.0696,14.4931 23.7711,14.206 C23.4726,13.9188 22.9978,13.928 22.7106,14.2265 L14.7511,22.5007 L14.7511,3.74792 C14.7511,3.33371 14.4153,2.99792 14.0011,2.99792 C13.5869,2.99792 13.2511,3.33371 13.2511,3.74793 L13.2511,22.4998 L5.29259,14.2265 C5.00543,13.928 4.53064,13.9188 4.23213,14.206 C3.93361,14.4931 3.9244,14.9679 4.21157,15.2664 L13.2809,24.6944 C13.6743,25.1034 14.3289,25.1034 14.7223,24.6944 L23.7916,15.2664 Z"}))))}}),Ed=q({name:"ArrowUp",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},i("g",{fill:"none"},i("path",{d:"M3.13 9.163a.5.5 0 1 0 .74.674L9.5 3.67V17.5a.5.5 0 0 0 1 0V3.672l5.63 6.165a.5.5 0 0 0 .738-.674l-6.315-6.916a.746.746 0 0 0-.632-.24a.746.746 0 0 0-.476.24L3.131 9.163z",fill:"currentColor"})))}});function bo(e,o){return q({name:cd(e),setup(){var t;const r=(t=Se(Yo,null))===null||t===void 0?void 0:t.mergedIconsRef;return()=>{var n;const l=(n=r==null?void 0:r.value)===null||n===void 0?void 0:n[e];return l?l():o}}})}const jd=bo("attach",i("svg",{viewBox:"0 0 16 16",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M3.25735931,8.70710678 L7.85355339,4.1109127 C8.82986412,3.13460197 10.4127766,3.13460197 11.3890873,4.1109127 C12.365398,5.08722343 12.365398,6.67013588 11.3890873,7.64644661 L6.08578644,12.9497475 C5.69526215,13.3402718 5.06209717,13.3402718 4.67157288,12.9497475 C4.28104858,12.5592232 4.28104858,11.9260582 4.67157288,11.5355339 L9.97487373,6.23223305 C10.1701359,6.0369709 10.1701359,5.72038841 9.97487373,5.52512627 C9.77961159,5.32986412 9.4630291,5.32986412 9.26776695,5.52512627 L3.96446609,10.8284271 C3.18341751,11.6094757 3.18341751,12.8758057 3.96446609,13.6568542 C4.74551468,14.4379028 6.01184464,14.4379028 6.79289322,13.6568542 L12.0961941,8.35355339 C13.4630291,6.98671837 13.4630291,4.77064094 12.0961941,3.40380592 C10.7293591,2.0369709 8.51328163,2.0369709 7.14644661,3.40380592 L2.55025253,8 C2.35499039,8.19526215 2.35499039,8.51184464 2.55025253,8.70710678 C2.74551468,8.90236893 3.06209717,8.90236893 3.25735931,8.70710678 Z"}))))),oi=q({name:"Backward",render(){return i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M12.2674 15.793C11.9675 16.0787 11.4927 16.0672 11.2071 15.7673L6.20572 10.5168C5.9298 10.2271 5.9298 9.7719 6.20572 9.48223L11.2071 4.23177C11.4927 3.93184 11.9675 3.92031 12.2674 4.206C12.5673 4.49169 12.5789 4.96642 12.2932 5.26634L7.78458 9.99952L12.2932 14.7327C12.5789 15.0326 12.5673 15.5074 12.2674 15.793Z",fill:"currentColor"}))}}),Wd=q({name:"Checkmark",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16"},i("g",{fill:"none"},i("path",{d:"M14.046 3.486a.75.75 0 0 1-.032 1.06l-7.93 7.474a.85.85 0 0 1-1.188-.022l-2.68-2.72a.75.75 0 1 1 1.068-1.053l2.234 2.267l7.468-7.038a.75.75 0 0 1 1.06.032z",fill:"currentColor"})))}}),Nd=q({name:"ChevronRight",render(){return i("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M5.64645 3.14645C5.45118 3.34171 5.45118 3.65829 5.64645 3.85355L9.79289 8L5.64645 12.1464C5.45118 12.3417 5.45118 12.6583 5.64645 12.8536C5.84171 13.0488 6.15829 13.0488 6.35355 12.8536L10.8536 8.35355C11.0488 8.15829 11.0488 7.84171 10.8536 7.64645L6.35355 3.14645C6.15829 2.95118 5.84171 2.95118 5.64645 3.14645Z",fill:"currentColor"}))}}),Vd=bo("close",i("svg",{viewBox:"0 0 12 12",version:"1.1",xmlns:"http://www.w3.org/2000/svg","aria-hidden":!0},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M2.08859116,2.2156945 L2.14644661,2.14644661 C2.32001296,1.97288026 2.58943736,1.95359511 2.7843055,2.08859116 L2.85355339,2.14644661 L6,5.293 L9.14644661,2.14644661 C9.34170876,1.95118446 9.65829124,1.95118446 9.85355339,2.14644661 C10.0488155,2.34170876 10.0488155,2.65829124 9.85355339,2.85355339 L6.707,6 L9.85355339,9.14644661 C10.0271197,9.32001296 10.0464049,9.58943736 9.91140884,9.7843055 L9.85355339,9.85355339 C9.67998704,10.0271197 9.41056264,10.0464049 9.2156945,9.91140884 L9.14644661,9.85355339 L6,6.707 L2.85355339,9.85355339 C2.65829124,10.0488155 2.34170876,10.0488155 2.14644661,9.85355339 C1.95118446,9.65829124 1.95118446,9.34170876 2.14644661,9.14644661 L5.293,6 L2.14644661,2.85355339 C1.97288026,2.67998704 1.95359511,2.41056264 2.08859116,2.2156945 L2.14644661,2.14644661 L2.08859116,2.2156945 Z"}))))),dl=q({name:"Eye",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},i("path",{d:"M255.66 112c-77.94 0-157.89 45.11-220.83 135.33a16 16 0 0 0-.27 17.77C82.92 340.8 161.8 400 255.66 400c92.84 0 173.34-59.38 221.79-135.25a16.14 16.14 0 0 0 0-17.47C428.89 172.28 347.8 112 255.66 112z",fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"32"}),i("circle",{cx:"256",cy:"256",r:"80",fill:"none",stroke:"currentColor","stroke-miterlimit":"10","stroke-width":"32"}))}}),Ud=q({name:"EyeOff",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},i("path",{d:"M432 448a15.92 15.92 0 0 1-11.31-4.69l-352-352a16 16 0 0 1 22.62-22.62l352 352A16 16 0 0 1 432 448z",fill:"currentColor"}),i("path",{d:"M255.66 384c-41.49 0-81.5-12.28-118.92-36.5c-34.07-22-64.74-53.51-88.7-91v-.08c19.94-28.57 41.78-52.73 65.24-72.21a2 2 0 0 0 .14-2.94L93.5 161.38a2 2 0 0 0-2.71-.12c-24.92 21-48.05 46.76-69.08 76.92a31.92 31.92 0 0 0-.64 35.54c26.41 41.33 60.4 76.14 98.28 100.65C162 402 207.9 416 255.66 416a239.13 239.13 0 0 0 75.8-12.58a2 2 0 0 0 .77-3.31l-21.58-21.58a4 4 0 0 0-3.83-1a204.8 204.8 0 0 1-51.16 6.47z",fill:"currentColor"}),i("path",{d:"M490.84 238.6c-26.46-40.92-60.79-75.68-99.27-100.53C349 110.55 302 96 255.66 96a227.34 227.34 0 0 0-74.89 12.83a2 2 0 0 0-.75 3.31l21.55 21.55a4 4 0 0 0 3.88 1a192.82 192.82 0 0 1 50.21-6.69c40.69 0 80.58 12.43 118.55 37c34.71 22.4 65.74 53.88 89.76 91a.13.13 0 0 1 0 .16a310.72 310.72 0 0 1-64.12 72.73a2 2 0 0 0-.15 2.95l19.9 19.89a2 2 0 0 0 2.7.13a343.49 343.49 0 0 0 68.64-78.48a32.2 32.2 0 0 0-.1-34.78z",fill:"currentColor"}),i("path",{d:"M256 160a95.88 95.88 0 0 0-21.37 2.4a2 2 0 0 0-1 3.38l112.59 112.56a2 2 0 0 0 3.38-1A96 96 0 0 0 256 160z",fill:"currentColor"}),i("path",{d:"M165.78 233.66a2 2 0 0 0-3.38 1a96 96 0 0 0 115 115a2 2 0 0 0 1-3.38z",fill:"currentColor"}))}}),Kd=bo("trash",i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},i("path",{d:"M432,144,403.33,419.74A32,32,0,0,1,371.55,448H140.46a32,32,0,0,1-31.78-28.26L80,144",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 32px;"}),i("rect",{x:"32",y:"64",width:"448",height:"80",rx:"16",ry:"16",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 32px;"}),i("line",{x1:"312",y1:"240",x2:"200",y2:"352",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 32px;"}),i("line",{x1:"312",y1:"352",x2:"200",y2:"240",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 32px;"}))),Gd=bo("download",i("svg",{viewBox:"0 0 16 16",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M3.5,13 L12.5,13 C12.7761424,13 13,13.2238576 13,13.5 C13,13.7454599 12.8231248,13.9496084 12.5898756,13.9919443 L12.5,14 L3.5,14 C3.22385763,14 3,13.7761424 3,13.5 C3,13.2545401 3.17687516,13.0503916 3.41012437,13.0080557 L3.5,13 L12.5,13 L3.5,13 Z M7.91012437,1.00805567 L8,1 C8.24545989,1 8.44960837,1.17687516 8.49194433,1.41012437 L8.5,1.5 L8.5,10.292 L11.1819805,7.6109127 C11.3555469,7.43734635 11.6249713,7.4180612 11.8198394,7.55305725 L11.8890873,7.6109127 C12.0626536,7.78447906 12.0819388,8.05390346 11.9469427,8.2487716 L11.8890873,8.31801948 L8.35355339,11.8535534 C8.17998704,12.0271197 7.91056264,12.0464049 7.7156945,11.9114088 L7.64644661,11.8535534 L4.1109127,8.31801948 C3.91565056,8.12275734 3.91565056,7.80617485 4.1109127,7.6109127 C4.28447906,7.43734635 4.55390346,7.4180612 4.7487716,7.55305725 L4.81801948,7.6109127 L7.5,10.292 L7.5,1.5 C7.5,1.25454011 7.67687516,1.05039163 7.91012437,1.00805567 L8,1 L7.91012437,1.00805567 Z"}))))),qd=q({name:"Empty",render(){return i("svg",{viewBox:"0 0 28 28",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M26 7.5C26 11.0899 23.0899 14 19.5 14C15.9101 14 13 11.0899 13 7.5C13 3.91015 15.9101 1 19.5 1C23.0899 1 26 3.91015 26 7.5ZM16.8536 4.14645C16.6583 3.95118 16.3417 3.95118 16.1464 4.14645C15.9512 4.34171 15.9512 4.65829 16.1464 4.85355L18.7929 7.5L16.1464 10.1464C15.9512 10.3417 15.9512 10.6583 16.1464 10.8536C16.3417 11.0488 16.6583 11.0488 16.8536 10.8536L19.5 8.20711L22.1464 10.8536C22.3417 11.0488 22.6583 11.0488 22.8536 10.8536C23.0488 10.6583 23.0488 10.3417 22.8536 10.1464L20.2071 7.5L22.8536 4.85355C23.0488 4.65829 23.0488 4.34171 22.8536 4.14645C22.6583 3.95118 22.3417 3.95118 22.1464 4.14645L19.5 6.79289L16.8536 4.14645Z",fill:"currentColor"}),i("path",{d:"M25 22.75V12.5991C24.5572 13.0765 24.053 13.4961 23.5 13.8454V16H17.5L17.3982 16.0068C17.0322 16.0565 16.75 16.3703 16.75 16.75C16.75 18.2688 15.5188 19.5 14 19.5C12.4812 19.5 11.25 18.2688 11.25 16.75L11.2432 16.6482C11.1935 16.2822 10.8797 16 10.5 16H4.5V7.25C4.5 6.2835 5.2835 5.5 6.25 5.5H12.2696C12.4146 4.97463 12.6153 4.47237 12.865 4H6.25C4.45507 4 3 5.45507 3 7.25V22.75C3 24.5449 4.45507 26 6.25 26H21.75C23.5449 26 25 24.5449 25 22.75ZM4.5 22.75V17.5H9.81597L9.85751 17.7041C10.2905 19.5919 11.9808 21 14 21L14.215 20.9947C16.2095 20.8953 17.842 19.4209 18.184 17.5H23.5V22.75C23.5 23.7165 22.7165 24.5 21.75 24.5H6.25C5.2835 24.5 4.5 23.7165 4.5 22.75Z",fill:"currentColor"}))}}),Lt=bo("error",i("svg",{viewBox:"0 0 48 48",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1","fill-rule":"evenodd"},i("g",{"fill-rule":"nonzero"},i("path",{d:"M24,4 C35.045695,4 44,12.954305 44,24 C44,35.045695 35.045695,44 24,44 C12.954305,44 4,35.045695 4,24 C4,12.954305 12.954305,4 24,4 Z M17.8838835,16.1161165 L17.7823881,16.0249942 C17.3266086,15.6583353 16.6733914,15.6583353 16.2176119,16.0249942 L16.1161165,16.1161165 L16.0249942,16.2176119 C15.6583353,16.6733914 15.6583353,17.3266086 16.0249942,17.7823881 L16.1161165,17.8838835 L22.233,24 L16.1161165,30.1161165 L16.0249942,30.2176119 C15.6583353,30.6733914 15.6583353,31.3266086 16.0249942,31.7823881 L16.1161165,31.8838835 L16.2176119,31.9750058 C16.6733914,32.3416647 17.3266086,32.3416647 17.7823881,31.9750058 L17.8838835,31.8838835 L24,25.767 L30.1161165,31.8838835 L30.2176119,31.9750058 C30.6733914,32.3416647 31.3266086,32.3416647 31.7823881,31.9750058 L31.8838835,31.8838835 L31.9750058,31.7823881 C32.3416647,31.3266086 32.3416647,30.6733914 31.9750058,30.2176119 L31.8838835,30.1161165 L25.767,24 L31.8838835,17.8838835 L31.9750058,17.7823881 C32.3416647,17.3266086 32.3416647,16.6733914 31.9750058,16.2176119 L31.8838835,16.1161165 L31.7823881,16.0249942 C31.3266086,15.6583353 30.6733914,15.6583353 30.2176119,16.0249942 L30.1161165,16.1161165 L24,22.233 L17.8838835,16.1161165 L17.7823881,16.0249942 L17.8838835,16.1161165 Z"}))))),ti=q({name:"FastBackward",render(){return i("svg",{viewBox:"0 0 20 20",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M8.73171,16.7949 C9.03264,17.0795 9.50733,17.0663 9.79196,16.7654 C10.0766,16.4644 10.0634,15.9897 9.76243,15.7051 L4.52339,10.75 L17.2471,10.75 C17.6613,10.75 17.9971,10.4142 17.9971,10 C17.9971,9.58579 17.6613,9.25 17.2471,9.25 L4.52112,9.25 L9.76243,4.29275 C10.0634,4.00812 10.0766,3.53343 9.79196,3.2325 C9.50733,2.93156 9.03264,2.91834 8.73171,3.20297 L2.31449,9.27241 C2.14819,9.4297 2.04819,9.62981 2.01448,9.8386 C2.00308,9.89058 1.99707,9.94459 1.99707,10 C1.99707,10.0576 2.00356,10.1137 2.01585,10.1675 C2.05084,10.3733 2.15039,10.5702 2.31449,10.7254 L8.73171,16.7949 Z"}))))}}),ri=q({name:"FastForward",render(){return i("svg",{viewBox:"0 0 20 20",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M11.2654,3.20511 C10.9644,2.92049 10.4897,2.93371 10.2051,3.23464 C9.92049,3.53558 9.93371,4.01027 10.2346,4.29489 L15.4737,9.25 L2.75,9.25 C2.33579,9.25 2,9.58579 2,10.0000012 C2,10.4142 2.33579,10.75 2.75,10.75 L15.476,10.75 L10.2346,15.7073 C9.93371,15.9919 9.92049,16.4666 10.2051,16.7675 C10.4897,17.0684 10.9644,17.0817 11.2654,16.797 L17.6826,10.7276 C17.8489,10.5703 17.9489,10.3702 17.9826,10.1614 C17.994,10.1094 18,10.0554 18,10.0000012 C18,9.94241 17.9935,9.88633 17.9812,9.83246 C17.9462,9.62667 17.8467,9.42976 17.6826,9.27455 L11.2654,3.20511 Z"}))))}}),ni=q({name:"Forward",render(){return i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M7.73271 4.20694C8.03263 3.92125 8.50737 3.93279 8.79306 4.23271L13.7944 9.48318C14.0703 9.77285 14.0703 10.2281 13.7944 10.5178L8.79306 15.7682C8.50737 16.0681 8.03263 16.0797 7.73271 15.794C7.43279 15.5083 7.42125 15.0336 7.70694 14.7336L12.2155 10.0005L7.70694 5.26729C7.42125 4.96737 7.43279 4.49264 7.73271 4.20694Z",fill:"currentColor"}))}}),mt=bo("info",i("svg",{viewBox:"0 0 28 28",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1","fill-rule":"evenodd"},i("g",{"fill-rule":"nonzero"},i("path",{d:"M14,2 C20.6274,2 26,7.37258 26,14 C26,20.6274 20.6274,26 14,26 C7.37258,26 2,20.6274 2,14 C2,7.37258 7.37258,2 14,2 Z M14,11 C13.4477,11 13,11.4477 13,12 L13,12 L13,20 C13,20.5523 13.4477,21 14,21 C14.5523,21 15,20.5523 15,20 L15,20 L15,12 C15,11.4477 14.5523,11 14,11 Z M14,6.75 C13.3096,6.75 12.75,7.30964 12.75,8 C12.75,8.69036 13.3096,9.25 14,9.25 C14.6904,9.25 15.25,8.69036 15.25,8 C15.25,7.30964 14.6904,6.75 14,6.75 Z"}))))),ii=q({name:"More",render(){return i("svg",{viewBox:"0 0 16 16",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M4,7 C4.55228,7 5,7.44772 5,8 C5,8.55229 4.55228,9 4,9 C3.44772,9 3,8.55229 3,8 C3,7.44772 3.44772,7 4,7 Z M8,7 C8.55229,7 9,7.44772 9,8 C9,8.55229 8.55229,9 8,9 C7.44772,9 7,8.55229 7,8 C7,7.44772 7.44772,7 8,7 Z M12,7 C12.5523,7 13,7.44772 13,8 C13,8.55229 12.5523,9 12,9 C11.4477,9 11,8.55229 11,8 C11,7.44772 11.4477,7 12,7 Z"}))))}}),cl=q({name:"Remove",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},i("line",{x1:"400",y1:"256",x2:"112",y2:"256",style:` - fill: none; - stroke: currentColor; - stroke-linecap: round; - stroke-linejoin: round; - stroke-width: 32px; - `}))}}),Ht=bo("success",i("svg",{viewBox:"0 0 48 48",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1","fill-rule":"evenodd"},i("g",{"fill-rule":"nonzero"},i("path",{d:"M24,4 C35.045695,4 44,12.954305 44,24 C44,35.045695 35.045695,44 24,44 C12.954305,44 4,35.045695 4,24 C4,12.954305 12.954305,4 24,4 Z M32.6338835,17.6161165 C32.1782718,17.1605048 31.4584514,17.1301307 30.9676119,17.5249942 L30.8661165,17.6161165 L20.75,27.732233 L17.1338835,24.1161165 C16.6457281,23.6279612 15.8542719,23.6279612 15.3661165,24.1161165 C14.9105048,24.5717282 14.8801307,25.2915486 15.2749942,25.7823881 L15.3661165,25.8838835 L19.8661165,30.3838835 C20.3217282,30.8394952 21.0415486,30.8698693 21.5323881,30.4750058 L21.6338835,30.3838835 L32.6338835,19.3838835 C33.1220388,18.8957281 33.1220388,18.1042719 32.6338835,17.6161165 Z"}))))),yt=bo("warning",i("svg",{viewBox:"0 0 24 24",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1","fill-rule":"evenodd"},i("g",{"fill-rule":"nonzero"},i("path",{d:"M12,2 C17.523,2 22,6.478 22,12 C22,17.522 17.523,22 12,22 C6.477,22 2,17.522 2,12 C2,6.478 6.477,2 12,2 Z M12.0018002,15.0037242 C11.450254,15.0037242 11.0031376,15.4508407 11.0031376,16.0023869 C11.0031376,16.553933 11.450254,17.0010495 12.0018002,17.0010495 C12.5533463,17.0010495 13.0004628,16.553933 13.0004628,16.0023869 C13.0004628,15.4508407 12.5533463,15.0037242 12.0018002,15.0037242 Z M11.99964,7 C11.4868042,7.00018474 11.0642719,7.38637706 11.0066858,7.8837365 L11,8.00036004 L11.0018003,13.0012393 L11.00857,13.117858 C11.0665141,13.6151758 11.4893244,14.0010638 12.0021602,14.0008793 C12.514996,14.0006946 12.9375283,13.6145023 12.9951144,13.1171428 L13.0018002,13.0005193 L13,7.99964009 L12.9932303,7.8830214 C12.9352861,7.38570354 12.5124758,6.99981552 11.99964,7 Z"}))))),Yd=bo("cancel",i("svg",{viewBox:"0 0 16 16",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M2.58859116,2.7156945 L2.64644661,2.64644661 C2.82001296,2.47288026 3.08943736,2.45359511 3.2843055,2.58859116 L3.35355339,2.64644661 L8,7.293 L12.6464466,2.64644661 C12.8417088,2.45118446 13.1582912,2.45118446 13.3535534,2.64644661 C13.5488155,2.84170876 13.5488155,3.15829124 13.3535534,3.35355339 L8.707,8 L13.3535534,12.6464466 C13.5271197,12.820013 13.5464049,13.0894374 13.4114088,13.2843055 L13.3535534,13.3535534 C13.179987,13.5271197 12.9105626,13.5464049 12.7156945,13.4114088 L12.6464466,13.3535534 L8,8.707 L3.35355339,13.3535534 C3.15829124,13.5488155 2.84170876,13.5488155 2.64644661,13.3535534 C2.45118446,13.1582912 2.45118446,12.8417088 2.64644661,12.6464466 L7.293,8 L2.64644661,3.35355339 C2.47288026,3.17998704 2.45359511,2.91056264 2.58859116,2.7156945 L2.64644661,2.64644661 L2.58859116,2.7156945 Z"}))))),Xd=q({name:"ChevronDown",render(){return i("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M3.14645 5.64645C3.34171 5.45118 3.65829 5.45118 3.85355 5.64645L8 9.79289L12.1464 5.64645C12.3417 5.45118 12.6583 5.45118 12.8536 5.64645C13.0488 5.84171 13.0488 6.15829 12.8536 6.35355L8.35355 10.8536C8.15829 11.0488 7.84171 11.0488 7.64645 10.8536L3.14645 6.35355C2.95118 6.15829 2.95118 5.84171 3.14645 5.64645Z",fill:"currentColor"}))}}),Zd=bo("clear",i("svg",{viewBox:"0 0 16 16",version:"1.1",xmlns:"http://www.w3.org/2000/svg"},i("g",{stroke:"none","stroke-width":"1",fill:"none","fill-rule":"evenodd"},i("g",{fill:"currentColor","fill-rule":"nonzero"},i("path",{d:"M8,2 C11.3137085,2 14,4.6862915 14,8 C14,11.3137085 11.3137085,14 8,14 C4.6862915,14 2,11.3137085 2,8 C2,4.6862915 4.6862915,2 8,2 Z M6.5343055,5.83859116 C6.33943736,5.70359511 6.07001296,5.72288026 5.89644661,5.89644661 L5.89644661,5.89644661 L5.83859116,5.9656945 C5.70359511,6.16056264 5.72288026,6.42998704 5.89644661,6.60355339 L5.89644661,6.60355339 L7.293,8 L5.89644661,9.39644661 L5.83859116,9.4656945 C5.70359511,9.66056264 5.72288026,9.92998704 5.89644661,10.1035534 L5.89644661,10.1035534 L5.9656945,10.1614088 C6.16056264,10.2964049 6.42998704,10.2771197 6.60355339,10.1035534 L6.60355339,10.1035534 L8,8.707 L9.39644661,10.1035534 L9.4656945,10.1614088 C9.66056264,10.2964049 9.92998704,10.2771197 10.1035534,10.1035534 L10.1035534,10.1035534 L10.1614088,10.0343055 C10.2964049,9.83943736 10.2771197,9.57001296 10.1035534,9.39644661 L10.1035534,9.39644661 L8.707,8 L10.1035534,6.60355339 L10.1614088,6.5343055 C10.2964049,6.33943736 10.2771197,6.07001296 10.1035534,5.89644661 L10.1035534,5.89644661 L10.0343055,5.83859116 C9.83943736,5.70359511 9.57001296,5.72288026 9.39644661,5.89644661 L9.39644661,5.89644661 L8,7.293 L6.60355339,5.89644661 Z"}))))),Qd=q({name:"ChevronDownFilled",render(){return i("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M3.20041 5.73966C3.48226 5.43613 3.95681 5.41856 4.26034 5.70041L8 9.22652L11.7397 5.70041C12.0432 5.41856 12.5177 5.43613 12.7996 5.73966C13.0815 6.0432 13.0639 6.51775 12.7603 6.7996L8.51034 10.7996C8.22258 11.0668 7.77743 11.0668 7.48967 10.7996L3.23966 6.7996C2.93613 6.51775 2.91856 6.0432 3.20041 5.73966Z",fill:"currentColor"}))}}),Jd=bo("retry",i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 512"},i("path",{d:"M320,146s24.36-12-64-12A160,160,0,1,0,416,294",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-miterlimit: 10; stroke-width: 32px;"}),i("polyline",{points:"256 58 336 138 256 218",style:"fill: none; stroke: currentcolor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 32px;"}))),ec=bo("rotateClockwise",i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M3 10C3 6.13401 6.13401 3 10 3C13.866 3 17 6.13401 17 10C17 12.7916 15.3658 15.2026 13 16.3265V14.5C13 14.2239 12.7761 14 12.5 14C12.2239 14 12 14.2239 12 14.5V17.5C12 17.7761 12.2239 18 12.5 18H15.5C15.7761 18 16 17.7761 16 17.5C16 17.2239 15.7761 17 15.5 17H13.8758C16.3346 15.6357 18 13.0128 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10C2 10.2761 2.22386 10.5 2.5 10.5C2.77614 10.5 3 10.2761 3 10Z",fill:"currentColor"}),i("path",{d:"M10 12C11.1046 12 12 11.1046 12 10C12 8.89543 11.1046 8 10 8C8.89543 8 8 8.89543 8 10C8 11.1046 8.89543 12 10 12ZM10 11C9.44772 11 9 10.5523 9 10C9 9.44772 9.44772 9 10 9C10.5523 9 11 9.44772 11 10C11 10.5523 10.5523 11 10 11Z",fill:"currentColor"}))),oc=bo("rotateClockwise",i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M17 10C17 6.13401 13.866 3 10 3C6.13401 3 3 6.13401 3 10C3 12.7916 4.63419 15.2026 7 16.3265V14.5C7 14.2239 7.22386 14 7.5 14C7.77614 14 8 14.2239 8 14.5V17.5C8 17.7761 7.77614 18 7.5 18H4.5C4.22386 18 4 17.7761 4 17.5C4 17.2239 4.22386 17 4.5 17H6.12422C3.66539 15.6357 2 13.0128 2 10C2 5.58172 5.58172 2 10 2C14.4183 2 18 5.58172 18 10C18 10.2761 17.7761 10.5 17.5 10.5C17.2239 10.5 17 10.2761 17 10Z",fill:"currentColor"}),i("path",{d:"M10 12C8.89543 12 8 11.1046 8 10C8 8.89543 8.89543 8 10 8C11.1046 8 12 8.89543 12 10C12 11.1046 11.1046 12 10 12ZM10 11C10.5523 11 11 10.5523 11 10C11 9.44772 10.5523 9 10 9C9.44772 9 9 9.44772 9 10C9 10.5523 9.44772 11 10 11Z",fill:"currentColor"}))),tc=bo("zoomIn",i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M11.5 8.5C11.5 8.22386 11.2761 8 11 8H9V6C9 5.72386 8.77614 5.5 8.5 5.5C8.22386 5.5 8 5.72386 8 6V8H6C5.72386 8 5.5 8.22386 5.5 8.5C5.5 8.77614 5.72386 9 6 9H8V11C8 11.2761 8.22386 11.5 8.5 11.5C8.77614 11.5 9 11.2761 9 11V9H11C11.2761 9 11.5 8.77614 11.5 8.5Z",fill:"currentColor"}),i("path",{d:"M8.5 3C11.5376 3 14 5.46243 14 8.5C14 9.83879 13.5217 11.0659 12.7266 12.0196L16.8536 16.1464C17.0488 16.3417 17.0488 16.6583 16.8536 16.8536C16.68 17.0271 16.4106 17.0464 16.2157 16.9114L16.1464 16.8536L12.0196 12.7266C11.0659 13.5217 9.83879 14 8.5 14C5.46243 14 3 11.5376 3 8.5C3 5.46243 5.46243 3 8.5 3ZM8.5 4C6.01472 4 4 6.01472 4 8.5C4 10.9853 6.01472 13 8.5 13C10.9853 13 13 10.9853 13 8.5C13 6.01472 10.9853 4 8.5 4Z",fill:"currentColor"}))),rc=bo("zoomOut",i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M11 8C11.2761 8 11.5 8.22386 11.5 8.5C11.5 8.77614 11.2761 9 11 9H6C5.72386 9 5.5 8.77614 5.5 8.5C5.5 8.22386 5.72386 8 6 8H11Z",fill:"currentColor"}),i("path",{d:"M14 8.5C14 5.46243 11.5376 3 8.5 3C5.46243 3 3 5.46243 3 8.5C3 11.5376 5.46243 14 8.5 14C9.83879 14 11.0659 13.5217 12.0196 12.7266L16.1464 16.8536L16.2157 16.9114C16.4106 17.0464 16.68 17.0271 16.8536 16.8536C17.0488 16.6583 17.0488 16.3417 16.8536 16.1464L12.7266 12.0196C13.5217 11.0659 14 9.83879 14 8.5ZM4 8.5C4 6.01472 6.01472 4 8.5 4C10.9853 4 13 6.01472 13 8.5C13 10.9853 10.9853 13 8.5 13C6.01472 13 4 10.9853 4 8.5Z",fill:"currentColor"}))),nc=q({name:"ResizeSmall",render(){return i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20"},i("g",{fill:"none"},i("path",{d:"M5.5 4A1.5 1.5 0 0 0 4 5.5v1a.5.5 0 0 1-1 0v-1A2.5 2.5 0 0 1 5.5 3h1a.5.5 0 0 1 0 1h-1zM16 5.5A1.5 1.5 0 0 0 14.5 4h-1a.5.5 0 0 1 0-1h1A2.5 2.5 0 0 1 17 5.5v1a.5.5 0 0 1-1 0v-1zm0 9a1.5 1.5 0 0 1-1.5 1.5h-1a.5.5 0 0 0 0 1h1a2.5 2.5 0 0 0 2.5-2.5v-1a.5.5 0 0 0-1 0v1zm-12 0A1.5 1.5 0 0 0 5.5 16h1.25a.5.5 0 0 1 0 1H5.5A2.5 2.5 0 0 1 3 14.5v-1.25a.5.5 0 0 1 1 0v1.25zM8.5 7A1.5 1.5 0 0 0 7 8.5v3A1.5 1.5 0 0 0 8.5 13h3a1.5 1.5 0 0 0 1.5-1.5v-3A1.5 1.5 0 0 0 11.5 7h-3zM8 8.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3z",fill:"currentColor"})))}}),At=q({name:"BaseIconSwitchTransition",setup(e,{slots:o}){const t=Ct();return()=>i(no,{name:"icon-switch-transition",appear:t.value},o)}}),wt=q({name:"FadeInExpandTransition",props:{appear:Boolean,group:Boolean,mode:String,onLeave:Function,onAfterLeave:Function,onAfterEnter:Function,width:Boolean,reverse:Boolean},setup(e,{slots:o}){function t(s){e.width?s.style.maxWidth=`${s.offsetWidth}px`:s.style.maxHeight=`${s.offsetHeight}px`,s.offsetWidth}function r(s){e.width?s.style.maxWidth="0":s.style.maxHeight="0",s.offsetWidth;const{onLeave:d}=e;d&&d()}function n(s){e.width?s.style.maxWidth="":s.style.maxHeight="";const{onAfterLeave:d}=e;d&&d()}function l(s){if(s.style.transition="none",e.width){const d=s.offsetWidth;s.style.maxWidth="0",s.offsetWidth,s.style.transition="",s.style.maxWidth=`${d}px`}else if(e.reverse)s.style.maxHeight=`${s.offsetHeight}px`,s.offsetHeight,s.style.transition="",s.style.maxHeight="0";else{const d=s.offsetHeight;s.style.maxHeight="0",s.offsetWidth,s.style.transition="",s.style.maxHeight=`${d}px`}s.offsetWidth}function a(s){var d;e.width?s.style.maxWidth="":e.reverse||(s.style.maxHeight=""),(d=e.onAfterEnter)===null||d===void 0||d.call(e)}return()=>{const{group:s,width:d,appear:c,mode:u}=e,f=s?fn:no,p={name:d?"fade-in-width-expand-transition":"fade-in-height-expand-transition",appear:c,onEnter:l,onAfterEnter:a,onBeforeLeave:t,onLeave:r,onAfterLeave:n};return s||(p.mode=u),i(f,p,o)}}}),ic=g("base-icon",` - height: 1em; - width: 1em; - line-height: 1em; - text-align: center; - display: inline-block; - position: relative; - fill: currentColor; - transform: translateZ(0); -`,[C("svg",` - height: 1em; - width: 1em; - `)]),De=q({name:"BaseIcon",props:{role:String,ariaLabel:String,ariaDisabled:{type:Boolean,default:void 0},ariaHidden:{type:Boolean,default:void 0},clsPrefix:{type:String,required:!0},onClick:Function,onMousedown:Function,onMouseup:Function},setup(e){Zo("-base-icon",ic,le(e,"clsPrefix"))},render(){return i("i",{class:`${this.clsPrefix}-base-icon`,onClick:this.onClick,onMousedown:this.onMousedown,onMouseup:this.onMouseup,role:this.role,"aria-label":this.ariaLabel,"aria-hidden":this.ariaHidden,"aria-disabled":this.ariaDisabled},this.$slots)}}),lc=g("base-close",` - display: flex; - align-items: center; - justify-content: center; - cursor: pointer; - background-color: transparent; - color: var(--n-close-icon-color); - border-radius: var(--n-close-border-radius); - height: var(--n-close-size); - width: var(--n-close-size); - font-size: var(--n-close-icon-size); - outline: none; - border: none; - position: relative; - padding: 0; -`,[P("absolute",` - height: var(--n-close-icon-size); - width: var(--n-close-icon-size); - `),C("&::before",` - content: ""; - position: absolute; - width: var(--n-close-size); - height: var(--n-close-size); - left: 50%; - top: 50%; - transform: translateY(-50%) translateX(-50%); - transition: inherit; - border-radius: inherit; - `),je("disabled",[C("&:hover",` - color: var(--n-close-icon-color-hover); - `),C("&:hover::before",` - background-color: var(--n-close-color-hover); - `),C("&:focus::before",` - background-color: var(--n-close-color-hover); - `),C("&:active",` - color: var(--n-close-icon-color-pressed); - `),C("&:active::before",` - background-color: var(--n-close-color-pressed); - `)]),P("disabled",` - cursor: not-allowed; - color: var(--n-close-icon-color-disabled); - background-color: transparent; - `),P("round",[C("&::before",` - border-radius: 50%; - `)])]),St=q({name:"BaseClose",props:{isButtonTag:{type:Boolean,default:!0},clsPrefix:{type:String,required:!0},disabled:{type:Boolean,default:void 0},focusable:{type:Boolean,default:!0},round:Boolean,onClick:Function,absolute:Boolean},setup(e){return Zo("-base-close",lc,le(e,"clsPrefix")),()=>{const{clsPrefix:o,disabled:t,absolute:r,round:n,isButtonTag:l}=e;return i(l?"button":"div",{type:l?"button":void 0,tabindex:t||!e.focusable?-1:0,"aria-disabled":t,"aria-label":"close",role:l?void 0:"button",disabled:t,class:[`${o}-base-close`,r&&`${o}-base-close--absolute`,t&&`${o}-base-close--disabled`,n&&`${o}-base-close--round`],onMousedown:s=>{e.focusable||s.preventDefault()},onClick:e.onClick},i(De,{clsPrefix:o},{default:()=>i(Vd,null)}))}}}),ac=q({props:{onFocus:Function,onBlur:Function},setup(e){return()=>i("div",{style:"width: 0; height: 0",tabindex:0,onFocus:e.onFocus,onBlur:e.onBlur})}}),{cubicBezierEaseInOut:sc}=So;function lt({originalTransform:e="",left:o=0,top:t=0,transition:r=`all .3s ${sc} !important`}={}){return[C("&.icon-switch-transition-enter-from, &.icon-switch-transition-leave-to",{transform:e+" scale(0.75)",left:o,top:t,opacity:0}),C("&.icon-switch-transition-enter-to, &.icon-switch-transition-leave-from",{transform:`scale(1) ${e}`,left:o,top:t,opacity:1}),C("&.icon-switch-transition-enter-active, &.icon-switch-transition-leave-active",{transformOrigin:"center",position:"absolute",left:o,top:t,transition:r})]}const dc=C([C("@keyframes loading-container-rotate",` - to { - -webkit-transform: rotate(360deg); - transform: rotate(360deg); - } - `),C("@keyframes loading-layer-rotate",` - 12.5% { - -webkit-transform: rotate(135deg); - transform: rotate(135deg); - } - 25% { - -webkit-transform: rotate(270deg); - transform: rotate(270deg); - } - 37.5% { - -webkit-transform: rotate(405deg); - transform: rotate(405deg); - } - 50% { - -webkit-transform: rotate(540deg); - transform: rotate(540deg); - } - 62.5% { - -webkit-transform: rotate(675deg); - transform: rotate(675deg); - } - 75% { - -webkit-transform: rotate(810deg); - transform: rotate(810deg); - } - 87.5% { - -webkit-transform: rotate(945deg); - transform: rotate(945deg); - } - 100% { - -webkit-transform: rotate(1080deg); - transform: rotate(1080deg); - } - `),C("@keyframes loading-left-spin",` - from { - -webkit-transform: rotate(265deg); - transform: rotate(265deg); - } - 50% { - -webkit-transform: rotate(130deg); - transform: rotate(130deg); - } - to { - -webkit-transform: rotate(265deg); - transform: rotate(265deg); - } - `),C("@keyframes loading-right-spin",` - from { - -webkit-transform: rotate(-265deg); - transform: rotate(-265deg); - } - 50% { - -webkit-transform: rotate(-130deg); - transform: rotate(-130deg); - } - to { - -webkit-transform: rotate(-265deg); - transform: rotate(-265deg); - } - `),g("base-loading",` - position: relative; - line-height: 0; - width: 1em; - height: 1em; - `,[y("transition-wrapper",` - position: absolute; - width: 100%; - height: 100%; - `,[lt()]),y("container",` - display: inline-flex; - position: relative; - direction: ltr; - line-height: 0; - animation: loading-container-rotate 1568.2352941176ms linear infinite; - font-size: 0; - letter-spacing: 0; - white-space: nowrap; - opacity: 1; - width: 100%; - height: 100%; - `,[y("svg",` - stroke: var(--n-text-color); - fill: transparent; - position: absolute; - height: 100%; - overflow: hidden; - `),y("container-layer",` - position: absolute; - width: 100%; - height: 100%; - animation: loading-layer-rotate 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; - `,[y("container-layer-left",` - display: inline-flex; - position: relative; - width: 50%; - height: 100%; - overflow: hidden; - `,[y("svg",` - animation: loading-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; - width: 200%; - `)]),y("container-layer-patch",` - position: absolute; - top: 0; - left: 47.5%; - box-sizing: border-box; - width: 5%; - height: 100%; - overflow: hidden; - `,[y("svg",` - left: -900%; - width: 2000%; - transform: rotate(180deg); - `)]),y("container-layer-right",` - display: inline-flex; - position: relative; - width: 50%; - height: 100%; - overflow: hidden; - `,[y("svg",` - animation: loading-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both; - left: -100%; - width: 200%; - `)])])]),y("placeholder",` - position: absolute; - left: 50%; - top: 50%; - transform: translateX(-50%) translateY(-50%); - `,[lt({left:"50%",top:"50%",originalTransform:"translateX(-50%) translateY(-50%)"})])])]),cc={strokeWidth:{type:Number,default:28},stroke:{type:String,default:void 0}},Et=q({name:"BaseLoading",props:Object.assign({clsPrefix:{type:String,required:!0},show:{type:Boolean,default:!0},scale:{type:Number,default:1},radius:{type:Number,default:100}},cc),setup(e){Zo("-base-loading",dc,le(e,"clsPrefix"))},render(){const{clsPrefix:e,radius:o,strokeWidth:t,stroke:r,scale:n}=this,l=o/n;return i("div",{class:`${e}-base-loading`,role:"img","aria-label":"loading"},i(At,null,{default:()=>this.show?i("div",{key:"icon",class:`${e}-base-loading__transition-wrapper`},i("div",{class:`${e}-base-loading__container`},i("div",{class:`${e}-base-loading__container-layer`},i("div",{class:`${e}-base-loading__container-layer-left`},i("svg",{class:`${e}-base-loading__svg`,viewBox:`0 0 ${2*l} ${2*l}`,xmlns:"http://www.w3.org/2000/svg",style:{color:r}},i("circle",{fill:"none",stroke:"currentColor","stroke-width":t,"stroke-linecap":"round",cx:l,cy:l,r:o-t/2,"stroke-dasharray":4.91*o,"stroke-dashoffset":2.46*o}))),i("div",{class:`${e}-base-loading__container-layer-patch`},i("svg",{class:`${e}-base-loading__svg`,viewBox:`0 0 ${2*l} ${2*l}`,xmlns:"http://www.w3.org/2000/svg",style:{color:r}},i("circle",{fill:"none",stroke:"currentColor","stroke-width":t,"stroke-linecap":"round",cx:l,cy:l,r:o-t/2,"stroke-dasharray":4.91*o,"stroke-dashoffset":2.46*o}))),i("div",{class:`${e}-base-loading__container-layer-right`},i("svg",{class:`${e}-base-loading__svg`,viewBox:`0 0 ${2*l} ${2*l}`,xmlns:"http://www.w3.org/2000/svg",style:{color:r}},i("circle",{fill:"none",stroke:"currentColor","stroke-width":t,"stroke-linecap":"round",cx:l,cy:l,r:o-t/2,"stroke-dasharray":4.91*o,"stroke-dashoffset":2.46*o})))))):i("div",{key:"placeholder",class:`${e}-base-loading__placeholder`},this.$slots)}))}}),we={neutralBase:"#000",neutralInvertBase:"#fff",neutralTextBase:"#fff",neutralPopover:"rgb(72, 72, 78)",neutralCard:"rgb(24, 24, 28)",neutralModal:"rgb(44, 44, 50)",neutralBody:"rgb(16, 16, 20)",alpha1:"0.9",alpha2:"0.82",alpha3:"0.52",alpha4:"0.38",alpha5:"0.28",alphaClose:"0.52",alphaDisabled:"0.38",alphaDisabledInput:"0.06",alphaPending:"0.09",alphaTablePending:"0.06",alphaTableStriped:"0.05",alphaPressed:"0.05",alphaAvatar:"0.18",alphaRail:"0.2",alphaProgressRail:"0.12",alphaBorder:"0.24",alphaDivider:"0.09",alphaInput:"0.1",alphaAction:"0.06",alphaTab:"0.04",alphaScrollbar:"0.2",alphaScrollbarHover:"0.3",alphaCode:"0.12",alphaTag:"0.2",primaryHover:"#7fe7c4",primaryDefault:"#63e2b7",primaryActive:"#5acea7",primarySuppl:"rgb(42, 148, 125)",infoHover:"#8acbec",infoDefault:"#70c0e8",infoActive:"#66afd3",infoSuppl:"rgb(56, 137, 197)",errorHover:"#e98b8b",errorDefault:"#e88080",errorActive:"#e57272",errorSuppl:"rgb(208, 58, 82)",warningHover:"#f5d599",warningDefault:"#f2c97d",warningActive:"#e6c260",warningSuppl:"rgb(240, 138, 0)",successHover:"#7fe7c4",successDefault:"#63e2b7",successActive:"#5acea7",successSuppl:"rgb(42, 148, 125)"},uc=ir(we.neutralBase),ul=ir(we.neutralInvertBase),fc="rgba("+ul.slice(0,3).join(", ")+", ";function Ne(e){return fc+String(e)+")"}function hc(e){const o=Array.from(ul);return o[3]=Number(e),$e(uc,o)}const pc=Object.assign(Object.assign({name:"common"},So),{baseColor:we.neutralBase,primaryColor:we.primaryDefault,primaryColorHover:we.primaryHover,primaryColorPressed:we.primaryActive,primaryColorSuppl:we.primarySuppl,infoColor:we.infoDefault,infoColorHover:we.infoHover,infoColorPressed:we.infoActive,infoColorSuppl:we.infoSuppl,successColor:we.successDefault,successColorHover:we.successHover,successColorPressed:we.successActive,successColorSuppl:we.successSuppl,warningColor:we.warningDefault,warningColorHover:we.warningHover,warningColorPressed:we.warningActive,warningColorSuppl:we.warningSuppl,errorColor:we.errorDefault,errorColorHover:we.errorHover,errorColorPressed:we.errorActive,errorColorSuppl:we.errorSuppl,textColorBase:we.neutralTextBase,textColor1:Ne(we.alpha1),textColor2:Ne(we.alpha2),textColor3:Ne(we.alpha3),textColorDisabled:Ne(we.alpha4),placeholderColor:Ne(we.alpha4),placeholderColorDisabled:Ne(we.alpha5),iconColor:Ne(we.alpha4),iconColorDisabled:Ne(we.alpha5),iconColorHover:Ne(Number(we.alpha4)*1.25),iconColorPressed:Ne(Number(we.alpha4)*.8),opacity1:we.alpha1,opacity2:we.alpha2,opacity3:we.alpha3,opacity4:we.alpha4,opacity5:we.alpha5,dividerColor:Ne(we.alphaDivider),borderColor:Ne(we.alphaBorder),closeIconColorHover:Ne(Number(we.alphaClose)),closeIconColor:Ne(Number(we.alphaClose)),closeIconColorPressed:Ne(Number(we.alphaClose)),closeColorHover:"rgba(255, 255, 255, .12)",closeColorPressed:"rgba(255, 255, 255, .08)",clearColor:Ne(we.alpha4),clearColorHover:Je(Ne(we.alpha4),{alpha:1.25}),clearColorPressed:Je(Ne(we.alpha4),{alpha:.8}),scrollbarColor:Ne(we.alphaScrollbar),scrollbarColorHover:Ne(we.alphaScrollbarHover),scrollbarWidth:"5px",scrollbarHeight:"5px",scrollbarBorderRadius:"5px",progressRailColor:Ne(we.alphaProgressRail),railColor:Ne(we.alphaRail),popoverColor:we.neutralPopover,tableColor:we.neutralCard,cardColor:we.neutralCard,modalColor:we.neutralModal,bodyColor:we.neutralBody,tagColor:hc(we.alphaTag),avatarColor:Ne(we.alphaAvatar),invertedColor:we.neutralBase,inputColor:Ne(we.alphaInput),codeColor:Ne(we.alphaCode),tabColor:Ne(we.alphaTab),actionColor:Ne(we.alphaAction),tableHeaderColor:Ne(we.alphaAction),hoverColor:Ne(we.alphaPending),tableColorHover:Ne(we.alphaTablePending),tableColorStriped:Ne(we.alphaTableStriped),pressedColor:Ne(we.alphaPressed),opacityDisabled:we.alphaDisabled,inputColorDisabled:Ne(we.alphaDisabledInput),buttonColor2:"rgba(255, 255, 255, .08)",buttonColor2Hover:"rgba(255, 255, 255, .12)",buttonColor2Pressed:"rgba(255, 255, 255, .08)",boxShadow1:"0 1px 2px -2px rgba(0, 0, 0, .24), 0 3px 6px 0 rgba(0, 0, 0, .18), 0 5px 12px 4px rgba(0, 0, 0, .12)",boxShadow2:"0 3px 6px -4px rgba(0, 0, 0, .24), 0 6px 12px 0 rgba(0, 0, 0, .16), 0 9px 18px 8px rgba(0, 0, 0, .10)",boxShadow3:"0 6px 16px -9px rgba(0, 0, 0, .08), 0 9px 28px 0 rgba(0, 0, 0, .05), 0 12px 48px 16px rgba(0, 0, 0, .03)"}),fe=pc,Be={neutralBase:"#FFF",neutralInvertBase:"#000",neutralTextBase:"#000",neutralPopover:"#fff",neutralCard:"#fff",neutralModal:"#fff",neutralBody:"#fff",alpha1:"0.82",alpha2:"0.72",alpha3:"0.38",alpha4:"0.24",alpha5:"0.18",alphaClose:"0.6",alphaDisabled:"0.5",alphaDisabledInput:"0.02",alphaPending:"0.05",alphaTablePending:"0.02",alphaPressed:"0.07",alphaAvatar:"0.2",alphaRail:"0.14",alphaProgressRail:".08",alphaBorder:"0.12",alphaDivider:"0.06",alphaInput:"0",alphaAction:"0.02",alphaTab:"0.04",alphaScrollbar:"0.25",alphaScrollbarHover:"0.4",alphaCode:"0.05",alphaTag:"0.02",primaryHover:"#36ad6a",primaryDefault:"#18a058",primaryActive:"#0c7a43",primarySuppl:"#36ad6a",infoHover:"#4098fc",infoDefault:"#2080f0",infoActive:"#1060c9",infoSuppl:"#4098fc",errorHover:"#de576d",errorDefault:"#d03050",errorActive:"#ab1f3f",errorSuppl:"#de576d",warningHover:"#fcb040",warningDefault:"#f0a020",warningActive:"#c97c10",warningSuppl:"#fcb040",successHover:"#36ad6a",successDefault:"#18a058",successActive:"#0c7a43",successSuppl:"#36ad6a"},vc=ir(Be.neutralBase),fl=ir(Be.neutralInvertBase),gc="rgba("+fl.slice(0,3).join(", ")+", ";function li(e){return gc+String(e)+")"}function ho(e){const o=Array.from(fl);return o[3]=Number(e),$e(vc,o)}const mc=Object.assign(Object.assign({name:"common"},So),{baseColor:Be.neutralBase,primaryColor:Be.primaryDefault,primaryColorHover:Be.primaryHover,primaryColorPressed:Be.primaryActive,primaryColorSuppl:Be.primarySuppl,infoColor:Be.infoDefault,infoColorHover:Be.infoHover,infoColorPressed:Be.infoActive,infoColorSuppl:Be.infoSuppl,successColor:Be.successDefault,successColorHover:Be.successHover,successColorPressed:Be.successActive,successColorSuppl:Be.successSuppl,warningColor:Be.warningDefault,warningColorHover:Be.warningHover,warningColorPressed:Be.warningActive,warningColorSuppl:Be.warningSuppl,errorColor:Be.errorDefault,errorColorHover:Be.errorHover,errorColorPressed:Be.errorActive,errorColorSuppl:Be.errorSuppl,textColorBase:Be.neutralTextBase,textColor1:"rgb(31, 34, 37)",textColor2:"rgb(51, 54, 57)",textColor3:"rgb(118, 124, 130)",textColorDisabled:ho(Be.alpha4),placeholderColor:ho(Be.alpha4),placeholderColorDisabled:ho(Be.alpha5),iconColor:ho(Be.alpha4),iconColorHover:Je(ho(Be.alpha4),{lightness:.75}),iconColorPressed:Je(ho(Be.alpha4),{lightness:.9}),iconColorDisabled:ho(Be.alpha5),opacity1:Be.alpha1,opacity2:Be.alpha2,opacity3:Be.alpha3,opacity4:Be.alpha4,opacity5:Be.alpha5,dividerColor:"rgb(239, 239, 245)",borderColor:"rgb(224, 224, 230)",closeIconColor:ho(Number(Be.alphaClose)),closeIconColorHover:ho(Number(Be.alphaClose)),closeIconColorPressed:ho(Number(Be.alphaClose)),closeColorHover:"rgba(0, 0, 0, .09)",closeColorPressed:"rgba(0, 0, 0, .13)",clearColor:ho(Be.alpha4),clearColorHover:Je(ho(Be.alpha4),{lightness:.75}),clearColorPressed:Je(ho(Be.alpha4),{lightness:.9}),scrollbarColor:li(Be.alphaScrollbar),scrollbarColorHover:li(Be.alphaScrollbarHover),scrollbarWidth:"5px",scrollbarHeight:"5px",scrollbarBorderRadius:"5px",progressRailColor:ho(Be.alphaProgressRail),railColor:"rgb(219, 219, 223)",popoverColor:Be.neutralPopover,tableColor:Be.neutralCard,cardColor:Be.neutralCard,modalColor:Be.neutralModal,bodyColor:Be.neutralBody,tagColor:"#eee",avatarColor:ho(Be.alphaAvatar),invertedColor:"rgb(0, 20, 40)",inputColor:ho(Be.alphaInput),codeColor:"rgb(244, 244, 248)",tabColor:"rgb(247, 247, 250)",actionColor:"rgb(250, 250, 252)",tableHeaderColor:"rgb(250, 250, 252)",hoverColor:"rgb(243, 243, 245)",tableColorHover:"rgba(0, 0, 100, 0.03)",tableColorStriped:"rgba(0, 0, 100, 0.02)",pressedColor:"rgb(237, 237, 239)",opacityDisabled:Be.alphaDisabled,inputColorDisabled:"rgb(250, 250, 252)",buttonColor2:"rgba(46, 51, 56, .05)",buttonColor2Hover:"rgba(46, 51, 56, .09)",buttonColor2Pressed:"rgba(46, 51, 56, .13)",boxShadow1:"0 1px 2px -2px rgba(0, 0, 0, .08), 0 3px 6px 0 rgba(0, 0, 0, .06), 0 5px 12px 4px rgba(0, 0, 0, .04)",boxShadow2:"0 3px 6px -4px rgba(0, 0, 0, .12), 0 6px 16px 0 rgba(0, 0, 0, .08), 0 9px 28px 8px rgba(0, 0, 0, .05)",boxShadow3:"0 6px 16px -9px rgba(0, 0, 0, .08), 0 9px 28px 0 rgba(0, 0, 0, .05), 0 12px 48px 16px rgba(0, 0, 0, .03)"}),Le=mc,bc={iconSizeSmall:"34px",iconSizeMedium:"40px",iconSizeLarge:"46px",iconSizeHuge:"52px"},hl=e=>{const{textColorDisabled:o,iconColor:t,textColor2:r,fontSizeSmall:n,fontSizeMedium:l,fontSizeLarge:a,fontSizeHuge:s}=e;return Object.assign(Object.assign({},bc),{fontSizeSmall:n,fontSizeMedium:l,fontSizeLarge:a,fontSizeHuge:s,textColor:o,iconColor:t,extraTextColor:r})},xc={name:"Empty",common:Le,self:hl},Cn=xc,Cc={name:"Empty",common:fe,self:hl},zt=Cc,yc=g("empty",` - display: flex; - flex-direction: column; - align-items: center; - font-size: var(--n-font-size); -`,[y("icon",` - width: var(--n-icon-size); - height: var(--n-icon-size); - font-size: var(--n-icon-size); - line-height: var(--n-icon-size); - color: var(--n-icon-color); - transition: - color .3s var(--n-bezier); - `,[C("+",[y("description",` - margin-top: 8px; - `)])]),y("description",` - transition: color .3s var(--n-bezier); - color: var(--n-text-color); - `),y("extra",` - text-align: center; - transition: color .3s var(--n-bezier); - margin-top: 12px; - color: var(--n-extra-text-color); - `)]),wc=Object.assign(Object.assign({},ne.props),{description:String,showDescription:{type:Boolean,default:!0},showIcon:{type:Boolean,default:!0},size:{type:String,default:"medium"},renderIcon:Function}),Sc=q({name:"Empty",props:wc,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=ne("Empty","-empty",yc,Cn,e,o),{localeRef:n}=Xo("Empty"),l=Se(Yo,null),a=R(()=>{var u,f,p;return(u=e.description)!==null&&u!==void 0?u:(p=(f=l==null?void 0:l.mergedComponentPropsRef.value)===null||f===void 0?void 0:f.Empty)===null||p===void 0?void 0:p.description}),s=R(()=>{var u,f;return((f=(u=l==null?void 0:l.mergedComponentPropsRef.value)===null||u===void 0?void 0:u.Empty)===null||f===void 0?void 0:f.renderIcon)||(()=>i(qd,null))}),d=R(()=>{const{size:u}=e,{common:{cubicBezierEaseInOut:f},self:{[W("iconSize",u)]:p,[W("fontSize",u)]:v,textColor:h,iconColor:m,extraTextColor:b}}=r.value;return{"--n-icon-size":p,"--n-font-size":v,"--n-bezier":f,"--n-text-color":h,"--n-icon-color":m,"--n-extra-text-color":b}}),c=t?Ae("empty",R(()=>{let u="";const{size:f}=e;return u+=f[0],u}),d,e):void 0;return{mergedClsPrefix:o,mergedRenderIcon:s,localizedDescription:R(()=>a.value||n.value.description),cssVars:t?void 0:d,themeClass:c==null?void 0:c.themeClass,onRender:c==null?void 0:c.onRender}},render(){const{$slots:e,mergedClsPrefix:o,onRender:t}=this;return t==null||t(),i("div",{class:[`${o}-empty`,this.themeClass],style:this.cssVars},this.showIcon?i("div",{class:`${o}-empty__icon`},e.icon?e.icon():i(De,{clsPrefix:o},{default:this.mergedRenderIcon})):null,this.showDescription?i("div",{class:`${o}-empty__description`},e.default?e.default():this.localizedDescription):null,e.extra?i("div",{class:`${o}-empty__extra`},e.extra()):null)}}),pl=e=>{const{scrollbarColor:o,scrollbarColorHover:t}=e;return{color:o,colorHover:t}},zc={name:"Scrollbar",common:Le,self:pl},Mr=zc,$c={name:"Scrollbar",common:fe,self:pl},zo=$c,{cubicBezierEaseInOut:ai}=So;function Mt({name:e="fade-in",enterDuration:o="0.2s",leaveDuration:t="0.2s",enterCubicBezier:r=ai,leaveCubicBezier:n=ai}={}){return[C(`&.${e}-transition-enter-active`,{transition:`all ${o} ${r}!important`}),C(`&.${e}-transition-leave-active`,{transition:`all ${t} ${n}!important`}),C(`&.${e}-transition-enter-from, &.${e}-transition-leave-to`,{opacity:0}),C(`&.${e}-transition-leave-from, &.${e}-transition-enter-to`,{opacity:1})]}const Rc=g("scrollbar",` - overflow: hidden; - position: relative; - z-index: auto; - height: 100%; - width: 100%; -`,[C(">",[g("scrollbar-container",` - width: 100%; - overflow: scroll; - height: 100%; - max-height: inherit; - scrollbar-width: none; - `,[C("&::-webkit-scrollbar, &::-webkit-scrollbar-track-piece, &::-webkit-scrollbar-thumb",` - width: 0; - height: 0; - display: none; - `),C(">",[g("scrollbar-content",` - box-sizing: border-box; - min-width: 100%; - `)])])]),C(">, +",[g("scrollbar-rail",` - position: absolute; - pointer-events: none; - user-select: none; - -webkit-user-select: none; - `,[P("horizontal",` - left: 2px; - right: 2px; - bottom: 4px; - height: var(--n-scrollbar-height); - `,[C(">",[y("scrollbar",` - height: var(--n-scrollbar-height); - border-radius: var(--n-scrollbar-border-radius); - right: 0; - `)])]),P("vertical",` - right: 4px; - top: 2px; - bottom: 2px; - width: var(--n-scrollbar-width); - `,[C(">",[y("scrollbar",` - width: var(--n-scrollbar-width); - border-radius: var(--n-scrollbar-border-radius); - bottom: 0; - `)])]),P("disabled",[C(">",[y("scrollbar",{pointerEvents:"none"})])]),C(">",[y("scrollbar",` - position: absolute; - cursor: pointer; - pointer-events: all; - background-color: var(--n-scrollbar-color); - transition: background-color .2s var(--n-scrollbar-bezier); - `,[Mt(),C("&:hover",{backgroundColor:"var(--n-scrollbar-color-hover)"})])])])])]),Pc=Object.assign(Object.assign({},ne.props),{size:{type:Number,default:5},duration:{type:Number,default:0},scrollable:{type:Boolean,default:!0},xScrollable:Boolean,trigger:{type:String,default:"hover"},useUnifiedContainer:Boolean,triggerDisplayManually:Boolean,container:Function,content:Function,containerClass:String,containerStyle:[String,Object],contentClass:String,contentStyle:[String,Object],horizontalRailStyle:[String,Object],verticalRailStyle:[String,Object],onScroll:Function,onWheel:Function,onResize:Function,internalOnUpdateScrollLeft:Function,internalHoistYRail:Boolean}),vl=q({name:"Scrollbar",props:Pc,inheritAttrs:!1,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t,mergedRtlRef:r}=ke(e),n=to("Scrollbar",r,o),l=D(null),a=D(null),s=D(null),d=D(null),c=D(null),u=D(null),f=D(null),p=D(null),v=D(null),h=D(null),m=D(null),b=D(0),x=D(0),S=D(!1),B=D(!1);let T=!1,z=!1,I,w,O=0,k=0,$=0,L=0;const M=ld(),j=R(()=>{const{value:F}=p,{value:K}=u,{value:ie}=h;return F===null||K===null||ie===null?0:Math.min(F,ie*F/K+e.size*1.5)}),E=R(()=>`${j.value}px`),U=R(()=>{const{value:F}=v,{value:K}=f,{value:ie}=m;return F===null||K===null||ie===null?0:ie*F/K+e.size*1.5}),_=R(()=>`${U.value}px`),V=R(()=>{const{value:F}=p,{value:K}=b,{value:ie}=u,{value:ze}=h;if(F===null||ie===null||ze===null)return 0;{const Pe=ie-F;return Pe?K/Pe*(ze-j.value):0}}),te=R(()=>`${V.value}px`),N=R(()=>{const{value:F}=v,{value:K}=x,{value:ie}=f,{value:ze}=m;if(F===null||ie===null||ze===null)return 0;{const Pe=ie-F;return Pe?K/Pe*(ze-U.value):0}}),G=R(()=>`${N.value}px`),Ce=R(()=>{const{value:F}=p,{value:K}=u;return F!==null&&K!==null&&K>F}),X=R(()=>{const{value:F}=v,{value:K}=f;return F!==null&&K!==null&&K>F}),ve=R(()=>{const{trigger:F}=e;return F==="none"||S.value}),he=R(()=>{const{trigger:F}=e;return F==="none"||B.value}),be=R(()=>{const{container:F}=e;return F?F():a.value}),me=R(()=>{const{content:F}=e;return F?F():s.value}),se=Td(()=>{e.container||ee({top:b.value,left:x.value})}),Re=()=>{se.isDeactivated||Ve()},ge=F=>{if(se.isDeactivated)return;const{onResize:K}=e;K&&K(F),Ve()},ee=(F,K)=>{if(!e.scrollable)return;if(typeof F=="number"){de(K??0,F,0,!1,"auto");return}const{left:ie,top:ze,index:Pe,elSize:Ie,position:Te,behavior:_e,el:Qe,debounce:vo=!0}=F;(ie!==void 0||ze!==void 0)&&de(ie??0,ze??0,0,!1,_e),Qe!==void 0?de(0,Qe.offsetTop,Qe.offsetHeight,vo,_e):Pe!==void 0&&Ie!==void 0?de(0,Pe*Ie,Ie,vo,_e):Te==="bottom"?de(0,Number.MAX_SAFE_INTEGER,0,!1,_e):Te==="top"&&de(0,0,0,!1,_e)},xe=(F,K)=>{if(!e.scrollable)return;const{value:ie}=be;ie&&(typeof F=="object"?ie.scrollBy(F):ie.scrollBy(F,K||0))};function de(F,K,ie,ze,Pe){const{value:Ie}=be;if(Ie){if(ze){const{scrollTop:Te,offsetHeight:_e}=Ie;if(K>Te){K+ie<=Te+_e||Ie.scrollTo({left:F,top:K+ie-_e,behavior:Pe});return}}Ie.scrollTo({left:F,top:K,behavior:Pe})}}function ye(){Z(),re(),Ve()}function pe(){Me()}function Me(){Q(),A()}function Q(){w!==void 0&&window.clearTimeout(w),w=window.setTimeout(()=>{B.value=!1},e.duration)}function A(){I!==void 0&&window.clearTimeout(I),I=window.setTimeout(()=>{S.value=!1},e.duration)}function Z(){I!==void 0&&window.clearTimeout(I),S.value=!0}function re(){w!==void 0&&window.clearTimeout(w),B.value=!0}function ue(F){const{onScroll:K}=e;K&&K(F),Y()}function Y(){const{value:F}=be;F&&(b.value=F.scrollTop,x.value=F.scrollLeft*(n!=null&&n.value?-1:1))}function ce(){const{value:F}=me;F&&(u.value=F.offsetHeight,f.value=F.offsetWidth);const{value:K}=be;K&&(p.value=K.offsetHeight,v.value=K.offsetWidth);const{value:ie}=c,{value:ze}=d;ie&&(m.value=ie.offsetWidth),ze&&(h.value=ze.offsetHeight)}function He(){const{value:F}=be;F&&(b.value=F.scrollTop,x.value=F.scrollLeft*(n!=null&&n.value?-1:1),p.value=F.offsetHeight,v.value=F.offsetWidth,u.value=F.scrollHeight,f.value=F.scrollWidth);const{value:K}=c,{value:ie}=d;K&&(m.value=K.offsetWidth),ie&&(h.value=ie.offsetHeight)}function Ve(){e.scrollable&&(e.useUnifiedContainer?He():(ce(),Y()))}function Ze(F){var K;return!(!((K=l.value)===null||K===void 0)&&K.contains(Qt(F)))}function po(F){F.preventDefault(),F.stopPropagation(),z=!0,Do("mousemove",window,fo,!0),Do("mouseup",window,Bo,!0),k=x.value,$=n!=null&&n.value?window.innerWidth-F.clientX:F.clientX}function fo(F){if(!z)return;I!==void 0&&window.clearTimeout(I),w!==void 0&&window.clearTimeout(w);const{value:K}=v,{value:ie}=f,{value:ze}=U;if(K===null||ie===null)return;const Ie=(n!=null&&n.value?window.innerWidth-F.clientX-$:F.clientX-$)*(ie-K)/(K-ze),Te=ie-K;let _e=k+Ie;_e=Math.min(Te,_e),_e=Math.max(_e,0);const{value:Qe}=be;if(Qe){Qe.scrollLeft=_e*(n!=null&&n.value?-1:1);const{internalOnUpdateScrollLeft:vo}=e;vo&&vo(_e)}}function Bo(F){F.preventDefault(),F.stopPropagation(),Ro("mousemove",window,fo,!0),Ro("mouseup",window,Bo,!0),z=!1,Ve(),Ze(F)&&Me()}function To(F){F.preventDefault(),F.stopPropagation(),T=!0,Do("mousemove",window,xo,!0),Do("mouseup",window,Co,!0),O=b.value,L=F.clientY}function xo(F){if(!T)return;I!==void 0&&window.clearTimeout(I),w!==void 0&&window.clearTimeout(w);const{value:K}=p,{value:ie}=u,{value:ze}=j;if(K===null||ie===null)return;const Ie=(F.clientY-L)*(ie-K)/(K-ze),Te=ie-K;let _e=O+Ie;_e=Math.min(Te,_e),_e=Math.max(_e,0);const{value:Qe}=be;Qe&&(Qe.scrollTop=_e)}function Co(F){F.preventDefault(),F.stopPropagation(),Ro("mousemove",window,xo,!0),Ro("mouseup",window,Co,!0),T=!1,Ve(),Ze(F)&&Me()}oo(()=>{const{value:F}=X,{value:K}=Ce,{value:ie}=o,{value:ze}=c,{value:Pe}=d;ze&&(F?ze.classList.remove(`${ie}-scrollbar-rail--disabled`):ze.classList.add(`${ie}-scrollbar-rail--disabled`)),Pe&&(K?Pe.classList.remove(`${ie}-scrollbar-rail--disabled`):Pe.classList.add(`${ie}-scrollbar-rail--disabled`))}),mo(()=>{e.container||Ve()}),wo(()=>{I!==void 0&&window.clearTimeout(I),w!==void 0&&window.clearTimeout(w),Ro("mousemove",window,xo,!0),Ro("mouseup",window,Co,!0)});const Ao=ne("Scrollbar","-scrollbar",Rc,Mr,e,o),Fo=R(()=>{const{common:{cubicBezierEaseInOut:F,scrollbarBorderRadius:K,scrollbarHeight:ie,scrollbarWidth:ze},self:{color:Pe,colorHover:Ie}}=Ao.value;return{"--n-scrollbar-bezier":F,"--n-scrollbar-color":Pe,"--n-scrollbar-color-hover":Ie,"--n-scrollbar-border-radius":K,"--n-scrollbar-width":ze,"--n-scrollbar-height":ie}}),co=t?Ae("scrollbar",void 0,Fo,e):void 0;return Object.assign(Object.assign({},{scrollTo:ee,scrollBy:xe,sync:Ve,syncUnifiedContainer:He,handleMouseEnterWrapper:ye,handleMouseLeaveWrapper:pe}),{mergedClsPrefix:o,rtlEnabled:n,containerScrollTop:b,wrapperRef:l,containerRef:a,contentRef:s,yRailRef:d,xRailRef:c,needYBar:Ce,needXBar:X,yBarSizePx:E,xBarSizePx:_,yBarTopPx:te,xBarLeftPx:G,isShowXBar:ve,isShowYBar:he,isIos:M,handleScroll:ue,handleContentResize:Re,handleContainerResize:ge,handleYScrollMouseDown:To,handleXScrollMouseDown:po,cssVars:t?void 0:Fo,themeClass:co==null?void 0:co.themeClass,onRender:co==null?void 0:co.onRender})},render(){var e;const{$slots:o,mergedClsPrefix:t,triggerDisplayManually:r,rtlEnabled:n,internalHoistYRail:l}=this;if(!this.scrollable)return(e=o.default)===null||e===void 0?void 0:e.call(o);const a=this.trigger==="none",s=()=>i("div",{ref:"yRailRef",class:[`${t}-scrollbar-rail`,`${t}-scrollbar-rail--vertical`],"data-scrollbar-rail":!0,style:this.verticalRailStyle,"aria-hidden":!0},i(a?sn:no,a?null:{name:"fade-in-transition"},{default:()=>this.needYBar&&this.isShowYBar&&!this.isIos?i("div",{class:`${t}-scrollbar-rail__scrollbar`,style:{height:this.yBarSizePx,top:this.yBarTopPx},onMousedown:this.handleYScrollMouseDown}):null})),d=()=>{var u,f;return(u=this.onRender)===null||u===void 0||u.call(this),i("div",ko(this.$attrs,{role:"none",ref:"wrapperRef",class:[`${t}-scrollbar`,this.themeClass,n&&`${t}-scrollbar--rtl`],style:this.cssVars,onMouseenter:r?void 0:this.handleMouseEnterWrapper,onMouseleave:r?void 0:this.handleMouseLeaveWrapper}),[this.container?(f=o.default)===null||f===void 0?void 0:f.call(o):i("div",{role:"none",ref:"containerRef",class:[`${t}-scrollbar-container`,this.containerClass],style:this.containerStyle,onScroll:this.handleScroll,onWheel:this.onWheel},i(vt,{onResize:this.handleContentResize},{default:()=>i("div",{ref:"contentRef",role:"none",style:[{width:this.xScrollable?"fit-content":null},this.contentStyle],class:[`${t}-scrollbar-content`,this.contentClass]},o)})),l?null:s(),this.xScrollable&&i("div",{ref:"xRailRef",class:[`${t}-scrollbar-rail`,`${t}-scrollbar-rail--horizontal`],style:this.horizontalRailStyle,"data-scrollbar-rail":!0,"aria-hidden":!0},i(a?sn:no,a?null:{name:"fade-in-transition"},{default:()=>this.needXBar&&this.isShowXBar&&!this.isIos?i("div",{class:`${t}-scrollbar-rail__scrollbar`,style:{width:this.xBarSizePx,right:n?this.xBarLeftPx:void 0,left:n?void 0:this.xBarLeftPx},onMousedown:this.handleXScrollMouseDown}):null}))])},c=this.container?d():i(vt,{onResize:this.handleContainerResize},{default:d});return l?i(ao,null,c,s()):c}}),ur=vl,gl=vl,kc={height:"calc(var(--n-option-height) * 7.6)",paddingSmall:"4px 0",paddingMedium:"4px 0",paddingLarge:"4px 0",paddingHuge:"4px 0",optionPaddingSmall:"0 12px",optionPaddingMedium:"0 12px",optionPaddingLarge:"0 12px",optionPaddingHuge:"0 12px",loadingSize:"18px"},ml=e=>{const{borderRadius:o,popoverColor:t,textColor3:r,dividerColor:n,textColor2:l,primaryColorPressed:a,textColorDisabled:s,primaryColor:d,opacityDisabled:c,hoverColor:u,fontSizeSmall:f,fontSizeMedium:p,fontSizeLarge:v,fontSizeHuge:h,heightSmall:m,heightMedium:b,heightLarge:x,heightHuge:S}=e;return Object.assign(Object.assign({},kc),{optionFontSizeSmall:f,optionFontSizeMedium:p,optionFontSizeLarge:v,optionFontSizeHuge:h,optionHeightSmall:m,optionHeightMedium:b,optionHeightLarge:x,optionHeightHuge:S,borderRadius:o,color:t,groupHeaderTextColor:r,actionDividerColor:n,optionTextColor:l,optionTextColorPressed:a,optionTextColorDisabled:s,optionTextColorActive:d,optionOpacityDisabled:c,optionCheckColor:d,optionColorPending:u,optionColorActive:"rgba(0, 0, 0, 0)",optionColorActivePending:u,actionTextColor:l,loadingColor:d})},Ic={name:"InternalSelectMenu",common:Le,peers:{Scrollbar:Mr,Empty:Cn},self:ml},_r=Ic,Bc={name:"InternalSelectMenu",common:fe,peers:{Scrollbar:zo,Empty:zt},self:ml},fr=Bc;function Tc(e,o){return i(no,{name:"fade-in-scale-up-transition"},{default:()=>e?i(De,{clsPrefix:o,class:`${o}-base-select-option__check`},{default:()=>i(Wd)}):null})}const si=q({name:"NBaseSelectOption",props:{clsPrefix:{type:String,required:!0},tmNode:{type:Object,required:!0}},setup(e){const{valueRef:o,pendingTmNodeRef:t,multipleRef:r,valueSetRef:n,renderLabelRef:l,renderOptionRef:a,labelFieldRef:s,valueFieldRef:d,showCheckmarkRef:c,nodePropsRef:u,handleOptionClick:f,handleOptionMouseEnter:p}=Se(mn),v=We(()=>{const{value:x}=t;return x?e.tmNode.key===x.key:!1});function h(x){const{tmNode:S}=e;S.disabled||f(x,S)}function m(x){const{tmNode:S}=e;S.disabled||p(x,S)}function b(x){const{tmNode:S}=e,{value:B}=v;S.disabled||B||p(x,S)}return{multiple:r,isGrouped:We(()=>{const{tmNode:x}=e,{parent:S}=x;return S&&S.rawNode.type==="group"}),showCheckmark:c,nodeProps:u,isPending:v,isSelected:We(()=>{const{value:x}=o,{value:S}=r;if(x===null)return!1;const B=e.tmNode.rawNode[d.value];if(S){const{value:T}=n;return T.has(B)}else return x===B}),labelField:s,renderLabel:l,renderOption:a,handleMouseMove:b,handleMouseEnter:m,handleClick:h}},render(){const{clsPrefix:e,tmNode:{rawNode:o},isSelected:t,isPending:r,isGrouped:n,showCheckmark:l,nodeProps:a,renderOption:s,renderLabel:d,handleClick:c,handleMouseEnter:u,handleMouseMove:f}=this,p=Tc(t,e),v=d?[d(o,t),l&&p]:[qe(o[this.labelField],o,t),l&&p],h=a==null?void 0:a(o),m=i("div",Object.assign({},h,{class:[`${e}-base-select-option`,o.class,h==null?void 0:h.class,{[`${e}-base-select-option--disabled`]:o.disabled,[`${e}-base-select-option--selected`]:t,[`${e}-base-select-option--grouped`]:n,[`${e}-base-select-option--pending`]:r,[`${e}-base-select-option--show-checkmark`]:l}],style:[(h==null?void 0:h.style)||"",o.style||""],onClick:Zt([c,h==null?void 0:h.onClick]),onMouseenter:Zt([u,h==null?void 0:h.onMouseenter]),onMousemove:Zt([f,h==null?void 0:h.onMousemove])}),i("div",{class:`${e}-base-select-option__content`},v));return o.render?o.render({node:m,option:o,selected:t}):s?s({node:m,option:o,selected:t}):m}}),di=q({name:"NBaseSelectGroupHeader",props:{clsPrefix:{type:String,required:!0},tmNode:{type:Object,required:!0}},setup(){const{renderLabelRef:e,renderOptionRef:o,labelFieldRef:t,nodePropsRef:r}=Se(mn);return{labelField:t,nodeProps:r,renderLabel:e,renderOption:o}},render(){const{clsPrefix:e,renderLabel:o,renderOption:t,nodeProps:r,tmNode:{rawNode:n}}=this,l=r==null?void 0:r(n),a=o?o(n,!1):qe(n[this.labelField],n,!1),s=i("div",Object.assign({},l,{class:[`${e}-base-select-group-header`,l==null?void 0:l.class]}),a);return n.render?n.render({node:s,option:n}):t?t({node:s,option:n,selected:!1}):s}}),{cubicBezierEaseIn:ci,cubicBezierEaseOut:ui}=So;function at({transformOrigin:e="inherit",duration:o=".2s",enterScale:t=".9",originalTransform:r="",originalTransition:n=""}={}){return[C("&.fade-in-scale-up-transition-leave-active",{transformOrigin:e,transition:`opacity ${o} ${ci}, transform ${o} ${ci} ${n&&","+n}`}),C("&.fade-in-scale-up-transition-enter-active",{transformOrigin:e,transition:`opacity ${o} ${ui}, transform ${o} ${ui} ${n&&","+n}`}),C("&.fade-in-scale-up-transition-enter-from, &.fade-in-scale-up-transition-leave-to",{opacity:0,transform:`${r} scale(${t})`}),C("&.fade-in-scale-up-transition-leave-from, &.fade-in-scale-up-transition-enter-to",{opacity:1,transform:`${r} scale(1)`})]}const Fc=g("base-select-menu",` - line-height: 1.5; - outline: none; - z-index: 0; - position: relative; - border-radius: var(--n-border-radius); - transition: - background-color .3s var(--n-bezier), - box-shadow .3s var(--n-bezier); - background-color: var(--n-color); -`,[g("scrollbar",` - max-height: var(--n-height); - `),g("virtual-list",` - max-height: var(--n-height); - `),g("base-select-option",` - min-height: var(--n-option-height); - font-size: var(--n-option-font-size); - display: flex; - align-items: center; - `,[y("content",` - z-index: 1; - white-space: nowrap; - text-overflow: ellipsis; - overflow: hidden; - `)]),g("base-select-group-header",` - min-height: var(--n-option-height); - font-size: .93em; - display: flex; - align-items: center; - `),g("base-select-menu-option-wrapper",` - position: relative; - width: 100%; - `),y("loading, empty",` - display: flex; - padding: 12px 32px; - flex: 1; - justify-content: center; - `),y("loading",` - color: var(--n-loading-color); - font-size: var(--n-loading-size); - `),y("action",` - padding: 8px var(--n-option-padding-left); - font-size: var(--n-option-font-size); - transition: - color .3s var(--n-bezier), - border-color .3s var(--n-bezier); - border-top: 1px solid var(--n-action-divider-color); - color: var(--n-action-text-color); - `),g("base-select-group-header",` - position: relative; - cursor: default; - padding: var(--n-option-padding); - color: var(--n-group-header-text-color); - `),g("base-select-option",` - cursor: pointer; - position: relative; - padding: var(--n-option-padding); - transition: - color .3s var(--n-bezier), - opacity .3s var(--n-bezier); - box-sizing: border-box; - color: var(--n-option-text-color); - opacity: 1; - `,[P("show-checkmark",` - padding-right: calc(var(--n-option-padding-right) + 20px); - `),C("&::before",` - content: ""; - position: absolute; - left: 4px; - right: 4px; - top: 0; - bottom: 0; - border-radius: var(--n-border-radius); - transition: background-color .3s var(--n-bezier); - `),C("&:active",` - color: var(--n-option-text-color-pressed); - `),P("grouped",` - padding-left: calc(var(--n-option-padding-left) * 1.5); - `),P("pending",[C("&::before",` - background-color: var(--n-option-color-pending); - `)]),P("selected",` - color: var(--n-option-text-color-active); - `,[C("&::before",` - background-color: var(--n-option-color-active); - `),P("pending",[C("&::before",` - background-color: var(--n-option-color-active-pending); - `)])]),P("disabled",` - cursor: not-allowed; - `,[je("selected",` - color: var(--n-option-text-color-disabled); - `),P("selected",` - opacity: var(--n-option-opacity-disabled); - `)]),y("check",` - font-size: 16px; - position: absolute; - right: calc(var(--n-option-padding-right) - 4px); - top: calc(50% - 7px); - color: var(--n-option-check-color); - transition: color .3s var(--n-bezier); - `,[at({enterScale:"0.5"})])])]),yn=q({name:"InternalSelectMenu",props:Object.assign(Object.assign({},ne.props),{clsPrefix:{type:String,required:!0},scrollable:{type:Boolean,default:!0},treeMate:{type:Object,required:!0},multiple:Boolean,size:{type:String,default:"medium"},value:{type:[String,Number,Array],default:null},autoPending:Boolean,virtualScroll:{type:Boolean,default:!0},show:{type:Boolean,default:!0},labelField:{type:String,default:"label"},valueField:{type:String,default:"value"},loading:Boolean,focusable:Boolean,renderLabel:Function,renderOption:Function,nodeProps:Function,showCheckmark:{type:Boolean,default:!0},onMousedown:Function,onScroll:Function,onFocus:Function,onBlur:Function,onKeyup:Function,onKeydown:Function,onTabOut:Function,onMouseenter:Function,onMouseleave:Function,onResize:Function,resetMenuOnOptionsChange:{type:Boolean,default:!0},inlineThemeDisabled:Boolean,onToggle:Function}),setup(e){const o=ne("InternalSelectMenu","-internal-select-menu",Fc,_r,e,le(e,"clsPrefix")),t=D(null),r=D(null),n=D(null),l=R(()=>e.treeMate.getFlattenedNodes()),a=R(()=>pd(l.value)),s=D(null);function d(){const{treeMate:N}=e;let G=null;const{value:Ce}=e;Ce===null?G=N.getFirstAvailableNode():(e.multiple?G=N.getNode((Ce||[])[(Ce||[]).length-1]):G=N.getNode(Ce),(!G||G.disabled)&&(G=N.getFirstAvailableNode())),L(G||null)}function c(){const{value:N}=s;N&&!e.treeMate.getNode(N.key)&&(s.value=null)}let u;Ke(()=>e.show,N=>{N?u=Ke(()=>e.treeMate,()=>{e.resetMenuOnOptionsChange?(e.autoPending?d():c(),io(M)):c()},{immediate:!0}):u==null||u()},{immediate:!0}),wo(()=>{u==null||u()});const f=R(()=>Mo(o.value.self[W("optionHeight",e.size)])),p=R(()=>Ko(o.value.self[W("padding",e.size)])),v=R(()=>e.multiple&&Array.isArray(e.value)?new Set(e.value):new Set),h=R(()=>{const N=l.value;return N&&N.length===0});function m(N){const{onToggle:G}=e;G&&G(N)}function b(N){const{onScroll:G}=e;G&&G(N)}function x(N){var G;(G=n.value)===null||G===void 0||G.sync(),b(N)}function S(){var N;(N=n.value)===null||N===void 0||N.sync()}function B(){const{value:N}=s;return N||null}function T(N,G){G.disabled||L(G,!1)}function z(N,G){G.disabled||m(G)}function I(N){var G;pt(N,"action")||(G=e.onKeyup)===null||G===void 0||G.call(e,N)}function w(N){var G;pt(N,"action")||(G=e.onKeydown)===null||G===void 0||G.call(e,N)}function O(N){var G;(G=e.onMousedown)===null||G===void 0||G.call(e,N),!e.focusable&&N.preventDefault()}function k(){const{value:N}=s;N&&L(N.getNext({loop:!0}),!0)}function $(){const{value:N}=s;N&&L(N.getPrev({loop:!0}),!0)}function L(N,G=!1){s.value=N,G&&M()}function M(){var N,G;const Ce=s.value;if(!Ce)return;const X=a.value(Ce.key);X!==null&&(e.virtualScroll?(N=r.value)===null||N===void 0||N.scrollTo({index:X}):(G=n.value)===null||G===void 0||G.scrollTo({index:X,elSize:f.value}))}function j(N){var G,Ce;!((G=t.value)===null||G===void 0)&&G.contains(N.target)&&((Ce=e.onFocus)===null||Ce===void 0||Ce.call(e,N))}function E(N){var G,Ce;!((G=t.value)===null||G===void 0)&&G.contains(N.relatedTarget)||(Ce=e.onBlur)===null||Ce===void 0||Ce.call(e,N)}Oe(mn,{handleOptionMouseEnter:T,handleOptionClick:z,valueSetRef:v,pendingTmNodeRef:s,nodePropsRef:le(e,"nodeProps"),showCheckmarkRef:le(e,"showCheckmark"),multipleRef:le(e,"multiple"),valueRef:le(e,"value"),renderLabelRef:le(e,"renderLabel"),renderOptionRef:le(e,"renderOption"),labelFieldRef:le(e,"labelField"),valueFieldRef:le(e,"valueField")}),Oe(el,t),mo(()=>{const{value:N}=n;N&&N.sync()});const U=R(()=>{const{size:N}=e,{common:{cubicBezierEaseInOut:G},self:{height:Ce,borderRadius:X,color:ve,groupHeaderTextColor:he,actionDividerColor:be,optionTextColorPressed:me,optionTextColor:se,optionTextColorDisabled:Re,optionTextColorActive:ge,optionOpacityDisabled:ee,optionCheckColor:xe,actionTextColor:de,optionColorPending:ye,optionColorActive:pe,loadingColor:Me,loadingSize:Q,optionColorActivePending:A,[W("optionFontSize",N)]:Z,[W("optionHeight",N)]:re,[W("optionPadding",N)]:ue}}=o.value;return{"--n-height":Ce,"--n-action-divider-color":be,"--n-action-text-color":de,"--n-bezier":G,"--n-border-radius":X,"--n-color":ve,"--n-option-font-size":Z,"--n-group-header-text-color":he,"--n-option-check-color":xe,"--n-option-color-pending":ye,"--n-option-color-active":pe,"--n-option-color-active-pending":A,"--n-option-height":re,"--n-option-opacity-disabled":ee,"--n-option-text-color":se,"--n-option-text-color-active":ge,"--n-option-text-color-disabled":Re,"--n-option-text-color-pressed":me,"--n-option-padding":ue,"--n-option-padding-left":Ko(ue,"left"),"--n-option-padding-right":Ko(ue,"right"),"--n-loading-color":Me,"--n-loading-size":Q}}),{inlineThemeDisabled:_}=e,V=_?Ae("internal-select-menu",R(()=>e.size[0]),U,e):void 0,te={selfRef:t,next:k,prev:$,getPendingTmNode:B};return nl(t,e.onResize),Object.assign({mergedTheme:o,virtualListRef:r,scrollbarRef:n,itemSize:f,padding:p,flattenedNodes:l,empty:h,virtualListContainer(){const{value:N}=r;return N==null?void 0:N.listElRef},virtualListContent(){const{value:N}=r;return N==null?void 0:N.itemsElRef},doScroll:b,handleFocusin:j,handleFocusout:E,handleKeyUp:I,handleKeyDown:w,handleMouseDown:O,handleVirtualListResize:S,handleVirtualListScroll:x,cssVars:_?void 0:U,themeClass:V==null?void 0:V.themeClass,onRender:V==null?void 0:V.onRender},te)},render(){const{$slots:e,virtualScroll:o,clsPrefix:t,mergedTheme:r,themeClass:n,onRender:l}=this;return l==null||l(),i("div",{ref:"selfRef",tabindex:this.focusable?0:-1,class:[`${t}-base-select-menu`,n,this.multiple&&`${t}-base-select-menu--multiple`],style:this.cssVars,onFocusin:this.handleFocusin,onFocusout:this.handleFocusout,onKeyup:this.handleKeyUp,onKeydown:this.handleKeyDown,onMousedown:this.handleMouseDown,onMouseenter:this.onMouseenter,onMouseleave:this.onMouseleave},this.loading?i("div",{class:`${t}-base-select-menu__loading`},i(Et,{clsPrefix:t,strokeWidth:20})):this.empty?i("div",{class:`${t}-base-select-menu__empty`,"data-empty":!0},lo(e.empty,()=>[i(Sc,{theme:r.peers.Empty,themeOverrides:r.peerOverrides.Empty})])):i(ur,{ref:"scrollbarRef",theme:r.peers.Scrollbar,themeOverrides:r.peerOverrides.Scrollbar,scrollable:this.scrollable,container:o?this.virtualListContainer:void 0,content:o?this.virtualListContent:void 0,onScroll:o?void 0:this.doScroll},{default:()=>o?i(nd,{ref:"virtualListRef",class:`${t}-virtual-list`,items:this.flattenedNodes,itemSize:this.itemSize,showScrollbar:!1,paddingTop:this.padding.top,paddingBottom:this.padding.bottom,onResize:this.handleVirtualListResize,onScroll:this.handleVirtualListScroll,itemResizable:!0},{default:({item:a})=>a.isGroup?i(di,{key:a.key,clsPrefix:t,tmNode:a}):a.ignored?null:i(si,{clsPrefix:t,key:a.key,tmNode:a})}):i("div",{class:`${t}-base-select-menu-option-wrapper`,style:{paddingTop:this.padding.top,paddingBottom:this.padding.bottom}},this.flattenedNodes.map(a=>a.isGroup?i(di,{key:a.key,clsPrefix:t,tmNode:a}):i(si,{clsPrefix:t,key:a.key,tmNode:a})))}),Ee(e.action,a=>a&&[i("div",{class:`${t}-base-select-menu__action`,"data-action":!0,key:"action"},a),i(ac,{onFocus:this.onTabOut,key:"focus-detector"})]))}}),Oc=g("base-wave",` - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - border-radius: inherit; -`),bl=q({name:"BaseWave",props:{clsPrefix:{type:String,required:!0}},setup(e){Zo("-base-wave",Oc,le(e,"clsPrefix"));const o=D(null),t=D(!1);let r=null;return wo(()=>{r!==null&&window.clearTimeout(r)}),{active:t,selfRef:o,play(){r!==null&&(window.clearTimeout(r),t.value=!1,r=null),io(()=>{var n;(n=o.value)===null||n===void 0||n.offsetHeight,t.value=!0,r=window.setTimeout(()=>{t.value=!1,r=null},1e3)})}}},render(){const{clsPrefix:e}=this;return i("div",{ref:"selfRef","aria-hidden":!0,class:[`${e}-base-wave`,this.active&&`${e}-base-wave--active`]})}}),Mc={space:"6px",spaceArrow:"10px",arrowOffset:"10px",arrowOffsetVertical:"10px",arrowHeight:"6px",padding:"8px 14px"},xl=e=>{const{boxShadow2:o,popoverColor:t,textColor2:r,borderRadius:n,fontSize:l,dividerColor:a}=e;return Object.assign(Object.assign({},Mc),{fontSize:l,borderRadius:n,color:t,dividerColor:a,textColor:r,boxShadow:o})},_c={name:"Popover",common:Le,self:xl},jt=_c,Dc={name:"Popover",common:fe,self:xl},$t=Dc,Gr={top:"bottom",bottom:"top",left:"right",right:"left"},ro="var(--n-arrow-height) * 1.414",Lc=C([g("popover",` - transition: - box-shadow .3s var(--n-bezier), - background-color .3s var(--n-bezier), - color .3s var(--n-bezier); - position: relative; - font-size: var(--n-font-size); - color: var(--n-text-color); - box-shadow: var(--n-box-shadow); - word-break: break-word; - `,[C(">",[g("scrollbar",` - height: inherit; - max-height: inherit; - `)]),je("raw",` - background-color: var(--n-color); - border-radius: var(--n-border-radius); - `,[je("scrollable",[je("show-header-or-footer","padding: var(--n-padding);")])]),y("header",` - padding: var(--n-padding); - border-bottom: 1px solid var(--n-divider-color); - transition: border-color .3s var(--n-bezier); - `),y("footer",` - padding: var(--n-padding); - border-top: 1px solid var(--n-divider-color); - transition: border-color .3s var(--n-bezier); - `),P("scrollable, show-header-or-footer",[y("content",` - padding: var(--n-padding); - `)])]),g("popover-shared",` - transform-origin: inherit; - `,[g("popover-arrow-wrapper",` - position: absolute; - overflow: hidden; - pointer-events: none; - `,[g("popover-arrow",` - transition: background-color .3s var(--n-bezier); - position: absolute; - display: block; - width: calc(${ro}); - height: calc(${ro}); - box-shadow: 0 0 8px 0 rgba(0, 0, 0, .12); - transform: rotate(45deg); - background-color: var(--n-color); - pointer-events: all; - `)]),C("&.popover-transition-enter-from, &.popover-transition-leave-to",` - opacity: 0; - transform: scale(.85); - `),C("&.popover-transition-enter-to, &.popover-transition-leave-from",` - transform: scale(1); - opacity: 1; - `),C("&.popover-transition-enter-active",` - transition: - box-shadow .3s var(--n-bezier), - background-color .3s var(--n-bezier), - color .3s var(--n-bezier), - opacity .15s var(--n-bezier-ease-out), - transform .15s var(--n-bezier-ease-out); - `),C("&.popover-transition-leave-active",` - transition: - box-shadow .3s var(--n-bezier), - background-color .3s var(--n-bezier), - color .3s var(--n-bezier), - opacity .15s var(--n-bezier-ease-in), - transform .15s var(--n-bezier-ease-in); - `)]),Oo("top-start",` - top: calc(${ro} / -2); - left: calc(${ot("top-start")} - var(--v-offset-left)); - `),Oo("top",` - top: calc(${ro} / -2); - transform: translateX(calc(${ro} / -2)) rotate(45deg); - left: 50%; - `),Oo("top-end",` - top: calc(${ro} / -2); - right: calc(${ot("top-end")} + var(--v-offset-left)); - `),Oo("bottom-start",` - bottom: calc(${ro} / -2); - left: calc(${ot("bottom-start")} - var(--v-offset-left)); - `),Oo("bottom",` - bottom: calc(${ro} / -2); - transform: translateX(calc(${ro} / -2)) rotate(45deg); - left: 50%; - `),Oo("bottom-end",` - bottom: calc(${ro} / -2); - right: calc(${ot("bottom-end")} + var(--v-offset-left)); - `),Oo("left-start",` - left: calc(${ro} / -2); - top: calc(${ot("left-start")} - var(--v-offset-top)); - `),Oo("left",` - left: calc(${ro} / -2); - transform: translateY(calc(${ro} / -2)) rotate(45deg); - top: 50%; - `),Oo("left-end",` - left: calc(${ro} / -2); - bottom: calc(${ot("left-end")} + var(--v-offset-top)); - `),Oo("right-start",` - right: calc(${ro} / -2); - top: calc(${ot("right-start")} - var(--v-offset-top)); - `),Oo("right",` - right: calc(${ro} / -2); - transform: translateY(calc(${ro} / -2)) rotate(45deg); - top: 50%; - `),Oo("right-end",` - right: calc(${ro} / -2); - bottom: calc(${ot("right-end")} + var(--v-offset-top)); - `),...ud({top:["right-start","left-start"],right:["top-end","bottom-end"],bottom:["right-end","left-end"],left:["top-start","bottom-start"]},(e,o)=>{const t=["right","left"].includes(o),r=t?"width":"height";return e.map(n=>{const l=n.split("-")[1]==="end",s=`calc((${`var(--v-target-${r}, 0px)`} - ${ro}) / 2)`,d=ot(n);return C(`[v-placement="${n}"] >`,[g("popover-shared",[P("center-arrow",[g("popover-arrow",`${o}: calc(max(${s}, ${d}) ${l?"+":"-"} var(--v-offset-${t?"left":"top"}));`)])])])})})]);function ot(e){return["top","bottom"].includes(e.split("-")[0])?"var(--n-arrow-offset)":"var(--n-arrow-offset-vertical)"}function Oo(e,o){const t=e.split("-")[0],r=["top","bottom"].includes(t)?"height: var(--n-space-arrow);":"width: var(--n-space-arrow);";return C(`[v-placement="${e}"] >`,[g("popover-shared",` - margin-${Gr[t]}: var(--n-space); - `,[P("show-arrow",` - margin-${Gr[t]}: var(--n-space-arrow); - `),P("overlap",` - margin: 0; - `),Rd("popover-arrow-wrapper",` - right: 0; - left: 0; - top: 0; - bottom: 0; - ${t}: 100%; - ${Gr[t]}: auto; - ${r} - `,[g("popover-arrow",o)])])])}const Cl=Object.assign(Object.assign({},ne.props),{to:Io.propTo,show:Boolean,trigger:String,showArrow:Boolean,delay:Number,duration:Number,raw:Boolean,arrowPointToCenter:Boolean,arrowStyle:[String,Object],displayDirective:String,x:Number,y:Number,flip:Boolean,overlap:Boolean,placement:String,width:[Number,String],keepAliveOnHover:Boolean,scrollable:Boolean,contentStyle:[Object,String],headerStyle:[Object,String],footerStyle:[Object,String],internalDeactivateImmediately:Boolean,animated:Boolean,onClickoutside:Function,internalTrapFocus:Boolean,internalOnAfterLeave:Function,minWidth:Number,maxWidth:Number}),yl=({arrowStyle:e,clsPrefix:o})=>i("div",{key:"__popover-arrow__",class:`${o}-popover-arrow-wrapper`},i("div",{class:`${o}-popover-arrow`,style:e})),Hc=q({name:"PopoverBody",inheritAttrs:!1,props:Cl,setup(e,{slots:o,attrs:t}){const{namespaceRef:r,mergedClsPrefixRef:n,inlineThemeDisabled:l}=ke(e),a=ne("Popover","-popover",Lc,jt,e,n),s=D(null),d=Se("NPopover"),c=D(null),u=D(e.show),f=D(!1);oo(()=>{const{show:w}=e;w&&!Pd()&&!e.internalDeactivateImmediately&&(f.value=!0)});const p=R(()=>{const{trigger:w,onClickoutside:O}=e,k=[],{positionManuallyRef:{value:$}}=d;return $||(w==="click"&&!O&&k.push([Ft,T,void 0,{capture:!0}]),w==="hover"&&k.push([vd,B])),O&&k.push([Ft,T,void 0,{capture:!0}]),(e.displayDirective==="show"||e.animated&&f.value)&&k.push([Go,e.show]),k}),v=R(()=>{const w=e.width==="trigger"?void 0:eo(e.width),O=[];w&&O.push({width:w});const{maxWidth:k,minWidth:$}=e;return k&&O.push({maxWidth:eo(k)}),$&&O.push({maxWidth:eo($)}),l||O.push(h.value),O}),h=R(()=>{const{common:{cubicBezierEaseInOut:w,cubicBezierEaseIn:O,cubicBezierEaseOut:k},self:{space:$,spaceArrow:L,padding:M,fontSize:j,textColor:E,dividerColor:U,color:_,boxShadow:V,borderRadius:te,arrowHeight:N,arrowOffset:G,arrowOffsetVertical:Ce}}=a.value;return{"--n-box-shadow":V,"--n-bezier":w,"--n-bezier-ease-in":O,"--n-bezier-ease-out":k,"--n-font-size":j,"--n-text-color":E,"--n-color":_,"--n-divider-color":U,"--n-border-radius":te,"--n-arrow-height":N,"--n-arrow-offset":G,"--n-arrow-offset-vertical":Ce,"--n-padding":M,"--n-space":$,"--n-space-arrow":L}}),m=l?Ae("popover",void 0,h,e):void 0;d.setBodyInstance({syncPosition:b}),wo(()=>{d.setBodyInstance(null)}),Ke(le(e,"show"),w=>{e.animated||(w?u.value=!0:u.value=!1)});function b(){var w;(w=s.value)===null||w===void 0||w.syncPosition()}function x(w){e.trigger==="hover"&&e.keepAliveOnHover&&e.show&&d.handleMouseEnter(w)}function S(w){e.trigger==="hover"&&e.keepAliveOnHover&&d.handleMouseLeave(w)}function B(w){e.trigger==="hover"&&!z().contains(Qt(w))&&d.handleMouseMoveOutside(w)}function T(w){(e.trigger==="click"&&!z().contains(Qt(w))||e.onClickoutside)&&d.handleClickOutside(w)}function z(){return d.getTriggerElement()}Oe(Dt,c),Oe(cr,null),Oe(dr,null);function I(){if(m==null||m.onRender(),!(e.displayDirective==="show"||e.show||e.animated&&f.value))return null;let O;const k=d.internalRenderBodyRef.value,{value:$}=n;if(k)O=k([`${$}-popover-shared`,m==null?void 0:m.themeClass.value,e.overlap&&`${$}-popover-shared--overlap`,e.showArrow&&`${$}-popover-shared--show-arrow`,e.arrowPointToCenter&&`${$}-popover-shared--center-arrow`],c,v.value,x,S);else{const{value:L}=d.extraClassRef,{internalTrapFocus:M}=e,j=!ht(o.header)||!ht(o.footer),E=()=>{var U;const _=j?i(ao,null,Ee(o.header,N=>N?i("div",{class:`${$}-popover__header`,style:e.headerStyle},N):null),Ee(o.default,N=>N?i("div",{class:`${$}-popover__content`,style:e.contentStyle},o):null),Ee(o.footer,N=>N?i("div",{class:`${$}-popover__footer`,style:e.footerStyle},N):null)):e.scrollable?(U=o.default)===null||U===void 0?void 0:U.call(o):i("div",{class:`${$}-popover__content`,style:e.contentStyle},o),V=e.scrollable?i(gl,{contentClass:j?void 0:`${$}-popover__content`,contentStyle:j?void 0:e.contentStyle},{default:()=>_}):_,te=e.showArrow?yl({arrowStyle:e.arrowStyle,clsPrefix:$}):null;return[V,te]};O=i("div",ko({class:[`${$}-popover`,`${$}-popover-shared`,m==null?void 0:m.themeClass.value,L.map(U=>`${$}-${U}`),{[`${$}-popover--scrollable`]:e.scrollable,[`${$}-popover--show-header-or-footer`]:j,[`${$}-popover--raw`]:e.raw,[`${$}-popover-shared--overlap`]:e.overlap,[`${$}-popover-shared--show-arrow`]:e.showArrow,[`${$}-popover-shared--center-arrow`]:e.arrowPointToCenter}],ref:c,style:v.value,onKeydown:d.handleKeydown,onMouseenter:x,onMouseleave:S},t),M?i(hn,{active:e.show,autoFocus:!0},{default:E}):E())}return Lo(O,p.value)}return{displayed:f,namespace:r,isMounted:d.isMountedRef,zIndex:d.zIndexRef,followerRef:s,adjustedTo:Io(e),followerEnabled:u,renderContentNode:I}},render(){return i(kr,{ref:"followerRef",zIndex:this.zIndex,show:this.show,enabled:this.followerEnabled,to:this.adjustedTo,x:this.x,y:this.y,flip:this.flip,placement:this.placement,containerClass:this.namespace,overlap:this.overlap,width:this.width==="trigger"?"target":void 0,teleportDisabled:this.adjustedTo===Io.tdkey},{default:()=>this.animated?i(no,{name:"popover-transition",appear:this.isMounted,onEnter:()=>{this.followerEnabled=!0},onAfterLeave:()=>{var e;(e=this.internalOnAfterLeave)===null||e===void 0||e.call(this),this.followerEnabled=!1,this.displayed=!1}},{default:this.renderContentNode}):this.renderContentNode()})}}),Ac=Object.keys(Cl),Ec={focus:["onFocus","onBlur"],click:["onClick"],hover:["onMouseenter","onMouseleave"],manual:[],nested:["onFocus","onBlur","onMouseenter","onMouseleave","onClick"]};function jc(e,o,t){Ec[o].forEach(r=>{e.props?e.props=Object.assign({},e.props):e.props={};const n=e.props[r],l=t[r];n?e.props[r]=(...a)=>{n(...a),l(...a)}:e.props[r]=l})}const bt={show:{type:Boolean,default:void 0},defaultShow:Boolean,showArrow:{type:Boolean,default:!0},trigger:{type:String,default:"hover"},delay:{type:Number,default:100},duration:{type:Number,default:100},raw:Boolean,placement:{type:String,default:"top"},x:Number,y:Number,arrowPointToCenter:Boolean,disabled:Boolean,getDisabled:Function,displayDirective:{type:String,default:"if"},arrowStyle:[String,Object],flip:{type:Boolean,default:!0},animated:{type:Boolean,default:!0},width:{type:[Number,String],default:void 0},overlap:Boolean,keepAliveOnHover:{type:Boolean,default:!0},zIndex:Number,to:Io.propTo,scrollable:Boolean,contentStyle:[Object,String],headerStyle:[Object,String],footerStyle:[Object,String],onClickoutside:Function,"onUpdate:show":[Function,Array],onUpdateShow:[Function,Array],internalDeactivateImmediately:Boolean,internalSyncTargetWithParent:Boolean,internalInheritedEventHandlers:{type:Array,default:()=>[]},internalTrapFocus:Boolean,internalExtraClass:{type:Array,default:()=>[]},onShow:[Function,Array],onHide:[Function,Array],arrow:{type:Boolean,default:void 0},minWidth:Number,maxWidth:Number},Wc=Object.assign(Object.assign(Object.assign({},ne.props),bt),{internalOnAfterLeave:Function,internalRenderBody:Function}),hr=q({name:"Popover",inheritAttrs:!1,props:Wc,__popover__:!0,setup(e){const o=Ct(),t=D(null),r=R(()=>e.show),n=D(e.defaultShow),l=so(r,n),a=We(()=>e.disabled?!1:l.value),s=()=>{if(e.disabled)return!0;const{getDisabled:E}=e;return!!(E!=null&&E())},d=()=>s()?!1:l.value,c=gt(e,["arrow","showArrow"]),u=R(()=>e.overlap?!1:c.value);let f=null;const p=D(null),v=D(null),h=We(()=>e.x!==void 0&&e.y!==void 0);function m(E){const{"onUpdate:show":U,onUpdateShow:_,onShow:V,onHide:te}=e;n.value=E,U&&ae(U,E),_&&ae(_,E),E&&V&&ae(V,!0),E&&te&&ae(te,!1)}function b(){f&&f.syncPosition()}function x(){const{value:E}=p;E&&(window.clearTimeout(E),p.value=null)}function S(){const{value:E}=v;E&&(window.clearTimeout(E),v.value=null)}function B(){const E=s();if(e.trigger==="focus"&&!E){if(d())return;m(!0)}}function T(){const E=s();if(e.trigger==="focus"&&!E){if(!d())return;m(!1)}}function z(){const E=s();if(e.trigger==="hover"&&!E){if(S(),p.value!==null||d())return;const U=()=>{m(!0),p.value=null},{delay:_}=e;_===0?U():p.value=window.setTimeout(U,_)}}function I(){const E=s();if(e.trigger==="hover"&&!E){if(x(),v.value!==null||!d())return;const U=()=>{m(!1),v.value=null},{duration:_}=e;_===0?U():v.value=window.setTimeout(U,_)}}function w(){I()}function O(E){var U;d()&&(e.trigger==="click"&&(x(),S(),m(!1)),(U=e.onClickoutside)===null||U===void 0||U.call(e,E))}function k(){if(e.trigger==="click"&&!s()){x(),S();const E=!d();m(E)}}function $(E){e.internalTrapFocus&&E.key==="Escape"&&(x(),S(),m(!1))}function L(E){n.value=E}function M(){var E;return(E=t.value)===null||E===void 0?void 0:E.targetRef}function j(E){f=E}return Oe("NPopover",{getTriggerElement:M,handleKeydown:$,handleMouseEnter:z,handleMouseLeave:I,handleClickOutside:O,handleMouseMoveOutside:w,setBodyInstance:j,positionManuallyRef:h,isMountedRef:o,zIndexRef:le(e,"zIndex"),extraClassRef:le(e,"internalExtraClass"),internalRenderBodyRef:le(e,"internalRenderBody")}),oo(()=>{l.value&&s()&&m(!1)}),{binderInstRef:t,positionManually:h,mergedShowConsideringDisabledProp:a,uncontrolledShow:n,mergedShowArrow:u,getMergedShow:d,setShow:L,handleClick:k,handleMouseEnter:z,handleMouseLeave:I,handleFocus:B,handleBlur:T,syncPosition:b}},render(){var e;const{positionManually:o,$slots:t}=this;let r,n=!1;if(!o&&(t.activator?r=ln(t,"activator"):r=ln(t,"trigger"),r)){r=Jt(r),r=r.type===od?i("span",[r]):r;const l={onClick:this.handleClick,onMouseenter:this.handleMouseEnter,onMouseleave:this.handleMouseLeave,onFocus:this.handleFocus,onBlur:this.handleBlur};if(!((e=r.type)===null||e===void 0)&&e.__popover__)n=!0,r.props||(r.props={internalSyncTargetWithParent:!0,internalInheritedEventHandlers:[]}),r.props.internalSyncTargetWithParent=!0,r.props.internalInheritedEventHandlers?r.props.internalInheritedEventHandlers=[l,...r.props.internalInheritedEventHandlers]:r.props.internalInheritedEventHandlers=[l];else{const{internalInheritedEventHandlers:a}=this,s=[l,...a],d={onBlur:c=>{s.forEach(u=>{u.onBlur(c)})},onFocus:c=>{s.forEach(u=>{u.onFocus(c)})},onClick:c=>{s.forEach(u=>{u.onClick(c)})},onMouseenter:c=>{s.forEach(u=>{u.onMouseenter(c)})},onMouseleave:c=>{s.forEach(u=>{u.onMouseleave(c)})}};jc(r,a?"nested":o?"manual":this.trigger,d)}}return i(Br,{ref:"binderInstRef",syncTarget:!n,syncTargetWithParent:this.internalSyncTargetWithParent},{default:()=>{this.mergedShowConsideringDisabledProp;const l=this.getMergedShow();return[this.internalTrapFocus&&l?Lo(i("div",{style:{position:"fixed",inset:0}}),[[Tr,{enabled:l,zIndex:this.zIndex}]]):null,o?null:i(Ir,null,{default:()=>r}),i(Hc,go(this.$props,Ac,Object.assign(Object.assign({},this.$attrs),{showArrow:this.mergedShowArrow,show:l})),{default:()=>{var a,s;return(s=(a=this.$slots).default)===null||s===void 0?void 0:s.call(a)},header:()=>{var a,s;return(s=(a=this.$slots).header)===null||s===void 0?void 0:s.call(a)},footer:()=>{var a,s;return(s=(a=this.$slots).footer)===null||s===void 0?void 0:s.call(a)}})]}})}}),wl={closeIconSizeTiny:"12px",closeIconSizeSmall:"12px",closeIconSizeMedium:"14px",closeIconSizeLarge:"14px",closeSizeTiny:"16px",closeSizeSmall:"16px",closeSizeMedium:"18px",closeSizeLarge:"18px",padding:"0 7px",closeMargin:"0 0 0 4px",closeMarginRtl:"0 4px 0 0"},Nc={name:"Tag",common:fe,self(e){const{textColor2:o,primaryColorHover:t,primaryColorPressed:r,primaryColor:n,infoColor:l,successColor:a,warningColor:s,errorColor:d,baseColor:c,borderColor:u,tagColor:f,opacityDisabled:p,closeIconColor:v,closeIconColorHover:h,closeIconColorPressed:m,closeColorHover:b,closeColorPressed:x,borderRadiusSmall:S,fontSizeMini:B,fontSizeTiny:T,fontSizeSmall:z,fontSizeMedium:I,heightMini:w,heightTiny:O,heightSmall:k,heightMedium:$,buttonColor2Hover:L,buttonColor2Pressed:M,fontWeightStrong:j}=e;return Object.assign(Object.assign({},wl),{closeBorderRadius:S,heightTiny:w,heightSmall:O,heightMedium:k,heightLarge:$,borderRadius:S,opacityDisabled:p,fontSizeTiny:B,fontSizeSmall:T,fontSizeMedium:z,fontSizeLarge:I,fontWeightStrong:j,textColorCheckable:o,textColorHoverCheckable:o,textColorPressedCheckable:o,textColorChecked:c,colorCheckable:"#0000",colorHoverCheckable:L,colorPressedCheckable:M,colorChecked:n,colorCheckedHover:t,colorCheckedPressed:r,border:`1px solid ${u}`,textColor:o,color:f,colorBordered:"#0000",closeIconColor:v,closeIconColorHover:h,closeIconColorPressed:m,closeColorHover:b,closeColorPressed:x,borderPrimary:`1px solid ${J(n,{alpha:.3})}`,textColorPrimary:n,colorPrimary:J(n,{alpha:.16}),colorBorderedPrimary:"#0000",closeIconColorPrimary:Je(n,{lightness:.7}),closeIconColorHoverPrimary:Je(n,{lightness:.7}),closeIconColorPressedPrimary:Je(n,{lightness:.7}),closeColorHoverPrimary:J(n,{alpha:.16}),closeColorPressedPrimary:J(n,{alpha:.12}),borderInfo:`1px solid ${J(l,{alpha:.3})}`,textColorInfo:l,colorInfo:J(l,{alpha:.16}),colorBorderedInfo:"#0000",closeIconColorInfo:Je(l,{alpha:.7}),closeIconColorHoverInfo:Je(l,{alpha:.7}),closeIconColorPressedInfo:Je(l,{alpha:.7}),closeColorHoverInfo:J(l,{alpha:.16}),closeColorPressedInfo:J(l,{alpha:.12}),borderSuccess:`1px solid ${J(a,{alpha:.3})}`,textColorSuccess:a,colorSuccess:J(a,{alpha:.16}),colorBorderedSuccess:"#0000",closeIconColorSuccess:Je(a,{alpha:.7}),closeIconColorHoverSuccess:Je(a,{alpha:.7}),closeIconColorPressedSuccess:Je(a,{alpha:.7}),closeColorHoverSuccess:J(a,{alpha:.16}),closeColorPressedSuccess:J(a,{alpha:.12}),borderWarning:`1px solid ${J(s,{alpha:.3})}`,textColorWarning:s,colorWarning:J(s,{alpha:.16}),colorBorderedWarning:"#0000",closeIconColorWarning:Je(s,{alpha:.7}),closeIconColorHoverWarning:Je(s,{alpha:.7}),closeIconColorPressedWarning:Je(s,{alpha:.7}),closeColorHoverWarning:J(s,{alpha:.16}),closeColorPressedWarning:J(s,{alpha:.11}),borderError:`1px solid ${J(d,{alpha:.3})}`,textColorError:d,colorError:J(d,{alpha:.16}),colorBorderedError:"#0000",closeIconColorError:Je(d,{alpha:.7}),closeIconColorHoverError:Je(d,{alpha:.7}),closeIconColorPressedError:Je(d,{alpha:.7}),closeColorHoverError:J(d,{alpha:.16}),closeColorPressedError:J(d,{alpha:.12})})}},Sl=Nc,Vc=e=>{const{textColor2:o,primaryColorHover:t,primaryColorPressed:r,primaryColor:n,infoColor:l,successColor:a,warningColor:s,errorColor:d,baseColor:c,borderColor:u,opacityDisabled:f,tagColor:p,closeIconColor:v,closeIconColorHover:h,closeIconColorPressed:m,borderRadiusSmall:b,fontSizeMini:x,fontSizeTiny:S,fontSizeSmall:B,fontSizeMedium:T,heightMini:z,heightTiny:I,heightSmall:w,heightMedium:O,closeColorHover:k,closeColorPressed:$,buttonColor2Hover:L,buttonColor2Pressed:M,fontWeightStrong:j}=e;return Object.assign(Object.assign({},wl),{closeBorderRadius:b,heightTiny:z,heightSmall:I,heightMedium:w,heightLarge:O,borderRadius:b,opacityDisabled:f,fontSizeTiny:x,fontSizeSmall:S,fontSizeMedium:B,fontSizeLarge:T,fontWeightStrong:j,textColorCheckable:o,textColorHoverCheckable:o,textColorPressedCheckable:o,textColorChecked:c,colorCheckable:"#0000",colorHoverCheckable:L,colorPressedCheckable:M,colorChecked:n,colorCheckedHover:t,colorCheckedPressed:r,border:`1px solid ${u}`,textColor:o,color:p,colorBordered:"rgb(250, 250, 252)",closeIconColor:v,closeIconColorHover:h,closeIconColorPressed:m,closeColorHover:k,closeColorPressed:$,borderPrimary:`1px solid ${J(n,{alpha:.3})}`,textColorPrimary:n,colorPrimary:J(n,{alpha:.12}),colorBorderedPrimary:J(n,{alpha:.1}),closeIconColorPrimary:n,closeIconColorHoverPrimary:n,closeIconColorPressedPrimary:n,closeColorHoverPrimary:J(n,{alpha:.12}),closeColorPressedPrimary:J(n,{alpha:.18}),borderInfo:`1px solid ${J(l,{alpha:.3})}`,textColorInfo:l,colorInfo:J(l,{alpha:.12}),colorBorderedInfo:J(l,{alpha:.1}),closeIconColorInfo:l,closeIconColorHoverInfo:l,closeIconColorPressedInfo:l,closeColorHoverInfo:J(l,{alpha:.12}),closeColorPressedInfo:J(l,{alpha:.18}),borderSuccess:`1px solid ${J(a,{alpha:.3})}`,textColorSuccess:a,colorSuccess:J(a,{alpha:.12}),colorBorderedSuccess:J(a,{alpha:.1}),closeIconColorSuccess:a,closeIconColorHoverSuccess:a,closeIconColorPressedSuccess:a,closeColorHoverSuccess:J(a,{alpha:.12}),closeColorPressedSuccess:J(a,{alpha:.18}),borderWarning:`1px solid ${J(s,{alpha:.35})}`,textColorWarning:s,colorWarning:J(s,{alpha:.15}),colorBorderedWarning:J(s,{alpha:.12}),closeIconColorWarning:s,closeIconColorHoverWarning:s,closeIconColorPressedWarning:s,closeColorHoverWarning:J(s,{alpha:.12}),closeColorPressedWarning:J(s,{alpha:.18}),borderError:`1px solid ${J(d,{alpha:.23})}`,textColorError:d,colorError:J(d,{alpha:.1}),colorBorderedError:J(d,{alpha:.08}),closeIconColorError:d,closeIconColorHoverError:d,closeIconColorPressedError:d,closeColorHoverError:J(d,{alpha:.12}),closeColorPressedError:J(d,{alpha:.18})})},Uc={name:"Tag",common:Le,self:Vc},Kc=Uc,Gc={color:Object,type:{type:String,default:"default"},round:Boolean,size:{type:String,default:"medium"},closable:Boolean,disabled:{type:Boolean,default:void 0}},qc=g("tag",` - white-space: nowrap; - position: relative; - box-sizing: border-box; - cursor: default; - display: inline-flex; - align-items: center; - flex-wrap: nowrap; - padding: var(--n-padding); - border-radius: var(--n-border-radius); - color: var(--n-text-color); - background-color: var(--n-color); - transition: - border-color .3s var(--n-bezier), - background-color .3s var(--n-bezier), - color .3s var(--n-bezier), - box-shadow .3s var(--n-bezier), - opacity .3s var(--n-bezier); - line-height: 1; - height: var(--n-height); - font-size: var(--n-font-size); -`,[P("strong",` - font-weight: var(--n-font-weight-strong); - `),y("border",` - pointer-events: none; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - border-radius: inherit; - border: var(--n-border); - transition: border-color .3s var(--n-bezier); - `),y("icon",` - display: flex; - margin: 0 4px 0 0; - color: var(--n-text-color); - transition: color .3s var(--n-bezier); - font-size: var(--n-avatar-size-override); - `),y("avatar",` - display: flex; - margin: 0 6px 0 0; - `),y("close",` - margin: var(--n-close-margin); - transition: - background-color .3s var(--n-bezier), - color .3s var(--n-bezier); - `),P("round",` - padding: 0 calc(var(--n-height) / 3); - border-radius: calc(var(--n-height) / 2); - `,[y("icon",` - margin: 0 4px 0 calc((var(--n-height) - 8px) / -2); - `),y("avatar",` - margin: 0 6px 0 calc((var(--n-height) - 8px) / -2); - `),P("closable",` - padding: 0 calc(var(--n-height) / 4) 0 calc(var(--n-height) / 3); - `)]),P("icon, avatar",[P("round",` - padding: 0 calc(var(--n-height) / 3) 0 calc(var(--n-height) / 2); - `)]),P("disabled",` - cursor: not-allowed !important; - opacity: var(--n-opacity-disabled); - `),P("checkable",` - cursor: pointer; - box-shadow: none; - color: var(--n-text-color-checkable); - background-color: var(--n-color-checkable); - `,[je("disabled",[C("&:hover","background-color: var(--n-color-hover-checkable);",[je("checked","color: var(--n-text-color-hover-checkable);")]),C("&:active","background-color: var(--n-color-pressed-checkable);",[je("checked","color: var(--n-text-color-pressed-checkable);")])]),P("checked",` - color: var(--n-text-color-checked); - background-color: var(--n-color-checked); - `,[je("disabled",[C("&:hover","background-color: var(--n-color-checked-hover);"),C("&:active","background-color: var(--n-color-checked-pressed);")])])])]),Yc=Object.assign(Object.assign(Object.assign({},ne.props),Gc),{bordered:{type:Boolean,default:void 0},checked:Boolean,checkable:Boolean,strong:Boolean,triggerClickOnClose:Boolean,onClose:[Array,Function],onMouseenter:Function,onMouseleave:Function,"onUpdate:checked":Function,onUpdateChecked:Function,internalCloseFocusable:{type:Boolean,default:!0},internalCloseIsButtonTag:{type:Boolean,default:!0},onCheckedChange:Function}),zl="n-tag",qr=q({name:"Tag",props:Yc,setup(e){const o=D(null),{mergedBorderedRef:t,mergedClsPrefixRef:r,inlineThemeDisabled:n,mergedRtlRef:l}=ke(e),a=ne("Tag","-tag",qc,Kc,e,r);Oe(zl,{roundRef:le(e,"round")});function s(v){if(!e.disabled&&e.checkable){const{checked:h,onCheckedChange:m,onUpdateChecked:b,"onUpdate:checked":x}=e;b&&b(!h),x&&x(!h),m&&m(!h)}}function d(v){if(e.triggerClickOnClose||v.stopPropagation(),!e.disabled){const{onClose:h}=e;h&&ae(h,v)}}const c={setTextContent(v){const{value:h}=o;h&&(h.textContent=v)}},u=to("Tag",l,r),f=R(()=>{const{type:v,size:h,color:{color:m,textColor:b}={}}=e,{common:{cubicBezierEaseInOut:x},self:{padding:S,closeMargin:B,closeMarginRtl:T,borderRadius:z,opacityDisabled:I,textColorCheckable:w,textColorHoverCheckable:O,textColorPressedCheckable:k,textColorChecked:$,colorCheckable:L,colorHoverCheckable:M,colorPressedCheckable:j,colorChecked:E,colorCheckedHover:U,colorCheckedPressed:_,closeBorderRadius:V,fontWeightStrong:te,[W("colorBordered",v)]:N,[W("closeSize",h)]:G,[W("closeIconSize",h)]:Ce,[W("fontSize",h)]:X,[W("height",h)]:ve,[W("color",v)]:he,[W("textColor",v)]:be,[W("border",v)]:me,[W("closeIconColor",v)]:se,[W("closeIconColorHover",v)]:Re,[W("closeIconColorPressed",v)]:ge,[W("closeColorHover",v)]:ee,[W("closeColorPressed",v)]:xe}}=a.value;return{"--n-font-weight-strong":te,"--n-avatar-size-override":`calc(${ve} - 8px)`,"--n-bezier":x,"--n-border-radius":z,"--n-border":me,"--n-close-icon-size":Ce,"--n-close-color-pressed":xe,"--n-close-color-hover":ee,"--n-close-border-radius":V,"--n-close-icon-color":se,"--n-close-icon-color-hover":Re,"--n-close-icon-color-pressed":ge,"--n-close-icon-color-disabled":se,"--n-close-margin":B,"--n-close-margin-rtl":T,"--n-close-size":G,"--n-color":m||(t.value?N:he),"--n-color-checkable":L,"--n-color-checked":E,"--n-color-checked-hover":U,"--n-color-checked-pressed":_,"--n-color-hover-checkable":M,"--n-color-pressed-checkable":j,"--n-font-size":X,"--n-height":ve,"--n-opacity-disabled":I,"--n-padding":S,"--n-text-color":b||be,"--n-text-color-checkable":w,"--n-text-color-checked":$,"--n-text-color-hover-checkable":O,"--n-text-color-pressed-checkable":k}}),p=n?Ae("tag",R(()=>{let v="";const{type:h,size:m,color:{color:b,textColor:x}={}}=e;return v+=h[0],v+=m[0],b&&(v+=`a${Ot(b)}`),x&&(v+=`b${Ot(x)}`),t.value&&(v+="c"),v}),f,e):void 0;return Object.assign(Object.assign({},c),{rtlEnabled:u,mergedClsPrefix:r,contentRef:o,mergedBordered:t,handleClick:s,handleCloseClick:d,cssVars:n?void 0:f,themeClass:p==null?void 0:p.themeClass,onRender:p==null?void 0:p.onRender})},render(){var e,o;const{mergedClsPrefix:t,rtlEnabled:r,closable:n,color:{borderColor:l}={},round:a,onRender:s,$slots:d}=this;s==null||s();const c=Ee(d.avatar,f=>f&&i("div",{class:`${t}-tag__avatar`},f)),u=Ee(d.icon,f=>f&&i("div",{class:`${t}-tag__icon`},f));return i("div",{class:[`${t}-tag`,this.themeClass,{[`${t}-tag--rtl`]:r,[`${t}-tag--strong`]:this.strong,[`${t}-tag--disabled`]:this.disabled,[`${t}-tag--checkable`]:this.checkable,[`${t}-tag--checked`]:this.checkable&&this.checked,[`${t}-tag--round`]:a,[`${t}-tag--avatar`]:c,[`${t}-tag--icon`]:u,[`${t}-tag--closable`]:n}],style:this.cssVars,onClick:this.handleClick,onMouseenter:this.onMouseenter,onMouseleave:this.onMouseleave},u||c,i("span",{class:`${t}-tag__content`,ref:"contentRef"},(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e)),!this.checkable&&n?i(St,{clsPrefix:t,class:`${t}-tag__close`,disabled:this.disabled,onClick:this.handleCloseClick,focusable:this.internalCloseFocusable,round:a,isButtonTag:this.internalCloseIsButtonTag,absolute:!0}):null,!this.checkable&&this.mergedBordered?i("div",{class:`${t}-tag__border`,style:{borderColor:l}}):null)}}),Xc=g("base-clear",` - flex-shrink: 0; - height: 1em; - width: 1em; - position: relative; -`,[C(">",[y("clear",` - font-size: var(--n-clear-size); - height: 1em; - width: 1em; - cursor: pointer; - color: var(--n-clear-color); - transition: color .3s var(--n-bezier); - display: flex; - `,[C("&:hover",` - color: var(--n-clear-color-hover)!important; - `),C("&:active",` - color: var(--n-clear-color-pressed)!important; - `)]),y("placeholder",` - display: flex; - `),y("clear, placeholder",` - position: absolute; - left: 50%; - top: 50%; - transform: translateX(-50%) translateY(-50%); - `,[lt({originalTransform:"translateX(-50%) translateY(-50%)",left:"50%",top:"50%"})])])]),dn=q({name:"BaseClear",props:{clsPrefix:{type:String,required:!0},show:Boolean,onClear:Function},setup(e){return Zo("-base-clear",Xc,le(e,"clsPrefix")),{handleMouseDown(o){o.preventDefault()}}},render(){const{clsPrefix:e}=this;return i("div",{class:`${e}-base-clear`},i(At,null,{default:()=>{var o,t;return this.show?i("div",{key:"dismiss",class:`${e}-base-clear__clear`,onClick:this.onClear,onMousedown:this.handleMouseDown,"data-clear":!0},lo(this.$slots.icon,()=>[i(De,{clsPrefix:e},{default:()=>i(Zd,null)})])):i("div",{key:"icon",class:`${e}-base-clear__placeholder`},(t=(o=this.$slots).placeholder)===null||t===void 0?void 0:t.call(o))}}))}}),$l=q({name:"InternalSelectionSuffix",props:{clsPrefix:{type:String,required:!0},showArrow:{type:Boolean,default:void 0},showClear:{type:Boolean,default:void 0},loading:{type:Boolean,default:!1},onClear:Function},setup(e,{slots:o}){return()=>{const{clsPrefix:t}=e;return i(Et,{clsPrefix:t,class:`${t}-base-suffix`,strokeWidth:24,scale:.85,show:e.loading},{default:()=>e.showArrow?i(dn,{clsPrefix:t,show:e.showClear,onClear:e.onClear},{placeholder:()=>i(De,{clsPrefix:t,class:`${t}-base-suffix__arrow`},{default:()=>lo(o.default,()=>[i(Xd,null)])})}):null})}}}),Rl={paddingSingle:"0 26px 0 12px",paddingMultiple:"3px 26px 0 12px",clearSize:"16px",arrowSize:"16px"},Zc=e=>{const{borderRadius:o,textColor2:t,textColorDisabled:r,inputColor:n,inputColorDisabled:l,primaryColor:a,primaryColorHover:s,warningColor:d,warningColorHover:c,errorColor:u,errorColorHover:f,borderColor:p,iconColor:v,iconColorDisabled:h,clearColor:m,clearColorHover:b,clearColorPressed:x,placeholderColor:S,placeholderColorDisabled:B,fontSizeTiny:T,fontSizeSmall:z,fontSizeMedium:I,fontSizeLarge:w,heightTiny:O,heightSmall:k,heightMedium:$,heightLarge:L}=e;return Object.assign(Object.assign({},Rl),{fontSizeTiny:T,fontSizeSmall:z,fontSizeMedium:I,fontSizeLarge:w,heightTiny:O,heightSmall:k,heightMedium:$,heightLarge:L,borderRadius:o,textColor:t,textColorDisabled:r,placeholderColor:S,placeholderColorDisabled:B,color:n,colorDisabled:l,colorActive:n,border:`1px solid ${p}`,borderHover:`1px solid ${s}`,borderActive:`1px solid ${a}`,borderFocus:`1px solid ${s}`,boxShadowHover:"none",boxShadowActive:`0 0 0 2px ${J(a,{alpha:.2})}`,boxShadowFocus:`0 0 0 2px ${J(a,{alpha:.2})}`,caretColor:a,arrowColor:v,arrowColorDisabled:h,loadingColor:a,borderWarning:`1px solid ${d}`,borderHoverWarning:`1px solid ${c}`,borderActiveWarning:`1px solid ${d}`,borderFocusWarning:`1px solid ${c}`,boxShadowHoverWarning:"none",boxShadowActiveWarning:`0 0 0 2px ${J(d,{alpha:.2})}`,boxShadowFocusWarning:`0 0 0 2px ${J(d,{alpha:.2})}`,colorActiveWarning:n,caretColorWarning:d,borderError:`1px solid ${u}`,borderHoverError:`1px solid ${f}`,borderActiveError:`1px solid ${u}`,borderFocusError:`1px solid ${f}`,boxShadowHoverError:"none",boxShadowActiveError:`0 0 0 2px ${J(u,{alpha:.2})}`,boxShadowFocusError:`0 0 0 2px ${J(u,{alpha:.2})}`,colorActiveError:n,caretColorError:u,clearColor:m,clearColorHover:b,clearColorPressed:x})},Qc={name:"InternalSelection",common:Le,peers:{Popover:jt},self:Zc},Pl=Qc,Jc={name:"InternalSelection",common:fe,peers:{Popover:$t},self(e){const{borderRadius:o,textColor2:t,textColorDisabled:r,inputColor:n,inputColorDisabled:l,primaryColor:a,primaryColorHover:s,warningColor:d,warningColorHover:c,errorColor:u,errorColorHover:f,iconColor:p,iconColorDisabled:v,clearColor:h,clearColorHover:m,clearColorPressed:b,placeholderColor:x,placeholderColorDisabled:S,fontSizeTiny:B,fontSizeSmall:T,fontSizeMedium:z,fontSizeLarge:I,heightTiny:w,heightSmall:O,heightMedium:k,heightLarge:$}=e;return Object.assign(Object.assign({},Rl),{fontSizeTiny:B,fontSizeSmall:T,fontSizeMedium:z,fontSizeLarge:I,heightTiny:w,heightSmall:O,heightMedium:k,heightLarge:$,borderRadius:o,textColor:t,textColorDisabled:r,placeholderColor:x,placeholderColorDisabled:S,color:n,colorDisabled:l,colorActive:J(a,{alpha:.1}),border:"1px solid #0000",borderHover:`1px solid ${s}`,borderActive:`1px solid ${a}`,borderFocus:`1px solid ${s}`,boxShadowHover:"none",boxShadowActive:`0 0 8px 0 ${J(a,{alpha:.4})}`,boxShadowFocus:`0 0 8px 0 ${J(a,{alpha:.4})}`,caretColor:a,arrowColor:p,arrowColorDisabled:v,loadingColor:a,borderWarning:`1px solid ${d}`,borderHoverWarning:`1px solid ${c}`,borderActiveWarning:`1px solid ${d}`,borderFocusWarning:`1px solid ${c}`,boxShadowHoverWarning:"none",boxShadowActiveWarning:`0 0 8px 0 ${J(d,{alpha:.4})}`,boxShadowFocusWarning:`0 0 8px 0 ${J(d,{alpha:.4})}`,colorActiveWarning:J(d,{alpha:.1}),caretColorWarning:d,borderError:`1px solid ${u}`,borderHoverError:`1px solid ${f}`,borderActiveError:`1px solid ${u}`,borderFocusError:`1px solid ${f}`,boxShadowHoverError:"none",boxShadowActiveError:`0 0 8px 0 ${J(u,{alpha:.4})}`,boxShadowFocusError:`0 0 8px 0 ${J(u,{alpha:.4})}`,colorActiveError:J(u,{alpha:.1}),caretColorError:u,clearColor:h,clearColorHover:m,clearColorPressed:b})}},wn=Jc,eu=C([g("base-selection",` - position: relative; - z-index: auto; - box-shadow: none; - width: 100%; - max-width: 100%; - display: inline-block; - vertical-align: bottom; - border-radius: var(--n-border-radius); - min-height: var(--n-height); - line-height: 1.5; - font-size: var(--n-font-size); - `,[g("base-loading",` - color: var(--n-loading-color); - `),g("base-selection-tags","min-height: var(--n-height);"),y("border, state-border",` - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - pointer-events: none; - border: var(--n-border); - border-radius: inherit; - transition: - box-shadow .3s var(--n-bezier), - border-color .3s var(--n-bezier); - `),y("state-border",` - z-index: 1; - border-color: #0000; - `),g("base-suffix",` - cursor: pointer; - position: absolute; - top: 50%; - transform: translateY(-50%); - right: 10px; - `,[y("arrow",` - font-size: var(--n-arrow-size); - color: var(--n-arrow-color); - transition: color .3s var(--n-bezier); - `)]),g("base-selection-overlay",` - display: flex; - align-items: center; - white-space: nowrap; - pointer-events: none; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: var(--n-padding-single); - transition: color .3s var(--n-bezier); - `,[y("wrapper",` - flex-basis: 0; - flex-grow: 1; - overflow: hidden; - text-overflow: ellipsis; - `)]),g("base-selection-placeholder",` - color: var(--n-placeholder-color); - `,[y("inner",` - max-width: 100%; - overflow: hidden; - `)]),g("base-selection-tags",` - cursor: pointer; - outline: none; - box-sizing: border-box; - position: relative; - z-index: auto; - display: flex; - padding: var(--n-padding-multiple); - flex-wrap: wrap; - align-items: center; - width: 100%; - vertical-align: bottom; - background-color: var(--n-color); - border-radius: inherit; - transition: - color .3s var(--n-bezier), - box-shadow .3s var(--n-bezier), - background-color .3s var(--n-bezier); - `),g("base-selection-label",` - height: var(--n-height); - display: inline-flex; - width: 100%; - vertical-align: bottom; - cursor: pointer; - outline: none; - z-index: auto; - box-sizing: border-box; - position: relative; - transition: - color .3s var(--n-bezier), - box-shadow .3s var(--n-bezier), - background-color .3s var(--n-bezier); - border-radius: inherit; - background-color: var(--n-color); - align-items: center; - `,[g("base-selection-input",` - font-size: inherit; - line-height: inherit; - outline: none; - cursor: pointer; - box-sizing: border-box; - border:none; - width: 100%; - padding: var(--n-padding-single); - background-color: #0000; - color: var(--n-text-color); - transition: color .3s var(--n-bezier); - caret-color: var(--n-caret-color); - `,[y("content",` - text-overflow: ellipsis; - overflow: hidden; - white-space: nowrap; - `)]),y("render-label",` - color: var(--n-text-color); - `)]),je("disabled",[C("&:hover",[y("state-border",` - box-shadow: var(--n-box-shadow-hover); - border: var(--n-border-hover); - `)]),P("focus",[y("state-border",` - box-shadow: var(--n-box-shadow-focus); - border: var(--n-border-focus); - `)]),P("active",[y("state-border",` - box-shadow: var(--n-box-shadow-active); - border: var(--n-border-active); - `),g("base-selection-label","background-color: var(--n-color-active);"),g("base-selection-tags","background-color: var(--n-color-active);")])]),P("disabled","cursor: not-allowed;",[y("arrow",` - color: var(--n-arrow-color-disabled); - `),g("base-selection-label",` - cursor: not-allowed; - background-color: var(--n-color-disabled); - `,[g("base-selection-input",` - cursor: not-allowed; - color: var(--n-text-color-disabled); - `),y("render-label",` - color: var(--n-text-color-disabled); - `)]),g("base-selection-tags",` - cursor: not-allowed; - background-color: var(--n-color-disabled); - `),g("base-selection-placeholder",` - cursor: not-allowed; - color: var(--n-placeholder-color-disabled); - `)]),g("base-selection-input-tag",` - height: calc(var(--n-height) - 6px); - line-height: calc(var(--n-height) - 6px); - outline: none; - display: none; - position: relative; - margin-bottom: 3px; - max-width: 100%; - vertical-align: bottom; - `,[y("input",` - font-size: inherit; - font-family: inherit; - min-width: 1px; - padding: 0; - background-color: #0000; - outline: none; - border: none; - max-width: 100%; - overflow: hidden; - width: 1em; - line-height: inherit; - cursor: pointer; - color: var(--n-text-color); - caret-color: var(--n-caret-color); - `),y("mirror",` - position: absolute; - left: 0; - top: 0; - white-space: pre; - visibility: hidden; - user-select: none; - -webkit-user-select: none; - opacity: 0; - `)]),["warning","error"].map(e=>P(`${e}-status`,[y("state-border",`border: var(--n-border-${e});`),je("disabled",[C("&:hover",[y("state-border",` - box-shadow: var(--n-box-shadow-hover-${e}); - border: var(--n-border-hover-${e}); - `)]),P("active",[y("state-border",` - box-shadow: var(--n-box-shadow-active-${e}); - border: var(--n-border-active-${e}); - `),g("base-selection-label",`background-color: var(--n-color-active-${e});`),g("base-selection-tags",`background-color: var(--n-color-active-${e});`)]),P("focus",[y("state-border",` - box-shadow: var(--n-box-shadow-focus-${e}); - border: var(--n-border-focus-${e}); - `)])])]))]),g("base-selection-popover",` - margin-bottom: -3px; - display: flex; - flex-wrap: wrap; - margin-right: -8px; - `),g("base-selection-tag-wrapper",` - max-width: 100%; - display: inline-flex; - padding: 0 7px 3px 0; - `,[C("&:last-child","padding-right: 0;"),g("tag",` - font-size: 14px; - max-width: 100%; - `,[y("content",` - line-height: 1.25; - text-overflow: ellipsis; - overflow: hidden; - `)])])]),ou=q({name:"InternalSelection",props:Object.assign(Object.assign({},ne.props),{clsPrefix:{type:String,required:!0},bordered:{type:Boolean,default:void 0},active:Boolean,pattern:{type:String,default:""},placeholder:String,selectedOption:{type:Object,default:null},selectedOptions:{type:Array,default:null},labelField:{type:String,default:"label"},valueField:{type:String,default:"value"},multiple:Boolean,filterable:Boolean,clearable:Boolean,disabled:Boolean,size:{type:String,default:"medium"},loading:Boolean,autofocus:Boolean,showArrow:{type:Boolean,default:!0},inputProps:Object,focused:Boolean,renderTag:Function,onKeydown:Function,onClick:Function,onBlur:Function,onFocus:Function,onDeleteOption:Function,maxTagCount:[String,Number],onClear:Function,onPatternInput:Function,onPatternFocus:Function,onPatternBlur:Function,renderLabel:Function,status:String,inlineThemeDisabled:Boolean,ignoreComposition:{type:Boolean,default:!0},onResize:Function}),setup(e){const o=D(null),t=D(null),r=D(null),n=D(null),l=D(null),a=D(null),s=D(null),d=D(null),c=D(null),u=D(null),f=D(!1),p=D(!1),v=D(!1),h=ne("InternalSelection","-internal-selection",eu,Pl,e,le(e,"clsPrefix")),m=R(()=>e.clearable&&!e.disabled&&(v.value||e.active)),b=R(()=>e.selectedOption?e.renderTag?e.renderTag({option:e.selectedOption,handleClose:()=>{}}):e.renderLabel?e.renderLabel(e.selectedOption,!0):qe(e.selectedOption[e.labelField],e.selectedOption,!0):e.placeholder),x=R(()=>{const Y=e.selectedOption;if(Y)return Y[e.labelField]}),S=R(()=>e.multiple?!!(Array.isArray(e.selectedOptions)&&e.selectedOptions.length):e.selectedOption!==null);function B(){var Y;const{value:ce}=o;if(ce){const{value:He}=t;He&&(He.style.width=`${ce.offsetWidth}px`,e.maxTagCount!=="responsive"&&((Y=c.value)===null||Y===void 0||Y.sync()))}}function T(){const{value:Y}=u;Y&&(Y.style.display="none")}function z(){const{value:Y}=u;Y&&(Y.style.display="inline-block")}Ke(le(e,"active"),Y=>{Y||T()}),Ke(le(e,"pattern"),()=>{e.multiple&&io(B)});function I(Y){const{onFocus:ce}=e;ce&&ce(Y)}function w(Y){const{onBlur:ce}=e;ce&&ce(Y)}function O(Y){const{onDeleteOption:ce}=e;ce&&ce(Y)}function k(Y){const{onClear:ce}=e;ce&&ce(Y)}function $(Y){const{onPatternInput:ce}=e;ce&&ce(Y)}function L(Y){var ce;(!Y.relatedTarget||!(!((ce=r.value)===null||ce===void 0)&&ce.contains(Y.relatedTarget)))&&I(Y)}function M(Y){var ce;!((ce=r.value)===null||ce===void 0)&&ce.contains(Y.relatedTarget)||w(Y)}function j(Y){k(Y)}function E(){v.value=!0}function U(){v.value=!1}function _(Y){!e.active||!e.filterable||Y.target!==t.value&&Y.preventDefault()}function V(Y){O(Y)}function te(Y){if(Y.key==="Backspace"&&!N.value&&!e.pattern.length){const{selectedOptions:ce}=e;ce!=null&&ce.length&&V(ce[ce.length-1])}}const N=D(!1);let G=null;function Ce(Y){const{value:ce}=o;if(ce){const He=Y.target.value;ce.textContent=He,B()}e.ignoreComposition&&N.value?G=Y:$(Y)}function X(){N.value=!0}function ve(){N.value=!1,e.ignoreComposition&&$(G),G=null}function he(Y){var ce;p.value=!0,(ce=e.onPatternFocus)===null||ce===void 0||ce.call(e,Y)}function be(Y){var ce;p.value=!1,(ce=e.onPatternBlur)===null||ce===void 0||ce.call(e,Y)}function me(){var Y,ce;if(e.filterable)p.value=!1,(Y=a.value)===null||Y===void 0||Y.blur(),(ce=t.value)===null||ce===void 0||ce.blur();else if(e.multiple){const{value:He}=n;He==null||He.blur()}else{const{value:He}=l;He==null||He.blur()}}function se(){var Y,ce,He;e.filterable?(p.value=!1,(Y=a.value)===null||Y===void 0||Y.focus()):e.multiple?(ce=n.value)===null||ce===void 0||ce.focus():(He=l.value)===null||He===void 0||He.focus()}function Re(){const{value:Y}=t;Y&&(z(),Y.focus())}function ge(){const{value:Y}=t;Y&&Y.blur()}function ee(Y){const{value:ce}=s;ce&&ce.setTextContent(`+${Y}`)}function xe(){const{value:Y}=d;return Y}function de(){return t.value}let ye=null;function pe(){ye!==null&&window.clearTimeout(ye)}function Me(){e.disabled||e.active||(pe(),ye=window.setTimeout(()=>{S.value&&(f.value=!0)},100))}function Q(){pe()}function A(Y){Y||(pe(),f.value=!1)}Ke(S,Y=>{Y||(f.value=!1)}),mo(()=>{oo(()=>{const Y=a.value;Y&&(Y.tabIndex=e.disabled||p.value?-1:0)})}),nl(r,e.onResize);const{inlineThemeDisabled:Z}=e,re=R(()=>{const{size:Y}=e,{common:{cubicBezierEaseInOut:ce},self:{borderRadius:He,color:Ve,placeholderColor:Ze,textColor:po,paddingSingle:fo,paddingMultiple:Bo,caretColor:To,colorDisabled:xo,textColorDisabled:Co,placeholderColorDisabled:Ao,colorActive:Fo,boxShadowFocus:co,boxShadowActive:uo,boxShadowHover:F,border:K,borderFocus:ie,borderHover:ze,borderActive:Pe,arrowColor:Ie,arrowColorDisabled:Te,loadingColor:_e,colorActiveWarning:Qe,boxShadowFocusWarning:vo,boxShadowActiveWarning:Wo,boxShadowHoverWarning:No,borderWarning:st,borderFocusWarning:Kt,borderHoverWarning:Rt,borderActiveWarning:Vo,colorActiveError:H,boxShadowFocusError:oe,boxShadowActiveError:Fe,boxShadowHoverError:Ge,borderError:Ye,borderFocusError:Ue,borderHoverError:Qo,borderActiveError:Jo,clearColor:et,clearColorHover:dt,clearColorPressed:ct,clearSize:Gt,arrowSize:Er,[W("height",Y)]:jr,[W("fontSize",Y)]:Wr}}=h.value;return{"--n-bezier":ce,"--n-border":K,"--n-border-active":Pe,"--n-border-focus":ie,"--n-border-hover":ze,"--n-border-radius":He,"--n-box-shadow-active":uo,"--n-box-shadow-focus":co,"--n-box-shadow-hover":F,"--n-caret-color":To,"--n-color":Ve,"--n-color-active":Fo,"--n-color-disabled":xo,"--n-font-size":Wr,"--n-height":jr,"--n-padding-single":fo,"--n-padding-multiple":Bo,"--n-placeholder-color":Ze,"--n-placeholder-color-disabled":Ao,"--n-text-color":po,"--n-text-color-disabled":Co,"--n-arrow-color":Ie,"--n-arrow-color-disabled":Te,"--n-loading-color":_e,"--n-color-active-warning":Qe,"--n-box-shadow-focus-warning":vo,"--n-box-shadow-active-warning":Wo,"--n-box-shadow-hover-warning":No,"--n-border-warning":st,"--n-border-focus-warning":Kt,"--n-border-hover-warning":Rt,"--n-border-active-warning":Vo,"--n-color-active-error":H,"--n-box-shadow-focus-error":oe,"--n-box-shadow-active-error":Fe,"--n-box-shadow-hover-error":Ge,"--n-border-error":Ye,"--n-border-focus-error":Ue,"--n-border-hover-error":Qo,"--n-border-active-error":Jo,"--n-clear-size":Gt,"--n-clear-color":et,"--n-clear-color-hover":dt,"--n-clear-color-pressed":ct,"--n-arrow-size":Er}}),ue=Z?Ae("internal-selection",R(()=>e.size[0]),re,e):void 0;return{mergedTheme:h,mergedClearable:m,patternInputFocused:p,filterablePlaceholder:b,label:x,selected:S,showTagsPanel:f,isComposing:N,counterRef:s,counterWrapperRef:d,patternInputMirrorRef:o,patternInputRef:t,selfRef:r,multipleElRef:n,singleElRef:l,patternInputWrapperRef:a,overflowRef:c,inputTagElRef:u,handleMouseDown:_,handleFocusin:L,handleClear:j,handleMouseEnter:E,handleMouseLeave:U,handleDeleteOption:V,handlePatternKeyDown:te,handlePatternInputInput:Ce,handlePatternInputBlur:be,handlePatternInputFocus:he,handleMouseEnterCounter:Me,handleMouseLeaveCounter:Q,handleFocusout:M,handleCompositionEnd:ve,handleCompositionStart:X,onPopoverUpdateShow:A,focus:se,focusInput:Re,blur:me,blurInput:ge,updateCounter:ee,getCounter:xe,getTail:de,renderLabel:e.renderLabel,cssVars:Z?void 0:re,themeClass:ue==null?void 0:ue.themeClass,onRender:ue==null?void 0:ue.onRender}},render(){const{status:e,multiple:o,size:t,disabled:r,filterable:n,maxTagCount:l,bordered:a,clsPrefix:s,onRender:d,renderTag:c,renderLabel:u}=this;d==null||d();const f=l==="responsive",p=typeof l=="number",v=f||p,h=i(sn,null,{default:()=>i($l,{clsPrefix:s,loading:this.loading,showArrow:this.showArrow,showClear:this.mergedClearable&&this.selected,onClear:this.handleClear},{default:()=>{var b,x;return(x=(b=this.$slots).arrow)===null||x===void 0?void 0:x.call(b)}})});let m;if(o){const{labelField:b}=this,x=M=>i("div",{class:`${s}-base-selection-tag-wrapper`,key:M.value},c?c({option:M,handleClose:()=>{this.handleDeleteOption(M)}}):i(qr,{size:t,closable:!M.disabled,disabled:r,onClose:()=>{this.handleDeleteOption(M)},internalCloseIsButtonTag:!1,internalCloseFocusable:!1},{default:()=>u?u(M,!0):qe(M[b],M,!0)})),S=()=>(p?this.selectedOptions.slice(0,l):this.selectedOptions).map(x),B=n?i("div",{class:`${s}-base-selection-input-tag`,ref:"inputTagElRef",key:"__input-tag__"},i("input",Object.assign({},this.inputProps,{ref:"patternInputRef",tabindex:-1,disabled:r,value:this.pattern,autofocus:this.autofocus,class:`${s}-base-selection-input-tag__input`,onBlur:this.handlePatternInputBlur,onFocus:this.handlePatternInputFocus,onKeydown:this.handlePatternKeyDown,onInput:this.handlePatternInputInput,onCompositionstart:this.handleCompositionStart,onCompositionend:this.handleCompositionEnd})),i("span",{ref:"patternInputMirrorRef",class:`${s}-base-selection-input-tag__mirror`},this.pattern)):null,T=f?()=>i("div",{class:`${s}-base-selection-tag-wrapper`,ref:"counterWrapperRef"},i(qr,{size:t,ref:"counterRef",onMouseenter:this.handleMouseEnterCounter,onMouseleave:this.handleMouseLeaveCounter,disabled:r})):void 0;let z;if(p){const M=this.selectedOptions.length-l;M>0&&(z=i("div",{class:`${s}-base-selection-tag-wrapper`,key:"__counter__"},i(qr,{size:t,ref:"counterRef",onMouseenter:this.handleMouseEnterCounter,disabled:r},{default:()=>`+${M}`})))}const I=f?n?i(Vn,{ref:"overflowRef",updateCounter:this.updateCounter,getCounter:this.getCounter,getTail:this.getTail,style:{width:"100%",display:"flex",overflow:"hidden"}},{default:S,counter:T,tail:()=>B}):i(Vn,{ref:"overflowRef",updateCounter:this.updateCounter,getCounter:this.getCounter,style:{width:"100%",display:"flex",overflow:"hidden"}},{default:S,counter:T}):p?S().concat(z):S(),w=v?()=>i("div",{class:`${s}-base-selection-popover`},f?S():this.selectedOptions.map(x)):void 0,O=v?{show:this.showTagsPanel,trigger:"hover",overlap:!0,placement:"top",width:"trigger",onUpdateShow:this.onPopoverUpdateShow,theme:this.mergedTheme.peers.Popover,themeOverrides:this.mergedTheme.peerOverrides.Popover}:null,$=(this.selected?!1:this.active?!this.pattern&&!this.isComposing:!0)?i("div",{class:`${s}-base-selection-placeholder ${s}-base-selection-overlay`},i("div",{class:`${s}-base-selection-placeholder__inner`},this.placeholder)):null,L=n?i("div",{ref:"patternInputWrapperRef",class:`${s}-base-selection-tags`},I,f?null:B,h):i("div",{ref:"multipleElRef",class:`${s}-base-selection-tags`,tabindex:r?void 0:0},I,h);m=i(ao,null,v?i(hr,Object.assign({},O,{scrollable:!0,style:"max-height: calc(var(--v-target-height) * 6.6);"}),{trigger:()=>L,default:w}):L,$)}else if(n){const b=this.pattern||this.isComposing,x=this.active?!b:!this.selected,S=this.active?!1:this.selected;m=i("div",{ref:"patternInputWrapperRef",class:`${s}-base-selection-label`},i("input",Object.assign({},this.inputProps,{ref:"patternInputRef",class:`${s}-base-selection-input`,value:this.active?this.pattern:"",placeholder:"",readonly:r,disabled:r,tabindex:-1,autofocus:this.autofocus,onFocus:this.handlePatternInputFocus,onBlur:this.handlePatternInputBlur,onInput:this.handlePatternInputInput,onCompositionstart:this.handleCompositionStart,onCompositionend:this.handleCompositionEnd})),S?i("div",{class:`${s}-base-selection-label__render-label ${s}-base-selection-overlay`,key:"input"},i("div",{class:`${s}-base-selection-overlay__wrapper`},c?c({option:this.selectedOption,handleClose:()=>{}}):u?u(this.selectedOption,!0):qe(this.label,this.selectedOption,!0))):null,x?i("div",{class:`${s}-base-selection-placeholder ${s}-base-selection-overlay`,key:"placeholder"},i("div",{class:`${s}-base-selection-overlay__wrapper`},this.filterablePlaceholder)):null,h)}else m=i("div",{ref:"singleElRef",class:`${s}-base-selection-label`,tabindex:this.disabled?void 0:0},this.label!==void 0?i("div",{class:`${s}-base-selection-input`,title:Gi(this.label),key:"input"},i("div",{class:`${s}-base-selection-input__content`},c?c({option:this.selectedOption,handleClose:()=>{}}):u?u(this.selectedOption,!0):qe(this.label,this.selectedOption,!0))):i("div",{class:`${s}-base-selection-placeholder ${s}-base-selection-overlay`,key:"placeholder"},i("div",{class:`${s}-base-selection-placeholder__inner`},this.placeholder)),h);return i("div",{ref:"selfRef",class:[`${s}-base-selection`,this.themeClass,e&&`${s}-base-selection--${e}-status`,{[`${s}-base-selection--active`]:this.active,[`${s}-base-selection--selected`]:this.selected||this.active&&this.pattern,[`${s}-base-selection--disabled`]:this.disabled,[`${s}-base-selection--multiple`]:this.multiple,[`${s}-base-selection--focus`]:this.focused}],style:this.cssVars,onClick:this.onClick,onMouseenter:this.handleMouseEnter,onMouseleave:this.handleMouseLeave,onKeydown:this.onKeydown,onFocusin:this.handleFocusin,onFocusout:this.handleFocusout,onMousedown:this.handleMouseDown},m,a?i("div",{class:`${s}-base-selection__border`}):null,a?i("div",{class:`${s}-base-selection__state-border`}):null)}}),fi=q({name:"SlotMachineNumber",props:{clsPrefix:{type:String,required:!0},value:{type:[Number,String],required:!0},oldOriginalNumber:{type:Number,default:void 0},newOriginalNumber:{type:Number,default:void 0}},setup(e){const o=D(null),t=D(e.value),r=D(e.value),n=D("up"),l=D(!1),a=R(()=>l.value?`${e.clsPrefix}-base-slot-machine-current-number--${n.value}-scroll`:null),s=R(()=>l.value?`${e.clsPrefix}-base-slot-machine-old-number--${n.value}-scroll`:null);Ke(le(e,"value"),(u,f)=>{t.value=f,r.value=u,io(d)});function d(){const u=e.newOriginalNumber,f=e.oldOriginalNumber;f===void 0||u===void 0||(u>f?c("up"):f>u&&c("down"))}function c(u){n.value=u,l.value=!1,io(()=>{var f;(f=o.value)===null||f===void 0||f.offsetWidth,l.value=!0})}return()=>{const{clsPrefix:u}=e;return i("span",{ref:o,class:`${u}-base-slot-machine-number`},t.value!==null?i("span",{class:[`${u}-base-slot-machine-old-number ${u}-base-slot-machine-old-number--top`,s.value]},t.value):null,i("span",{class:[`${u}-base-slot-machine-current-number`,a.value]},i("span",{ref:"numberWrapper",class:[`${u}-base-slot-machine-current-number__inner`,typeof e.value!="number"&&`${u}-base-slot-machine-current-number__inner--not-number`]},r.value)),t.value!==null?i("span",{class:[`${u}-base-slot-machine-old-number ${u}-base-slot-machine-old-number--bottom`,s.value]},t.value):null)}}}),{cubicBezierEaseInOut:nt}=So;function kl({duration:e=".2s",delay:o=".1s"}={}){return[C("&.fade-in-width-expand-transition-leave-from, &.fade-in-width-expand-transition-enter-to",{opacity:1}),C("&.fade-in-width-expand-transition-leave-to, &.fade-in-width-expand-transition-enter-from",` - opacity: 0!important; - margin-left: 0!important; - margin-right: 0!important; - `),C("&.fade-in-width-expand-transition-leave-active",` - overflow: hidden; - transition: - opacity ${e} ${nt}, - max-width ${e} ${nt} ${o}, - margin-left ${e} ${nt} ${o}, - margin-right ${e} ${nt} ${o}; - `),C("&.fade-in-width-expand-transition-enter-active",` - overflow: hidden; - transition: - opacity ${e} ${nt} ${o}, - max-width ${e} ${nt}, - margin-left ${e} ${nt}, - margin-right ${e} ${nt}; - `)]}const{cubicBezierEaseOut:kt}=So;function tu({duration:e=".2s"}={}){return[C("&.fade-up-width-expand-transition-leave-active",{transition:` - opacity ${e} ${kt}, - max-width ${e} ${kt}, - transform ${e} ${kt} - `}),C("&.fade-up-width-expand-transition-enter-active",{transition:` - opacity ${e} ${kt}, - max-width ${e} ${kt}, - transform ${e} ${kt} - `}),C("&.fade-up-width-expand-transition-enter-to",{opacity:1,transform:"translateX(0) translateY(0)"}),C("&.fade-up-width-expand-transition-enter-from",{maxWidth:"0 !important",opacity:0,transform:"translateY(60%)"}),C("&.fade-up-width-expand-transition-leave-from",{opacity:1,transform:"translateY(0)"}),C("&.fade-up-width-expand-transition-leave-to",{maxWidth:"0 !important",opacity:0,transform:"translateY(60%)"})]}const ru=C([C("@keyframes n-base-slot-machine-fade-up-in",` - from { - transform: translateY(60%); - opacity: 0; - } - to { - transform: translateY(0); - opacity: 1; - } - `),C("@keyframes n-base-slot-machine-fade-down-in",` - from { - transform: translateY(-60%); - opacity: 0; - } - to { - transform: translateY(0); - opacity: 1; - } - `),C("@keyframes n-base-slot-machine-fade-up-out",` - from { - transform: translateY(0%); - opacity: 1; - } - to { - transform: translateY(-60%); - opacity: 0; - } - `),C("@keyframes n-base-slot-machine-fade-down-out",` - from { - transform: translateY(0%); - opacity: 1; - } - to { - transform: translateY(60%); - opacity: 0; - } - `),g("base-slot-machine",` - overflow: hidden; - white-space: nowrap; - display: inline-block; - height: 18px; - line-height: 18px; - `,[g("base-slot-machine-number",` - display: inline-block; - position: relative; - height: 18px; - width: .6em; - max-width: .6em; - `,[tu({duration:".2s"}),kl({duration:".2s",delay:"0s"}),g("base-slot-machine-old-number",` - display: inline-block; - opacity: 0; - position: absolute; - left: 0; - right: 0; - `,[P("top",{transform:"translateY(-100%)"}),P("bottom",{transform:"translateY(100%)"}),P("down-scroll",{animation:"n-base-slot-machine-fade-down-out .2s cubic-bezier(0, 0, .2, 1)",animationIterationCount:1}),P("up-scroll",{animation:"n-base-slot-machine-fade-up-out .2s cubic-bezier(0, 0, .2, 1)",animationIterationCount:1})]),g("base-slot-machine-current-number",` - display: inline-block; - position: absolute; - left: 0; - top: 0; - bottom: 0; - right: 0; - opacity: 1; - transform: translateY(0); - width: .6em; - `,[P("down-scroll",{animation:"n-base-slot-machine-fade-down-in .2s cubic-bezier(0, 0, .2, 1)",animationIterationCount:1}),P("up-scroll",{animation:"n-base-slot-machine-fade-up-in .2s cubic-bezier(0, 0, .2, 1)",animationIterationCount:1}),y("inner",` - display: inline-block; - position: absolute; - right: 0; - top: 0; - width: .6em; - `,[P("not-number",` - right: unset; - left: 0; - `)])])])])]),nu=q({name:"BaseSlotMachine",props:{clsPrefix:{type:String,required:!0},value:{type:[Number,String],default:0},max:{type:Number,default:void 0},appeared:{type:Boolean,required:!0}},setup(e){Zo("-base-slot-machine",ru,le(e,"clsPrefix"));const o=D(),t=D(),r=R(()=>{if(typeof e.value=="string")return[];if(e.value<1)return[0];const n=[];let l=e.value;for(e.max!==void 0&&(l=Math.min(e.max,l));l>=1;)n.push(l%10),l/=10,l=Math.floor(l);return n.reverse(),n});return Ke(le(e,"value"),(n,l)=>{typeof n=="string"?(t.value=void 0,o.value=void 0):typeof l=="string"?(t.value=n,o.value=void 0):(t.value=n,o.value=l)}),()=>{const{value:n,clsPrefix:l}=e;return typeof n=="number"?i("span",{class:`${l}-base-slot-machine`},i(fn,{name:"fade-up-width-expand-transition",tag:"span"},{default:()=>r.value.map((a,s)=>i(fi,{clsPrefix:l,key:r.value.length-s-1,oldOriginalNumber:o.value,newOriginalNumber:t.value,value:a}))}),i(wt,{key:"+",width:!0},{default:()=>e.max!==void 0&&e.max{const{lineHeight:o,borderRadius:t,fontWeightStrong:r,baseColor:n,dividerColor:l,actionColor:a,textColor1:s,textColor2:d,closeColorHover:c,closeColorPressed:u,closeIconColor:f,closeIconColorHover:p,closeIconColorPressed:v,infoColor:h,successColor:m,warningColor:b,errorColor:x,fontSize:S}=e;return Object.assign(Object.assign({},Il),{fontSize:S,lineHeight:o,titleFontWeight:r,borderRadius:t,border:`1px solid ${l}`,color:a,titleTextColor:s,iconColor:d,contentTextColor:d,closeBorderRadius:t,closeColorHover:c,closeColorPressed:u,closeIconColor:f,closeIconColorHover:p,closeIconColorPressed:v,borderInfo:`1px solid ${$e(n,J(h,{alpha:.25}))}`,colorInfo:$e(n,J(h,{alpha:.08})),titleTextColorInfo:s,iconColorInfo:h,contentTextColorInfo:d,closeColorHoverInfo:c,closeColorPressedInfo:u,closeIconColorInfo:f,closeIconColorHoverInfo:p,closeIconColorPressedInfo:v,borderSuccess:`1px solid ${$e(n,J(m,{alpha:.25}))}`,colorSuccess:$e(n,J(m,{alpha:.08})),titleTextColorSuccess:s,iconColorSuccess:m,contentTextColorSuccess:d,closeColorHoverSuccess:c,closeColorPressedSuccess:u,closeIconColorSuccess:f,closeIconColorHoverSuccess:p,closeIconColorPressedSuccess:v,borderWarning:`1px solid ${$e(n,J(b,{alpha:.33}))}`,colorWarning:$e(n,J(b,{alpha:.08})),titleTextColorWarning:s,iconColorWarning:b,contentTextColorWarning:d,closeColorHoverWarning:c,closeColorPressedWarning:u,closeIconColorWarning:f,closeIconColorHoverWarning:p,closeIconColorPressedWarning:v,borderError:`1px solid ${$e(n,J(x,{alpha:.25}))}`,colorError:$e(n,J(x,{alpha:.08})),titleTextColorError:s,iconColorError:x,contentTextColorError:d,closeColorHoverError:c,closeColorPressedError:u,closeIconColorError:f,closeIconColorHoverError:p,closeIconColorPressedError:v})},su={name:"Alert",common:Le,self:au},du=su,{cubicBezierEaseInOut:Uo,cubicBezierEaseOut:cu,cubicBezierEaseIn:uu}=So;function rr({overflow:e="hidden",duration:o=".3s",originalTransition:t="",leavingDelay:r="0s",foldPadding:n=!1,enterToProps:l=void 0,leaveToProps:a=void 0,reverse:s=!1}={}){const d=s?"leave":"enter",c=s?"enter":"leave";return[C(`&.fade-in-height-expand-transition-${c}-from, - &.fade-in-height-expand-transition-${d}-to`,Object.assign(Object.assign({},l),{opacity:1})),C(`&.fade-in-height-expand-transition-${c}-to, - &.fade-in-height-expand-transition-${d}-from`,Object.assign(Object.assign({},a),{opacity:0,marginTop:"0 !important",marginBottom:"0 !important",paddingTop:n?"0 !important":void 0,paddingBottom:n?"0 !important":void 0})),C(`&.fade-in-height-expand-transition-${c}-active`,` - overflow: ${e}; - transition: - max-height ${o} ${Uo} ${r}, - opacity ${o} ${cu} ${r}, - margin-top ${o} ${Uo} ${r}, - margin-bottom ${o} ${Uo} ${r}, - padding-top ${o} ${Uo} ${r}, - padding-bottom ${o} ${Uo} ${r} - ${t?","+t:""} - `),C(`&.fade-in-height-expand-transition-${d}-active`,` - overflow: ${e}; - transition: - max-height ${o} ${Uo}, - opacity ${o} ${uu}, - margin-top ${o} ${Uo}, - margin-bottom ${o} ${Uo}, - padding-top ${o} ${Uo}, - padding-bottom ${o} ${Uo} - ${t?","+t:""} - `)]}const fu=g("alert",` - line-height: var(--n-line-height); - border-radius: var(--n-border-radius); - position: relative; - transition: background-color .3s var(--n-bezier); - background-color: var(--n-color); - text-align: start; - word-break: break-word; -`,[y("border",` - border-radius: inherit; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - transition: border-color .3s var(--n-bezier); - border: var(--n-border); - pointer-events: none; - `),P("closable",[g("alert-body",[y("title",` - padding-right: 24px; - `)])]),y("icon",{color:"var(--n-icon-color)"}),g("alert-body",{padding:"var(--n-padding)"},[y("title",{color:"var(--n-title-text-color)"}),y("content",{color:"var(--n-content-text-color)"})]),rr({originalTransition:"transform .3s var(--n-bezier)",enterToProps:{transform:"scale(1)"},leaveToProps:{transform:"scale(0.9)"}}),y("icon",` - position: absolute; - left: 0; - top: 0; - align-items: center; - justify-content: center; - display: flex; - width: var(--n-icon-size); - height: var(--n-icon-size); - font-size: var(--n-icon-size); - margin: var(--n-icon-margin); - `),y("close",` - transition: - color .3s var(--n-bezier), - background-color .3s var(--n-bezier); - position: absolute; - right: 0; - top: 0; - margin: var(--n-close-margin); - `),P("show-icon",[g("alert-body",{paddingLeft:"calc(var(--n-icon-margin-left) + var(--n-icon-size) + var(--n-icon-margin-right))"})]),g("alert-body",` - border-radius: var(--n-border-radius); - transition: border-color .3s var(--n-bezier); - `,[y("title",` - transition: color .3s var(--n-bezier); - font-size: 16px; - line-height: 19px; - font-weight: var(--n-title-font-weight); - `,[C("& +",[y("content",{marginTop:"9px"})])]),y("content",{transition:"color .3s var(--n-bezier)",fontSize:"var(--n-font-size)"})]),y("icon",{transition:"color .3s var(--n-bezier)"})]),hu=Object.assign(Object.assign({},ne.props),{title:String,showIcon:{type:Boolean,default:!0},type:{type:String,default:"default"},bordered:{type:Boolean,default:!0},closable:Boolean,onClose:Function,onAfterLeave:Function,onAfterHide:Function}),f1=q({name:"Alert",inheritAttrs:!1,props:hu,setup(e){const{mergedClsPrefixRef:o,mergedBorderedRef:t,inlineThemeDisabled:r,mergedRtlRef:n}=ke(e),l=ne("Alert","-alert",fu,du,e,o),a=to("Alert",n,o),s=R(()=>{const{common:{cubicBezierEaseInOut:v},self:h}=l.value,{fontSize:m,borderRadius:b,titleFontWeight:x,lineHeight:S,iconSize:B,iconMargin:T,iconMarginRtl:z,closeIconSize:I,closeBorderRadius:w,closeSize:O,closeMargin:k,closeMarginRtl:$,padding:L}=h,{type:M}=e,{left:j,right:E}=Ko(T);return{"--n-bezier":v,"--n-color":h[W("color",M)],"--n-close-icon-size":I,"--n-close-border-radius":w,"--n-close-color-hover":h[W("closeColorHover",M)],"--n-close-color-pressed":h[W("closeColorPressed",M)],"--n-close-icon-color":h[W("closeIconColor",M)],"--n-close-icon-color-hover":h[W("closeIconColorHover",M)],"--n-close-icon-color-pressed":h[W("closeIconColorPressed",M)],"--n-icon-color":h[W("iconColor",M)],"--n-border":h[W("border",M)],"--n-title-text-color":h[W("titleTextColor",M)],"--n-content-text-color":h[W("contentTextColor",M)],"--n-line-height":S,"--n-border-radius":b,"--n-font-size":m,"--n-title-font-weight":x,"--n-icon-size":B,"--n-icon-margin":T,"--n-icon-margin-rtl":z,"--n-close-size":O,"--n-close-margin":k,"--n-close-margin-rtl":$,"--n-padding":L,"--n-icon-margin-left":j,"--n-icon-margin-right":E}}),d=r?Ae("alert",R(()=>e.type[0]),s,e):void 0,c=D(!0),u=()=>{const{onAfterLeave:v,onAfterHide:h}=e;v&&v(),h&&h()};return{rtlEnabled:a,mergedClsPrefix:o,mergedBordered:t,visible:c,handleCloseClick:()=>{var v;Promise.resolve((v=e.onClose)===null||v===void 0?void 0:v.call(e)).then(h=>{h!==!1&&(c.value=!1)})},handleAfterLeave:()=>{u()},mergedTheme:l,cssVars:r?void 0:s,themeClass:d==null?void 0:d.themeClass,onRender:d==null?void 0:d.onRender}},render(){var e;return(e=this.onRender)===null||e===void 0||e.call(this),i(wt,{onAfterLeave:this.handleAfterLeave},{default:()=>{const{mergedClsPrefix:o,$slots:t}=this,r={class:[`${o}-alert`,this.themeClass,this.closable&&`${o}-alert--closable`,this.showIcon&&`${o}-alert--show-icon`,this.rtlEnabled&&`${o}-alert--rtl`],style:this.cssVars,role:"alert"};return this.visible?i("div",Object.assign({},ko(this.$attrs,r)),this.closable&&i(St,{clsPrefix:o,class:`${o}-alert__close`,onClick:this.handleCloseClick}),this.bordered&&i("div",{class:`${o}-alert__border`}),this.showIcon&&i("div",{class:`${o}-alert__icon`,"aria-hidden":"true"},lo(t.icon,()=>[i(De,{clsPrefix:o},{default:()=>{switch(this.type){case"success":return i(Ht,null);case"info":return i(mt,null);case"warning":return i(yt,null);case"error":return i(Lt,null);default:return null}}})])),i("div",{class:[`${o}-alert-body`,this.mergedBordered&&`${o}-alert-body--bordered`]},Ee(t.header,n=>{const l=n||this.title;return l?i("div",{class:`${o}-alert-body__title`},l):null}),t.default&&i("div",{class:`${o}-alert-body__content`},t))):null}})}}),pu={linkFontSize:"13px",linkPadding:"0 0 0 16px",railWidth:"4px"},vu=e=>{const{borderRadius:o,railColor:t,primaryColor:r,primaryColorHover:n,primaryColorPressed:l,textColor2:a}=e;return Object.assign(Object.assign({},pu),{borderRadius:o,railColor:t,railColorActive:r,linkColor:J(r,{alpha:.15}),linkTextColor:a,linkTextColorHover:n,linkTextColorPressed:l,linkTextColorActive:r})},gu={name:"Anchor",common:fe,self:vu},mu=gu;function Rr(e){return e.type==="group"}function Bl(e){return e.type==="ignored"}function Yr(e,o){try{return!!(1+o.toString().toLowerCase().indexOf(e.trim().toLowerCase()))}catch{return!1}}function Tl(e,o){return{getIsGroup:Rr,getIgnored:Bl,getKey(r){return Rr(r)?r.name||r.key||"key-required":r[e]},getChildren(r){return r[o]}}}function bu(e,o,t,r){if(!o)return e;function n(l){if(!Array.isArray(l))return[];const a=[];for(const s of l)if(Rr(s)){const d=n(s[r]);d.length&&a.push(Object.assign({},s,{[r]:d}))}else{if(Bl(s))continue;o(t,s)&&a.push(s)}return a}return n(e)}function xu(e,o,t){const r=new Map;return e.forEach(n=>{Rr(n)?n[t].forEach(l=>{r.set(l[o],l)}):r.set(n[o],n)}),r}const Cu=jo&&"chrome"in window;jo&&navigator.userAgent.includes("Firefox");const Fl=jo&&navigator.userAgent.includes("Safari")&&!Cu,Ol={paddingTiny:"0 8px",paddingSmall:"0 10px",paddingMedium:"0 12px",paddingLarge:"0 14px",clearSize:"16px"},yu={name:"Input",common:fe,self(e){const{textColor2:o,textColor3:t,textColorDisabled:r,primaryColor:n,primaryColorHover:l,inputColor:a,inputColorDisabled:s,warningColor:d,warningColorHover:c,errorColor:u,errorColorHover:f,borderRadius:p,lineHeight:v,fontSizeTiny:h,fontSizeSmall:m,fontSizeMedium:b,fontSizeLarge:x,heightTiny:S,heightSmall:B,heightMedium:T,heightLarge:z,clearColor:I,clearColorHover:w,clearColorPressed:O,placeholderColor:k,placeholderColorDisabled:$,iconColor:L,iconColorDisabled:M,iconColorHover:j,iconColorPressed:E}=e;return Object.assign(Object.assign({},Ol),{countTextColorDisabled:r,countTextColor:t,heightTiny:S,heightSmall:B,heightMedium:T,heightLarge:z,fontSizeTiny:h,fontSizeSmall:m,fontSizeMedium:b,fontSizeLarge:x,lineHeight:v,lineHeightTextarea:v,borderRadius:p,iconSize:"16px",groupLabelColor:a,textColor:o,textColorDisabled:r,textDecorationColor:o,groupLabelTextColor:o,caretColor:n,placeholderColor:k,placeholderColorDisabled:$,color:a,colorDisabled:s,colorFocus:J(n,{alpha:.1}),groupLabelBorder:"1px solid #0000",border:"1px solid #0000",borderHover:`1px solid ${l}`,borderDisabled:"1px solid #0000",borderFocus:`1px solid ${l}`,boxShadowFocus:`0 0 8px 0 ${J(n,{alpha:.3})}`,loadingColor:n,loadingColorWarning:d,borderWarning:`1px solid ${d}`,borderHoverWarning:`1px solid ${c}`,colorFocusWarning:J(d,{alpha:.1}),borderFocusWarning:`1px solid ${c}`,boxShadowFocusWarning:`0 0 8px 0 ${J(d,{alpha:.3})}`,caretColorWarning:d,loadingColorError:u,borderError:`1px solid ${u}`,borderHoverError:`1px solid ${f}`,colorFocusError:J(u,{alpha:.1}),borderFocusError:`1px solid ${f}`,boxShadowFocusError:`0 0 8px 0 ${J(u,{alpha:.3})}`,caretColorError:u,clearColor:I,clearColorHover:w,clearColorPressed:O,iconColor:L,iconColorDisabled:M,iconColorHover:j,iconColorPressed:E,suffixTextColor:o})}},Ho=yu,wu=e=>{const{textColor2:o,textColor3:t,textColorDisabled:r,primaryColor:n,primaryColorHover:l,inputColor:a,inputColorDisabled:s,borderColor:d,warningColor:c,warningColorHover:u,errorColor:f,errorColorHover:p,borderRadius:v,lineHeight:h,fontSizeTiny:m,fontSizeSmall:b,fontSizeMedium:x,fontSizeLarge:S,heightTiny:B,heightSmall:T,heightMedium:z,heightLarge:I,actionColor:w,clearColor:O,clearColorHover:k,clearColorPressed:$,placeholderColor:L,placeholderColorDisabled:M,iconColor:j,iconColorDisabled:E,iconColorHover:U,iconColorPressed:_}=e;return Object.assign(Object.assign({},Ol),{countTextColorDisabled:r,countTextColor:t,heightTiny:B,heightSmall:T,heightMedium:z,heightLarge:I,fontSizeTiny:m,fontSizeSmall:b,fontSizeMedium:x,fontSizeLarge:S,lineHeight:h,lineHeightTextarea:h,borderRadius:v,iconSize:"16px",groupLabelColor:w,groupLabelTextColor:o,textColor:o,textColorDisabled:r,textDecorationColor:o,caretColor:n,placeholderColor:L,placeholderColorDisabled:M,color:a,colorDisabled:s,colorFocus:a,groupLabelBorder:`1px solid ${d}`,border:`1px solid ${d}`,borderHover:`1px solid ${l}`,borderDisabled:`1px solid ${d}`,borderFocus:`1px solid ${l}`,boxShadowFocus:`0 0 0 2px ${J(n,{alpha:.2})}`,loadingColor:n,loadingColorWarning:c,borderWarning:`1px solid ${c}`,borderHoverWarning:`1px solid ${u}`,colorFocusWarning:a,borderFocusWarning:`1px solid ${u}`,boxShadowFocusWarning:`0 0 0 2px ${J(c,{alpha:.2})}`,caretColorWarning:c,loadingColorError:f,borderError:`1px solid ${f}`,borderHoverError:`1px solid ${p}`,colorFocusError:a,borderFocusError:`1px solid ${p}`,boxShadowFocusError:`0 0 0 2px ${J(f,{alpha:.2})}`,caretColorError:f,clearColor:O,clearColorHover:k,clearColorPressed:$,iconColor:j,iconColorDisabled:E,iconColorHover:U,iconColorPressed:_,suffixTextColor:o})},Su={name:"Input",common:Le,self:wu},pr=Su,Ml="n-input";function zu(e){let o=0;for(const t of e)o++;return o}function mr(e){return e===""||e==null}function $u(e){const o=D(null);function t(){const{value:l}=e;if(!(l!=null&&l.focus)){n();return}const{selectionStart:a,selectionEnd:s,value:d}=l;if(a==null||s==null){n();return}o.value={start:a,end:s,beforeText:d.slice(0,a),afterText:d.slice(s)}}function r(){var l;const{value:a}=o,{value:s}=e;if(!a||!s)return;const{value:d}=s,{start:c,beforeText:u,afterText:f}=a;let p=d.length;if(d.endsWith(f))p=d.length-f.length;else if(d.startsWith(u))p=u.length;else{const v=u[c-1],h=d.indexOf(v,c-1);h!==-1&&(p=h+1)}(l=s.setSelectionRange)===null||l===void 0||l.call(s,p,p)}function n(){o.value=null}return Ke(e,n),{recordCursor:t,restoreCursor:r}}const hi=q({name:"InputWordCount",setup(e,{slots:o}){const{mergedValueRef:t,maxlengthRef:r,mergedClsPrefixRef:n,countGraphemesRef:l}=Se(Ml),a=R(()=>{const{value:s}=t;return s===null||Array.isArray(s)?0:(l.value||zu)(s)});return()=>{const{value:s}=r,{value:d}=t;return i("span",{class:`${n.value}-input-word-count`},an(o.default,{value:d===null||Array.isArray(d)?"":d},()=>[s===void 0?a.value:`${a.value} / ${s}`]))}}}),Ru=g("input",` - max-width: 100%; - cursor: text; - line-height: 1.5; - z-index: auto; - outline: none; - box-sizing: border-box; - position: relative; - display: inline-flex; - border-radius: var(--n-border-radius); - background-color: var(--n-color); - transition: background-color .3s var(--n-bezier); - font-size: var(--n-font-size); - --n-padding-vertical: calc((var(--n-height) - 1.5 * var(--n-font-size)) / 2); -`,[y("input, textarea",` - overflow: hidden; - flex-grow: 1; - position: relative; - `),y("input-el, textarea-el, input-mirror, textarea-mirror, separator, placeholder",` - box-sizing: border-box; - font-size: inherit; - line-height: 1.5; - font-family: inherit; - border: none; - outline: none; - background-color: #0000; - text-align: inherit; - transition: - -webkit-text-fill-color .3s var(--n-bezier), - caret-color .3s var(--n-bezier), - color .3s var(--n-bezier), - text-decoration-color .3s var(--n-bezier); - `),y("input-el, textarea-el",` - -webkit-appearance: none; - scrollbar-width: none; - width: 100%; - min-width: 0; - text-decoration-color: var(--n-text-decoration-color); - color: var(--n-text-color); - caret-color: var(--n-caret-color); - background-color: transparent; - `,[C("&::-webkit-scrollbar, &::-webkit-scrollbar-track-piece, &::-webkit-scrollbar-thumb",` - width: 0; - height: 0; - display: none; - `),C("&::placeholder",` - color: #0000; - -webkit-text-fill-color: transparent !important; - `),C("&:-webkit-autofill ~",[y("placeholder","display: none;")])]),P("round",[je("textarea","border-radius: calc(var(--n-height) / 2);")]),y("placeholder",` - pointer-events: none; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - overflow: hidden; - color: var(--n-placeholder-color); - `,[C("span",` - width: 100%; - display: inline-block; - `)]),P("textarea",[y("placeholder","overflow: visible;")]),je("autosize","width: 100%;"),P("autosize",[y("textarea-el, input-el",` - position: absolute; - top: 0; - left: 0; - height: 100%; - `)]),g("input-wrapper",` - overflow: hidden; - display: inline-flex; - flex-grow: 1; - position: relative; - padding-left: var(--n-padding-left); - padding-right: var(--n-padding-right); - `),y("input-mirror",` - padding: 0; - height: var(--n-height); - line-height: var(--n-height); - overflow: hidden; - visibility: hidden; - position: static; - white-space: pre; - pointer-events: none; - `),y("input-el",` - padding: 0; - height: var(--n-height); - line-height: var(--n-height); - `,[C("+",[y("placeholder",` - display: flex; - align-items: center; - `)])]),je("textarea",[y("placeholder","white-space: nowrap;")]),y("eye",` - display: flex; - align-items: center; - justify-content: center; - transition: color .3s var(--n-bezier); - `),P("textarea","width: 100%;",[g("input-word-count",` - position: absolute; - right: var(--n-padding-right); - bottom: var(--n-padding-vertical); - `),P("resizable",[g("input-wrapper",` - resize: vertical; - min-height: var(--n-height); - `)]),y("textarea-el, textarea-mirror, placeholder",` - height: 100%; - padding-left: 0; - padding-right: 0; - padding-top: var(--n-padding-vertical); - padding-bottom: var(--n-padding-vertical); - word-break: break-word; - display: inline-block; - vertical-align: bottom; - box-sizing: border-box; - line-height: var(--n-line-height-textarea); - margin: 0; - resize: none; - white-space: pre-wrap; - `),y("textarea-mirror",` - width: 100%; - pointer-events: none; - overflow: hidden; - visibility: hidden; - position: static; - white-space: pre-wrap; - overflow-wrap: break-word; - `)]),P("pair",[y("input-el, placeholder","text-align: center;"),y("separator",` - display: flex; - align-items: center; - transition: color .3s var(--n-bezier); - color: var(--n-text-color); - white-space: nowrap; - `,[g("icon",` - color: var(--n-icon-color); - `),g("base-icon",` - color: var(--n-icon-color); - `)])]),P("disabled",` - cursor: not-allowed; - background-color: var(--n-color-disabled); - `,[y("border","border: var(--n-border-disabled);"),y("input-el, textarea-el",` - cursor: not-allowed; - color: var(--n-text-color-disabled); - text-decoration-color: var(--n-text-color-disabled); - `),y("placeholder","color: var(--n-placeholder-color-disabled);"),y("separator","color: var(--n-text-color-disabled);",[g("icon",` - color: var(--n-icon-color-disabled); - `),g("base-icon",` - color: var(--n-icon-color-disabled); - `)]),g("input-word-count",` - color: var(--n-count-text-color-disabled); - `),y("suffix, prefix","color: var(--n-text-color-disabled);",[g("icon",` - color: var(--n-icon-color-disabled); - `),g("internal-icon",` - color: var(--n-icon-color-disabled); - `)])]),je("disabled",[y("eye",` - color: var(--n-icon-color); - cursor: pointer; - `,[C("&:hover",` - color: var(--n-icon-color-hover); - `),C("&:active",` - color: var(--n-icon-color-pressed); - `)]),C("&:hover",[y("state-border","border: var(--n-border-hover);")]),P("focus","background-color: var(--n-color-focus);",[y("state-border",` - border: var(--n-border-focus); - box-shadow: var(--n-box-shadow-focus); - `)])]),y("border, state-border",` - box-sizing: border-box; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - pointer-events: none; - border-radius: inherit; - border: var(--n-border); - transition: - box-shadow .3s var(--n-bezier), - border-color .3s var(--n-bezier); - `),y("state-border",` - border-color: #0000; - z-index: 1; - `),y("prefix","margin-right: 4px;"),y("suffix",` - margin-left: 4px; - `),y("suffix, prefix",` - transition: color .3s var(--n-bezier); - flex-wrap: nowrap; - flex-shrink: 0; - line-height: var(--n-height); - white-space: nowrap; - display: inline-flex; - align-items: center; - justify-content: center; - color: var(--n-suffix-text-color); - `,[g("base-loading",` - font-size: var(--n-icon-size); - margin: 0 2px; - color: var(--n-loading-color); - `),g("base-clear",` - font-size: var(--n-icon-size); - `,[y("placeholder",[g("base-icon",` - transition: color .3s var(--n-bezier); - color: var(--n-icon-color); - font-size: var(--n-icon-size); - `)])]),C(">",[g("icon",` - transition: color .3s var(--n-bezier); - color: var(--n-icon-color); - font-size: var(--n-icon-size); - `)]),g("base-icon",` - font-size: var(--n-icon-size); - `)]),g("input-word-count",` - pointer-events: none; - line-height: 1.5; - font-size: .85em; - color: var(--n-count-text-color); - transition: color .3s var(--n-bezier); - margin-left: 4px; - font-variant: tabular-nums; - `),["warning","error"].map(e=>P(`${e}-status`,[je("disabled",[g("base-loading",` - color: var(--n-loading-color-${e}) - `),y("input-el, textarea-el",` - caret-color: var(--n-caret-color-${e}); - `),y("state-border",` - border: var(--n-border-${e}); - `),C("&:hover",[y("state-border",` - border: var(--n-border-hover-${e}); - `)]),C("&:focus",` - background-color: var(--n-color-focus-${e}); - `,[y("state-border",` - box-shadow: var(--n-box-shadow-focus-${e}); - border: var(--n-border-focus-${e}); - `)]),P("focus",` - background-color: var(--n-color-focus-${e}); - `,[y("state-border",` - box-shadow: var(--n-box-shadow-focus-${e}); - border: var(--n-border-focus-${e}); - `)])])]))]),Pu=g("input",[P("disabled",[y("input-el, textarea-el",` - -webkit-text-fill-color: var(--n-text-color-disabled); - `)])]),ku=Object.assign(Object.assign({},ne.props),{bordered:{type:Boolean,default:void 0},type:{type:String,default:"text"},placeholder:[Array,String],defaultValue:{type:[String,Array],default:null},value:[String,Array],disabled:{type:Boolean,default:void 0},size:String,rows:{type:[Number,String],default:3},round:Boolean,minlength:[String,Number],maxlength:[String,Number],clearable:Boolean,autosize:{type:[Boolean,Object],default:!1},pair:Boolean,separator:String,readonly:{type:[String,Boolean],default:!1},passivelyActivated:Boolean,showPasswordOn:String,stateful:{type:Boolean,default:!0},autofocus:Boolean,inputProps:Object,resizable:{type:Boolean,default:!0},showCount:Boolean,loading:{type:Boolean,default:void 0},allowInput:Function,renderCount:Function,onMousedown:Function,onKeydown:Function,onKeyup:Function,onInput:[Function,Array],onFocus:[Function,Array],onBlur:[Function,Array],onClick:[Function,Array],onChange:[Function,Array],onClear:[Function,Array],countGraphemes:Function,status:String,"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],textDecoration:[String,Array],attrSize:{type:Number,default:20},onInputBlur:[Function,Array],onInputFocus:[Function,Array],onDeactivate:[Function,Array],onActivate:[Function,Array],onWrapperFocus:[Function,Array],onWrapperBlur:[Function,Array],internalDeactivateOnEnter:Boolean,internalForceFocus:Boolean,internalLoadingBeforeSuffix:Boolean,showPasswordToggle:Boolean}),xt=q({name:"Input",props:ku,setup(e){const{mergedClsPrefixRef:o,mergedBorderedRef:t,inlineThemeDisabled:r,mergedRtlRef:n}=ke(e),l=ne("Input","-input",Ru,pr,e,o);Fl&&Zo("-input-safari",Pu,o);const a=D(null),s=D(null),d=D(null),c=D(null),u=D(null),f=D(null),p=D(null),v=$u(p),h=D(null),{localeRef:m}=Xo("Input"),b=D(e.defaultValue),x=le(e,"value"),S=so(x,b),B=rt(e),{mergedSizeRef:T,mergedDisabledRef:z,mergedStatusRef:I}=B,w=D(!1),O=D(!1),k=D(!1),$=D(!1);let L=null;const M=R(()=>{const{placeholder:H,pair:oe}=e;return oe?Array.isArray(H)?H:H===void 0?["",""]:[H,H]:H===void 0?[m.value.placeholder]:[H]}),j=R(()=>{const{value:H}=k,{value:oe}=S,{value:Fe}=M;return!H&&(mr(oe)||Array.isArray(oe)&&mr(oe[0]))&&Fe[0]}),E=R(()=>{const{value:H}=k,{value:oe}=S,{value:Fe}=M;return!H&&Fe[1]&&(mr(oe)||Array.isArray(oe)&&mr(oe[1]))}),U=We(()=>e.internalForceFocus||w.value),_=We(()=>{if(z.value||e.readonly||!e.clearable||!U.value&&!O.value)return!1;const{value:H}=S,{value:oe}=U;return e.pair?!!(Array.isArray(H)&&(H[0]||H[1]))&&(O.value||oe):!!H&&(O.value||oe)}),V=R(()=>{const{showPasswordOn:H}=e;if(H)return H;if(e.showPasswordToggle)return"click"}),te=D(!1),N=R(()=>{const{textDecoration:H}=e;return H?Array.isArray(H)?H.map(oe=>({textDecoration:oe})):[{textDecoration:H}]:["",""]}),G=D(void 0),Ce=()=>{var H,oe;if(e.type==="textarea"){const{autosize:Fe}=e;if(Fe&&(G.value=(oe=(H=h.value)===null||H===void 0?void 0:H.$el)===null||oe===void 0?void 0:oe.offsetWidth),!s.value||typeof Fe=="boolean")return;const{paddingTop:Ge,paddingBottom:Ye,lineHeight:Ue}=window.getComputedStyle(s.value),Qo=Number(Ge.slice(0,-2)),Jo=Number(Ye.slice(0,-2)),et=Number(Ue.slice(0,-2)),{value:dt}=d;if(!dt)return;if(Fe.minRows){const ct=Math.max(Fe.minRows,1),Gt=`${Qo+Jo+et*ct}px`;dt.style.minHeight=Gt}if(Fe.maxRows){const ct=`${Qo+Jo+et*Fe.maxRows}px`;dt.style.maxHeight=ct}}},X=R(()=>{const{maxlength:H}=e;return H===void 0?void 0:Number(H)});mo(()=>{const{value:H}=S;Array.isArray(H)||Te(H)});const ve=Pr().proxy;function he(H){const{onUpdateValue:oe,"onUpdate:value":Fe,onInput:Ge}=e,{nTriggerFormInput:Ye}=B;oe&&ae(oe,H),Fe&&ae(Fe,H),Ge&&ae(Ge,H),b.value=H,Ye()}function be(H){const{onChange:oe}=e,{nTriggerFormChange:Fe}=B;oe&&ae(oe,H),b.value=H,Fe()}function me(H){const{onBlur:oe}=e,{nTriggerFormBlur:Fe}=B;oe&&ae(oe,H),Fe()}function se(H){const{onFocus:oe}=e,{nTriggerFormFocus:Fe}=B;oe&&ae(oe,H),Fe()}function Re(H){const{onClear:oe}=e;oe&&ae(oe,H)}function ge(H){const{onInputBlur:oe}=e;oe&&ae(oe,H)}function ee(H){const{onInputFocus:oe}=e;oe&&ae(oe,H)}function xe(){const{onDeactivate:H}=e;H&&ae(H)}function de(){const{onActivate:H}=e;H&&ae(H)}function ye(H){const{onClick:oe}=e;oe&&ae(oe,H)}function pe(H){const{onWrapperFocus:oe}=e;oe&&ae(oe,H)}function Me(H){const{onWrapperBlur:oe}=e;oe&&ae(oe,H)}function Q(){k.value=!0}function A(H){k.value=!1,H.target===f.value?Z(H,1):Z(H,0)}function Z(H,oe=0,Fe="input"){const Ge=H.target.value;if(Te(Ge),H instanceof InputEvent&&!H.isComposing&&(k.value=!1),e.type==="textarea"){const{value:Ue}=h;Ue&&Ue.syncUnifiedContainer()}if(L=Ge,k.value)return;v.recordCursor();const Ye=re(Ge);if(Ye)if(!e.pair)Fe==="input"?he(Ge):be(Ge);else{let{value:Ue}=S;Array.isArray(Ue)?Ue=[Ue[0],Ue[1]]:Ue=["",""],Ue[oe]=Ge,Fe==="input"?he(Ue):be(Ue)}ve.$forceUpdate(),Ye||io(v.restoreCursor)}function re(H){const{countGraphemes:oe,maxlength:Fe,minlength:Ge}=e;if(oe){let Ue;if(Fe!==void 0&&(Ue===void 0&&(Ue=oe(H)),Ue>Number(Fe))||Ge!==void 0&&(Ue===void 0&&(Ue=oe(H)),Ue{Ge.preventDefault(),Ro("mouseup",document,oe)};if(Do("mouseup",document,oe),V.value!=="mousedown")return;te.value=!0;const Fe=()=>{te.value=!1,Ro("mouseup",document,Fe)};Do("mouseup",document,Fe)}function Fo(H){var oe;switch((oe=e.onKeydown)===null||oe===void 0||oe.call(e,H),H.key){case"Escape":uo();break;case"Enter":co(H);break}}function co(H){var oe,Fe;if(e.passivelyActivated){const{value:Ge}=$;if(Ge){e.internalDeactivateOnEnter&&uo();return}H.preventDefault(),e.type==="textarea"?(oe=s.value)===null||oe===void 0||oe.focus():(Fe=u.value)===null||Fe===void 0||Fe.focus()}}function uo(){e.passivelyActivated&&($.value=!1,io(()=>{var H;(H=a.value)===null||H===void 0||H.focus()}))}function F(){var H,oe,Fe;z.value||(e.passivelyActivated?(H=a.value)===null||H===void 0||H.focus():((oe=s.value)===null||oe===void 0||oe.focus(),(Fe=u.value)===null||Fe===void 0||Fe.focus()))}function K(){var H;!((H=a.value)===null||H===void 0)&&H.contains(document.activeElement)&&document.activeElement.blur()}function ie(){var H,oe;(H=s.value)===null||H===void 0||H.select(),(oe=u.value)===null||oe===void 0||oe.select()}function ze(){z.value||(s.value?s.value.focus():u.value&&u.value.focus())}function Pe(){const{value:H}=a;H!=null&&H.contains(document.activeElement)&&H!==document.activeElement&&uo()}function Ie(H){if(e.type==="textarea"){const{value:oe}=s;oe==null||oe.scrollTo(H)}else{const{value:oe}=u;oe==null||oe.scrollTo(H)}}function Te(H){const{type:oe,pair:Fe,autosize:Ge}=e;if(!Fe&&Ge)if(oe==="textarea"){const{value:Ye}=d;Ye&&(Ye.textContent=(H??"")+`\r -`)}else{const{value:Ye}=c;Ye&&(H?Ye.textContent=H:Ye.innerHTML=" ")}}function _e(){Ce()}const Qe=D({top:"0"});function vo(H){var oe;const{scrollTop:Fe}=H.target;Qe.value.top=`${-Fe}px`,(oe=h.value)===null||oe===void 0||oe.syncUnifiedContainer()}let Wo=null;oo(()=>{const{autosize:H,type:oe}=e;H&&oe==="textarea"?Wo=Ke(S,Fe=>{!Array.isArray(Fe)&&Fe!==L&&Te(Fe)}):Wo==null||Wo()});let No=null;oo(()=>{e.type==="textarea"?No=Ke(S,H=>{var oe;!Array.isArray(H)&&H!==L&&((oe=h.value)===null||oe===void 0||oe.syncUnifiedContainer())}):No==null||No()}),Oe(Ml,{mergedValueRef:S,maxlengthRef:X,mergedClsPrefixRef:o,countGraphemesRef:le(e,"countGraphemes")});const st={wrapperElRef:a,inputElRef:u,textareaElRef:s,isCompositing:k,focus:F,blur:K,select:ie,deactivate:Pe,activate:ze,scrollTo:Ie},Kt=to("Input",n,o),Rt=R(()=>{const{value:H}=T,{common:{cubicBezierEaseInOut:oe},self:{color:Fe,borderRadius:Ge,textColor:Ye,caretColor:Ue,caretColorError:Qo,caretColorWarning:Jo,textDecorationColor:et,border:dt,borderDisabled:ct,borderHover:Gt,borderFocus:Er,placeholderColor:jr,placeholderColorDisabled:Wr,lineHeightTextarea:ms,colorDisabled:bs,colorFocus:xs,textColorDisabled:Cs,boxShadowFocus:ys,iconSize:ws,colorFocusWarning:Ss,boxShadowFocusWarning:zs,borderWarning:$s,borderFocusWarning:Rs,borderHoverWarning:Ps,colorFocusError:ks,boxShadowFocusError:Is,borderError:Bs,borderFocusError:Ts,borderHoverError:Fs,clearSize:Os,clearColor:Ms,clearColorHover:_s,clearColorPressed:Ds,iconColor:Ls,iconColorDisabled:Hs,suffixTextColor:As,countTextColor:Es,countTextColorDisabled:js,iconColorHover:Ws,iconColorPressed:Ns,loadingColor:Vs,loadingColorError:Us,loadingColorWarning:Ks,[W("padding",H)]:Gs,[W("fontSize",H)]:qs,[W("height",H)]:Ys}}=l.value,{left:Xs,right:Zs}=Ko(Gs);return{"--n-bezier":oe,"--n-count-text-color":Es,"--n-count-text-color-disabled":js,"--n-color":Fe,"--n-font-size":qs,"--n-border-radius":Ge,"--n-height":Ys,"--n-padding-left":Xs,"--n-padding-right":Zs,"--n-text-color":Ye,"--n-caret-color":Ue,"--n-text-decoration-color":et,"--n-border":dt,"--n-border-disabled":ct,"--n-border-hover":Gt,"--n-border-focus":Er,"--n-placeholder-color":jr,"--n-placeholder-color-disabled":Wr,"--n-icon-size":ws,"--n-line-height-textarea":ms,"--n-color-disabled":bs,"--n-color-focus":xs,"--n-text-color-disabled":Cs,"--n-box-shadow-focus":ys,"--n-loading-color":Vs,"--n-caret-color-warning":Jo,"--n-color-focus-warning":Ss,"--n-box-shadow-focus-warning":zs,"--n-border-warning":$s,"--n-border-focus-warning":Rs,"--n-border-hover-warning":Ps,"--n-loading-color-warning":Ks,"--n-caret-color-error":Qo,"--n-color-focus-error":ks,"--n-box-shadow-focus-error":Is,"--n-border-error":Bs,"--n-border-focus-error":Ts,"--n-border-hover-error":Fs,"--n-loading-color-error":Us,"--n-clear-color":Ms,"--n-clear-size":Os,"--n-clear-color-hover":_s,"--n-clear-color-pressed":Ds,"--n-icon-color":Ls,"--n-icon-color-hover":Ws,"--n-icon-color-pressed":Ns,"--n-icon-color-disabled":Hs,"--n-suffix-text-color":As}}),Vo=r?Ae("input",R(()=>{const{value:H}=T;return H[0]}),Rt,e):void 0;return Object.assign(Object.assign({},st),{wrapperElRef:a,inputElRef:u,inputMirrorElRef:c,inputEl2Ref:f,textareaElRef:s,textareaMirrorElRef:d,textareaScrollbarInstRef:h,rtlEnabled:Kt,uncontrolledValue:b,mergedValue:S,passwordVisible:te,mergedPlaceholder:M,showPlaceholder1:j,showPlaceholder2:E,mergedFocus:U,isComposing:k,activated:$,showClearButton:_,mergedSize:T,mergedDisabled:z,textDecorationStyle:N,mergedClsPrefix:o,mergedBordered:t,mergedShowPasswordOn:V,placeholderStyle:Qe,mergedStatus:I,textAreaScrollContainerWidth:G,handleTextAreaScroll:vo,handleCompositionStart:Q,handleCompositionEnd:A,handleInput:Z,handleInputBlur:ue,handleInputFocus:Y,handleWrapperBlur:ce,handleWrapperFocus:He,handleMouseEnter:To,handleMouseLeave:xo,handleMouseDown:Bo,handleChange:Ze,handleClick:po,handleClear:fo,handlePasswordToggleClick:Co,handlePasswordToggleMousedown:Ao,handleWrapperKeydown:Fo,handleTextAreaMirrorResize:_e,getTextareaScrollContainer:()=>s.value,mergedTheme:l,cssVars:r?void 0:Rt,themeClass:Vo==null?void 0:Vo.themeClass,onRender:Vo==null?void 0:Vo.onRender})},render(){var e,o;const{mergedClsPrefix:t,mergedStatus:r,themeClass:n,type:l,countGraphemes:a,onRender:s}=this,d=this.$slots;return s==null||s(),i("div",{ref:"wrapperElRef",class:[`${t}-input`,n,r&&`${t}-input--${r}-status`,{[`${t}-input--rtl`]:this.rtlEnabled,[`${t}-input--disabled`]:this.mergedDisabled,[`${t}-input--textarea`]:l==="textarea",[`${t}-input--resizable`]:this.resizable&&!this.autosize,[`${t}-input--autosize`]:this.autosize,[`${t}-input--round`]:this.round&&l!=="textarea",[`${t}-input--pair`]:this.pair,[`${t}-input--focus`]:this.mergedFocus,[`${t}-input--stateful`]:this.stateful}],style:this.cssVars,tabindex:!this.mergedDisabled&&this.passivelyActivated&&!this.activated?0:void 0,onFocus:this.handleWrapperFocus,onBlur:this.handleWrapperBlur,onClick:this.handleClick,onMousedown:this.handleMouseDown,onMouseenter:this.handleMouseEnter,onMouseleave:this.handleMouseLeave,onCompositionstart:this.handleCompositionStart,onCompositionend:this.handleCompositionEnd,onKeyup:this.onKeyup,onKeydown:this.handleWrapperKeydown},i("div",{class:`${t}-input-wrapper`},Ee(d.prefix,c=>c&&i("div",{class:`${t}-input__prefix`},c)),l==="textarea"?i(ur,{ref:"textareaScrollbarInstRef",class:`${t}-input__textarea`,container:this.getTextareaScrollContainer,triggerDisplayManually:!0,useUnifiedContainer:!0,internalHoistYRail:!0},{default:()=>{var c,u;const{textAreaScrollContainerWidth:f}=this,p={width:this.autosize&&f&&`${f}px`};return i(ao,null,i("textarea",Object.assign({},this.inputProps,{ref:"textareaElRef",class:[`${t}-input__textarea-el`,(c=this.inputProps)===null||c===void 0?void 0:c.class],autofocus:this.autofocus,rows:Number(this.rows),placeholder:this.placeholder,value:this.mergedValue,disabled:this.mergedDisabled,maxlength:a?void 0:this.maxlength,minlength:a?void 0:this.minlength,readonly:this.readonly,tabindex:this.passivelyActivated&&!this.activated?-1:void 0,style:[this.textDecorationStyle[0],(u=this.inputProps)===null||u===void 0?void 0:u.style,p],onBlur:this.handleInputBlur,onFocus:v=>{this.handleInputFocus(v,2)},onInput:this.handleInput,onChange:this.handleChange,onScroll:this.handleTextAreaScroll})),this.showPlaceholder1?i("div",{class:`${t}-input__placeholder`,style:[this.placeholderStyle,p],key:"placeholder"},this.mergedPlaceholder[0]):null,this.autosize?i(vt,{onResize:this.handleTextAreaMirrorResize},{default:()=>i("div",{ref:"textareaMirrorElRef",class:`${t}-input__textarea-mirror`,key:"mirror"})}):null)}}):i("div",{class:`${t}-input__input`},i("input",Object.assign({type:l==="password"&&this.mergedShowPasswordOn&&this.passwordVisible?"text":l},this.inputProps,{ref:"inputElRef",class:[`${t}-input__input-el`,(e=this.inputProps)===null||e===void 0?void 0:e.class],style:[this.textDecorationStyle[0],(o=this.inputProps)===null||o===void 0?void 0:o.style],tabindex:this.passivelyActivated&&!this.activated?-1:void 0,placeholder:this.mergedPlaceholder[0],disabled:this.mergedDisabled,maxlength:a?void 0:this.maxlength,minlength:a?void 0:this.minlength,value:Array.isArray(this.mergedValue)?this.mergedValue[0]:this.mergedValue,readonly:this.readonly,autofocus:this.autofocus,size:this.attrSize,onBlur:this.handleInputBlur,onFocus:c=>{this.handleInputFocus(c,0)},onInput:c=>{this.handleInput(c,0)},onChange:c=>{this.handleChange(c,0)}})),this.showPlaceholder1?i("div",{class:`${t}-input__placeholder`},i("span",null,this.mergedPlaceholder[0])):null,this.autosize?i("div",{class:`${t}-input__input-mirror`,key:"mirror",ref:"inputMirrorElRef"}," "):null),!this.pair&&Ee(d.suffix,c=>c||this.clearable||this.showCount||this.mergedShowPasswordOn||this.loading!==void 0?i("div",{class:`${t}-input__suffix`},[Ee(d["clear-icon-placeholder"],u=>(this.clearable||u)&&i(dn,{clsPrefix:t,show:this.showClearButton,onClear:this.handleClear},{placeholder:()=>u,icon:()=>{var f,p;return(p=(f=this.$slots)["clear-icon"])===null||p===void 0?void 0:p.call(f)}})),this.internalLoadingBeforeSuffix?null:c,this.loading!==void 0?i($l,{clsPrefix:t,loading:this.loading,showArrow:!1,showClear:!1,style:this.cssVars}):null,this.internalLoadingBeforeSuffix?c:null,this.showCount&&this.type!=="textarea"?i(hi,null,{default:u=>{var f;return(f=d.count)===null||f===void 0?void 0:f.call(d,u)}}):null,this.mergedShowPasswordOn&&this.type==="password"?i("div",{class:`${t}-input__eye`,onMousedown:this.handlePasswordToggleMousedown,onClick:this.handlePasswordToggleClick},this.passwordVisible?lo(d["password-visible-icon"],()=>[i(De,{clsPrefix:t},{default:()=>i(dl,null)})]):lo(d["password-invisible-icon"],()=>[i(De,{clsPrefix:t},{default:()=>i(Ud,null)})])):null]):null)),this.pair?i("span",{class:`${t}-input__separator`},lo(d.separator,()=>[this.separator])):null,this.pair?i("div",{class:`${t}-input-wrapper`},i("div",{class:`${t}-input__input`},i("input",{ref:"inputEl2Ref",type:this.type,class:`${t}-input__input-el`,tabindex:this.passivelyActivated&&!this.activated?-1:void 0,placeholder:this.mergedPlaceholder[1],disabled:this.mergedDisabled,maxlength:a?void 0:this.maxlength,minlength:a?void 0:this.minlength,value:Array.isArray(this.mergedValue)?this.mergedValue[1]:void 0,readonly:this.readonly,style:this.textDecorationStyle[1],onBlur:this.handleInputBlur,onFocus:c=>{this.handleInputFocus(c,1)},onInput:c=>{this.handleInput(c,1)},onChange:c=>{this.handleChange(c,1)}}),this.showPlaceholder2?i("div",{class:`${t}-input__placeholder`},i("span",null,this.mergedPlaceholder[1])):null),Ee(d.suffix,c=>(this.clearable||c)&&i("div",{class:`${t}-input__suffix`},[this.clearable&&i(dn,{clsPrefix:t,show:this.showClearButton,onClear:this.handleClear},{icon:()=>{var u;return(u=d["clear-icon"])===null||u===void 0?void 0:u.call(d)},placeholder:()=>{var u;return(u=d["clear-icon-placeholder"])===null||u===void 0?void 0:u.call(d)}}),c]))):null,this.mergedBordered?i("div",{class:`${t}-input__border`}):null,this.mergedBordered?i("div",{class:`${t}-input__state-border`}):null,this.showCount&&l==="textarea"?i(hi,null,{default:c=>{var u;const{renderCount:f}=this;return f?f(c):(u=d.count)===null||u===void 0?void 0:u.call(d,c)}}):null)}}),Iu=g("input-group",` - display: inline-flex; - width: 100%; - flex-wrap: nowrap; - vertical-align: bottom; -`,[C(">",[g("input",[C("&:not(:last-child)",` - border-top-right-radius: 0!important; - border-bottom-right-radius: 0!important; - `),C("&:not(:first-child)",` - border-top-left-radius: 0!important; - border-bottom-left-radius: 0!important; - margin-left: -1px!important; - `)]),g("button",[C("&:not(:last-child)",` - border-top-right-radius: 0!important; - border-bottom-right-radius: 0!important; - `,[y("state-border, border",` - border-top-right-radius: 0!important; - border-bottom-right-radius: 0!important; - `)]),C("&:not(:first-child)",` - border-top-left-radius: 0!important; - border-bottom-left-radius: 0!important; - `,[y("state-border, border",` - border-top-left-radius: 0!important; - border-bottom-left-radius: 0!important; - `)])]),C("*",[C("&:not(:last-child)",` - border-top-right-radius: 0!important; - border-bottom-right-radius: 0!important; - `,[C(">",[g("input",` - border-top-right-radius: 0!important; - border-bottom-right-radius: 0!important; - `),g("base-selection",[g("base-selection-label",` - border-top-right-radius: 0!important; - border-bottom-right-radius: 0!important; - `),g("base-selection-tags",` - border-top-right-radius: 0!important; - border-bottom-right-radius: 0!important; - `),y("box-shadow, border, state-border",` - border-top-right-radius: 0!important; - border-bottom-right-radius: 0!important; - `)])])]),C("&:not(:first-child)",` - margin-left: -1px!important; - border-top-left-radius: 0!important; - border-bottom-left-radius: 0!important; - `,[C(">",[g("input",` - border-top-left-radius: 0!important; - border-bottom-left-radius: 0!important; - `),g("base-selection",[g("base-selection-label",` - border-top-left-radius: 0!important; - border-bottom-left-radius: 0!important; - `),g("base-selection-tags",` - border-top-left-radius: 0!important; - border-bottom-left-radius: 0!important; - `),y("box-shadow, border, state-border",` - border-top-left-radius: 0!important; - border-bottom-left-radius: 0!important; - `)])])])])])]),Bu={},h1=q({name:"InputGroup",props:Bu,setup(e){const{mergedClsPrefixRef:o}=ke(e);return Zo("-input-group",Iu,o),{mergedClsPrefix:o}},render(){const{mergedClsPrefix:e}=this;return i("div",{class:`${e}-input-group`},this.$slots)}});function Tu(e){const{boxShadow2:o}=e;return{menuBoxShadow:o}}const Fu={name:"AutoComplete",common:fe,peers:{InternalSelectMenu:fr,Input:Ho},self:Tu},Ou=Fu,Sr=jo&&"loading"in document.createElement("img"),Mu=(e={})=>{var o;const{root:t=null}=e;return{hash:`${e.rootMargin||"0px 0px 0px 0px"}-${Array.isArray(e.threshold)?e.threshold.join(","):(o=e.threshold)!==null&&o!==void 0?o:"0"}`,options:Object.assign(Object.assign({},e),{root:(typeof t=="string"?document.querySelector(t):t)||document.documentElement})}},Xr=new WeakMap,Zr=new WeakMap,Qr=new WeakMap,_l=(e,o,t)=>{if(!e)return()=>{};const r=Mu(o),{root:n}=r.options;let l;const a=Xr.get(n);a?l=a:(l=new Map,Xr.set(n,l));let s,d;l.has(r.hash)?(d=l.get(r.hash),d[1].has(e)||(s=d[0],d[1].add(e),s.observe(e))):(s=new IntersectionObserver(f=>{f.forEach(p=>{if(p.isIntersecting){const v=Zr.get(p.target),h=Qr.get(p.target);v&&v(),h&&(h.value=!0)}})},r.options),s.observe(e),d=[s,new Set([e])],l.set(r.hash,d));let c=!1;const u=()=>{c||(Zr.delete(e),Qr.delete(e),c=!0,d[1].has(e)&&(d[0].unobserve(e),d[1].delete(e)),d[1].size<=0&&l.delete(r.hash),l.size||Xr.delete(n))};return Zr.set(e,u),Qr.set(e,t),u},Dl=e=>{const{borderRadius:o,avatarColor:t,cardColor:r,fontSize:n,heightTiny:l,heightSmall:a,heightMedium:s,heightLarge:d,heightHuge:c,modalColor:u,popoverColor:f}=e;return{borderRadius:o,fontSize:n,border:`2px solid ${r}`,heightTiny:l,heightSmall:a,heightMedium:s,heightLarge:d,heightHuge:c,color:$e(r,t),colorModal:$e(u,t),colorPopover:$e(f,t)}},_u={name:"Avatar",common:Le,self:Dl},Du=_u,Lu={name:"Avatar",common:fe,self:Dl},Ll=Lu,Hu="n-avatar-group",Au=g("avatar",` - width: var(--n-merged-size); - height: var(--n-merged-size); - color: #FFF; - font-size: var(--n-font-size); - display: inline-flex; - position: relative; - overflow: hidden; - text-align: center; - border: var(--n-border); - border-radius: var(--n-border-radius); - --n-merged-color: var(--n-color); - background-color: var(--n-merged-color); - transition: - border-color .3s var(--n-bezier), - background-color .3s var(--n-bezier), - color .3s var(--n-bezier); -`,[Or(C("&","--n-merged-color: var(--n-color-modal);")),gn(C("&","--n-merged-color: var(--n-color-popover);")),C("img",` - width: 100%; - height: 100%; - `),y("text",` - white-space: nowrap; - display: inline-block; - position: absolute; - left: 50%; - top: 50%; - `),g("icon",` - vertical-align: bottom; - font-size: calc(var(--n-merged-size) - 6px); - `),y("text","line-height: 1.25")]),Eu=Object.assign(Object.assign({},ne.props),{size:[String,Number],src:String,circle:{type:Boolean,default:void 0},objectFit:String,round:{type:Boolean,default:void 0},bordered:{type:Boolean,default:void 0},onError:Function,fallbackSrc:String,intersectionObserverOptions:Object,lazy:Boolean,onLoad:Function,renderPlaceholder:Function,renderFallback:Function,imgProps:Object,color:String}),p1=q({name:"Avatar",props:Eu,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=D(!1);let n=null;const l=D(null),a=D(null),s=()=>{const{value:B}=l;if(B&&(n===null||n!==B.innerHTML)){n=B.innerHTML;const{value:T}=a;if(T){const{offsetWidth:z,offsetHeight:I}=T,{offsetWidth:w,offsetHeight:O}=B,k=.9,$=Math.min(z/w*k,I/O*k,1);B.style.transform=`translateX(-50%) translateY(-50%) scale(${$})`}}},d=Se(Hu,null),c=R(()=>{const{size:B}=e;if(B)return B;const{size:T}=d||{};return T||"medium"}),u=ne("Avatar","-avatar",Au,Du,e,o),f=Se(zl,null),p=R(()=>{if(d)return!0;const{round:B,circle:T}=e;return B!==void 0||T!==void 0?B||T:f?f.roundRef.value:!1}),v=R(()=>d?!0:e.bordered||!1),h=B=>{var T;if(!x.value)return;r.value=!0;const{onError:z,imgProps:I}=e;(T=I==null?void 0:I.onError)===null||T===void 0||T.call(I,B),z&&z(B)};Ke(()=>e.src,()=>r.value=!1);const m=R(()=>{const B=c.value,T=p.value,z=v.value,{color:I}=e,{self:{borderRadius:w,fontSize:O,color:k,border:$,colorModal:L,colorPopover:M},common:{cubicBezierEaseInOut:j}}=u.value;let E;return typeof B=="number"?E=`${B}px`:E=u.value.self[W("height",B)],{"--n-font-size":O,"--n-border":z?$:"none","--n-border-radius":T?"50%":w,"--n-color":I||k,"--n-color-modal":I||L,"--n-color-popover":I||M,"--n-bezier":j,"--n-merged-size":`var(--n-avatar-size-override, ${E})`}}),b=t?Ae("avatar",R(()=>{const B=c.value,T=p.value,z=v.value,{color:I}=e;let w="";return B&&(typeof B=="number"?w+=`a${B}`:w+=B[0]),T&&(w+="b"),z&&(w+="c"),I&&(w+=Ot(I)),w}),m,e):void 0,x=D(!e.lazy);mo(()=>{if(Sr)return;let B;const T=oo(()=>{B==null||B(),B=void 0,e.lazy&&(B=_l(a.value,e.intersectionObserverOptions,x))});wo(()=>{T(),B==null||B()})});const S=D(!e.lazy);return{textRef:l,selfRef:a,mergedRoundRef:p,mergedClsPrefix:o,fitTextTransform:s,cssVars:t?void 0:m,themeClass:b==null?void 0:b.themeClass,onRender:b==null?void 0:b.onRender,hasLoadError:r,handleError:h,shouldStartLoading:x,loaded:S,mergedOnLoad:B=>{var T;const{onLoad:z,imgProps:I}=e;z==null||z(B),(T=I==null?void 0:I.onLoad)===null||T===void 0||T.call(I,B),S.value=!0}}},render(){var e,o;const{$slots:t,src:r,mergedClsPrefix:n,lazy:l,onRender:a,mergedOnLoad:s,shouldStartLoading:d,loaded:c,hasLoadError:u}=this;a==null||a();let f;const p=!c&&!u&&(this.renderPlaceholder?this.renderPlaceholder():(o=(e=this.$slots).placeholder)===null||o===void 0?void 0:o.call(e));return this.hasLoadError?f=this.renderFallback?this.renderFallback():lo(t.fallback,()=>[i("img",{src:this.fallbackSrc,style:{objectFit:this.objectFit}})]):f=Ee(t.default,v=>{if(v)return i(vt,{onResize:this.fitTextTransform},{default:()=>i("span",{ref:"textRef",class:`${n}-avatar__text`},v)});if(r){const{imgProps:h}=this;return i("img",Object.assign(Object.assign({},h),{loading:Sr&&!this.intersectionObserverOptions&&l?"lazy":"eager",src:Sr||d||c?r:void 0,onLoad:s,"data-image-src":r,onError:this.handleError,style:[h==null?void 0:h.style,{objectFit:this.objectFit},p?{height:"0",width:"0",visibility:"hidden",position:"absolute"}:""]}))}}),i("span",{ref:"selfRef",class:[`${n}-avatar`,this.themeClass],style:this.cssVars},f,l&&p)}}),ju=()=>({gap:"-12px"}),Wu={name:"AvatarGroup",common:fe,peers:{Avatar:Ll},self:ju},Nu=Wu,Vu={width:"44px",height:"44px",borderRadius:"22px",iconSize:"26px"},Uu={name:"BackTop",common:fe,self(e){const{popoverColor:o,textColor2:t,primaryColorHover:r,primaryColorPressed:n}=e;return Object.assign(Object.assign({},Vu),{color:o,textColor:t,iconColor:t,iconColorHover:r,iconColorPressed:n,boxShadow:"0 2px 8px 0px rgba(0, 0, 0, .12)",boxShadowHover:"0 2px 12px 0px rgba(0, 0, 0, .18)",boxShadowPressed:"0 2px 12px 0px rgba(0, 0, 0, .18)"})}},Ku=Uu,Gu={name:"Badge",common:fe,self(e){const{errorColorSuppl:o,infoColorSuppl:t,successColorSuppl:r,warningColorSuppl:n,fontFamily:l}=e;return{color:o,colorInfo:t,colorSuccess:r,colorError:o,colorWarning:n,fontSize:"12px",fontFamily:l}}},qu=Gu,Yu=e=>{const{errorColor:o,infoColor:t,successColor:r,warningColor:n,fontFamily:l}=e;return{color:o,colorInfo:t,colorSuccess:r,colorError:o,colorWarning:n,fontSize:"12px",fontFamily:l}},Xu={name:"Badge",common:Le,self:Yu},Zu=Xu,Qu=C([C("@keyframes badge-wave-spread",{from:{boxShadow:"0 0 0.5px 0px var(--n-ripple-color)",opacity:.6},to:{boxShadow:"0 0 0.5px 4.5px var(--n-ripple-color)",opacity:0}}),g("badge",` - display: inline-flex; - position: relative; - vertical-align: middle; - color: var(--n-color); - font-family: var(--n-font-family); - `,[P("as-is",[g("badge-sup",{position:"static",transform:"translateX(0)"},[at({transformOrigin:"left bottom",originalTransform:"translateX(0)"})])]),P("dot",[g("badge-sup",` - height: 8px; - width: 8px; - padding: 0; - min-width: 8px; - left: 100%; - bottom: calc(100% - 4px); - `,[C("::before","border-radius: 4px;")])]),g("badge-sup",` - background: var(--n-color); - transition: - background-color .3s var(--n-bezier), - color .3s var(--n-bezier); - color: #FFF; - position: absolute; - height: 18px; - line-height: 18px; - border-radius: 9px; - padding: 0 6px; - text-align: center; - font-size: var(--n-font-size); - transform: translateX(-50%); - left: 100%; - bottom: calc(100% - 9px); - font-variant-numeric: tabular-nums; - z-index: 1; - display: flex; - align-items: center; - `,[at({transformOrigin:"left bottom",originalTransform:"translateX(-50%)"}),g("base-wave",{zIndex:1,animationDuration:"2s",animationIterationCount:"infinite",animationDelay:"1s",animationTimingFunction:"var(--n-ripple-bezier)",animationName:"badge-wave-spread"}),C("&::before",` - opacity: 0; - transform: scale(1); - border-radius: 9px; - content: ""; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - `)])])]),Ju=Object.assign(Object.assign({},ne.props),{value:[String,Number],max:Number,dot:Boolean,type:{type:String,default:"default"},show:{type:Boolean,default:!0},showZero:Boolean,processing:Boolean,color:String,offset:Array}),v1=q({name:"Badge",props:Ju,setup(e,{slots:o}){const{mergedClsPrefixRef:t,inlineThemeDisabled:r,mergedRtlRef:n}=ke(e),l=ne("Badge","-badge",Qu,Zu,e,t),a=D(!1),s=()=>{a.value=!0},d=()=>{a.value=!1},c=R(()=>e.show&&(e.dot||e.value!==void 0&&!(!e.showZero&&Number(e.value)<=0)||!ht(o.value)));mo(()=>{c.value&&(a.value=!0)});const u=to("Badge",n,t),f=R(()=>{const{type:h,color:m}=e,{common:{cubicBezierEaseInOut:b,cubicBezierEaseOut:x},self:{[W("color",h)]:S,fontFamily:B,fontSize:T}}=l.value;return{"--n-font-size":T,"--n-font-family":B,"--n-color":m||S,"--n-ripple-color":m||S,"--n-bezier":b,"--n-ripple-bezier":x}}),p=r?Ae("badge",R(()=>{let h="";const{type:m,color:b}=e;return m&&(h+=m[0]),b&&(h+=Ot(b)),h}),f,e):void 0,v=R(()=>{const{offset:h}=e;if(!h)return;const[m,b]=h,x=typeof m=="number"?`${m}px`:m,S=typeof b=="number"?`${b}px`:b;return{transform:`translate(calc(${u!=null&&u.value?"50%":"-50%"} + ${x}), ${S})`}});return{rtlEnabled:u,mergedClsPrefix:t,appeared:a,showBadge:c,handleAfterEnter:s,handleAfterLeave:d,cssVars:r?void 0:f,themeClass:p==null?void 0:p.themeClass,onRender:p==null?void 0:p.onRender,offsetStyle:v}},render(){var e;const{mergedClsPrefix:o,onRender:t,themeClass:r,$slots:n}=this;t==null||t();const l=(e=n.default)===null||e===void 0?void 0:e.call(n);return i("div",{class:[`${o}-badge`,this.rtlEnabled&&`${o}-badge--rtl`,r,{[`${o}-badge--dot`]:this.dot,[`${o}-badge--as-is`]:!l}],style:this.cssVars},l,i(no,{name:"fade-in-scale-up-transition",onAfterEnter:this.handleAfterEnter,onAfterLeave:this.handleAfterLeave},{default:()=>this.showBadge?i("sup",{class:`${o}-badge-sup`,title:Gi(this.value),style:this.offsetStyle},lo(n.value,()=>[this.dot?null:i(nu,{clsPrefix:o,appeared:this.appeared,max:this.max,value:this.value})]),this.processing?i(bl,{clsPrefix:o}):null):null}))}}),ef={fontWeightActive:"400"},of=e=>{const{fontSize:o,textColor3:t,textColor2:r,borderRadius:n,buttonColor2Hover:l,buttonColor2Pressed:a}=e;return Object.assign(Object.assign({},ef),{fontSize:o,itemLineHeight:"1.25",itemTextColor:t,itemTextColorHover:r,itemTextColorPressed:r,itemTextColorActive:r,itemBorderRadius:n,itemColorHover:l,itemColorPressed:a,separatorColor:t})},tf={name:"Breadcrumb",common:fe,self:of},rf=tf;function ut(e){return $e(e,[255,255,255,.16])}function br(e){return $e(e,[0,0,0,.12])}const Hl="n-button-group",nf={paddingTiny:"0 6px",paddingSmall:"0 10px",paddingMedium:"0 14px",paddingLarge:"0 18px",paddingRoundTiny:"0 10px",paddingRoundSmall:"0 14px",paddingRoundMedium:"0 18px",paddingRoundLarge:"0 22px",iconMarginTiny:"6px",iconMarginSmall:"6px",iconMarginMedium:"6px",iconMarginLarge:"6px",iconSizeTiny:"14px",iconSizeSmall:"18px",iconSizeMedium:"18px",iconSizeLarge:"20px",rippleDuration:".6s"},Al=e=>{const{heightTiny:o,heightSmall:t,heightMedium:r,heightLarge:n,borderRadius:l,fontSizeTiny:a,fontSizeSmall:s,fontSizeMedium:d,fontSizeLarge:c,opacityDisabled:u,textColor2:f,textColor3:p,primaryColorHover:v,primaryColorPressed:h,borderColor:m,primaryColor:b,baseColor:x,infoColor:S,infoColorHover:B,infoColorPressed:T,successColor:z,successColorHover:I,successColorPressed:w,warningColor:O,warningColorHover:k,warningColorPressed:$,errorColor:L,errorColorHover:M,errorColorPressed:j,fontWeight:E,buttonColor2:U,buttonColor2Hover:_,buttonColor2Pressed:V,fontWeightStrong:te}=e;return Object.assign(Object.assign({},nf),{heightTiny:o,heightSmall:t,heightMedium:r,heightLarge:n,borderRadiusTiny:l,borderRadiusSmall:l,borderRadiusMedium:l,borderRadiusLarge:l,fontSizeTiny:a,fontSizeSmall:s,fontSizeMedium:d,fontSizeLarge:c,opacityDisabled:u,colorOpacitySecondary:"0.16",colorOpacitySecondaryHover:"0.22",colorOpacitySecondaryPressed:"0.28",colorSecondary:U,colorSecondaryHover:_,colorSecondaryPressed:V,colorTertiary:U,colorTertiaryHover:_,colorTertiaryPressed:V,colorQuaternary:"#0000",colorQuaternaryHover:_,colorQuaternaryPressed:V,color:"#0000",colorHover:"#0000",colorPressed:"#0000",colorFocus:"#0000",colorDisabled:"#0000",textColor:f,textColorTertiary:p,textColorHover:v,textColorPressed:h,textColorFocus:v,textColorDisabled:f,textColorText:f,textColorTextHover:v,textColorTextPressed:h,textColorTextFocus:v,textColorTextDisabled:f,textColorGhost:f,textColorGhostHover:v,textColorGhostPressed:h,textColorGhostFocus:v,textColorGhostDisabled:f,border:`1px solid ${m}`,borderHover:`1px solid ${v}`,borderPressed:`1px solid ${h}`,borderFocus:`1px solid ${v}`,borderDisabled:`1px solid ${m}`,rippleColor:b,colorPrimary:b,colorHoverPrimary:v,colorPressedPrimary:h,colorFocusPrimary:v,colorDisabledPrimary:b,textColorPrimary:x,textColorHoverPrimary:x,textColorPressedPrimary:x,textColorFocusPrimary:x,textColorDisabledPrimary:x,textColorTextPrimary:b,textColorTextHoverPrimary:v,textColorTextPressedPrimary:h,textColorTextFocusPrimary:v,textColorTextDisabledPrimary:f,textColorGhostPrimary:b,textColorGhostHoverPrimary:v,textColorGhostPressedPrimary:h,textColorGhostFocusPrimary:v,textColorGhostDisabledPrimary:b,borderPrimary:`1px solid ${b}`,borderHoverPrimary:`1px solid ${v}`,borderPressedPrimary:`1px solid ${h}`,borderFocusPrimary:`1px solid ${v}`,borderDisabledPrimary:`1px solid ${b}`,rippleColorPrimary:b,colorInfo:S,colorHoverInfo:B,colorPressedInfo:T,colorFocusInfo:B,colorDisabledInfo:S,textColorInfo:x,textColorHoverInfo:x,textColorPressedInfo:x,textColorFocusInfo:x,textColorDisabledInfo:x,textColorTextInfo:S,textColorTextHoverInfo:B,textColorTextPressedInfo:T,textColorTextFocusInfo:B,textColorTextDisabledInfo:f,textColorGhostInfo:S,textColorGhostHoverInfo:B,textColorGhostPressedInfo:T,textColorGhostFocusInfo:B,textColorGhostDisabledInfo:S,borderInfo:`1px solid ${S}`,borderHoverInfo:`1px solid ${B}`,borderPressedInfo:`1px solid ${T}`,borderFocusInfo:`1px solid ${B}`,borderDisabledInfo:`1px solid ${S}`,rippleColorInfo:S,colorSuccess:z,colorHoverSuccess:I,colorPressedSuccess:w,colorFocusSuccess:I,colorDisabledSuccess:z,textColorSuccess:x,textColorHoverSuccess:x,textColorPressedSuccess:x,textColorFocusSuccess:x,textColorDisabledSuccess:x,textColorTextSuccess:z,textColorTextHoverSuccess:I,textColorTextPressedSuccess:w,textColorTextFocusSuccess:I,textColorTextDisabledSuccess:f,textColorGhostSuccess:z,textColorGhostHoverSuccess:I,textColorGhostPressedSuccess:w,textColorGhostFocusSuccess:I,textColorGhostDisabledSuccess:z,borderSuccess:`1px solid ${z}`,borderHoverSuccess:`1px solid ${I}`,borderPressedSuccess:`1px solid ${w}`,borderFocusSuccess:`1px solid ${I}`,borderDisabledSuccess:`1px solid ${z}`,rippleColorSuccess:z,colorWarning:O,colorHoverWarning:k,colorPressedWarning:$,colorFocusWarning:k,colorDisabledWarning:O,textColorWarning:x,textColorHoverWarning:x,textColorPressedWarning:x,textColorFocusWarning:x,textColorDisabledWarning:x,textColorTextWarning:O,textColorTextHoverWarning:k,textColorTextPressedWarning:$,textColorTextFocusWarning:k,textColorTextDisabledWarning:f,textColorGhostWarning:O,textColorGhostHoverWarning:k,textColorGhostPressedWarning:$,textColorGhostFocusWarning:k,textColorGhostDisabledWarning:O,borderWarning:`1px solid ${O}`,borderHoverWarning:`1px solid ${k}`,borderPressedWarning:`1px solid ${$}`,borderFocusWarning:`1px solid ${k}`,borderDisabledWarning:`1px solid ${O}`,rippleColorWarning:O,colorError:L,colorHoverError:M,colorPressedError:j,colorFocusError:M,colorDisabledError:L,textColorError:x,textColorHoverError:x,textColorPressedError:x,textColorFocusError:x,textColorDisabledError:x,textColorTextError:L,textColorTextHoverError:M,textColorTextPressedError:j,textColorTextFocusError:M,textColorTextDisabledError:f,textColorGhostError:L,textColorGhostHoverError:M,textColorGhostPressedError:j,textColorGhostFocusError:M,textColorGhostDisabledError:L,borderError:`1px solid ${L}`,borderHoverError:`1px solid ${M}`,borderPressedError:`1px solid ${j}`,borderFocusError:`1px solid ${M}`,borderDisabledError:`1px solid ${L}`,rippleColorError:L,waveOpacity:"0.6",fontWeight:E,fontWeightStrong:te})},lf={name:"Button",common:Le,self:Al},Wt=lf,af={name:"Button",common:fe,self(e){const o=Al(e);return o.waveOpacity="0.8",o.colorOpacitySecondary="0.16",o.colorOpacitySecondaryHover="0.2",o.colorOpacitySecondaryPressed="0.12",o}},$o=af,sf=C([g("button",` - margin: 0; - font-weight: var(--n-font-weight); - line-height: 1; - font-family: inherit; - padding: var(--n-padding); - height: var(--n-height); - font-size: var(--n-font-size); - border-radius: var(--n-border-radius); - color: var(--n-text-color); - background-color: var(--n-color); - width: var(--n-width); - white-space: nowrap; - outline: none; - position: relative; - z-index: auto; - border: none; - display: inline-flex; - flex-wrap: nowrap; - flex-shrink: 0; - align-items: center; - justify-content: center; - user-select: none; - -webkit-user-select: none; - text-align: center; - cursor: pointer; - text-decoration: none; - transition: - color .3s var(--n-bezier), - background-color .3s var(--n-bezier), - opacity .3s var(--n-bezier), - border-color .3s var(--n-bezier); - `,[P("color",[y("border",{borderColor:"var(--n-border-color)"}),P("disabled",[y("border",{borderColor:"var(--n-border-color-disabled)"})]),je("disabled",[C("&:focus",[y("state-border",{borderColor:"var(--n-border-color-focus)"})]),C("&:hover",[y("state-border",{borderColor:"var(--n-border-color-hover)"})]),C("&:active",[y("state-border",{borderColor:"var(--n-border-color-pressed)"})]),P("pressed",[y("state-border",{borderColor:"var(--n-border-color-pressed)"})])])]),P("disabled",{backgroundColor:"var(--n-color-disabled)",color:"var(--n-text-color-disabled)"},[y("border",{border:"var(--n-border-disabled)"})]),je("disabled",[C("&:focus",{backgroundColor:"var(--n-color-focus)",color:"var(--n-text-color-focus)"},[y("state-border",{border:"var(--n-border-focus)"})]),C("&:hover",{backgroundColor:"var(--n-color-hover)",color:"var(--n-text-color-hover)"},[y("state-border",{border:"var(--n-border-hover)"})]),C("&:active",{backgroundColor:"var(--n-color-pressed)",color:"var(--n-text-color-pressed)"},[y("state-border",{border:"var(--n-border-pressed)"})]),P("pressed",{backgroundColor:"var(--n-color-pressed)",color:"var(--n-text-color-pressed)"},[y("state-border",{border:"var(--n-border-pressed)"})])]),P("loading","cursor: wait;"),g("base-wave",` - pointer-events: none; - top: 0; - right: 0; - bottom: 0; - left: 0; - animation-iteration-count: 1; - animation-duration: var(--n-ripple-duration); - animation-timing-function: var(--n-bezier-ease-out), var(--n-bezier-ease-out); - `,[P("active",{zIndex:1,animationName:"button-wave-spread, button-wave-opacity"})]),jo&&"MozBoxSizing"in document.createElement("div").style?C("&::moz-focus-inner",{border:0}):null,y("border, state-border",` - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - border-radius: inherit; - transition: border-color .3s var(--n-bezier); - pointer-events: none; - `),y("border",{border:"var(--n-border)"}),y("state-border",{border:"var(--n-border)",borderColor:"#0000",zIndex:1}),y("icon",` - margin: var(--n-icon-margin); - margin-left: 0; - height: var(--n-icon-size); - width: var(--n-icon-size); - max-width: var(--n-icon-size); - font-size: var(--n-icon-size); - position: relative; - flex-shrink: 0; - `,[g("icon-slot",` - height: var(--n-icon-size); - width: var(--n-icon-size); - position: absolute; - left: 0; - top: 50%; - transform: translateY(-50%); - display: flex; - align-items: center; - justify-content: center; - `,[lt({top:"50%",originalTransform:"translateY(-50%)"})]),kl()]),y("content",` - display: flex; - align-items: center; - flex-wrap: nowrap; - min-width: 0; - `,[C("~",[y("icon",{margin:"var(--n-icon-margin)",marginRight:0})])]),P("block",` - display: flex; - width: 100%; - `),P("dashed",[y("border, state-border",{borderStyle:"dashed !important"})]),P("disabled",{cursor:"not-allowed",opacity:"var(--n-opacity-disabled)"})]),C("@keyframes button-wave-spread",{from:{boxShadow:"0 0 0.5px 0 var(--n-ripple-color)"},to:{boxShadow:"0 0 0.5px 4.5px var(--n-ripple-color)"}}),C("@keyframes button-wave-opacity",{from:{opacity:"var(--n-wave-opacity)"},to:{opacity:0}})]),df=Object.assign(Object.assign({},ne.props),{color:String,textColor:String,text:Boolean,block:Boolean,loading:Boolean,disabled:Boolean,circle:Boolean,size:String,ghost:Boolean,round:Boolean,secondary:Boolean,tertiary:Boolean,quaternary:Boolean,strong:Boolean,focusable:{type:Boolean,default:!0},keyboard:{type:Boolean,default:!0},tag:{type:String,default:"button"},type:{type:String,default:"default"},dashed:Boolean,renderIcon:Function,iconPlacement:{type:String,default:"left"},attrType:{type:String,default:"button"},bordered:{type:Boolean,default:!0},onClick:[Function,Array],nativeFocusBehavior:{type:Boolean,default:!Fl}}),El=q({name:"Button",props:df,setup(e){const o=D(null),t=D(null),r=D(!1),n=We(()=>!e.quaternary&&!e.tertiary&&!e.secondary&&!e.text&&(!e.color||e.ghost||e.dashed)&&e.bordered),l=Se(Hl,{}),{mergedSizeRef:a}=rt({},{defaultSize:"medium",mergedSize:T=>{const{size:z}=e;if(z)return z;const{size:I}=l;if(I)return I;const{mergedSize:w}=T||{};return w?w.value:"medium"}}),s=R(()=>e.focusable&&!e.disabled),d=T=>{var z;s.value||T.preventDefault(),!e.nativeFocusBehavior&&(T.preventDefault(),!e.disabled&&s.value&&((z=o.value)===null||z===void 0||z.focus({preventScroll:!0})))},c=T=>{var z;if(!e.disabled&&!e.loading){const{onClick:I}=e;I&&ae(I,T),e.text||(z=t.value)===null||z===void 0||z.play()}},u=T=>{switch(T.key){case"Enter":if(!e.keyboard)return;r.value=!1}},f=T=>{switch(T.key){case"Enter":if(!e.keyboard||e.loading){T.preventDefault();return}r.value=!0}},p=()=>{r.value=!1},{inlineThemeDisabled:v,mergedClsPrefixRef:h,mergedRtlRef:m}=ke(e),b=ne("Button","-button",sf,Wt,e,h),x=to("Button",m,h),S=R(()=>{const T=b.value,{common:{cubicBezierEaseInOut:z,cubicBezierEaseOut:I},self:w}=T,{rippleDuration:O,opacityDisabled:k,fontWeight:$,fontWeightStrong:L}=w,M=a.value,{dashed:j,type:E,ghost:U,text:_,color:V,round:te,circle:N,textColor:G,secondary:Ce,tertiary:X,quaternary:ve,strong:he}=e,be={"font-weight":he?L:$};let me={"--n-color":"initial","--n-color-hover":"initial","--n-color-pressed":"initial","--n-color-focus":"initial","--n-color-disabled":"initial","--n-ripple-color":"initial","--n-text-color":"initial","--n-text-color-hover":"initial","--n-text-color-pressed":"initial","--n-text-color-focus":"initial","--n-text-color-disabled":"initial"};const se=E==="tertiary",Re=E==="default",ge=se?"default":E;if(_){const ue=G||V;me={"--n-color":"#0000","--n-color-hover":"#0000","--n-color-pressed":"#0000","--n-color-focus":"#0000","--n-color-disabled":"#0000","--n-ripple-color":"#0000","--n-text-color":ue||w[W("textColorText",ge)],"--n-text-color-hover":ue?ut(ue):w[W("textColorTextHover",ge)],"--n-text-color-pressed":ue?br(ue):w[W("textColorTextPressed",ge)],"--n-text-color-focus":ue?ut(ue):w[W("textColorTextHover",ge)],"--n-text-color-disabled":ue||w[W("textColorTextDisabled",ge)]}}else if(U||j){const ue=G||V;me={"--n-color":"#0000","--n-color-hover":"#0000","--n-color-pressed":"#0000","--n-color-focus":"#0000","--n-color-disabled":"#0000","--n-ripple-color":V||w[W("rippleColor",ge)],"--n-text-color":ue||w[W("textColorGhost",ge)],"--n-text-color-hover":ue?ut(ue):w[W("textColorGhostHover",ge)],"--n-text-color-pressed":ue?br(ue):w[W("textColorGhostPressed",ge)],"--n-text-color-focus":ue?ut(ue):w[W("textColorGhostHover",ge)],"--n-text-color-disabled":ue||w[W("textColorGhostDisabled",ge)]}}else if(Ce){const ue=Re?w.textColor:se?w.textColorTertiary:w[W("color",ge)],Y=V||ue,ce=E!=="default"&&E!=="tertiary";me={"--n-color":ce?J(Y,{alpha:Number(w.colorOpacitySecondary)}):w.colorSecondary,"--n-color-hover":ce?J(Y,{alpha:Number(w.colorOpacitySecondaryHover)}):w.colorSecondaryHover,"--n-color-pressed":ce?J(Y,{alpha:Number(w.colorOpacitySecondaryPressed)}):w.colorSecondaryPressed,"--n-color-focus":ce?J(Y,{alpha:Number(w.colorOpacitySecondaryHover)}):w.colorSecondaryHover,"--n-color-disabled":w.colorSecondary,"--n-ripple-color":"#0000","--n-text-color":Y,"--n-text-color-hover":Y,"--n-text-color-pressed":Y,"--n-text-color-focus":Y,"--n-text-color-disabled":Y}}else if(X||ve){const ue=Re?w.textColor:se?w.textColorTertiary:w[W("color",ge)],Y=V||ue;X?(me["--n-color"]=w.colorTertiary,me["--n-color-hover"]=w.colorTertiaryHover,me["--n-color-pressed"]=w.colorTertiaryPressed,me["--n-color-focus"]=w.colorSecondaryHover,me["--n-color-disabled"]=w.colorTertiary):(me["--n-color"]=w.colorQuaternary,me["--n-color-hover"]=w.colorQuaternaryHover,me["--n-color-pressed"]=w.colorQuaternaryPressed,me["--n-color-focus"]=w.colorQuaternaryHover,me["--n-color-disabled"]=w.colorQuaternary),me["--n-ripple-color"]="#0000",me["--n-text-color"]=Y,me["--n-text-color-hover"]=Y,me["--n-text-color-pressed"]=Y,me["--n-text-color-focus"]=Y,me["--n-text-color-disabled"]=Y}else me={"--n-color":V||w[W("color",ge)],"--n-color-hover":V?ut(V):w[W("colorHover",ge)],"--n-color-pressed":V?br(V):w[W("colorPressed",ge)],"--n-color-focus":V?ut(V):w[W("colorFocus",ge)],"--n-color-disabled":V||w[W("colorDisabled",ge)],"--n-ripple-color":V||w[W("rippleColor",ge)],"--n-text-color":G||(V?w.textColorPrimary:se?w.textColorTertiary:w[W("textColor",ge)]),"--n-text-color-hover":G||(V?w.textColorHoverPrimary:w[W("textColorHover",ge)]),"--n-text-color-pressed":G||(V?w.textColorPressedPrimary:w[W("textColorPressed",ge)]),"--n-text-color-focus":G||(V?w.textColorFocusPrimary:w[W("textColorFocus",ge)]),"--n-text-color-disabled":G||(V?w.textColorDisabledPrimary:w[W("textColorDisabled",ge)])};let ee={"--n-border":"initial","--n-border-hover":"initial","--n-border-pressed":"initial","--n-border-focus":"initial","--n-border-disabled":"initial"};_?ee={"--n-border":"none","--n-border-hover":"none","--n-border-pressed":"none","--n-border-focus":"none","--n-border-disabled":"none"}:ee={"--n-border":w[W("border",ge)],"--n-border-hover":w[W("borderHover",ge)],"--n-border-pressed":w[W("borderPressed",ge)],"--n-border-focus":w[W("borderFocus",ge)],"--n-border-disabled":w[W("borderDisabled",ge)]};const{[W("height",M)]:xe,[W("fontSize",M)]:de,[W("padding",M)]:ye,[W("paddingRound",M)]:pe,[W("iconSize",M)]:Me,[W("borderRadius",M)]:Q,[W("iconMargin",M)]:A,waveOpacity:Z}=w,re={"--n-width":N&&!_?xe:"initial","--n-height":_?"initial":xe,"--n-font-size":de,"--n-padding":N||_?"initial":te?pe:ye,"--n-icon-size":Me,"--n-icon-margin":A,"--n-border-radius":_?"initial":N||te?xe:Q};return Object.assign(Object.assign(Object.assign(Object.assign({"--n-bezier":z,"--n-bezier-ease-out":I,"--n-ripple-duration":O,"--n-opacity-disabled":k,"--n-wave-opacity":Z},be),me),ee),re)}),B=v?Ae("button",R(()=>{let T="";const{dashed:z,type:I,ghost:w,text:O,color:k,round:$,circle:L,textColor:M,secondary:j,tertiary:E,quaternary:U,strong:_}=e;z&&(T+="a"),w&&(T+="b"),O&&(T+="c"),$&&(T+="d"),L&&(T+="e"),j&&(T+="f"),E&&(T+="g"),U&&(T+="h"),_&&(T+="i"),k&&(T+="j"+Ot(k)),M&&(T+="k"+Ot(M));const{value:V}=a;return T+="l"+V[0],T+="m"+I[0],T}),S,e):void 0;return{selfElRef:o,waveElRef:t,mergedClsPrefix:h,mergedFocusable:s,mergedSize:a,showBorder:n,enterPressed:r,rtlEnabled:x,handleMousedown:d,handleKeydown:f,handleBlur:p,handleKeyup:u,handleClick:c,customColorCssVars:R(()=>{const{color:T}=e;if(!T)return null;const z=ut(T);return{"--n-border-color":T,"--n-border-color-hover":z,"--n-border-color-pressed":br(T),"--n-border-color-focus":z,"--n-border-color-disabled":T}}),cssVars:v?void 0:S,themeClass:B==null?void 0:B.themeClass,onRender:B==null?void 0:B.onRender}},render(){const{mergedClsPrefix:e,tag:o,onRender:t}=this;t==null||t();const r=Ee(this.$slots.default,n=>n&&i("span",{class:`${e}-button__content`},n));return i(o,{ref:"selfElRef",class:[this.themeClass,`${e}-button`,`${e}-button--${this.type}-type`,`${e}-button--${this.mergedSize}-type`,this.rtlEnabled&&`${e}-button--rtl`,this.disabled&&`${e}-button--disabled`,this.block&&`${e}-button--block`,this.enterPressed&&`${e}-button--pressed`,!this.text&&this.dashed&&`${e}-button--dashed`,this.color&&`${e}-button--color`,this.secondary&&`${e}-button--secondary`,this.loading&&`${e}-button--loading`,this.ghost&&`${e}-button--ghost`],tabindex:this.mergedFocusable?0:-1,type:this.attrType,style:this.cssVars,disabled:this.disabled,onClick:this.handleClick,onBlur:this.handleBlur,onMousedown:this.handleMousedown,onKeyup:this.handleKeyup,onKeydown:this.handleKeydown},this.iconPlacement==="right"&&r,i(wt,{width:!0},{default:()=>Ee(this.$slots.icon,n=>(this.loading||this.renderIcon||n)&&i("span",{class:`${e}-button__icon`,style:{margin:ht(this.$slots.default)?"0":""}},i(At,null,{default:()=>this.loading?i(Et,{clsPrefix:e,key:"loading",class:`${e}-icon-slot`,strokeWidth:20}):i("div",{key:"icon",class:`${e}-icon-slot`,role:"none"},this.renderIcon?this.renderIcon():n)})))}),this.iconPlacement==="left"&&r,this.text?null:i(bl,{ref:"waveElRef",clsPrefix:e}),this.showBorder?i("div",{"aria-hidden":!0,class:`${e}-button__border`,style:this.customColorCssVars}):null,this.showBorder?i("div",{"aria-hidden":!0,class:`${e}-button__state-border`,style:this.customColorCssVars}):null)}}),Po=El,pi=El,Xe="0!important",jl="-1px!important";function It(e){return P(e+"-type",[C("& +",[g("button",{},[P(e+"-type",[y("border",{borderLeftWidth:Xe}),y("state-border",{left:jl})])])])])}function Bt(e){return P(e+"-type",[C("& +",[g("button",[P(e+"-type",[y("border",{borderTopWidth:Xe}),y("state-border",{top:jl})])])])])}const cf=g("button-group",` - flex-wrap: nowrap; - display: inline-flex; - position: relative; -`,[je("vertical",{flexDirection:"row"},[je("rtl",[g("button",[C("&:first-child:not(:last-child)",` - margin-right: ${Xe}; - border-top-right-radius: ${Xe}; - border-bottom-right-radius: ${Xe}; - `),C("&:last-child:not(:first-child)",` - margin-left: ${Xe}; - border-top-left-radius: ${Xe}; - border-bottom-left-radius: ${Xe}; - `),C("&:not(:first-child):not(:last-child)",` - margin-left: ${Xe}; - margin-right: ${Xe}; - border-radius: ${Xe}; - `),It("default"),P("ghost",[It("primary"),It("info"),It("success"),It("warning"),It("error")])])])]),P("vertical",{flexDirection:"column"},[g("button",[C("&:first-child:not(:last-child)",` - margin-bottom: ${Xe}; - margin-left: ${Xe}; - margin-right: ${Xe}; - border-bottom-left-radius: ${Xe}; - border-bottom-right-radius: ${Xe}; - `),C("&:last-child:not(:first-child)",` - margin-top: ${Xe}; - margin-left: ${Xe}; - margin-right: ${Xe}; - border-top-left-radius: ${Xe}; - border-top-right-radius: ${Xe}; - `),C("&:not(:first-child):not(:last-child)",` - margin: ${Xe}; - border-radius: ${Xe}; - `),Bt("default"),P("ghost",[Bt("primary"),Bt("info"),Bt("success"),Bt("warning"),Bt("error")])])])]),uf={size:{type:String,default:void 0},vertical:Boolean},ff=q({name:"ButtonGroup",props:uf,setup(e){const{mergedClsPrefixRef:o,mergedRtlRef:t}=ke(e);return Zo("-button-group",cf,o),Oe(Hl,e),{rtlEnabled:to("ButtonGroup",t,o),mergedClsPrefix:o}},render(){const{mergedClsPrefix:e}=this;return i("div",{class:[`${e}-button-group`,this.rtlEnabled&&`${e}-button-group--rtl`,this.vertical&&`${e}-button-group--vertical`],role:"group"},this.$slots)}}),hf={titleFontSize:"22px"},pf=e=>{const{borderRadius:o,fontSize:t,lineHeight:r,textColor2:n,textColor1:l,textColorDisabled:a,dividerColor:s,fontWeightStrong:d,primaryColor:c,baseColor:u,hoverColor:f,cardColor:p,modalColor:v,popoverColor:h}=e;return Object.assign(Object.assign({},hf),{borderRadius:o,borderColor:$e(p,s),borderColorModal:$e(v,s),borderColorPopover:$e(h,s),textColor:n,titleFontWeight:d,titleTextColor:l,dayTextColor:a,fontSize:t,lineHeight:r,dateColorCurrent:c,dateTextColorCurrent:u,cellColorHover:$e(p,f),cellColorHoverModal:$e(v,f),cellColorHoverPopover:$e(h,f),cellColor:p,cellColorModal:v,cellColorPopover:h,barColor:c})},vf={name:"Calendar",common:fe,peers:{Button:$o},self:pf},gf=vf,mf=e=>{const{fontSize:o,boxShadow2:t,popoverColor:r,textColor2:n,borderRadius:l,borderColor:a,heightSmall:s,heightMedium:d,heightLarge:c,fontSizeSmall:u,fontSizeMedium:f,fontSizeLarge:p,dividerColor:v}=e;return{panelFontSize:o,boxShadow:t,color:r,textColor:n,borderRadius:l,border:`1px solid ${a}`,heightSmall:s,heightMedium:d,heightLarge:c,fontSizeSmall:u,fontSizeMedium:f,fontSizeLarge:p,dividerColor:v}},bf={name:"ColorPicker",common:fe,peers:{Input:Ho,Button:$o},self:mf},xf=bf,Cf={paddingSmall:"12px 16px 12px",paddingMedium:"19px 24px 20px",paddingLarge:"23px 32px 24px",paddingHuge:"27px 40px 28px",titleFontSizeSmall:"16px",titleFontSizeMedium:"18px",titleFontSizeLarge:"18px",titleFontSizeHuge:"18px",closeIconSize:"18px",closeSize:"22px"},Wl=e=>{const{primaryColor:o,borderRadius:t,lineHeight:r,fontSize:n,cardColor:l,textColor2:a,textColor1:s,dividerColor:d,fontWeightStrong:c,closeIconColor:u,closeIconColorHover:f,closeIconColorPressed:p,closeColorHover:v,closeColorPressed:h,modalColor:m,boxShadow1:b,popoverColor:x,actionColor:S}=e;return Object.assign(Object.assign({},Cf),{lineHeight:r,color:l,colorModal:m,colorPopover:x,colorTarget:o,colorEmbedded:S,colorEmbeddedModal:S,colorEmbeddedPopover:S,textColor:a,titleTextColor:s,borderColor:d,actionColor:S,titleFontWeight:c,closeColorHover:v,closeColorPressed:h,closeBorderRadius:t,closeIconColor:u,closeIconColorHover:f,closeIconColorPressed:p,fontSizeSmall:n,fontSizeMedium:n,fontSizeLarge:n,fontSizeHuge:n,boxShadow:b,borderRadius:t})},yf={name:"Card",common:Le,self:Wl},Nl=yf,wf={name:"Card",common:fe,self(e){const o=Wl(e),{cardColor:t,modalColor:r,popoverColor:n}=e;return o.colorEmbedded=t,o.colorEmbeddedModal=r,o.colorEmbeddedPopover=n,o}},Vl=wf,Sf=C([g("card",` - font-size: var(--n-font-size); - line-height: var(--n-line-height); - display: flex; - flex-direction: column; - width: 100%; - box-sizing: border-box; - position: relative; - border-radius: var(--n-border-radius); - background-color: var(--n-color); - color: var(--n-text-color); - word-break: break-word; - transition: - color .3s var(--n-bezier), - background-color .3s var(--n-bezier), - box-shadow .3s var(--n-bezier), - border-color .3s var(--n-bezier); - `,[Zi({background:"var(--n-color-modal)"}),P("hoverable",[C("&:hover","box-shadow: var(--n-box-shadow);")]),P("content-segmented",[C(">",[y("content",{paddingTop:"var(--n-padding-bottom)"})])]),P("content-soft-segmented",[C(">",[y("content",` - margin: 0 var(--n-padding-left); - padding: var(--n-padding-bottom) 0; - `)])]),P("footer-segmented",[C(">",[y("footer",{paddingTop:"var(--n-padding-bottom)"})])]),P("footer-soft-segmented",[C(">",[y("footer",` - padding: var(--n-padding-bottom) 0; - margin: 0 var(--n-padding-left); - `)])]),C(">",[g("card-header",` - box-sizing: border-box; - display: flex; - align-items: center; - font-size: var(--n-title-font-size); - padding: - var(--n-padding-top) - var(--n-padding-left) - var(--n-padding-bottom) - var(--n-padding-left); - `,[y("main",` - font-weight: var(--n-title-font-weight); - transition: color .3s var(--n-bezier); - flex: 1; - min-width: 0; - color: var(--n-title-text-color); - `),y("extra",` - display: flex; - align-items: center; - font-size: var(--n-font-size); - font-weight: 400; - transition: color .3s var(--n-bezier); - color: var(--n-text-color); - `),y("close",` - margin: 0 0 0 8px; - transition: - background-color .3s var(--n-bezier), - color .3s var(--n-bezier); - `)]),y("action",` - box-sizing: border-box; - transition: - background-color .3s var(--n-bezier), - border-color .3s var(--n-bezier); - background-clip: padding-box; - background-color: var(--n-action-color); - `),y("content","flex: 1; min-width: 0;"),y("content, footer",` - box-sizing: border-box; - padding: 0 var(--n-padding-left) var(--n-padding-bottom) var(--n-padding-left); - font-size: var(--n-font-size); - `,[C("&:first-child",{paddingTop:"var(--n-padding-bottom)"})]),y("action",` - background-color: var(--n-action-color); - padding: var(--n-padding-bottom) var(--n-padding-left); - border-bottom-left-radius: var(--n-border-radius); - border-bottom-right-radius: var(--n-border-radius); - `)]),g("card-cover",` - overflow: hidden; - width: 100%; - border-radius: var(--n-border-radius) var(--n-border-radius) 0 0; - `,[C("img",` - display: block; - width: 100%; - `)]),P("bordered",` - border: 1px solid var(--n-border-color); - `,[C("&:target","border-color: var(--n-color-target);")]),P("action-segmented",[C(">",[y("action",[C("&:not(:first-child)",{borderTop:"1px solid var(--n-border-color)"})])])]),P("content-segmented, content-soft-segmented",[C(">",[y("content",{transition:"border-color 0.3s var(--n-bezier)"},[C("&:not(:first-child)",{borderTop:"1px solid var(--n-border-color)"})])])]),P("footer-segmented, footer-soft-segmented",[C(">",[y("footer",{transition:"border-color 0.3s var(--n-bezier)"},[C("&:not(:first-child)",{borderTop:"1px solid var(--n-border-color)"})])])]),P("embedded",` - background-color: var(--n-color-embedded); - `)]),Or(g("card",` - background: var(--n-color-modal); - `,[P("embedded",` - background-color: var(--n-color-embedded-modal); - `)])),gn(g("card",` - background: var(--n-color-popover); - `,[P("embedded",` - background-color: var(--n-color-embedded-popover); - `)]))]),Sn={title:String,contentStyle:[Object,String],headerStyle:[Object,String],headerExtraStyle:[Object,String],footerStyle:[Object,String],embedded:Boolean,segmented:{type:[Boolean,Object],default:!1},size:{type:String,default:"medium"},bordered:{type:Boolean,default:!0},closable:Boolean,hoverable:Boolean,role:String,onClose:[Function,Array],tag:{type:String,default:"div"}},zf=yo(Sn),$f=Object.assign(Object.assign({},ne.props),Sn),Rf=q({name:"Card",props:$f,setup(e){const o=()=>{const{onClose:c}=e;c&&ae(c)},{inlineThemeDisabled:t,mergedClsPrefixRef:r,mergedRtlRef:n}=ke(e),l=ne("Card","-card",Sf,Nl,e,r),a=to("Card",n,r),s=R(()=>{const{size:c}=e,{self:{color:u,colorModal:f,colorTarget:p,textColor:v,titleTextColor:h,titleFontWeight:m,borderColor:b,actionColor:x,borderRadius:S,lineHeight:B,closeIconColor:T,closeIconColorHover:z,closeIconColorPressed:I,closeColorHover:w,closeColorPressed:O,closeBorderRadius:k,closeIconSize:$,closeSize:L,boxShadow:M,colorPopover:j,colorEmbedded:E,colorEmbeddedModal:U,colorEmbeddedPopover:_,[W("padding",c)]:V,[W("fontSize",c)]:te,[W("titleFontSize",c)]:N},common:{cubicBezierEaseInOut:G}}=l.value,{top:Ce,left:X,bottom:ve}=Ko(V);return{"--n-bezier":G,"--n-border-radius":S,"--n-color":u,"--n-color-modal":f,"--n-color-popover":j,"--n-color-embedded":E,"--n-color-embedded-modal":U,"--n-color-embedded-popover":_,"--n-color-target":p,"--n-text-color":v,"--n-line-height":B,"--n-action-color":x,"--n-title-text-color":h,"--n-title-font-weight":m,"--n-close-icon-color":T,"--n-close-icon-color-hover":z,"--n-close-icon-color-pressed":I,"--n-close-color-hover":w,"--n-close-color-pressed":O,"--n-border-color":b,"--n-box-shadow":M,"--n-padding-top":Ce,"--n-padding-bottom":ve,"--n-padding-left":X,"--n-font-size":te,"--n-title-font-size":N,"--n-close-size":L,"--n-close-icon-size":$,"--n-close-border-radius":k}}),d=t?Ae("card",R(()=>e.size[0]),s,e):void 0;return{rtlEnabled:a,mergedClsPrefix:r,mergedTheme:l,handleCloseClick:o,cssVars:t?void 0:s,themeClass:d==null?void 0:d.themeClass,onRender:d==null?void 0:d.onRender}},render(){const{segmented:e,bordered:o,hoverable:t,mergedClsPrefix:r,rtlEnabled:n,onRender:l,embedded:a,tag:s,$slots:d}=this;return l==null||l(),i(s,{class:[`${r}-card`,this.themeClass,a&&`${r}-card--embedded`,{[`${r}-card--rtl`]:n,[`${r}-card--content${typeof e!="boolean"&&e.content==="soft"?"-soft":""}-segmented`]:e===!0||e!==!1&&e.content,[`${r}-card--footer${typeof e!="boolean"&&e.footer==="soft"?"-soft":""}-segmented`]:e===!0||e!==!1&&e.footer,[`${r}-card--action-segmented`]:e===!0||e!==!1&&e.action,[`${r}-card--bordered`]:o,[`${r}-card--hoverable`]:t}],style:this.cssVars,role:this.role},Ee(d.cover,c=>c&&i("div",{class:`${r}-card-cover`,role:"none"},c)),Ee(d.header,c=>c||this.title||this.closable?i("div",{class:`${r}-card-header`,style:this.headerStyle},i("div",{class:`${r}-card-header__main`,role:"heading"},c||this.title),Ee(d["header-extra"],u=>u&&i("div",{class:`${r}-card-header__extra`,style:this.headerExtraStyle},u)),this.closable?i(St,{clsPrefix:r,class:`${r}-card-header__close`,onClick:this.handleCloseClick,absolute:!0}):null):null),Ee(d.default,c=>c&&i("div",{class:`${r}-card__content`,style:this.contentStyle,role:"none"},c)),Ee(d.footer,c=>c&&[i("div",{class:`${r}-card__footer`,style:this.footerStyle,role:"none"},c)]),Ee(d.action,c=>c&&i("div",{class:`${r}-card__action`,role:"none"},c)))}}),Pf=e=>({dotSize:"8px",dotColor:"rgba(255, 255, 255, .3)",dotColorActive:"rgba(255, 255, 255, 1)",dotColorFocus:"rgba(255, 255, 255, .5)",dotLineWidth:"16px",dotLineWidthActive:"24px",arrowColor:"#eee"}),kf={name:"Carousel",common:fe,self:Pf},If=kf,Bf={sizeSmall:"14px",sizeMedium:"16px",sizeLarge:"18px",labelPadding:"0 8px",labelFontWeight:"400"},Tf=e=>{const{baseColor:o,inputColorDisabled:t,cardColor:r,modalColor:n,popoverColor:l,textColorDisabled:a,borderColor:s,primaryColor:d,textColor2:c,fontSizeSmall:u,fontSizeMedium:f,fontSizeLarge:p,borderRadiusSmall:v,lineHeight:h}=e;return Object.assign(Object.assign({},Bf),{labelLineHeight:h,fontSizeSmall:u,fontSizeMedium:f,fontSizeLarge:p,borderRadius:v,color:o,colorChecked:d,colorDisabled:t,colorDisabledChecked:t,colorTableHeader:r,colorTableHeaderModal:n,colorTableHeaderPopover:l,checkMarkColor:o,checkMarkColorDisabled:a,checkMarkColorDisabledChecked:a,border:`1px solid ${s}`,borderDisabled:`1px solid ${s}`,borderDisabledChecked:`1px solid ${s}`,borderChecked:`1px solid ${d}`,borderFocus:`1px solid ${d}`,boxShadowFocus:`0 0 0 2px ${J(d,{alpha:.3})}`,textColor:c,textColorDisabled:a})},Ff={name:"Checkbox",common:fe,self(e){const{cardColor:o}=e,t=Tf(e);return t.color="#0000",t.checkMarkColor=o,t}},Nt=Ff,Of=e=>{const{borderRadius:o,boxShadow2:t,popoverColor:r,textColor2:n,textColor3:l,primaryColor:a,textColorDisabled:s,dividerColor:d,hoverColor:c,fontSizeMedium:u,heightMedium:f}=e;return{menuBorderRadius:o,menuColor:r,menuBoxShadow:t,menuDividerColor:d,menuHeight:"calc(var(--n-option-height) * 6.6)",optionArrowColor:l,optionHeight:f,optionFontSize:u,optionColorHover:c,optionTextColor:n,optionTextColorActive:a,optionTextColorDisabled:s,optionCheckMarkColor:a,loadingColor:a,columnWidth:"180px"}},Mf={name:"Cascader",common:fe,peers:{InternalSelectMenu:fr,InternalSelection:wn,Scrollbar:zo,Checkbox:Nt,Empty:Cn},self:Of},_f=Mf,Df={name:"Code",common:fe,self(e){const{textColor2:o,fontSize:t,fontWeightStrong:r,textColor3:n}=e;return{textColor:o,fontSize:t,fontWeightStrong:r,"mono-3":"#5c6370","hue-1":"#56b6c2","hue-2":"#61aeee","hue-3":"#c678dd","hue-4":"#98c379","hue-5":"#e06c75","hue-5-2":"#be5046","hue-6":"#d19a66","hue-6-2":"#e6c07b",lineNumberTextColor:n}}},Ul=Df,Lf=e=>{const{fontWeight:o,textColor1:t,textColor2:r,textColorDisabled:n,dividerColor:l,fontSize:a}=e;return{titleFontSize:a,titleFontWeight:o,dividerColor:l,titleTextColor:t,titleTextColorDisabled:n,fontSize:a,textColor:r,arrowColor:r,arrowColorDisabled:n,itemMargin:"16px 0 0 0",titlePadding:"16px 0 0 0"}},Hf={name:"Collapse",common:fe,self:Lf},Af=Hf,Ef=e=>{const{cubicBezierEaseInOut:o}=e;return{bezier:o}},jf={name:"CollapseTransition",common:fe,self:Ef},Wf=jf,Nf={abstract:Boolean,bordered:{type:Boolean,default:void 0},clsPrefix:String,locale:Object,dateLocale:Object,namespace:String,rtl:Array,tag:{type:String,default:"div"},hljs:Object,katex:Object,theme:Object,themeOverrides:Object,componentOptions:Object,icons:Object,breakpoints:Object,preflightStyleDisabled:Boolean,inlineThemeDisabled:{type:Boolean,default:void 0},as:{type:String,validator:()=>(qo("config-provider","`as` is deprecated, please use `tag` instead."),!0),default:void 0}},g1=q({name:"ConfigProvider",alias:["App"],props:Nf,setup(e){const o=Se(Yo,null),t=R(()=>{const{theme:h}=e;if(h===null)return;const m=o==null?void 0:o.mergedThemeRef.value;return h===void 0?m:m===void 0?h:Object.assign({},m,h)}),r=R(()=>{const{themeOverrides:h}=e;if(h!==null){if(h===void 0)return o==null?void 0:o.mergedThemeOverridesRef.value;{const m=o==null?void 0:o.mergedThemeOverridesRef.value;return m===void 0?h:Tt({},m,h)}}}),n=We(()=>{const{namespace:h}=e;return h===void 0?o==null?void 0:o.mergedNamespaceRef.value:h}),l=We(()=>{const{bordered:h}=e;return h===void 0?o==null?void 0:o.mergedBorderedRef.value:h}),a=R(()=>{const{icons:h}=e;return h===void 0?o==null?void 0:o.mergedIconsRef.value:h}),s=R(()=>{const{componentOptions:h}=e;return h!==void 0?h:o==null?void 0:o.mergedComponentPropsRef.value}),d=R(()=>{const{clsPrefix:h}=e;return h!==void 0?h:o==null?void 0:o.mergedClsPrefixRef.value}),c=R(()=>{var h;const{rtl:m}=e;if(m===void 0)return o==null?void 0:o.mergedRtlRef.value;const b={};for(const x of m)b[x.name]=Wn(x),(h=x.peers)===null||h===void 0||h.forEach(S=>{S.name in b||(b[S.name]=Wn(S))});return b}),u=R(()=>e.breakpoints||(o==null?void 0:o.mergedBreakpointsRef.value)),f=e.inlineThemeDisabled||(o==null?void 0:o.inlineThemeDisabled),p=e.preflightStyleDisabled||(o==null?void 0:o.preflightStyleDisabled),v=R(()=>{const{value:h}=t,{value:m}=r,b=m&&Object.keys(m).length!==0,x=h==null?void 0:h.name;return x?b?`${x}-${zr(JSON.stringify(r.value))}`:x:b?zr(JSON.stringify(r.value)):""});return Oe(Yo,{mergedThemeHashRef:v,mergedBreakpointsRef:u,mergedRtlRef:c,mergedIconsRef:a,mergedComponentPropsRef:s,mergedBorderedRef:l,mergedNamespaceRef:n,mergedClsPrefixRef:d,mergedLocaleRef:R(()=>{const{locale:h}=e;if(h!==null)return h===void 0?o==null?void 0:o.mergedLocaleRef.value:h}),mergedDateLocaleRef:R(()=>{const{dateLocale:h}=e;if(h!==null)return h===void 0?o==null?void 0:o.mergedDateLocaleRef.value:h}),mergedHljsRef:R(()=>{const{hljs:h}=e;return h===void 0?o==null?void 0:o.mergedHljsRef.value:h}),mergedKatexRef:R(()=>{const{katex:h}=e;return h===void 0?o==null?void 0:o.mergedKatexRef.value:h}),mergedThemeRef:t,mergedThemeOverridesRef:r,inlineThemeDisabled:f||!1,preflightStyleDisabled:p||!1}),{mergedClsPrefix:d,mergedBordered:l,mergedNamespace:n,mergedTheme:t,mergedThemeOverrides:r}},render(){var e,o,t,r;return this.abstract?(r=(t=this.$slots).default)===null||r===void 0?void 0:r.call(t):i(this.as||this.tag,{class:`${this.mergedClsPrefix||sl}-config-provider`},(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e))}}),Vf=e=>1-Math.pow(1-e,5);function Uf(e){const{from:o,to:t,duration:r,onUpdate:n,onFinish:l}=e,a=()=>{const d=performance.now(),c=Math.min(d-s,r),u=o+(t-o)*Vf(c/r);if(c===r){l();return}n(u),requestAnimationFrame(a)},s=performance.now();a()}const Kf={to:{type:Number,default:0},precision:{type:Number,default:0},showSeparator:Boolean,locale:String,from:{type:Number,default:0},active:{type:Boolean,default:!0},duration:{type:Number,default:2e3},onFinish:Function},m1=q({name:"NumberAnimation",props:Kf,setup(e){const{localeRef:o}=Xo("name"),{duration:t}=e,r=D(e.from),n=R(()=>{const{locale:p}=e;return p!==void 0?p:o.value});let l=!1;const a=p=>{r.value=p},s=()=>{var p;r.value=e.to,l=!1,(p=e.onFinish)===null||p===void 0||p.call(e)},d=(p=e.from,v=e.to)=>{l=!0,r.value=e.from,p!==v&&Uf({from:p,to:v,duration:t,onUpdate:a,onFinish:s})},c=R(()=>{var p;const h=fd(r.value,e.precision).toFixed(e.precision).split("."),m=new Intl.NumberFormat(n.value),b=(p=m.formatToParts(.5).find(B=>B.type==="decimal"))===null||p===void 0?void 0:p.value,x=e.showSeparator?m.format(Number(h[0])):h[0],S=h[1];return{integer:x,decimal:S,decimalSeparator:b}});function u(){l||d()}return mo(()=>{oo(()=>{e.active&&d()})}),Object.assign({formattedValue:c},{play:u})},render(){const{formattedValue:{integer:e,decimal:o,decimalSeparator:t}}=this;return[e,o?t:null,o]}}),Gf={name:"Popselect",common:fe,peers:{Popover:$t,InternalSelectMenu:fr}},Kl=Gf;function qf(e){const{boxShadow2:o}=e;return{menuBoxShadow:o}}const Yf={name:"Popselect",common:Le,peers:{Popover:jt,InternalSelectMenu:_r},self:qf},zn=Yf,Gl="n-popselect",Xf=g("popselect-menu",` - box-shadow: var(--n-menu-box-shadow); -`),$n={multiple:Boolean,value:{type:[String,Number,Array],default:null},cancelable:Boolean,options:{type:Array,default:()=>[]},size:{type:String,default:"medium"},scrollable:Boolean,"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],onMouseenter:Function,onMouseleave:Function,renderLabel:Function,showCheckmark:{type:Boolean,default:void 0},nodeProps:Function,virtualScroll:Boolean,onChange:[Function,Array]},vi=yo($n),Zf=q({name:"PopselectPanel",props:$n,setup(e){const o=Se(Gl),{mergedClsPrefixRef:t,inlineThemeDisabled:r}=ke(e),n=ne("Popselect","-pop-select",Xf,zn,o.props,t),l=R(()=>ar(e.options,Tl("value","children")));function a(p,v){const{onUpdateValue:h,"onUpdate:value":m,onChange:b}=e;h&&ae(h,p,v),m&&ae(m,p,v),b&&ae(b,p,v)}function s(p){c(p.key)}function d(p){pt(p,"action")||p.preventDefault()}function c(p){const{value:{getNode:v}}=l;if(e.multiple)if(Array.isArray(e.value)){const h=[],m=[];let b=!0;e.value.forEach(x=>{if(x===p){b=!1;return}const S=v(x);S&&(h.push(S.key),m.push(S.rawNode))}),b&&(h.push(p),m.push(v(p).rawNode)),a(h,m)}else{const h=v(p);h&&a([p],[h.rawNode])}else if(e.value===p&&e.cancelable)a(null,null);else{const h=v(p);h&&a(p,h.rawNode);const{"onUpdate:show":m,onUpdateShow:b}=o.props;m&&ae(m,!1),b&&ae(b,!1),o.setShow(!1)}io(()=>{o.syncPosition()})}Ke(le(e,"options"),()=>{io(()=>{o.syncPosition()})});const u=R(()=>{const{self:{menuBoxShadow:p}}=n.value;return{"--n-menu-box-shadow":p}}),f=r?Ae("select",void 0,u,o.props):void 0;return{mergedTheme:o.mergedThemeRef,mergedClsPrefix:t,treeMate:l,handleToggle:s,handleMenuMousedown:d,cssVars:r?void 0:u,themeClass:f==null?void 0:f.themeClass,onRender:f==null?void 0:f.onRender}},render(){var e;return(e=this.onRender)===null||e===void 0||e.call(this),i(yn,{clsPrefix:this.mergedClsPrefix,focusable:!0,nodeProps:this.nodeProps,class:[`${this.mergedClsPrefix}-popselect-menu`,this.themeClass],style:this.cssVars,theme:this.mergedTheme.peers.InternalSelectMenu,themeOverrides:this.mergedTheme.peerOverrides.InternalSelectMenu,multiple:this.multiple,treeMate:this.treeMate,size:this.size,value:this.value,virtualScroll:this.virtualScroll,scrollable:this.scrollable,renderLabel:this.renderLabel,onToggle:this.handleToggle,onMouseenter:this.onMouseenter,onMouseleave:this.onMouseenter,onMousedown:this.handleMenuMousedown,showCheckmark:this.showCheckmark},{action:()=>{var o,t;return((t=(o=this.$slots).action)===null||t===void 0?void 0:t.call(o))||[]},empty:()=>{var o,t;return((t=(o=this.$slots).empty)===null||t===void 0?void 0:t.call(o))||[]}})}}),Qf=Object.assign(Object.assign(Object.assign(Object.assign({},ne.props),_t(bt,["showArrow","arrow"])),{placement:Object.assign(Object.assign({},bt.placement),{default:"bottom"}),trigger:{type:String,default:"hover"}}),$n),Jf=q({name:"Popselect",props:Qf,inheritAttrs:!1,__popover__:!0,setup(e){const{mergedClsPrefixRef:o}=ke(e),t=ne("Popselect","-popselect",void 0,zn,e,o),r=D(null);function n(){var s;(s=r.value)===null||s===void 0||s.syncPosition()}function l(s){var d;(d=r.value)===null||d===void 0||d.setShow(s)}return Oe(Gl,{props:e,mergedThemeRef:t,syncPosition:n,setShow:l}),Object.assign(Object.assign({},{syncPosition:n,setShow:l}),{popoverInstRef:r,mergedTheme:t})},render(){const{mergedTheme:e}=this,o={theme:e.peers.Popover,themeOverrides:e.peerOverrides.Popover,builtinThemeOverrides:{padding:"0"},ref:"popoverInstRef",internalRenderBody:(t,r,n,l,a)=>{const{$attrs:s}=this;return i(Zf,Object.assign({},s,{class:[s.class,t],style:[s.style,n]},go(this.$props,vi),{ref:qi(r),onMouseenter:Zt([l,s.onMouseenter]),onMouseleave:Zt([a,s.onMouseleave])}),{action:()=>{var d,c;return(c=(d=this.$slots).action)===null||c===void 0?void 0:c.call(d)},empty:()=>{var d,c;return(c=(d=this.$slots).empty)===null||c===void 0?void 0:c.call(d)}})}};return i(hr,Object.assign({},_t(this.$props,vi),o,{internalDeactivateImmediately:!0}),{trigger:()=>{var t,r;return(r=(t=this.$slots).default)===null||r===void 0?void 0:r.call(t)}})}});function ql(e){const{boxShadow2:o}=e;return{menuBoxShadow:o}}const eh={name:"Select",common:Le,peers:{InternalSelection:Pl,InternalSelectMenu:_r},self:ql},Yl=eh,oh={name:"Select",common:fe,peers:{InternalSelection:wn,InternalSelectMenu:fr},self:ql},Xl=oh,th=C([g("select",` - z-index: auto; - outline: none; - width: 100%; - position: relative; - `),g("select-menu",` - margin: 4px 0; - box-shadow: var(--n-menu-box-shadow); - `,[at({originalTransition:"background-color .3s var(--n-bezier), box-shadow .3s var(--n-bezier)"})])]),rh=Object.assign(Object.assign({},ne.props),{to:Io.propTo,bordered:{type:Boolean,default:void 0},clearable:Boolean,clearFilterAfterSelect:{type:Boolean,default:!0},options:{type:Array,default:()=>[]},defaultValue:{type:[String,Number,Array],default:null},keyboard:{type:Boolean,default:!0},value:[String,Number,Array],placeholder:String,menuProps:Object,multiple:Boolean,size:String,filterable:Boolean,disabled:{type:Boolean,default:void 0},remote:Boolean,loading:Boolean,filter:Function,placement:{type:String,default:"bottom-start"},widthMode:{type:String,default:"trigger"},tag:Boolean,onCreate:Function,fallbackOption:{type:[Function,Boolean],default:void 0},show:{type:Boolean,default:void 0},showArrow:{type:Boolean,default:!0},maxTagCount:[Number,String],consistentMenuWidth:{type:Boolean,default:!0},virtualScroll:{type:Boolean,default:!0},labelField:{type:String,default:"label"},valueField:{type:String,default:"value"},childrenField:{type:String,default:"children"},renderLabel:Function,renderOption:Function,renderTag:Function,"onUpdate:value":[Function,Array],inputProps:Object,nodeProps:Function,ignoreComposition:{type:Boolean,default:!0},showOnFocus:Boolean,onUpdateValue:[Function,Array],onBlur:[Function,Array],onClear:[Function,Array],onFocus:[Function,Array],onScroll:[Function,Array],onSearch:[Function,Array],onUpdateShow:[Function,Array],"onUpdate:show":[Function,Array],displayDirective:{type:String,default:"show"},resetMenuOnOptionsChange:{type:Boolean,default:!0},status:String,showCheckmark:{type:Boolean,default:!0},onChange:[Function,Array],items:Array}),nh=q({name:"Select",props:rh,setup(e){const{mergedClsPrefixRef:o,mergedBorderedRef:t,namespaceRef:r,inlineThemeDisabled:n}=ke(e),l=ne("Select","-select",th,Yl,e,o),a=D(e.defaultValue),s=le(e,"value"),d=so(s,a),c=D(!1),u=D(""),f=R(()=>{const{valueField:F,childrenField:K}=e,ie=Tl(F,K);return ar(M.value,ie)}),p=R(()=>xu($.value,e.valueField,e.childrenField)),v=D(!1),h=so(le(e,"show"),v),m=D(null),b=D(null),x=D(null),{localeRef:S}=Xo("Select"),B=R(()=>{var F;return(F=e.placeholder)!==null&&F!==void 0?F:S.value.placeholder}),T=gt(e,["items","options"]),z=[],I=D([]),w=D([]),O=D(new Map),k=R(()=>{const{fallbackOption:F}=e;if(F===void 0){const{labelField:K,valueField:ie}=e;return ze=>({[K]:String(ze),[ie]:ze})}return F===!1?!1:K=>Object.assign(F(K),{value:K})}),$=R(()=>w.value.concat(I.value).concat(T.value)),L=R(()=>{const{filter:F}=e;if(F)return F;const{labelField:K,valueField:ie}=e;return(ze,Pe)=>{if(!Pe)return!1;const Ie=Pe[K];if(typeof Ie=="string")return Yr(ze,Ie);const Te=Pe[ie];return typeof Te=="string"?Yr(ze,Te):typeof Te=="number"?Yr(ze,String(Te)):!1}}),M=R(()=>{if(e.remote)return T.value;{const{value:F}=$,{value:K}=u;return!K.length||!e.filterable?F:bu(F,L.value,K,e.childrenField)}});function j(F){const K=e.remote,{value:ie}=O,{value:ze}=p,{value:Pe}=k,Ie=[];return F.forEach(Te=>{if(ze.has(Te))Ie.push(ze.get(Te));else if(K&&ie.has(Te))Ie.push(ie.get(Te));else if(Pe){const _e=Pe(Te);_e&&Ie.push(_e)}}),Ie}const E=R(()=>{if(e.multiple){const{value:F}=d;return Array.isArray(F)?j(F):[]}return null}),U=R(()=>{const{value:F}=d;return!e.multiple&&!Array.isArray(F)?F===null?null:j([F])[0]||null:null}),_=rt(e),{mergedSizeRef:V,mergedDisabledRef:te,mergedStatusRef:N}=_;function G(F,K){const{onChange:ie,"onUpdate:value":ze,onUpdateValue:Pe}=e,{nTriggerFormChange:Ie,nTriggerFormInput:Te}=_;ie&&ae(ie,F,K),Pe&&ae(Pe,F,K),ze&&ae(ze,F,K),a.value=F,Ie(),Te()}function Ce(F){const{onBlur:K}=e,{nTriggerFormBlur:ie}=_;K&&ae(K,F),ie()}function X(){const{onClear:F}=e;F&&ae(F)}function ve(F){const{onFocus:K,showOnFocus:ie}=e,{nTriggerFormFocus:ze}=_;K&&ae(K,F),ze(),ie&&Re()}function he(F){const{onSearch:K}=e;K&&ae(K,F)}function be(F){const{onScroll:K}=e;K&&ae(K,F)}function me(){var F;const{remote:K,multiple:ie}=e;if(K){const{value:ze}=O;if(ie){const{valueField:Pe}=e;(F=E.value)===null||F===void 0||F.forEach(Ie=>{ze.set(Ie[Pe],Ie)})}else{const Pe=U.value;Pe&&ze.set(Pe[e.valueField],Pe)}}}function se(F){const{onUpdateShow:K,"onUpdate:show":ie}=e;K&&ae(K,F),ie&&ae(ie,F),v.value=F}function Re(){te.value||(se(!0),v.value=!0,e.filterable&&Co())}function ge(){se(!1)}function ee(){u.value="",w.value=z}const xe=D(!1);function de(){e.filterable&&(xe.value=!0)}function ye(){e.filterable&&(xe.value=!1,h.value||ee())}function pe(){te.value||(h.value?e.filterable?Co():ge():Re())}function Me(F){var K,ie;!((ie=(K=x.value)===null||K===void 0?void 0:K.selfRef)===null||ie===void 0)&&ie.contains(F.relatedTarget)||(c.value=!1,Ce(F),ge())}function Q(F){ve(F),c.value=!0}function A(F){c.value=!0}function Z(F){var K;!((K=m.value)===null||K===void 0)&&K.$el.contains(F.relatedTarget)||(c.value=!1,Ce(F),ge())}function re(){var F;(F=m.value)===null||F===void 0||F.focus(),ge()}function ue(F){var K;h.value&&(!((K=m.value)===null||K===void 0)&&K.$el.contains(Qt(F))||ge())}function Y(F){if(!Array.isArray(F))return[];if(k.value)return Array.from(F);{const{remote:K}=e,{value:ie}=p;if(K){const{value:ze}=O;return F.filter(Pe=>ie.has(Pe)||ze.has(Pe))}else return F.filter(ze=>ie.has(ze))}}function ce(F){He(F.rawNode)}function He(F){if(te.value)return;const{tag:K,remote:ie,clearFilterAfterSelect:ze,valueField:Pe}=e;if(K&&!ie){const{value:Ie}=w,Te=Ie[0]||null;if(Te){const _e=I.value;_e.length?_e.push(Te):I.value=[Te],w.value=z}}if(ie&&O.value.set(F[Pe],F),e.multiple){const Ie=Y(d.value),Te=Ie.findIndex(_e=>_e===F[Pe]);if(~Te){if(Ie.splice(Te,1),K&&!ie){const _e=Ve(F[Pe]);~_e&&(I.value.splice(_e,1),ze&&(u.value=""))}}else Ie.push(F[Pe]),ze&&(u.value="");G(Ie,j(Ie))}else{if(K&&!ie){const Ie=Ve(F[Pe]);~Ie?I.value=[I.value[Ie]]:I.value=z}xo(),ge(),G(F[Pe],F)}}function Ve(F){return I.value.findIndex(ie=>ie[e.valueField]===F)}function Ze(F){h.value||Re();const{value:K}=F.target;u.value=K;const{tag:ie,remote:ze}=e;if(he(K),ie&&!ze){if(!K){w.value=z;return}const{onCreate:Pe}=e,Ie=Pe?Pe(K):{[e.labelField]:K,[e.valueField]:K},{valueField:Te}=e;T.value.some(_e=>_e[Te]===Ie[Te])||I.value.some(_e=>_e[Te]===Ie[Te])?w.value=z:w.value=[Ie]}}function po(F){F.stopPropagation();const{multiple:K}=e;!K&&e.filterable&&ge(),X(),K?G([],[]):G(null,null)}function fo(F){!pt(F,"action")&&!pt(F,"empty")&&F.preventDefault()}function Bo(F){be(F)}function To(F){var K,ie,ze,Pe,Ie;if(!e.keyboard){F.preventDefault();return}switch(F.key){case" ":if(e.filterable)break;F.preventDefault();case"Enter":if(!(!((K=m.value)===null||K===void 0)&&K.isComposing)){if(h.value){const Te=(ie=x.value)===null||ie===void 0?void 0:ie.getPendingTmNode();Te?ce(Te):e.filterable||(ge(),xo())}else if(Re(),e.tag&&xe.value){const Te=w.value[0];if(Te){const _e=Te[e.valueField],{value:Qe}=d;e.multiple&&Array.isArray(Qe)&&Qe.some(vo=>vo===_e)||He(Te)}}}F.preventDefault();break;case"ArrowUp":if(F.preventDefault(),e.loading)return;h.value&&((ze=x.value)===null||ze===void 0||ze.prev());break;case"ArrowDown":if(F.preventDefault(),e.loading)return;h.value?(Pe=x.value)===null||Pe===void 0||Pe.next():Re();break;case"Escape":h.value&&(kd(F),ge()),(Ie=m.value)===null||Ie===void 0||Ie.focus();break}}function xo(){var F;(F=m.value)===null||F===void 0||F.focus()}function Co(){var F;(F=m.value)===null||F===void 0||F.focusInput()}function Ao(){var F;h.value&&((F=b.value)===null||F===void 0||F.syncPosition())}me(),Ke(le(e,"options"),me);const Fo={focus:()=>{var F;(F=m.value)===null||F===void 0||F.focus()},blur:()=>{var F;(F=m.value)===null||F===void 0||F.blur()}},co=R(()=>{const{self:{menuBoxShadow:F}}=l.value;return{"--n-menu-box-shadow":F}}),uo=n?Ae("select",void 0,co,e):void 0;return Object.assign(Object.assign({},Fo),{mergedStatus:N,mergedClsPrefix:o,mergedBordered:t,namespace:r,treeMate:f,isMounted:Ct(),triggerRef:m,menuRef:x,pattern:u,uncontrolledShow:v,mergedShow:h,adjustedTo:Io(e),uncontrolledValue:a,mergedValue:d,followerRef:b,localizedPlaceholder:B,selectedOption:U,selectedOptions:E,mergedSize:V,mergedDisabled:te,focused:c,activeWithoutMenuOpen:xe,inlineThemeDisabled:n,onTriggerInputFocus:de,onTriggerInputBlur:ye,handleTriggerOrMenuResize:Ao,handleMenuFocus:A,handleMenuBlur:Z,handleMenuTabOut:re,handleTriggerClick:pe,handleToggle:ce,handleDeleteOption:He,handlePatternInput:Ze,handleClear:po,handleTriggerBlur:Me,handleTriggerFocus:Q,handleKeydown:To,handleMenuAfterLeave:ee,handleMenuClickOutside:ue,handleMenuScroll:Bo,handleMenuKeydown:To,handleMenuMousedown:fo,mergedTheme:l,cssVars:n?void 0:co,themeClass:uo==null?void 0:uo.themeClass,onRender:uo==null?void 0:uo.onRender})},render(){return i("div",{class:`${this.mergedClsPrefix}-select`},i(Br,null,{default:()=>[i(Ir,null,{default:()=>i(ou,{ref:"triggerRef",inlineThemeDisabled:this.inlineThemeDisabled,status:this.mergedStatus,inputProps:this.inputProps,clsPrefix:this.mergedClsPrefix,showArrow:this.showArrow,maxTagCount:this.maxTagCount,bordered:this.mergedBordered,active:this.activeWithoutMenuOpen||this.mergedShow,pattern:this.pattern,placeholder:this.localizedPlaceholder,selectedOption:this.selectedOption,selectedOptions:this.selectedOptions,multiple:this.multiple,renderTag:this.renderTag,renderLabel:this.renderLabel,filterable:this.filterable,clearable:this.clearable,disabled:this.mergedDisabled,size:this.mergedSize,theme:this.mergedTheme.peers.InternalSelection,labelField:this.labelField,valueField:this.valueField,themeOverrides:this.mergedTheme.peerOverrides.InternalSelection,loading:this.loading,focused:this.focused,onClick:this.handleTriggerClick,onDeleteOption:this.handleDeleteOption,onPatternInput:this.handlePatternInput,onClear:this.handleClear,onBlur:this.handleTriggerBlur,onFocus:this.handleTriggerFocus,onKeydown:this.handleKeydown,onPatternBlur:this.onTriggerInputBlur,onPatternFocus:this.onTriggerInputFocus,onResize:this.handleTriggerOrMenuResize,ignoreComposition:this.ignoreComposition},{arrow:()=>{var e,o;return[(o=(e=this.$slots).arrow)===null||o===void 0?void 0:o.call(e)]}})}),i(kr,{ref:"followerRef",show:this.mergedShow,to:this.adjustedTo,teleportDisabled:this.adjustedTo===Io.tdkey,containerClass:this.namespace,width:this.consistentMenuWidth?"target":void 0,minWidth:"target",placement:this.placement},{default:()=>i(no,{name:"fade-in-scale-up-transition",appear:this.isMounted,onAfterLeave:this.handleMenuAfterLeave},{default:()=>{var e,o,t;return this.mergedShow||this.displayDirective==="show"?((e=this.onRender)===null||e===void 0||e.call(this),Lo(i(yn,Object.assign({},this.menuProps,{ref:"menuRef",onResize:this.handleTriggerOrMenuResize,inlineThemeDisabled:this.inlineThemeDisabled,virtualScroll:this.consistentMenuWidth&&this.virtualScroll,class:[`${this.mergedClsPrefix}-select-menu`,this.themeClass,(o=this.menuProps)===null||o===void 0?void 0:o.class],clsPrefix:this.mergedClsPrefix,focusable:!0,labelField:this.labelField,valueField:this.valueField,autoPending:!0,nodeProps:this.nodeProps,theme:this.mergedTheme.peers.InternalSelectMenu,themeOverrides:this.mergedTheme.peerOverrides.InternalSelectMenu,treeMate:this.treeMate,multiple:this.multiple,size:"medium",renderOption:this.renderOption,renderLabel:this.renderLabel,value:this.mergedValue,style:[(t=this.menuProps)===null||t===void 0?void 0:t.style,this.cssVars],onToggle:this.handleToggle,onScroll:this.handleMenuScroll,onFocus:this.handleMenuFocus,onBlur:this.handleMenuBlur,onKeydown:this.handleMenuKeydown,onTabOut:this.handleMenuTabOut,onMousedown:this.handleMenuMousedown,show:this.mergedShow,showCheckmark:this.showCheckmark,resetMenuOnOptionsChange:this.resetMenuOnOptionsChange}),{empty:()=>{var r,n;return[(n=(r=this.$slots).empty)===null||n===void 0?void 0:n.call(r)]},action:()=>{var r,n;return[(n=(r=this.$slots).action)===null||n===void 0?void 0:n.call(r)]}}),this.displayDirective==="show"?[[Go,this.mergedShow],[Ft,this.handleMenuClickOutside,void 0,{capture:!0}]]:[[Ft,this.handleMenuClickOutside,void 0,{capture:!0}]])):null}})})]}))}}),ih={itemPaddingSmall:"0 4px",itemMarginSmall:"0 0 0 8px",itemMarginSmallRtl:"0 8px 0 0",itemPaddingMedium:"0 4px",itemMarginMedium:"0 0 0 8px",itemMarginMediumRtl:"0 8px 0 0",itemPaddingLarge:"0 4px",itemMarginLarge:"0 0 0 8px",itemMarginLargeRtl:"0 8px 0 0",buttonIconSizeSmall:"14px",buttonIconSizeMedium:"16px",buttonIconSizeLarge:"18px",inputWidthSmall:"60px",selectWidthSmall:"unset",inputMarginSmall:"0 0 0 8px",inputMarginSmallRtl:"0 8px 0 0",selectMarginSmall:"0 0 0 8px",prefixMarginSmall:"0 8px 0 0",suffixMarginSmall:"0 0 0 8px",inputWidthMedium:"60px",selectWidthMedium:"unset",inputMarginMedium:"0 0 0 8px",inputMarginMediumRtl:"0 8px 0 0",selectMarginMedium:"0 0 0 8px",prefixMarginMedium:"0 8px 0 0",suffixMarginMedium:"0 0 0 8px",inputWidthLarge:"60px",selectWidthLarge:"unset",inputMarginLarge:"0 0 0 8px",inputMarginLargeRtl:"0 8px 0 0",selectMarginLarge:"0 0 0 8px",prefixMarginLarge:"0 8px 0 0",suffixMarginLarge:"0 0 0 8px"},Zl=e=>{const{textColor2:o,primaryColor:t,primaryColorHover:r,primaryColorPressed:n,inputColorDisabled:l,textColorDisabled:a,borderColor:s,borderRadius:d,fontSizeTiny:c,fontSizeSmall:u,fontSizeMedium:f,heightTiny:p,heightSmall:v,heightMedium:h}=e;return Object.assign(Object.assign({},ih),{buttonColor:"#0000",buttonColorHover:"#0000",buttonColorPressed:"#0000",buttonBorder:`1px solid ${s}`,buttonBorderHover:`1px solid ${s}`,buttonBorderPressed:`1px solid ${s}`,buttonIconColor:o,buttonIconColorHover:o,buttonIconColorPressed:o,itemTextColor:o,itemTextColorHover:r,itemTextColorPressed:n,itemTextColorActive:t,itemTextColorDisabled:a,itemColor:"#0000",itemColorHover:"#0000",itemColorPressed:"#0000",itemColorActive:"#0000",itemColorActiveHover:"#0000",itemColorDisabled:l,itemBorder:"1px solid #0000",itemBorderHover:"1px solid #0000",itemBorderPressed:"1px solid #0000",itemBorderActive:`1px solid ${t}`,itemBorderDisabled:`1px solid ${s}`,itemBorderRadius:d,itemSizeSmall:p,itemSizeMedium:v,itemSizeLarge:h,itemFontSizeSmall:c,itemFontSizeMedium:u,itemFontSizeLarge:f,jumperFontSizeSmall:c,jumperFontSizeMedium:u,jumperFontSizeLarge:f,jumperTextColor:o,jumperTextColorDisabled:a})},lh={name:"Pagination",common:Le,peers:{Select:Yl,Input:pr,Popselect:zn},self:Zl},ah=lh,sh={name:"Pagination",common:fe,peers:{Select:Xl,Input:Ho,Popselect:Kl},self(e){const{primaryColor:o,opacity3:t}=e,r=J(o,{alpha:Number(t)}),n=Zl(e);return n.itemBorderActive=`1px solid ${r}`,n.itemBorderDisabled="1px solid #0000",n}},Ql=sh;function dh(e,o,t){let r=!1,n=!1,l=1,a=o;if(o===1)return{hasFastBackward:!1,hasFastForward:!1,fastForwardTo:a,fastBackwardTo:l,items:[{type:"page",label:1,active:e===1,mayBeFastBackward:!1,mayBeFastForward:!1}]};if(o===2)return{hasFastBackward:!1,hasFastForward:!1,fastForwardTo:a,fastBackwardTo:l,items:[{type:"page",label:1,active:e===1,mayBeFastBackward:!1,mayBeFastForward:!1},{type:"page",label:2,active:e===2,mayBeFastBackward:!0,mayBeFastForward:!1}]};const s=1,d=o;let c=e,u=e;const f=(t-5)/2;u+=Math.ceil(f),u=Math.min(Math.max(u,s+t-3),d-2),c-=Math.floor(f),c=Math.max(Math.min(c,d-t+3),s+2);let p=!1,v=!1;c>s+2&&(p=!0),u=s+1&&h.push({type:"page",label:s+1,mayBeFastBackward:!0,mayBeFastForward:!1,active:e===s+1});for(let m=c;m<=u;++m)h.push({type:"page",label:m,mayBeFastBackward:!1,mayBeFastForward:!1,active:e===m});return v?(n=!0,a=u+1,h.push({type:"fast-forward",active:!1,label:void 0,options:gi(u+1,d-1)})):u===d-2&&h[h.length-1].label!==d-1&&h.push({type:"page",mayBeFastForward:!0,mayBeFastBackward:!1,label:d-1,active:e===d-1}),h[h.length-1].label!==d&&h.push({type:"page",mayBeFastForward:!1,mayBeFastBackward:!1,label:d,active:e===d}),{hasFastBackward:r,hasFastForward:n,fastBackwardTo:l,fastForwardTo:a,items:h}}function gi(e,o){const t=[];for(let r=e;r<=o;++r)t.push({label:`${r}`,value:r});return t}const mi=` - background: var(--n-item-color-hover); - color: var(--n-item-text-color-hover); - border: var(--n-item-border-hover); -`,bi=[P("button",` - background: var(--n-button-color-hover); - border: var(--n-button-border-hover); - color: var(--n-button-icon-color-hover); - `)],ch=g("pagination",` - display: flex; - vertical-align: middle; - font-size: var(--n-item-font-size); - flex-wrap: nowrap; -`,[g("pagination-prefix",` - display: flex; - align-items: center; - margin: var(--n-prefix-margin); - `),g("pagination-suffix",` - display: flex; - align-items: center; - margin: var(--n-suffix-margin); - `),C("> *:not(:first-child)",` - margin: var(--n-item-margin); - `),g("select",` - width: var(--n-select-width); - `),C("&.transition-disabled",[g("pagination-item","transition: none!important;")]),g("pagination-quick-jumper",` - white-space: nowrap; - display: flex; - color: var(--n-jumper-text-color); - transition: color .3s var(--n-bezier); - align-items: center; - font-size: var(--n-jumper-font-size); - `,[g("input",` - margin: var(--n-input-margin); - width: var(--n-input-width); - `)]),g("pagination-item",` - position: relative; - cursor: pointer; - user-select: none; - -webkit-user-select: none; - display: flex; - align-items: center; - justify-content: center; - box-sizing: border-box; - min-width: var(--n-item-size); - height: var(--n-item-size); - padding: var(--n-item-padding); - background-color: var(--n-item-color); - color: var(--n-item-text-color); - border-radius: var(--n-item-border-radius); - border: var(--n-item-border); - fill: var(--n-button-icon-color); - transition: - color .3s var(--n-bezier), - border-color .3s var(--n-bezier), - background-color .3s var(--n-bezier), - fill .3s var(--n-bezier); - `,[P("button",` - background: var(--n-button-color); - color: var(--n-button-icon-color); - border: var(--n-button-border); - padding: 0; - `,[g("base-icon",` - font-size: var(--n-button-icon-size); - `)]),je("disabled",[P("hover",mi,bi),C("&:hover",mi,bi),C("&:active",` - background: var(--n-item-color-pressed); - color: var(--n-item-text-color-pressed); - border: var(--n-item-border-pressed); - `,[P("button",` - background: var(--n-button-color-pressed); - border: var(--n-button-border-pressed); - color: var(--n-button-icon-color-pressed); - `)]),P("active",` - background: var(--n-item-color-active); - color: var(--n-item-text-color-active); - border: var(--n-item-border-active); - `,[C("&:hover",` - background: var(--n-item-color-active-hover); - `)])]),P("disabled",` - cursor: not-allowed; - color: var(--n-item-text-color-disabled); - `,[P("active, button",` - background-color: var(--n-item-color-disabled); - border: var(--n-item-border-disabled); - `)])]),P("disabled",` - cursor: not-allowed; - `,[g("pagination-quick-jumper",` - color: var(--n-jumper-text-color-disabled); - `)]),P("simple",` - display: flex; - align-items: center; - flex-wrap: nowrap; - `,[g("pagination-quick-jumper",[g("input",` - margin: 0; - `)])])]),uh=Object.assign(Object.assign({},ne.props),{simple:Boolean,page:Number,defaultPage:{type:Number,default:1},itemCount:Number,pageCount:Number,defaultPageCount:{type:Number,default:1},showSizePicker:Boolean,pageSize:Number,defaultPageSize:Number,pageSizes:{type:Array,default(){return[10]}},showQuickJumper:Boolean,size:{type:String,default:"medium"},disabled:Boolean,pageSlot:{type:Number,default:9},selectProps:Object,prev:Function,next:Function,goto:Function,prefix:Function,suffix:Function,label:Function,displayOrder:{type:Array,default:["pages","size-picker","quick-jumper"]},to:Io.propTo,"onUpdate:page":[Function,Array],onUpdatePage:[Function,Array],"onUpdate:pageSize":[Function,Array],onUpdatePageSize:[Function,Array],onPageSizeChange:[Function,Array],onChange:[Function,Array]}),b1=q({name:"Pagination",props:uh,setup(e){const{mergedComponentPropsRef:o,mergedClsPrefixRef:t,inlineThemeDisabled:r,mergedRtlRef:n}=ke(e),l=ne("Pagination","-pagination",ch,ah,e,t),{localeRef:a}=Xo("Pagination"),s=D(null),d=D(e.defaultPage),u=D((()=>{const{defaultPageSize:ee}=e;if(ee!==void 0)return ee;const xe=e.pageSizes[0];return typeof xe=="number"?xe:xe.value||10})()),f=so(le(e,"page"),d),p=so(le(e,"pageSize"),u),v=R(()=>{const{itemCount:ee}=e;if(ee!==void 0)return Math.max(1,Math.ceil(ee/p.value));const{pageCount:xe}=e;return xe!==void 0?Math.max(xe,1):1}),h=D("");oo(()=>{e.simple,h.value=String(f.value)});const m=D(!1),b=D(!1),x=D(!1),S=D(!1),B=()=>{e.disabled||(m.value=!0,_())},T=()=>{e.disabled||(m.value=!1,_())},z=()=>{b.value=!0,_()},I=()=>{b.value=!1,_()},w=ee=>{V(ee)},O=R(()=>dh(f.value,v.value,e.pageSlot));oo(()=>{O.value.hasFastBackward?O.value.hasFastForward||(m.value=!1,x.value=!1):(b.value=!1,S.value=!1)});const k=R(()=>{const ee=a.value.selectionSuffix;return e.pageSizes.map(xe=>typeof xe=="number"?{label:`${xe} / ${ee}`,value:xe}:xe)}),$=R(()=>{var ee,xe;return((xe=(ee=o==null?void 0:o.value)===null||ee===void 0?void 0:ee.Pagination)===null||xe===void 0?void 0:xe.inputSize)||Un(e.size)}),L=R(()=>{var ee,xe;return((xe=(ee=o==null?void 0:o.value)===null||ee===void 0?void 0:ee.Pagination)===null||xe===void 0?void 0:xe.selectSize)||Un(e.size)}),M=R(()=>(f.value-1)*p.value),j=R(()=>{const ee=f.value*p.value-1,{itemCount:xe}=e;return xe!==void 0&&ee>xe-1?xe-1:ee}),E=R(()=>{const{itemCount:ee}=e;return ee!==void 0?ee:(e.pageCount||1)*p.value}),U=to("Pagination",n,t),_=()=>{io(()=>{var ee;const{value:xe}=s;xe&&(xe.classList.add("transition-disabled"),(ee=s.value)===null||ee===void 0||ee.offsetWidth,xe.classList.remove("transition-disabled"))})};function V(ee){if(ee===f.value)return;const{"onUpdate:page":xe,onUpdatePage:de,onChange:ye,simple:pe}=e;xe&&ae(xe,ee),de&&ae(de,ee),ye&&ae(ye,ee),d.value=ee,pe&&(h.value=String(ee))}function te(ee){if(ee===p.value)return;const{"onUpdate:pageSize":xe,onUpdatePageSize:de,onPageSizeChange:ye}=e;xe&&ae(xe,ee),de&&ae(de,ee),ye&&ae(ye,ee),u.value=ee,v.value{f.value,p.value,_()});const Re=R(()=>{const{size:ee}=e,{self:{buttonBorder:xe,buttonBorderHover:de,buttonBorderPressed:ye,buttonIconColor:pe,buttonIconColorHover:Me,buttonIconColorPressed:Q,itemTextColor:A,itemTextColorHover:Z,itemTextColorPressed:re,itemTextColorActive:ue,itemTextColorDisabled:Y,itemColor:ce,itemColorHover:He,itemColorPressed:Ve,itemColorActive:Ze,itemColorActiveHover:po,itemColorDisabled:fo,itemBorder:Bo,itemBorderHover:To,itemBorderPressed:xo,itemBorderActive:Co,itemBorderDisabled:Ao,itemBorderRadius:Fo,jumperTextColor:co,jumperTextColorDisabled:uo,buttonColor:F,buttonColorHover:K,buttonColorPressed:ie,[W("itemPadding",ee)]:ze,[W("itemMargin",ee)]:Pe,[W("inputWidth",ee)]:Ie,[W("selectWidth",ee)]:Te,[W("inputMargin",ee)]:_e,[W("selectMargin",ee)]:Qe,[W("jumperFontSize",ee)]:vo,[W("prefixMargin",ee)]:Wo,[W("suffixMargin",ee)]:No,[W("itemSize",ee)]:st,[W("buttonIconSize",ee)]:Kt,[W("itemFontSize",ee)]:Rt,[`${W("itemMargin",ee)}Rtl`]:Vo,[`${W("inputMargin",ee)}Rtl`]:H},common:{cubicBezierEaseInOut:oe}}=l.value;return{"--n-prefix-margin":Wo,"--n-suffix-margin":No,"--n-item-font-size":Rt,"--n-select-width":Te,"--n-select-margin":Qe,"--n-input-width":Ie,"--n-input-margin":_e,"--n-input-margin-rtl":H,"--n-item-size":st,"--n-item-text-color":A,"--n-item-text-color-disabled":Y,"--n-item-text-color-hover":Z,"--n-item-text-color-active":ue,"--n-item-text-color-pressed":re,"--n-item-color":ce,"--n-item-color-hover":He,"--n-item-color-disabled":fo,"--n-item-color-active":Ze,"--n-item-color-active-hover":po,"--n-item-color-pressed":Ve,"--n-item-border":Bo,"--n-item-border-hover":To,"--n-item-border-disabled":Ao,"--n-item-border-active":Co,"--n-item-border-pressed":xo,"--n-item-padding":ze,"--n-item-border-radius":Fo,"--n-bezier":oe,"--n-jumper-font-size":vo,"--n-jumper-text-color":co,"--n-jumper-text-color-disabled":uo,"--n-item-margin":Pe,"--n-item-margin-rtl":Vo,"--n-button-icon-size":Kt,"--n-button-icon-color":pe,"--n-button-icon-color-hover":Me,"--n-button-icon-color-pressed":Q,"--n-button-color-hover":K,"--n-button-color":F,"--n-button-color-pressed":ie,"--n-button-border":xe,"--n-button-border-hover":de,"--n-button-border-pressed":ye}}),ge=r?Ae("pagination",R(()=>{let ee="";const{size:xe}=e;return ee+=xe[0],ee}),Re,e):void 0;return{rtlEnabled:U,mergedClsPrefix:t,locale:a,selfRef:s,mergedPage:f,pageItems:R(()=>O.value.items),mergedItemCount:E,jumperValue:h,pageSizeOptions:k,mergedPageSize:p,inputSize:$,selectSize:L,mergedTheme:l,mergedPageCount:v,startIndex:M,endIndex:j,showFastForwardMenu:x,showFastBackwardMenu:S,fastForwardActive:m,fastBackwardActive:b,handleMenuSelect:w,handleFastForwardMouseenter:B,handleFastForwardMouseleave:T,handleFastBackwardMouseenter:z,handleFastBackwardMouseleave:I,handleJumperInput:se,handleBackwardClick:G,handleForwardClick:N,handlePageItemClick:me,handleSizePickerChange:ve,handleQuickJumperChange:be,cssVars:r?void 0:Re,themeClass:ge==null?void 0:ge.themeClass,onRender:ge==null?void 0:ge.onRender}},render(){const{$slots:e,mergedClsPrefix:o,disabled:t,cssVars:r,mergedPage:n,mergedPageCount:l,pageItems:a,showSizePicker:s,showQuickJumper:d,mergedTheme:c,locale:u,inputSize:f,selectSize:p,mergedPageSize:v,pageSizeOptions:h,jumperValue:m,simple:b,prev:x,next:S,prefix:B,suffix:T,label:z,goto:I,handleJumperInput:w,handleSizePickerChange:O,handleBackwardClick:k,handlePageItemClick:$,handleForwardClick:L,handleQuickJumperChange:M,onRender:j}=this;j==null||j();const E=e.prefix||B,U=e.suffix||T,_=x||e.prev,V=S||e.next,te=z||e.label;return i("div",{ref:"selfRef",class:[`${o}-pagination`,this.themeClass,this.rtlEnabled&&`${o}-pagination--rtl`,t&&`${o}-pagination--disabled`,b&&`${o}-pagination--simple`],style:r},E?i("div",{class:`${o}-pagination-prefix`},E({page:n,pageSize:v,pageCount:l,startIndex:this.startIndex,endIndex:this.endIndex,itemCount:this.mergedItemCount})):null,this.displayOrder.map(N=>{switch(N){case"pages":return i(ao,null,i("div",{class:[`${o}-pagination-item`,!_&&`${o}-pagination-item--button`,(n<=1||n>l||t)&&`${o}-pagination-item--disabled`],onClick:k},_?_({page:n,pageSize:v,pageCount:l,startIndex:this.startIndex,endIndex:this.endIndex,itemCount:this.mergedItemCount}):i(De,{clsPrefix:o},{default:()=>this.rtlEnabled?i(ni,null):i(oi,null)})),b?i(ao,null,i("div",{class:`${o}-pagination-quick-jumper`},i(xt,{value:m,onUpdateValue:w,size:f,placeholder:"",disabled:t,theme:c.peers.Input,themeOverrides:c.peerOverrides.Input,onChange:M}))," / ",l):a.map((G,Ce)=>{let X,ve,he;const{type:be}=G;switch(be){case"page":const se=G.label;te?X=te({type:"page",node:se,active:G.active}):X=se;break;case"fast-forward":const Re=this.fastForwardActive?i(De,{clsPrefix:o},{default:()=>this.rtlEnabled?i(ti,null):i(ri,null)}):i(De,{clsPrefix:o},{default:()=>i(ii,null)});te?X=te({type:"fast-forward",node:Re,active:this.fastForwardActive||this.showFastForwardMenu}):X=Re,ve=this.handleFastForwardMouseenter,he=this.handleFastForwardMouseleave;break;case"fast-backward":const ge=this.fastBackwardActive?i(De,{clsPrefix:o},{default:()=>this.rtlEnabled?i(ri,null):i(ti,null)}):i(De,{clsPrefix:o},{default:()=>i(ii,null)});te?X=te({type:"fast-backward",node:ge,active:this.fastBackwardActive||this.showFastBackwardMenu}):X=ge,ve=this.handleFastBackwardMouseenter,he=this.handleFastBackwardMouseleave;break}const me=i("div",{key:Ce,class:[`${o}-pagination-item`,G.active&&`${o}-pagination-item--active`,be!=="page"&&(be==="fast-backward"&&this.showFastBackwardMenu||be==="fast-forward"&&this.showFastForwardMenu)&&`${o}-pagination-item--hover`,t&&`${o}-pagination-item--disabled`,be==="page"&&`${o}-pagination-item--clickable`],onClick:()=>{$(G)},onMouseenter:ve,onMouseleave:he},X);if(be==="page"&&!G.mayBeFastBackward&&!G.mayBeFastForward)return me;{const se=G.type==="page"?G.mayBeFastBackward?"fast-backward":"fast-forward":G.type;return i(Jf,{to:this.to,key:se,disabled:t,trigger:"hover",virtualScroll:!0,style:{width:"60px"},theme:c.peers.Popselect,themeOverrides:c.peerOverrides.Popselect,builtinThemeOverrides:{peers:{InternalSelectMenu:{height:"calc(var(--n-option-height) * 4.6)"}}},nodeProps:()=>({style:{justifyContent:"center"}}),show:be==="page"?!1:be==="fast-backward"?this.showFastBackwardMenu:this.showFastForwardMenu,onUpdateShow:Re=>{be!=="page"&&(Re?be==="fast-backward"?this.showFastBackwardMenu=Re:this.showFastForwardMenu=Re:(this.showFastBackwardMenu=!1,this.showFastForwardMenu=!1))},options:G.type!=="page"?G.options:[],onUpdateValue:this.handleMenuSelect,scrollable:!0,showCheckmark:!1},{default:()=>me})}}),i("div",{class:[`${o}-pagination-item`,!V&&`${o}-pagination-item--button`,{[`${o}-pagination-item--disabled`]:n<1||n>=l||t}],onClick:L},V?V({page:n,pageSize:v,pageCount:l,itemCount:this.mergedItemCount,startIndex:this.startIndex,endIndex:this.endIndex}):i(De,{clsPrefix:o},{default:()=>this.rtlEnabled?i(oi,null):i(ni,null)})));case"size-picker":return!b&&s?i(nh,Object.assign({consistentMenuWidth:!1,placeholder:"",showCheckmark:!1,to:this.to},this.selectProps,{size:p,options:h,value:v,disabled:t,theme:c.peers.Select,themeOverrides:c.peerOverrides.Select,onUpdateValue:O})):null;case"quick-jumper":return!b&&d?i("div",{class:`${o}-pagination-quick-jumper`},I?I():lo(this.$slots.goto,()=>[u.goto]),i(xt,{value:m,onUpdateValue:w,size:f,placeholder:"",disabled:t,theme:c.peers.Input,themeOverrides:c.peerOverrides.Input,onChange:M})):null;default:return null}}),U?i("div",{class:`${o}-pagination-suffix`},U({page:n,pageSize:v,pageCount:l,startIndex:this.startIndex,endIndex:this.endIndex,itemCount:this.mergedItemCount})):null)}}),Jl={padding:"8px 14px"},fh={name:"Tooltip",common:fe,peers:{Popover:$t},self(e){const{borderRadius:o,boxShadow2:t,popoverColor:r,textColor2:n}=e;return Object.assign(Object.assign({},Jl),{borderRadius:o,boxShadow:t,color:r,textColor:n})}},Dr=fh,hh=e=>{const{borderRadius:o,boxShadow2:t,baseColor:r}=e;return Object.assign(Object.assign({},Jl),{borderRadius:o,boxShadow:t,color:$e(r,"rgba(0, 0, 0, .85)"),textColor:r})},ph={name:"Tooltip",common:Le,peers:{Popover:jt},self:hh},Lr=ph,vh={name:"Ellipsis",common:fe,peers:{Tooltip:Dr}},ea=vh,gh={name:"Ellipsis",common:Le,peers:{Tooltip:Lr}},mh=gh,oa={radioSizeSmall:"14px",radioSizeMedium:"16px",radioSizeLarge:"18px",labelPadding:"0 8px",labelFontWeight:"400"},bh={name:"Radio",common:fe,self(e){const{borderColor:o,primaryColor:t,baseColor:r,textColorDisabled:n,inputColorDisabled:l,textColor2:a,opacityDisabled:s,borderRadius:d,fontSizeSmall:c,fontSizeMedium:u,fontSizeLarge:f,heightSmall:p,heightMedium:v,heightLarge:h,lineHeight:m}=e;return Object.assign(Object.assign({},oa),{labelLineHeight:m,buttonHeightSmall:p,buttonHeightMedium:v,buttonHeightLarge:h,fontSizeSmall:c,fontSizeMedium:u,fontSizeLarge:f,boxShadow:`inset 0 0 0 1px ${o}`,boxShadowActive:`inset 0 0 0 1px ${t}`,boxShadowFocus:`inset 0 0 0 1px ${t}, 0 0 0 2px ${J(t,{alpha:.3})}`,boxShadowHover:`inset 0 0 0 1px ${t}`,boxShadowDisabled:`inset 0 0 0 1px ${o}`,color:"#0000",colorDisabled:l,colorActive:"#0000",textColor:a,textColorDisabled:n,dotColorActive:t,dotColorDisabled:o,buttonBorderColor:o,buttonBorderColorActive:t,buttonBorderColorHover:t,buttonColor:"#0000",buttonColorActive:t,buttonTextColor:a,buttonTextColorActive:r,buttonTextColorHover:t,opacityDisabled:s,buttonBoxShadowFocus:`inset 0 0 0 1px ${t}, 0 0 0 2px ${J(t,{alpha:.3})}`,buttonBoxShadowHover:`inset 0 0 0 1px ${t}`,buttonBoxShadow:"inset 0 0 0 1px #0000",buttonBorderRadius:d})}},ta=bh,xh=e=>{const{borderColor:o,primaryColor:t,baseColor:r,textColorDisabled:n,inputColorDisabled:l,textColor2:a,opacityDisabled:s,borderRadius:d,fontSizeSmall:c,fontSizeMedium:u,fontSizeLarge:f,heightSmall:p,heightMedium:v,heightLarge:h,lineHeight:m}=e;return Object.assign(Object.assign({},oa),{labelLineHeight:m,buttonHeightSmall:p,buttonHeightMedium:v,buttonHeightLarge:h,fontSizeSmall:c,fontSizeMedium:u,fontSizeLarge:f,boxShadow:`inset 0 0 0 1px ${o}`,boxShadowActive:`inset 0 0 0 1px ${t}`,boxShadowFocus:`inset 0 0 0 1px ${t}, 0 0 0 2px ${J(t,{alpha:.2})}`,boxShadowHover:`inset 0 0 0 1px ${t}`,boxShadowDisabled:`inset 0 0 0 1px ${o}`,color:r,colorDisabled:l,colorActive:"#0000",textColor:a,textColorDisabled:n,dotColorActive:t,dotColorDisabled:o,buttonBorderColor:o,buttonBorderColorActive:t,buttonBorderColorHover:o,buttonColor:r,buttonColorActive:r,buttonTextColor:a,buttonTextColorActive:t,buttonTextColorHover:t,opacityDisabled:s,buttonBoxShadowFocus:`inset 0 0 0 1px ${t}, 0 0 0 2px ${J(t,{alpha:.3})}`,buttonBoxShadowHover:"inset 0 0 0 1px #0000",buttonBoxShadow:"inset 0 0 0 1px #0000",buttonBorderRadius:d})},Ch={name:"Radio",common:Le,self:xh},ra=Ch,yh={padding:"4px 0",optionIconSizeSmall:"14px",optionIconSizeMedium:"16px",optionIconSizeLarge:"16px",optionIconSizeHuge:"18px",optionSuffixWidthSmall:"14px",optionSuffixWidthMedium:"14px",optionSuffixWidthLarge:"16px",optionSuffixWidthHuge:"16px",optionIconSuffixWidthSmall:"32px",optionIconSuffixWidthMedium:"32px",optionIconSuffixWidthLarge:"36px",optionIconSuffixWidthHuge:"36px",optionPrefixWidthSmall:"14px",optionPrefixWidthMedium:"14px",optionPrefixWidthLarge:"16px",optionPrefixWidthHuge:"16px",optionIconPrefixWidthSmall:"36px",optionIconPrefixWidthMedium:"36px",optionIconPrefixWidthLarge:"40px",optionIconPrefixWidthHuge:"40px"},na=e=>{const{primaryColor:o,textColor2:t,dividerColor:r,hoverColor:n,popoverColor:l,invertedColor:a,borderRadius:s,fontSizeSmall:d,fontSizeMedium:c,fontSizeLarge:u,fontSizeHuge:f,heightSmall:p,heightMedium:v,heightLarge:h,heightHuge:m,textColor3:b,opacityDisabled:x}=e;return Object.assign(Object.assign({},yh),{optionHeightSmall:p,optionHeightMedium:v,optionHeightLarge:h,optionHeightHuge:m,borderRadius:s,fontSizeSmall:d,fontSizeMedium:c,fontSizeLarge:u,fontSizeHuge:f,optionTextColor:t,optionTextColorHover:t,optionTextColorActive:o,optionTextColorChildActive:o,color:l,dividerColor:r,suffixColor:t,prefixColor:t,optionColorHover:n,optionColorActive:J(o,{alpha:.1}),groupHeaderTextColor:b,optionTextColorInverted:"#BBB",optionTextColorHoverInverted:"#FFF",optionTextColorActiveInverted:"#FFF",optionTextColorChildActiveInverted:"#FFF",colorInverted:a,dividerColorInverted:"#BBB",suffixColorInverted:"#BBB",prefixColorInverted:"#BBB",optionColorHoverInverted:o,optionColorActiveInverted:o,groupHeaderTextColorInverted:"#AAA",optionOpacityDisabled:x})},wh={name:"Dropdown",common:Le,peers:{Popover:jt},self:na},ia=wh,Sh={name:"Dropdown",common:fe,peers:{Popover:$t},self(e){const{primaryColorSuppl:o,primaryColor:t,popoverColor:r}=e,n=na(e);return n.colorInverted=r,n.optionColorActive=J(t,{alpha:.15}),n.optionColorActiveInverted=o,n.optionColorHoverInverted=o,n}},Rn=Sh,zh={thPaddingSmall:"8px",thPaddingMedium:"12px",thPaddingLarge:"12px",tdPaddingSmall:"8px",tdPaddingMedium:"12px",tdPaddingLarge:"12px",sorterSize:"15px",resizableContainerSize:"8px",resizableSize:"2px",filterSize:"15px",paginationMargin:"12px 0 0 0",emptyPadding:"48px 0",actionPadding:"8px 12px",actionButtonMargin:"0 8px 0 0"},$h=e=>{const{cardColor:o,modalColor:t,popoverColor:r,textColor2:n,textColor1:l,tableHeaderColor:a,tableColorHover:s,iconColor:d,primaryColor:c,fontWeightStrong:u,borderRadius:f,lineHeight:p,fontSizeSmall:v,fontSizeMedium:h,fontSizeLarge:m,dividerColor:b,heightSmall:x,opacityDisabled:S,tableColorStriped:B}=e;return Object.assign(Object.assign({},zh),{actionDividerColor:b,lineHeight:p,borderRadius:f,fontSizeSmall:v,fontSizeMedium:h,fontSizeLarge:m,borderColor:$e(o,b),tdColorHover:$e(o,s),tdColorStriped:$e(o,B),thColor:$e(o,a),thColorHover:$e($e(o,a),s),tdColor:o,tdTextColor:n,thTextColor:l,thFontWeight:u,thButtonColorHover:s,thIconColor:d,thIconColorActive:c,borderColorModal:$e(t,b),tdColorHoverModal:$e(t,s),tdColorStripedModal:$e(t,B),thColorModal:$e(t,a),thColorHoverModal:$e($e(t,a),s),tdColorModal:t,borderColorPopover:$e(r,b),tdColorHoverPopover:$e(r,s),tdColorStripedPopover:$e(r,B),thColorPopover:$e(r,a),thColorHoverPopover:$e($e(r,a),s),tdColorPopover:r,boxShadowBefore:"inset -12px 0 8px -12px rgba(0, 0, 0, .18)",boxShadowAfter:"inset 12px 0 8px -12px rgba(0, 0, 0, .18)",loadingColor:c,loadingSize:x,opacityLoading:S})},Rh={name:"DataTable",common:fe,peers:{Button:$o,Checkbox:Nt,Radio:ta,Pagination:Ql,Scrollbar:zo,Empty:zt,Popover:$t,Ellipsis:ea,Dropdown:Rn},self(e){const o=$h(e);return o.boxShadowAfter="inset 12px 0 8px -12px rgba(0, 0, 0, .36)",o.boxShadowBefore="inset -12px 0 8px -12px rgba(0, 0, 0, .36)",o}},Ph=Rh,kh=Object.assign(Object.assign({},bt),ne.props),Pn=q({name:"Tooltip",props:kh,__popover__:!0,setup(e){const{mergedClsPrefixRef:o}=ke(e),t=ne("Tooltip","-tooltip",void 0,Lr,e,o),r=D(null);return Object.assign(Object.assign({},{syncPosition(){r.value.syncPosition()},setShow(l){r.value.setShow(l)}}),{popoverRef:r,mergedTheme:t,popoverThemeOverrides:R(()=>t.value.self)})},render(){const{mergedTheme:e,internalExtraClass:o}=this;return i(hr,Object.assign(Object.assign({},this.$props),{theme:e.peers.Popover,themeOverrides:e.peerOverrides.Popover,builtinThemeOverrides:this.popoverThemeOverrides,internalExtraClass:o.concat("tooltip"),ref:"popoverRef"}),this.$slots)}}),Ih=g("ellipsis",{overflow:"hidden"},[je("line-clamp",` - white-space: nowrap; - display: inline-block; - vertical-align: bottom; - max-width: 100%; - `),P("line-clamp",` - display: -webkit-inline-box; - -webkit-box-orient: vertical; - `),P("cursor-pointer",` - cursor: pointer; - `)]);function xi(e){return`${e}-ellipsis--line-clamp`}function Ci(e,o){return`${e}-ellipsis--cursor-${o}`}const Bh=Object.assign(Object.assign({},ne.props),{expandTrigger:String,lineClamp:[Number,String],tooltip:{type:[Boolean,Object],default:!0}}),x1=q({name:"Ellipsis",inheritAttrs:!1,props:Bh,setup(e,{slots:o,attrs:t}){const{mergedClsPrefixRef:r}=ke(e),n=ne("Ellipsis","-ellipsis",Ih,mh,e,r),l=D(null),a=D(null),s=D(null),d=D(!1),c=R(()=>{const{lineClamp:b}=e,{value:x}=d;return b!==void 0?{textOverflow:"","-webkit-line-clamp":x?"":b}:{textOverflow:x?"":"ellipsis","-webkit-line-clamp":""}});function u(){let b=!1;const{value:x}=d;if(x)return!0;const{value:S}=l;if(S){const{lineClamp:B}=e;if(v(S),B!==void 0)b=S.scrollHeight<=S.offsetHeight;else{const{value:T}=a;T&&(b=T.getBoundingClientRect().width<=S.getBoundingClientRect().width)}h(S,b)}return b}const f=R(()=>e.expandTrigger==="click"?()=>{var b;const{value:x}=d;x&&((b=s.value)===null||b===void 0||b.setShow(!1)),d.value=!x}:void 0);ji(()=>{var b;e.tooltip&&((b=s.value)===null||b===void 0||b.setShow(!1))});const p=()=>i("span",Object.assign({},ko(t,{class:[`${r.value}-ellipsis`,e.lineClamp!==void 0?xi(r.value):void 0,e.expandTrigger==="click"?Ci(r.value,"pointer"):void 0],style:c.value}),{ref:"triggerRef",onClick:f.value,onMouseenter:e.expandTrigger==="click"?u:void 0}),e.lineClamp?o:i("span",{ref:"triggerInnerRef"},o));function v(b){if(!b)return;const x=c.value,S=xi(r.value);e.lineClamp!==void 0?m(b,S,"add"):m(b,S,"remove");for(const B in x)b.style[B]!==x[B]&&(b.style[B]=x[B])}function h(b,x){const S=Ci(r.value,"pointer");e.expandTrigger==="click"&&!x?m(b,S,"add"):m(b,S,"remove")}function m(b,x,S){S==="add"?b.classList.contains(x)||b.classList.add(x):b.classList.contains(x)&&b.classList.remove(x)}return{mergedTheme:n,triggerRef:l,triggerInnerRef:a,tooltipRef:s,handleClick:f,renderTrigger:p,getTooltipDisabled:u}},render(){var e;const{tooltip:o,renderTrigger:t,$slots:r}=this;if(o){const{mergedTheme:n}=this;return i(Pn,Object.assign({ref:"tooltipRef",placement:"top"},o,{getDisabled:this.getTooltipDisabled,theme:n.peers.Tooltip,themeOverrides:n.peerOverrides.Tooltip}),{trigger:t,default:(e=r.tooltip)!==null&&e!==void 0?e:r.default})}else return t()}}),Th={name:String,value:{type:[String,Number,Boolean],default:"on"},checked:{type:Boolean,default:void 0},defaultChecked:Boolean,disabled:{type:Boolean,default:void 0},label:String,size:String,onUpdateChecked:[Function,Array],"onUpdate:checked":[Function,Array],checkedValue:{type:Boolean,default:void 0}},la="n-radio-group";function Fh(e){const o=rt(e,{mergedSize(S){const{size:B}=e;if(B!==void 0)return B;if(a){const{mergedSizeRef:{value:T}}=a;if(T!==void 0)return T}return S?S.mergedSize.value:"medium"},mergedDisabled(S){return!!(e.disabled||a!=null&&a.disabledRef.value||S!=null&&S.disabled.value)}}),{mergedSizeRef:t,mergedDisabledRef:r}=o,n=D(null),l=D(null),a=Se(la,null),s=D(e.defaultChecked),d=le(e,"checked"),c=so(d,s),u=We(()=>a?a.valueRef.value===e.value:c.value),f=We(()=>{const{name:S}=e;if(S!==void 0)return S;if(a)return a.nameRef.value}),p=D(!1);function v(){if(a){const{doUpdateValue:S}=a,{value:B}=e;ae(S,B)}else{const{onUpdateChecked:S,"onUpdate:checked":B}=e,{nTriggerFormInput:T,nTriggerFormChange:z}=o;S&&ae(S,!0),B&&ae(B,!0),T(),z(),s.value=!0}}function h(){r.value||u.value||v()}function m(){h()}function b(){p.value=!1}function x(){p.value=!0}return{mergedClsPrefix:a?a.mergedClsPrefixRef:ke(e).mergedClsPrefixRef,inputRef:n,labelRef:l,mergedName:f,mergedDisabled:r,uncontrolledChecked:s,renderSafeChecked:u,focus:p,mergedSize:t,handleRadioInputChange:m,handleRadioInputBlur:b,handleRadioInputFocus:x}}const Oh=g("radio",` - line-height: var(--n-label-line-height); - outline: none; - position: relative; - user-select: none; - -webkit-user-select: none; - display: inline-flex; - align-items: flex-start; - flex-wrap: nowrap; - font-size: var(--n-font-size); - word-break: break-word; -`,[P("checked",[y("dot",` - background-color: var(--n-color-active); - `)]),y("dot-wrapper",` - position: relative; - flex-shrink: 0; - flex-grow: 0; - width: var(--n-radio-size); - `),g("radio-input",` - position: absolute; - border: 0; - border-radius: inherit; - left: 0; - right: 0; - top: 0; - bottom: 0; - opacity: 0; - z-index: 1; - cursor: pointer; - `),y("dot",` - position: absolute; - top: 50%; - left: 0; - transform: translateY(-50%); - height: var(--n-radio-size); - width: var(--n-radio-size); - background: var(--n-color); - box-shadow: var(--n-box-shadow); - border-radius: 50%; - transition: - background-color .3s var(--n-bezier), - box-shadow .3s var(--n-bezier); - `,[C("&::before",` - content: ""; - opacity: 0; - position: absolute; - left: 4px; - top: 4px; - height: calc(100% - 8px); - width: calc(100% - 8px); - border-radius: 50%; - transform: scale(.8); - background: var(--n-dot-color-active); - transition: - opacity .3s var(--n-bezier), - background-color .3s var(--n-bezier), - transform .3s var(--n-bezier); - `),P("checked",{boxShadow:"var(--n-box-shadow-active)"},[C("&::before",` - opacity: 1; - transform: scale(1); - `)])]),y("label",` - color: var(--n-text-color); - padding: var(--n-label-padding); - font-weight: var(--n-label-font-weight); - display: inline-block; - transition: color .3s var(--n-bezier); - `),je("disabled",` - cursor: pointer; - `,[C("&:hover",[y("dot",{boxShadow:"var(--n-box-shadow-hover)"})]),P("focus",[C("&:not(:active)",[y("dot",{boxShadow:"var(--n-box-shadow-focus)"})])])]),P("disabled",` - cursor: not-allowed; - `,[y("dot",{boxShadow:"var(--n-box-shadow-disabled)",backgroundColor:"var(--n-color-disabled)"},[C("&::before",{backgroundColor:"var(--n-dot-color-disabled)"}),P("checked",` - opacity: 1; - `)]),y("label",{color:"var(--n-text-color-disabled)"}),g("radio-input",` - cursor: not-allowed; - `)])]),C1=q({name:"Radio",props:Object.assign(Object.assign({},ne.props),Th),setup(e){const o=Fh(e),t=ne("Radio","-radio",Oh,ra,e,o.mergedClsPrefix),r=R(()=>{const{mergedSize:{value:c}}=o,{common:{cubicBezierEaseInOut:u},self:{boxShadow:f,boxShadowActive:p,boxShadowDisabled:v,boxShadowFocus:h,boxShadowHover:m,color:b,colorDisabled:x,colorActive:S,textColor:B,textColorDisabled:T,dotColorActive:z,dotColorDisabled:I,labelPadding:w,labelLineHeight:O,labelFontWeight:k,[W("fontSize",c)]:$,[W("radioSize",c)]:L}}=t.value;return{"--n-bezier":u,"--n-label-line-height":O,"--n-label-font-weight":k,"--n-box-shadow":f,"--n-box-shadow-active":p,"--n-box-shadow-disabled":v,"--n-box-shadow-focus":h,"--n-box-shadow-hover":m,"--n-color":b,"--n-color-active":S,"--n-color-disabled":x,"--n-dot-color-active":z,"--n-dot-color-disabled":I,"--n-font-size":$,"--n-radio-size":L,"--n-text-color":B,"--n-text-color-disabled":T,"--n-label-padding":w}}),{inlineThemeDisabled:n,mergedClsPrefixRef:l,mergedRtlRef:a}=ke(e),s=to("Radio",a,l),d=n?Ae("radio",R(()=>o.mergedSize.value[0]),r,e):void 0;return Object.assign(o,{rtlEnabled:s,cssVars:n?void 0:r,themeClass:d==null?void 0:d.themeClass,onRender:d==null?void 0:d.onRender})},render(){const{$slots:e,mergedClsPrefix:o,onRender:t,label:r}=this;return t==null||t(),i("label",{class:[`${o}-radio`,this.themeClass,{[`${o}-radio--rtl`]:this.rtlEnabled,[`${o}-radio--disabled`]:this.mergedDisabled,[`${o}-radio--checked`]:this.renderSafeChecked,[`${o}-radio--focus`]:this.focus}],style:this.cssVars},i("input",{ref:"inputRef",type:"radio",class:`${o}-radio-input`,value:this.value,name:this.mergedName,checked:this.renderSafeChecked,disabled:this.mergedDisabled,onChange:this.handleRadioInputChange,onFocus:this.handleRadioInputFocus,onBlur:this.handleRadioInputBlur}),i("div",{class:`${o}-radio__dot-wrapper`}," ",i("div",{class:[`${o}-radio__dot`,this.renderSafeChecked&&`${o}-radio__dot--checked`]})),Ee(e.default,n=>!n&&!r?null:i("div",{ref:"labelRef",class:`${o}-radio__label`},n||r)))}}),Mh=g("radio-group",` - display: inline-block; - font-size: var(--n-font-size); -`,[y("splitor",` - display: inline-block; - vertical-align: bottom; - width: 1px; - transition: - background-color .3s var(--n-bezier), - opacity .3s var(--n-bezier); - background: var(--n-button-border-color); - `,[P("checked",{backgroundColor:"var(--n-button-border-color-active)"}),P("disabled",{opacity:"var(--n-opacity-disabled)"})]),P("button-group",` - white-space: nowrap; - height: var(--n-height); - line-height: var(--n-height); - `,[g("radio-button",{height:"var(--n-height)",lineHeight:"var(--n-height)"}),y("splitor",{height:"var(--n-height)"})]),g("radio-button",` - vertical-align: bottom; - outline: none; - position: relative; - user-select: none; - -webkit-user-select: none; - display: inline-block; - box-sizing: border-box; - padding-left: 14px; - padding-right: 14px; - white-space: nowrap; - transition: - background-color .3s var(--n-bezier), - opacity .3s var(--n-bezier), - border-color .3s var(--n-bezier), - color .3s var(--n-bezier); - color: var(--n-button-text-color); - border-top: 1px solid var(--n-button-border-color); - border-bottom: 1px solid var(--n-button-border-color); - `,[g("radio-input",` - pointer-events: none; - position: absolute; - border: 0; - border-radius: inherit; - left: 0; - right: 0; - top: 0; - bottom: 0; - opacity: 0; - z-index: 1; - `),y("state-border",` - z-index: 1; - pointer-events: none; - position: absolute; - box-shadow: var(--n-button-box-shadow); - transition: box-shadow .3s var(--n-bezier); - left: -1px; - bottom: -1px; - right: -1px; - top: -1px; - `),C("&:first-child",` - border-top-left-radius: var(--n-button-border-radius); - border-bottom-left-radius: var(--n-button-border-radius); - border-left: 1px solid var(--n-button-border-color); - `,[y("state-border",` - border-top-left-radius: var(--n-button-border-radius); - border-bottom-left-radius: var(--n-button-border-radius); - `)]),C("&:last-child",` - border-top-right-radius: var(--n-button-border-radius); - border-bottom-right-radius: var(--n-button-border-radius); - border-right: 1px solid var(--n-button-border-color); - `,[y("state-border",` - border-top-right-radius: var(--n-button-border-radius); - border-bottom-right-radius: var(--n-button-border-radius); - `)]),je("disabled",` - cursor: pointer; - `,[C("&:hover",[y("state-border",` - transition: box-shadow .3s var(--n-bezier); - box-shadow: var(--n-button-box-shadow-hover); - `),je("checked",{color:"var(--n-button-text-color-hover)"})]),P("focus",[C("&:not(:active)",[y("state-border",{boxShadow:"var(--n-button-box-shadow-focus)"})])])]),P("checked",` - background: var(--n-button-color-active); - color: var(--n-button-text-color-active); - border-color: var(--n-button-border-color-active); - `),P("disabled",` - cursor: not-allowed; - opacity: var(--n-opacity-disabled); - `)])]);function _h(e,o,t){var r;const n=[];let l=!1;for(let a=0;a{const{value:z}=t,{common:{cubicBezierEaseInOut:I},self:{buttonBorderColor:w,buttonBorderColorActive:O,buttonBorderRadius:k,buttonBoxShadow:$,buttonBoxShadowFocus:L,buttonBoxShadowHover:M,buttonColorActive:j,buttonTextColor:E,buttonTextColorActive:U,buttonTextColorHover:_,opacityDisabled:V,[W("buttonHeight",z)]:te,[W("fontSize",z)]:N}}=f.value;return{"--n-font-size":N,"--n-bezier":I,"--n-button-border-color":w,"--n-button-border-color-active":O,"--n-button-border-radius":k,"--n-button-box-shadow":$,"--n-button-box-shadow-focus":L,"--n-button-box-shadow-hover":M,"--n-button-color-active":j,"--n-button-text-color":E,"--n-button-text-color-hover":_,"--n-button-text-color-active":U,"--n-height":te,"--n-opacity-disabled":V}}),T=c?Ae("radio-group",R(()=>t.value[0]),B,e):void 0;return{selfElRef:o,rtlEnabled:S,mergedClsPrefix:d,mergedValue:h,handleFocusout:x,handleFocusin:b,cssVars:c?void 0:B,themeClass:T==null?void 0:T.themeClass,onRender:T==null?void 0:T.onRender}},render(){var e;const{mergedValue:o,mergedClsPrefix:t,handleFocusin:r,handleFocusout:n}=this,{children:l,isButtonGroup:a}=_h(tt(vn(this)),o,t);return(e=this.onRender)===null||e===void 0||e.call(this),i("div",{onFocusin:r,onFocusout:n,ref:"selfElRef",class:[`${t}-radio-group`,this.rtlEnabled&&`${t}-radio-group--rtl`,this.themeClass,a&&`${t}-radio-group--button-group`],style:this.cssVars},l)}}),aa=q({name:"DropdownDivider",props:{clsPrefix:{type:String,required:!0}},render(){return i("div",{class:`${this.clsPrefix}-dropdown-divider`})}}),sa=e=>{const{textColorBase:o,opacity1:t,opacity2:r,opacity3:n,opacity4:l,opacity5:a}=e;return{color:o,opacity1Depth:t,opacity2Depth:r,opacity3Depth:n,opacity4Depth:l,opacity5Depth:a}},Lh={name:"Icon",common:Le,self:sa},Hh=Lh,Ah={name:"Icon",common:fe,self:sa},Eh=Ah,jh=g("icon",` - height: 1em; - width: 1em; - line-height: 1em; - text-align: center; - display: inline-block; - position: relative; - fill: currentColor; - transform: translateZ(0); -`,[P("color-transition",{transition:"color .3s var(--n-bezier)"}),P("depth",{color:"var(--n-color)"},[C("svg",{opacity:"var(--n-opacity)",transition:"opacity .3s var(--n-bezier)"})]),C("svg",{height:"1em",width:"1em"})]),Wh=Object.assign(Object.assign({},ne.props),{depth:[String,Number],size:[Number,String],color:String,component:Object}),Nh=q({_n_icon__:!0,name:"Icon",inheritAttrs:!1,props:Wh,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=ne("Icon","-icon",jh,Hh,e,o),n=R(()=>{const{depth:a}=e,{common:{cubicBezierEaseInOut:s},self:d}=r.value;if(a!==void 0){const{color:c,[`opacity${a}Depth`]:u}=d;return{"--n-bezier":s,"--n-color":c,"--n-opacity":u}}return{"--n-bezier":s,"--n-color":"","--n-opacity":""}}),l=t?Ae("icon",R(()=>`${e.depth||"d"}`),n,e):void 0;return{mergedClsPrefix:o,mergedStyle:R(()=>{const{size:a,color:s}=e;return{fontSize:eo(a),color:s}}),cssVars:t?void 0:n,themeClass:l==null?void 0:l.themeClass,onRender:l==null?void 0:l.onRender}},render(){var e;const{$parent:o,depth:t,mergedClsPrefix:r,component:n,onRender:l,themeClass:a}=this;return!((e=o==null?void 0:o.$options)===null||e===void 0)&&e._n_icon__&&qo("icon","don't wrap `n-icon` inside `n-icon`"),l==null||l(),i("i",ko(this.$attrs,{role:"img",class:[`${r}-icon`,a,{[`${r}-icon--depth`]:t,[`${r}-icon--color-transition`]:t!==void 0}],style:[this.cssVars,this.mergedStyle]}),n?i(n):this.$slots)}}),kn="n-dropdown-menu",Hr="n-dropdown",yi="n-dropdown-option";function cn(e,o){return e.type==="submenu"||e.type===void 0&&e[o]!==void 0}function Vh(e){return e.type==="group"}function da(e){return e.type==="divider"}function Uh(e){return e.type==="render"}const ca=q({name:"DropdownOption",props:{clsPrefix:{type:String,required:!0},tmNode:{type:Object,required:!0},parentKey:{type:[String,Number],default:null},placement:{type:String,default:"right-start"},props:Object,scrollable:Boolean},setup(e){const o=Se(Hr),{hoverKeyRef:t,keyboardKeyRef:r,lastToggledSubmenuKeyRef:n,pendingKeyPathRef:l,activeKeyPathRef:a,animatedRef:s,mergedShowRef:d,renderLabelRef:c,renderIconRef:u,labelFieldRef:f,childrenFieldRef:p,renderOptionRef:v,nodePropsRef:h,menuPropsRef:m}=o,b=Se(yi,null),x=Se(kn),S=Se(Dt),B=R(()=>e.tmNode.rawNode),T=R(()=>{const{value:V}=p;return cn(e.tmNode.rawNode,V)}),z=R(()=>{const{disabled:V}=e.tmNode;return V}),I=R(()=>{if(!T.value)return!1;const{key:V,disabled:te}=e.tmNode;if(te)return!1;const{value:N}=t,{value:G}=r,{value:Ce}=n,{value:X}=l;return N!==null?X.includes(V):G!==null?X.includes(V)&&X[X.length-1]!==V:Ce!==null?X.includes(V):!1}),w=R(()=>r.value===null&&!s.value),O=Bd(I,300,w),k=R(()=>!!(b!=null&&b.enteringSubmenuRef.value)),$=D(!1);Oe(yi,{enteringSubmenuRef:$});function L(){$.value=!0}function M(){$.value=!1}function j(){const{parentKey:V,tmNode:te}=e;te.disabled||d.value&&(n.value=V,r.value=null,t.value=te.key)}function E(){const{tmNode:V}=e;V.disabled||d.value&&t.value!==V.key&&j()}function U(V){if(e.tmNode.disabled||!d.value)return;const{relatedTarget:te}=V;te&&!pt({target:te},"dropdownOption")&&!pt({target:te},"scrollbarRail")&&(t.value=null)}function _(){const{value:V}=T,{tmNode:te}=e;d.value&&!V&&!te.disabled&&(o.doSelect(te.key,te.rawNode),o.doUpdateShow(!1))}return{labelField:f,renderLabel:c,renderIcon:u,siblingHasIcon:x.showIconRef,siblingHasSubmenu:x.hasSubmenuRef,menuProps:m,popoverBody:S,animated:s,mergedShowSubmenu:R(()=>O.value&&!k.value),rawNode:B,hasSubmenu:T,pending:We(()=>{const{value:V}=l,{key:te}=e.tmNode;return V.includes(te)}),childActive:We(()=>{const{value:V}=a,{key:te}=e.tmNode,N=V.findIndex(G=>te===G);return N===-1?!1:N{const{value:V}=a,{key:te}=e.tmNode,N=V.findIndex(G=>te===G);return N===-1?!1:N===V.length-1}),mergedDisabled:z,renderOption:v,nodeProps:h,handleClick:_,handleMouseMove:E,handleMouseEnter:j,handleMouseLeave:U,handleSubmenuBeforeEnter:L,handleSubmenuAfterEnter:M}},render(){var e,o;const{animated:t,rawNode:r,mergedShowSubmenu:n,clsPrefix:l,siblingHasIcon:a,siblingHasSubmenu:s,renderLabel:d,renderIcon:c,renderOption:u,nodeProps:f,props:p,scrollable:v}=this;let h=null;if(n){const S=(e=this.menuProps)===null||e===void 0?void 0:e.call(this,r,r.children);h=i(ua,Object.assign({},S,{clsPrefix:l,scrollable:this.scrollable,tmNodes:this.tmNode.children,parentKey:this.tmNode.key}))}const m={class:[`${l}-dropdown-option-body`,this.pending&&`${l}-dropdown-option-body--pending`,this.active&&`${l}-dropdown-option-body--active`,this.childActive&&`${l}-dropdown-option-body--child-active`,this.mergedDisabled&&`${l}-dropdown-option-body--disabled`],onMousemove:this.handleMouseMove,onMouseenter:this.handleMouseEnter,onMouseleave:this.handleMouseLeave,onClick:this.handleClick},b=f==null?void 0:f(r),x=i("div",Object.assign({class:[`${l}-dropdown-option`,b==null?void 0:b.class],"data-dropdown-option":!0},b),i("div",ko(m,p),[i("div",{class:[`${l}-dropdown-option-body__prefix`,a&&`${l}-dropdown-option-body__prefix--show-icon`]},[c?c(r):qe(r.icon)]),i("div",{"data-dropdown-option":!0,class:`${l}-dropdown-option-body__label`},d?d(r):qe((o=r[this.labelField])!==null&&o!==void 0?o:r.title)),i("div",{"data-dropdown-option":!0,class:[`${l}-dropdown-option-body__suffix`,s&&`${l}-dropdown-option-body__suffix--has-submenu`]},this.hasSubmenu?i(Nh,null,{default:()=>i(Nd,null)}):null)]),this.hasSubmenu?i(Br,null,{default:()=>[i(Ir,null,{default:()=>i("div",{class:`${l}-dropdown-offset-container`},i(kr,{show:this.mergedShowSubmenu,placement:this.placement,to:v&&this.popoverBody||void 0,teleportDisabled:!v},{default:()=>i("div",{class:`${l}-dropdown-menu-wrapper`},t?i(no,{onBeforeEnter:this.handleSubmenuBeforeEnter,onAfterEnter:this.handleSubmenuAfterEnter,name:"fade-in-scale-up-transition",appear:!0},{default:()=>h}):h)}))})]}):null);return u?u({node:x,option:r}):x}}),Kh=q({name:"DropdownGroupHeader",props:{clsPrefix:{type:String,required:!0},tmNode:{type:Object,required:!0}},setup(){const{showIconRef:e,hasSubmenuRef:o}=Se(kn),{renderLabelRef:t,labelFieldRef:r,nodePropsRef:n,renderOptionRef:l}=Se(Hr);return{labelField:r,showIcon:e,hasSubmenu:o,renderLabel:t,nodeProps:n,renderOption:l}},render(){var e;const{clsPrefix:o,hasSubmenu:t,showIcon:r,nodeProps:n,renderLabel:l,renderOption:a}=this,{rawNode:s}=this.tmNode,d=i("div",Object.assign({class:`${o}-dropdown-option`},n==null?void 0:n(s)),i("div",{class:`${o}-dropdown-option-body ${o}-dropdown-option-body--group`},i("div",{"data-dropdown-option":!0,class:[`${o}-dropdown-option-body__prefix`,r&&`${o}-dropdown-option-body__prefix--show-icon`]},qe(s.icon)),i("div",{class:`${o}-dropdown-option-body__label`,"data-dropdown-option":!0},l?l(s):qe((e=s.title)!==null&&e!==void 0?e:s[this.labelField])),i("div",{class:[`${o}-dropdown-option-body__suffix`,t&&`${o}-dropdown-option-body__suffix--has-submenu`],"data-dropdown-option":!0})));return a?a({node:d,option:s}):d}}),Gh=q({name:"NDropdownGroup",props:{clsPrefix:{type:String,required:!0},tmNode:{type:Object,required:!0},parentKey:{type:[String,Number],default:null}},render(){const{tmNode:e,parentKey:o,clsPrefix:t}=this,{children:r}=e;return i(ao,null,i(Kh,{clsPrefix:t,tmNode:e,key:e.key}),r==null?void 0:r.map(n=>{const{rawNode:l}=n;return l.show===!1?null:da(l)?i(aa,{clsPrefix:t,key:n.key}):n.isGroup?(qo("dropdown","`group` node is not allowed to be put in `group` node."),null):i(ca,{clsPrefix:t,tmNode:n,parentKey:o,key:n.key})}))}}),qh=q({name:"DropdownRenderOption",props:{tmNode:{type:Object,required:!0}},render(){const{rawNode:{render:e,props:o}}=this.tmNode;return i("div",o,[e==null?void 0:e()])}}),ua=q({name:"DropdownMenu",props:{scrollable:Boolean,showArrow:Boolean,arrowStyle:[String,Object],clsPrefix:{type:String,required:!0},tmNodes:{type:Array,default:()=>[]},parentKey:{type:[String,Number],default:null}},setup(e){const{renderIconRef:o,childrenFieldRef:t}=Se(Hr);Oe(kn,{showIconRef:R(()=>{const n=o.value;return e.tmNodes.some(l=>{var a;if(l.isGroup)return(a=l.children)===null||a===void 0?void 0:a.some(({rawNode:d})=>n?n(d):d.icon);const{rawNode:s}=l;return n?n(s):s.icon})}),hasSubmenuRef:R(()=>{const{value:n}=t;return e.tmNodes.some(l=>{var a;if(l.isGroup)return(a=l.children)===null||a===void 0?void 0:a.some(({rawNode:d})=>cn(d,n));const{rawNode:s}=l;return cn(s,n)})})});const r=D(null);return Oe(dr,null),Oe(cr,null),Oe(Dt,r),{bodyRef:r}},render(){const{parentKey:e,clsPrefix:o,scrollable:t}=this,r=this.tmNodes.map(n=>{const{rawNode:l}=n;return l.show===!1?null:Uh(l)?i(qh,{tmNode:n,key:n.key}):da(l)?i(aa,{clsPrefix:o,key:n.key}):Vh(l)?i(Gh,{clsPrefix:o,tmNode:n,parentKey:e,key:n.key}):i(ca,{clsPrefix:o,tmNode:n,parentKey:e,key:n.key,props:l.props,scrollable:t})});return i("div",{class:[`${o}-dropdown-menu`,t&&`${o}-dropdown-menu--scrollable`],ref:"bodyRef"},t?i(gl,{contentClass:`${o}-dropdown-menu__content`},{default:()=>r}):r,this.showArrow?yl({clsPrefix:o,arrowStyle:this.arrowStyle}):null)}}),Yh=g("dropdown-menu",` - transform-origin: var(--v-transform-origin); - background-color: var(--n-color); - border-radius: var(--n-border-radius); - box-shadow: var(--n-box-shadow); - position: relative; - transition: - background-color .3s var(--n-bezier), - box-shadow .3s var(--n-bezier); -`,[at(),g("dropdown-option",` - position: relative; - `,[C("a",` - text-decoration: none; - color: inherit; - outline: none; - `,[C("&::before",` - content: ""; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - `)]),g("dropdown-option-body",` - display: flex; - cursor: pointer; - position: relative; - height: var(--n-option-height); - line-height: var(--n-option-height); - font-size: var(--n-font-size); - color: var(--n-option-text-color); - transition: color .3s var(--n-bezier); - `,[C("&::before",` - content: ""; - position: absolute; - top: 0; - bottom: 0; - left: 4px; - right: 4px; - transition: background-color .3s var(--n-bezier); - border-radius: var(--n-border-radius); - `),je("disabled",[P("pending",` - color: var(--n-option-text-color-hover); - `,[y("prefix, suffix",` - color: var(--n-option-text-color-hover); - `),C("&::before","background-color: var(--n-option-color-hover);")]),P("active",` - color: var(--n-option-text-color-active); - `,[y("prefix, suffix",` - color: var(--n-option-text-color-active); - `),C("&::before","background-color: var(--n-option-color-active);")]),P("child-active",` - color: var(--n-option-text-color-child-active); - `,[y("prefix, suffix",` - color: var(--n-option-text-color-child-active); - `)])]),P("disabled",` - cursor: not-allowed; - opacity: var(--n-option-opacity-disabled); - `),P("group",` - font-size: calc(var(--n-font-size) - 1px); - color: var(--n-group-header-text-color); - `,[y("prefix",` - width: calc(var(--n-option-prefix-width) / 2); - `,[P("show-icon",` - width: calc(var(--n-option-icon-prefix-width) / 2); - `)])]),y("prefix",` - width: var(--n-option-prefix-width); - display: flex; - justify-content: center; - align-items: center; - color: var(--n-prefix-color); - transition: color .3s var(--n-bezier); - z-index: 1; - `,[P("show-icon",` - width: var(--n-option-icon-prefix-width); - `),g("icon",` - font-size: var(--n-option-icon-size); - `)]),y("label",` - white-space: nowrap; - flex: 1; - z-index: 1; - `),y("suffix",` - box-sizing: border-box; - flex-grow: 0; - flex-shrink: 0; - display: flex; - justify-content: flex-end; - align-items: center; - min-width: var(--n-option-suffix-width); - padding: 0 8px; - transition: color .3s var(--n-bezier); - color: var(--n-suffix-color); - z-index: 1; - `,[P("has-submenu",` - width: var(--n-option-icon-suffix-width); - `),g("icon",` - font-size: var(--n-option-icon-size); - `)]),g("dropdown-menu","pointer-events: all;")]),g("dropdown-offset-container",` - pointer-events: none; - position: absolute; - left: 0; - right: 0; - top: -4px; - bottom: -4px; - `)]),g("dropdown-divider",` - transition: background-color .3s var(--n-bezier); - background-color: var(--n-divider-color); - height: 1px; - margin: 4px 0; - `),g("dropdown-menu-wrapper",` - transform-origin: var(--v-transform-origin); - width: fit-content; - `),C(">",[g("scrollbar",` - height: inherit; - max-height: inherit; - `)]),je("scrollable",` - padding: var(--n-padding); - `),P("scrollable",[y("content",` - padding: var(--n-padding); - `)])]),Xh={animated:{type:Boolean,default:!0},keyboard:{type:Boolean,default:!0},size:{type:String,default:"medium"},inverted:Boolean,placement:{type:String,default:"bottom"},onSelect:[Function,Array],options:{type:Array,default:()=>[]},menuProps:Function,showArrow:Boolean,renderLabel:Function,renderIcon:Function,renderOption:Function,nodeProps:Function,labelField:{type:String,default:"label"},keyField:{type:String,default:"key"},childrenField:{type:String,default:"children"},value:[String,Number]},Zh=Object.keys(bt),Qh=Object.assign(Object.assign(Object.assign({},bt),Xh),ne.props),Jh=q({name:"Dropdown",inheritAttrs:!1,props:Qh,setup(e){const o=D(!1),t=so(le(e,"show"),o),r=R(()=>{const{keyField:M,childrenField:j}=e;return ar(e.options,{getKey(E){return E[M]},getDisabled(E){return E.disabled===!0},getIgnored(E){return E.type==="divider"||E.type==="render"},getChildren(E){return E[j]}})}),n=R(()=>r.value.treeNodes),l=D(null),a=D(null),s=D(null),d=R(()=>{var M,j,E;return(E=(j=(M=l.value)!==null&&M!==void 0?M:a.value)!==null&&j!==void 0?j:s.value)!==null&&E!==void 0?E:null}),c=R(()=>r.value.getPath(d.value).keyPath),u=R(()=>r.value.getPath(e.value).keyPath),f=We(()=>e.keyboard&&t.value);ad({keydown:{ArrowUp:{prevent:!0,handler:z},ArrowRight:{prevent:!0,handler:T},ArrowDown:{prevent:!0,handler:I},ArrowLeft:{prevent:!0,handler:B},Enter:{prevent:!0,handler:w},Escape:S}},f);const{mergedClsPrefixRef:p,inlineThemeDisabled:v}=ke(e),h=ne("Dropdown","-dropdown",Yh,ia,e,p);Oe(Hr,{labelFieldRef:le(e,"labelField"),childrenFieldRef:le(e,"childrenField"),renderLabelRef:le(e,"renderLabel"),renderIconRef:le(e,"renderIcon"),hoverKeyRef:l,keyboardKeyRef:a,lastToggledSubmenuKeyRef:s,pendingKeyPathRef:c,activeKeyPathRef:u,animatedRef:le(e,"animated"),mergedShowRef:t,nodePropsRef:le(e,"nodeProps"),renderOptionRef:le(e,"renderOption"),menuPropsRef:le(e,"menuProps"),doSelect:m,doUpdateShow:b}),Ke(t,M=>{!e.animated&&!M&&x()});function m(M,j){const{onSelect:E}=e;E&&ae(E,M,j)}function b(M){const{"onUpdate:show":j,onUpdateShow:E}=e;j&&ae(j,M),E&&ae(E,M),o.value=M}function x(){l.value=null,a.value=null,s.value=null}function S(){b(!1)}function B(){k("left")}function T(){k("right")}function z(){k("up")}function I(){k("down")}function w(){const M=O();M!=null&&M.isLeaf&&t.value&&(m(M.key,M.rawNode),b(!1))}function O(){var M;const{value:j}=r,{value:E}=d;return!j||E===null?null:(M=j.getNode(E))!==null&&M!==void 0?M:null}function k(M){const{value:j}=d,{value:{getFirstAvailableNode:E}}=r;let U=null;if(j===null){const _=E();_!==null&&(U=_.key)}else{const _=O();if(_){let V;switch(M){case"down":V=_.getNext();break;case"up":V=_.getPrev();break;case"right":V=_.getChild();break;case"left":V=_.getParent();break}V&&(U=V.key)}}U!==null&&(l.value=null,a.value=U)}const $=R(()=>{const{size:M,inverted:j}=e,{common:{cubicBezierEaseInOut:E},self:U}=h.value,{padding:_,dividerColor:V,borderRadius:te,optionOpacityDisabled:N,[W("optionIconSuffixWidth",M)]:G,[W("optionSuffixWidth",M)]:Ce,[W("optionIconPrefixWidth",M)]:X,[W("optionPrefixWidth",M)]:ve,[W("fontSize",M)]:he,[W("optionHeight",M)]:be,[W("optionIconSize",M)]:me}=U,se={"--n-bezier":E,"--n-font-size":he,"--n-padding":_,"--n-border-radius":te,"--n-option-height":be,"--n-option-prefix-width":ve,"--n-option-icon-prefix-width":X,"--n-option-suffix-width":Ce,"--n-option-icon-suffix-width":G,"--n-option-icon-size":me,"--n-divider-color":V,"--n-option-opacity-disabled":N};return j?(se["--n-color"]=U.colorInverted,se["--n-option-color-hover"]=U.optionColorHoverInverted,se["--n-option-color-active"]=U.optionColorActiveInverted,se["--n-option-text-color"]=U.optionTextColorInverted,se["--n-option-text-color-hover"]=U.optionTextColorHoverInverted,se["--n-option-text-color-active"]=U.optionTextColorActiveInverted,se["--n-option-text-color-child-active"]=U.optionTextColorChildActiveInverted,se["--n-prefix-color"]=U.prefixColorInverted,se["--n-suffix-color"]=U.suffixColorInverted,se["--n-group-header-text-color"]=U.groupHeaderTextColorInverted):(se["--n-color"]=U.color,se["--n-option-color-hover"]=U.optionColorHover,se["--n-option-color-active"]=U.optionColorActive,se["--n-option-text-color"]=U.optionTextColor,se["--n-option-text-color-hover"]=U.optionTextColorHover,se["--n-option-text-color-active"]=U.optionTextColorActive,se["--n-option-text-color-child-active"]=U.optionTextColorChildActive,se["--n-prefix-color"]=U.prefixColor,se["--n-suffix-color"]=U.suffixColor,se["--n-group-header-text-color"]=U.groupHeaderTextColor),se}),L=v?Ae("dropdown",R(()=>`${e.size[0]}${e.inverted?"i":""}`),$,e):void 0;return{mergedClsPrefix:p,mergedTheme:h,tmNodes:n,mergedShow:t,handleAfterLeave:()=>{e.animated&&x()},doUpdateShow:b,cssVars:v?void 0:$,themeClass:L==null?void 0:L.themeClass,onRender:L==null?void 0:L.onRender}},render(){const e=(r,n,l,a,s)=>{var d;const{mergedClsPrefix:c,menuProps:u}=this;(d=this.onRender)===null||d===void 0||d.call(this);const f=(u==null?void 0:u(void 0,this.tmNodes.map(v=>v.rawNode)))||{},p={ref:qi(n),class:[r,`${c}-dropdown`,this.themeClass],clsPrefix:c,tmNodes:this.tmNodes,style:[l,this.cssVars],showArrow:this.showArrow,arrowStyle:this.arrowStyle,scrollable:this.scrollable,onMouseenter:a,onMouseleave:s};return i(ua,ko(this.$attrs,p,f))},{mergedTheme:o}=this,t={show:this.mergedShow,theme:o.peers.Popover,themeOverrides:o.peerOverrides.Popover,internalOnAfterLeave:this.handleAfterLeave,internalRenderBody:e,onUpdateShow:this.doUpdateShow,"onUpdate:show":void 0};return i(hr,Object.assign({},go(this.$props,Zh),t),{trigger:()=>{var r,n;return(n=(r=this.$slots).default)===null||n===void 0?void 0:n.call(r)}})}}),ep={itemFontSize:"12px",itemHeight:"36px",itemWidth:"52px",panelActionPadding:"8px 0"},op=e=>{const{popoverColor:o,textColor2:t,primaryColor:r,hoverColor:n,dividerColor:l,opacityDisabled:a,boxShadow2:s,borderRadius:d,iconColor:c,iconColorDisabled:u}=e;return Object.assign(Object.assign({},ep),{panelColor:o,panelBoxShadow:s,panelDividerColor:l,itemTextColor:t,itemTextColorActive:r,itemColorHover:n,itemOpacityDisabled:a,itemBorderRadius:d,borderRadius:d,iconColor:c,iconColorDisabled:u})},tp={name:"TimePicker",common:fe,peers:{Scrollbar:zo,Button:$o,Input:Ho},self:op},fa=tp,rp={itemSize:"24px",itemCellWidth:"38px",itemCellHeight:"32px",scrollItemWidth:"80px",scrollItemHeight:"40px",panelExtraFooterPadding:"8px 12px",panelActionPadding:"8px 12px",calendarTitlePadding:"0",calendarTitleHeight:"28px",arrowSize:"14px",panelHeaderPadding:"8px 12px",calendarDaysHeight:"32px",calendarTitleGridTempateColumns:"28px 28px 1fr 28px 28px",calendarLeftPaddingDate:"6px 12px 4px 12px",calendarLeftPaddingDatetime:"4px 12px",calendarLeftPaddingDaterange:"6px 12px 4px 12px",calendarLeftPaddingDatetimerange:"4px 12px",calendarLeftPaddingMonth:"0",calendarLeftPaddingYear:"0",calendarLeftPaddingQuarter:"0",calendarLeftPaddingMonthrange:"0",calendarLeftPaddingQuarterrange:"0",calendarLeftPaddingYearrange:"0",calendarRightPaddingDate:"6px 12px 4px 12px",calendarRightPaddingDatetime:"4px 12px",calendarRightPaddingDaterange:"6px 12px 4px 12px",calendarRightPaddingDatetimerange:"4px 12px",calendarRightPaddingMonth:"0",calendarRightPaddingYear:"0",calendarRightPaddingQuarter:"0",calendarRightPaddingMonthrange:"0",calendarRightPaddingQuarterrange:"0",calendarRightPaddingYearrange:"0"},np=e=>{const{hoverColor:o,fontSize:t,textColor2:r,textColorDisabled:n,popoverColor:l,primaryColor:a,borderRadiusSmall:s,iconColor:d,iconColorDisabled:c,textColor1:u,dividerColor:f,boxShadow2:p,borderRadius:v,fontWeightStrong:h}=e;return Object.assign(Object.assign({},rp),{itemFontSize:t,calendarDaysFontSize:t,calendarTitleFontSize:t,itemTextColor:r,itemTextColorDisabled:n,itemTextColorActive:l,itemTextColorCurrent:a,itemColorIncluded:J(a,{alpha:.1}),itemColorHover:o,itemColorDisabled:o,itemColorActive:a,itemBorderRadius:s,panelColor:l,panelTextColor:r,arrowColor:d,calendarTitleTextColor:u,calendarTitleColorHover:o,calendarDaysTextColor:r,panelHeaderDividerColor:f,calendarDaysDividerColor:f,calendarDividerColor:f,panelActionDividerColor:f,panelBoxShadow:p,panelBorderRadius:v,calendarTitleFontWeight:h,scrollItemBorderRadius:v,iconColor:d,iconColorDisabled:c})},ip={name:"DatePicker",common:fe,peers:{Input:Ho,Button:$o,TimePicker:fa,Scrollbar:zo},self(e){const{popoverColor:o,hoverColor:t,primaryColor:r}=e,n=np(e);return n.itemColorDisabled=$e(o,t),n.itemColorIncluded=J(r,{alpha:.15}),n.itemColorHover=$e(o,t),n}},lp=ip,ap={thPaddingBorderedSmall:"8px 12px",thPaddingBorderedMedium:"12px 16px",thPaddingBorderedLarge:"16px 24px",thPaddingSmall:"0",thPaddingMedium:"0",thPaddingLarge:"0",tdPaddingBorderedSmall:"8px 12px",tdPaddingBorderedMedium:"12px 16px",tdPaddingBorderedLarge:"16px 24px",tdPaddingSmall:"0 0 8px 0",tdPaddingMedium:"0 0 12px 0",tdPaddingLarge:"0 0 16px 0"},sp=e=>{const{tableHeaderColor:o,textColor2:t,textColor1:r,cardColor:n,modalColor:l,popoverColor:a,dividerColor:s,borderRadius:d,fontWeightStrong:c,lineHeight:u,fontSizeSmall:f,fontSizeMedium:p,fontSizeLarge:v}=e;return Object.assign(Object.assign({},ap),{lineHeight:u,fontSizeSmall:f,fontSizeMedium:p,fontSizeLarge:v,titleTextColor:r,thColor:$e(n,o),thColorModal:$e(l,o),thColorPopover:$e(a,o),thTextColor:r,thFontWeight:c,tdTextColor:t,tdColor:n,tdColorModal:l,tdColorPopover:a,borderColor:$e(n,s),borderColorModal:$e(l,s),borderColorPopover:$e(a,s),borderRadius:d})},dp={name:"Descriptions",common:fe,self:sp},cp=dp,up={titleFontSize:"18px",padding:"16px 28px 20px 28px",iconSize:"28px",actionSpace:"12px",contentMargin:"8px 0 16px 0",iconMargin:"0 4px 0 0",iconMarginIconTop:"4px 0 8px 0",closeSize:"22px",closeIconSize:"18px",closeMargin:"20px 26px 0 0",closeMarginIconTop:"10px 16px 0 0"},ha=e=>{const{textColor1:o,textColor2:t,modalColor:r,closeIconColor:n,closeIconColorHover:l,closeIconColorPressed:a,closeColorHover:s,closeColorPressed:d,infoColor:c,successColor:u,warningColor:f,errorColor:p,primaryColor:v,dividerColor:h,borderRadius:m,fontWeightStrong:b,lineHeight:x,fontSize:S}=e;return Object.assign(Object.assign({},up),{fontSize:S,lineHeight:x,border:`1px solid ${h}`,titleTextColor:o,textColor:t,color:r,closeColorHover:s,closeColorPressed:d,closeIconColor:n,closeIconColorHover:l,closeIconColorPressed:a,closeBorderRadius:m,iconColor:v,iconColorInfo:c,iconColorSuccess:u,iconColorWarning:f,iconColorError:p,borderRadius:m,titleFontWeight:b})},fp={name:"Dialog",common:Le,peers:{Button:Wt},self:ha},pa=fp,hp={name:"Dialog",common:fe,peers:{Button:$o},self:ha},va=hp,Ar={icon:Function,type:{type:String,default:"default"},title:[String,Function],closable:{type:Boolean,default:!0},negativeText:String,positiveText:String,positiveButtonProps:Object,negativeButtonProps:Object,content:[String,Function],action:Function,showIcon:{type:Boolean,default:!0},loading:Boolean,bordered:Boolean,iconPlacement:String,onPositiveClick:Function,onNegativeClick:Function,onClose:Function},ga=yo(Ar),pp=C([g("dialog",` - word-break: break-word; - line-height: var(--n-line-height); - position: relative; - background: var(--n-color); - color: var(--n-text-color); - box-sizing: border-box; - margin: auto; - border-radius: var(--n-border-radius); - padding: var(--n-padding); - transition: - border-color .3s var(--n-bezier), - background-color .3s var(--n-bezier), - color .3s var(--n-bezier); - `,[y("icon",{color:"var(--n-icon-color)"}),P("bordered",{border:"var(--n-border)"}),P("icon-top",[y("close",{margin:"var(--n-close-margin)"}),y("icon",{margin:"var(--n-icon-margin)"}),y("content",{textAlign:"center"}),y("title",{justifyContent:"center"}),y("action",{justifyContent:"center"})]),P("icon-left",[y("icon",{margin:"var(--n-icon-margin)"}),P("closable",[y("title",` - padding-right: calc(var(--n-close-size) + 6px); - `)])]),y("close",` - position: absolute; - right: 0; - top: 0; - margin: var(--n-close-margin); - transition: - background-color .3s var(--n-bezier), - color .3s var(--n-bezier); - z-index: 1; - `),y("content",` - font-size: var(--n-font-size); - margin: var(--n-content-margin); - position: relative; - word-break: break-word; - `,[P("last","margin-bottom: 0;")]),y("action",` - display: flex; - justify-content: flex-end; - `,[C("> *:not(:last-child)",{marginRight:"var(--n-action-space)"})]),y("icon",{fontSize:"var(--n-icon-size)",transition:"color .3s var(--n-bezier)"}),y("title",` - transition: color .3s var(--n-bezier); - display: flex; - align-items: center; - font-size: var(--n-title-font-size); - font-weight: var(--n-title-font-weight); - color: var(--n-title-text-color); - `),g("dialog-icon-container",{display:"flex",justifyContent:"center"})]),Or(g("dialog",` - width: 446px; - max-width: calc(100vw - 32px); - `)),g("dialog",[Zi(` - width: 446px; - max-width: calc(100vw - 32px); - `)])]),vp={default:()=>i(mt,null),info:()=>i(mt,null),success:()=>i(Ht,null),warning:()=>i(yt,null),error:()=>i(Lt,null)},ma=q({name:"Dialog",alias:["NimbusConfirmCard","Confirm"],props:Object.assign(Object.assign({},ne.props),Ar),setup(e){const{mergedComponentPropsRef:o,mergedClsPrefixRef:t,inlineThemeDisabled:r}=ke(e),n=R(()=>{var f,p;const{iconPlacement:v}=e;return v||((p=(f=o==null?void 0:o.value)===null||f===void 0?void 0:f.Dialog)===null||p===void 0?void 0:p.iconPlacement)||"left"});function l(f){const{onPositiveClick:p}=e;p&&p(f)}function a(f){const{onNegativeClick:p}=e;p&&p(f)}function s(){const{onClose:f}=e;f&&f()}const d=ne("Dialog","-dialog",pp,pa,e,t),c=R(()=>{const{type:f}=e,p=n.value,{common:{cubicBezierEaseInOut:v},self:{fontSize:h,lineHeight:m,border:b,titleTextColor:x,textColor:S,color:B,closeBorderRadius:T,closeColorHover:z,closeColorPressed:I,closeIconColor:w,closeIconColorHover:O,closeIconColorPressed:k,closeIconSize:$,borderRadius:L,titleFontWeight:M,titleFontSize:j,padding:E,iconSize:U,actionSpace:_,contentMargin:V,closeSize:te,[p==="top"?"iconMarginIconTop":"iconMargin"]:N,[p==="top"?"closeMarginIconTop":"closeMargin"]:G,[W("iconColor",f)]:Ce}}=d.value;return{"--n-font-size":h,"--n-icon-color":Ce,"--n-bezier":v,"--n-close-margin":G,"--n-icon-margin":N,"--n-icon-size":U,"--n-close-size":te,"--n-close-icon-size":$,"--n-close-border-radius":T,"--n-close-color-hover":z,"--n-close-color-pressed":I,"--n-close-icon-color":w,"--n-close-icon-color-hover":O,"--n-close-icon-color-pressed":k,"--n-color":B,"--n-text-color":S,"--n-border-radius":L,"--n-padding":E,"--n-line-height":m,"--n-border":b,"--n-content-margin":V,"--n-title-font-size":j,"--n-title-font-weight":M,"--n-title-text-color":x,"--n-action-space":_}}),u=r?Ae("dialog",R(()=>`${e.type[0]}${n.value[0]}`),c,e):void 0;return{mergedClsPrefix:t,mergedIconPlacement:n,mergedTheme:d,handlePositiveClick:l,handleNegativeClick:a,handleCloseClick:s,cssVars:r?void 0:c,themeClass:u==null?void 0:u.themeClass,onRender:u==null?void 0:u.onRender}},render(){var e;const{bordered:o,mergedIconPlacement:t,cssVars:r,closable:n,showIcon:l,title:a,content:s,action:d,negativeText:c,positiveText:u,positiveButtonProps:f,negativeButtonProps:p,handlePositiveClick:v,handleNegativeClick:h,mergedTheme:m,loading:b,type:x,mergedClsPrefix:S}=this;(e=this.onRender)===null||e===void 0||e.call(this);const B=l?i(De,{clsPrefix:S,class:`${S}-dialog__icon`},{default:()=>Ee(this.$slots.icon,z=>z||(this.icon?qe(this.icon):vp[this.type]()))}):null,T=Ee(this.$slots.action,z=>z||u||c||d?i("div",{class:`${S}-dialog__action`},z||(d?[qe(d)]:[this.negativeText&&i(Po,Object.assign({theme:m.peers.Button,themeOverrides:m.peerOverrides.Button,ghost:!0,size:"small",onClick:h},p),{default:()=>qe(this.negativeText)}),this.positiveText&&i(Po,Object.assign({theme:m.peers.Button,themeOverrides:m.peerOverrides.Button,size:"small",type:x==="default"?"primary":x,disabled:b,loading:b,onClick:v},f),{default:()=>qe(this.positiveText)})])):null);return i("div",{class:[`${S}-dialog`,this.themeClass,this.closable&&`${S}-dialog--closable`,`${S}-dialog--icon-${t}`,o&&`${S}-dialog--bordered`],style:r,role:"dialog"},n?i(St,{clsPrefix:S,class:`${S}-dialog__close`,onClick:this.handleCloseClick}):null,l&&t==="top"?i("div",{class:`${S}-dialog-icon-container`},B):null,i("div",{class:`${S}-dialog__title`},l&&t==="left"?B:null,lo(this.$slots.header,()=>[qe(a)])),i("div",{class:[`${S}-dialog__content`,T?"":`${S}-dialog__content--last`]},lo(this.$slots.default,()=>[qe(s)])),T)}}),ba="n-dialog-provider",xa="n-dialog-api",gp="n-dialog-reactive-list",Ca=e=>{const{modalColor:o,textColor2:t,boxShadow3:r}=e;return{color:o,textColor:t,boxShadow:r}},mp={name:"Modal",common:Le,peers:{Scrollbar:Mr,Dialog:pa,Card:Nl},self:Ca},bp=mp,xp={name:"Modal",common:fe,peers:{Scrollbar:zo,Dialog:va,Card:Vl},self:Ca},Cp=xp,In=Object.assign(Object.assign({},Sn),Ar),yp=yo(In),wp=q({name:"ModalBody",inheritAttrs:!1,props:Object.assign(Object.assign({show:{type:Boolean,required:!0},preset:String,displayDirective:{type:String,required:!0},trapFocus:{type:Boolean,default:!0},autoFocus:{type:Boolean,default:!0},blockScroll:Boolean},In),{renderMask:Function,onClickoutside:Function,onBeforeLeave:{type:Function,required:!0},onAfterLeave:{type:Function,required:!0},onPositiveClick:{type:Function,required:!0},onNegativeClick:{type:Function,required:!0},onClose:{type:Function,required:!0},onAfterEnter:Function,onEsc:Function}),setup(e){const o=D(null),t=D(null),r=D(e.show),n=D(null),l=D(null);Ke(le(e,"show"),b=>{b&&(r.value=!0)}),il(R(()=>e.blockScroll&&r.value));const a=Se(ol);function s(){if(a.transformOriginRef.value==="center")return"";const{value:b}=n,{value:x}=l;if(b===null||x===null)return"";if(t.value){const S=t.value.containerScrollTop;return`${b}px ${x+S}px`}return""}function d(b){if(a.transformOriginRef.value==="center")return;const x=a.getMousePosition();if(!x||!t.value)return;const S=t.value.containerScrollTop,{offsetLeft:B,offsetTop:T}=b;if(x){const z=x.y,I=x.x;n.value=-(B-I),l.value=-(T-z-S)}b.style.transformOrigin=s()}function c(b){io(()=>{d(b)})}function u(b){b.style.transformOrigin=s(),e.onBeforeLeave()}function f(){r.value=!1,n.value=null,l.value=null,e.onAfterLeave()}function p(){const{onClose:b}=e;b&&b()}function v(){e.onNegativeClick()}function h(){e.onPositiveClick()}const m=D(null);return Ke(m,b=>{b&&io(()=>{const x=b.el;x&&o.value!==x&&(o.value=x)})}),Oe(dr,o),Oe(cr,null),Oe(Dt,null),{mergedTheme:a.mergedThemeRef,appear:a.appearRef,isMounted:a.isMountedRef,mergedClsPrefix:a.mergedClsPrefixRef,bodyRef:o,scrollbarRef:t,displayed:r,childNodeRef:m,handlePositiveClick:h,handleNegativeClick:v,handleCloseClick:p,handleAfterLeave:f,handleBeforeLeave:u,handleEnter:c}},render(){const{$slots:e,$attrs:o,handleEnter:t,handleAfterLeave:r,handleBeforeLeave:n,preset:l,mergedClsPrefix:a}=this;let s=null;if(!l){if(s=ln(e),!s){qo("modal","default slot is empty");return}s=Jt(s),s.props=ko({class:`${a}-modal`},o,s.props||{})}return this.displayDirective==="show"||this.displayed||this.show?Lo(i("div",{role:"none",class:`${a}-modal-body-wrapper`},i(ur,{ref:"scrollbarRef",theme:this.mergedTheme.peers.Scrollbar,themeOverrides:this.mergedTheme.peerOverrides.Scrollbar,contentClass:`${a}-modal-scroll-content`},{default:()=>{var d;return[(d=this.renderMask)===null||d===void 0?void 0:d.call(this),i(hn,{disabled:!this.trapFocus,active:this.show,onEsc:this.onEsc,autoFocus:this.autoFocus},{default:()=>{var c;return i(no,{name:"fade-in-scale-up-transition",appear:(c=this.appear)!==null&&c!==void 0?c:this.isMounted,onEnter:t,onAfterEnter:this.onAfterEnter,onAfterLeave:r,onBeforeLeave:n},{default:()=>{const u=[[Go,this.show]],{onClickoutside:f}=this;return f&&u.push([Ft,this.onClickoutside,void 0,{capture:!0}]),Lo(this.preset==="confirm"||this.preset==="dialog"?i(ma,Object.assign({},this.$attrs,{class:[`${a}-modal`,this.$attrs.class],ref:"bodyRef",theme:this.mergedTheme.peers.Dialog,themeOverrides:this.mergedTheme.peerOverrides.Dialog},go(this.$props,ga),{"aria-modal":"true"}),e):this.preset==="card"?i(Rf,Object.assign({},this.$attrs,{ref:"bodyRef",class:[`${a}-modal`,this.$attrs.class],theme:this.mergedTheme.peers.Card,themeOverrides:this.mergedTheme.peerOverrides.Card},go(this.$props,zf),{"aria-modal":"true",role:"dialog"}),e):this.childNodeRef=s,u)}})}})]}})),[[Go,this.displayDirective==="if"||this.displayed||this.show]]):null}}),Sp=C([g("modal-container",` - position: fixed; - left: 0; - top: 0; - height: 0; - width: 0; - display: flex; - `),g("modal-mask",` - position: fixed; - left: 0; - right: 0; - top: 0; - bottom: 0; - background-color: rgba(0, 0, 0, .4); - `,[Mt({enterDuration:".25s",leaveDuration:".25s",enterCubicBezier:"var(--n-bezier-ease-out)",leaveCubicBezier:"var(--n-bezier-ease-out)"})]),g("modal-body-wrapper",` - position: fixed; - left: 0; - right: 0; - top: 0; - bottom: 0; - overflow: visible; - `,[g("modal-scroll-content",` - min-height: 100%; - display: flex; - position: relative; - `)]),g("modal",` - position: relative; - align-self: center; - color: var(--n-text-color); - margin: auto; - box-shadow: var(--n-box-shadow); - `,[at({duration:".25s",enterScale:".5"})])]),zp=Object.assign(Object.assign(Object.assign(Object.assign({},ne.props),{show:Boolean,unstableShowMask:{type:Boolean,default:!0},maskClosable:{type:Boolean,default:!0},preset:String,to:[String,Object],displayDirective:{type:String,default:"if"},transformOrigin:{type:String,default:"mouse"},zIndex:Number,autoFocus:{type:Boolean,default:!0},trapFocus:{type:Boolean,default:!0},closeOnEsc:{type:Boolean,default:!0},blockScroll:{type:Boolean,default:!0}}),In),{onEsc:Function,"onUpdate:show":[Function,Array],onUpdateShow:[Function,Array],onAfterEnter:Function,onBeforeLeave:Function,onAfterLeave:Function,onClose:Function,onPositiveClick:Function,onNegativeClick:Function,onMaskClick:Function,internalDialog:Boolean,internalAppear:{type:Boolean,default:void 0},overlayStyle:[String,Object],onBeforeHide:Function,onAfterHide:Function,onHide:Function}),$p=q({name:"Modal",inheritAttrs:!1,props:zp,setup(e){const o=D(null),{mergedClsPrefixRef:t,namespaceRef:r,inlineThemeDisabled:n}=ke(e),l=ne("Modal","-modal",Sp,bp,e,t),a=Vi(64),s=Ui(),d=Ct(),c=e.internalDialog?Se(ba,null):null,u=ll();function f(z){const{onUpdateShow:I,"onUpdate:show":w,onHide:O}=e;I&&ae(I,z),w&&ae(w,z),O&&!z&&O(z)}function p(){const{onClose:z}=e;z?Promise.resolve(z()).then(I=>{I!==!1&&f(!1)}):f(!1)}function v(){const{onPositiveClick:z}=e;z?Promise.resolve(z()).then(I=>{I!==!1&&f(!1)}):f(!1)}function h(){const{onNegativeClick:z}=e;z?Promise.resolve(z()).then(I=>{I!==!1&&f(!1)}):f(!1)}function m(){const{onBeforeLeave:z,onBeforeHide:I}=e;z&&ae(z),I&&I()}function b(){const{onAfterLeave:z,onAfterHide:I}=e;z&&ae(z),I&&I()}function x(z){var I;const{onMaskClick:w}=e;w&&w(z),e.maskClosable&&!((I=o.value)===null||I===void 0)&&I.contains(Qt(z))&&f(!1)}function S(z){var I;(I=e.onEsc)===null||I===void 0||I.call(e),e.show&&e.closeOnEsc&&Ji(z)&&!u.value&&f(!1)}Oe(ol,{getMousePosition:()=>{if(c){const{clickedRef:z,clickPositionRef:I}=c;if(z.value&&I.value)return I.value}return a.value?s.value:null},mergedClsPrefixRef:t,mergedThemeRef:l,isMountedRef:d,appearRef:le(e,"internalAppear"),transformOriginRef:le(e,"transformOrigin")});const B=R(()=>{const{common:{cubicBezierEaseOut:z},self:{boxShadow:I,color:w,textColor:O}}=l.value;return{"--n-bezier-ease-out":z,"--n-box-shadow":I,"--n-color":w,"--n-text-color":O}}),T=n?Ae("theme-class",void 0,B,e):void 0;return{mergedClsPrefix:t,namespace:r,isMounted:d,containerRef:o,presetProps:R(()=>go(e,yp)),handleEsc:S,handleAfterLeave:b,handleClickoutside:x,handleBeforeLeave:m,doUpdateShow:f,handleNegativeClick:h,handlePositiveClick:v,handleCloseClick:p,cssVars:n?void 0:B,themeClass:T==null?void 0:T.themeClass,onRender:T==null?void 0:T.onRender}},render(){const{mergedClsPrefix:e}=this;return i(pn,{to:this.to,show:this.show},{default:()=>{var o;(o=this.onRender)===null||o===void 0||o.call(this);const{unstableShowMask:t}=this;return Lo(i("div",{role:"none",ref:"containerRef",class:[`${e}-modal-container`,this.themeClass,this.namespace],style:this.cssVars},i(wp,Object.assign({style:this.overlayStyle},this.$attrs,{ref:"bodyWrapper",displayDirective:this.displayDirective,show:this.show,preset:this.preset,autoFocus:this.autoFocus,trapFocus:this.trapFocus,blockScroll:this.blockScroll},this.presetProps,{onEsc:this.handleEsc,onClose:this.handleCloseClick,onNegativeClick:this.handleNegativeClick,onPositiveClick:this.handlePositiveClick,onBeforeLeave:this.handleBeforeLeave,onAfterEnter:this.onAfterEnter,onAfterLeave:this.handleAfterLeave,onClickoutside:t?void 0:this.handleClickoutside,renderMask:t?()=>{var r;return i(no,{name:"fade-in-transition",key:"mask",appear:(r=this.internalAppear)!==null&&r!==void 0?r:this.isMounted},{default:()=>this.show?i("div",{"aria-hidden":!0,ref:"containerRef",class:`${e}-modal-mask`,onClick:this.handleClickoutside}):null})}:void 0}),this.$slots)),[[Tr,{zIndex:this.zIndex,enabled:this.show}]])}})}}),Rp=Object.assign(Object.assign({},Ar),{onAfterEnter:Function,onAfterLeave:Function,transformOrigin:String,blockScroll:{type:Boolean,default:!0},closeOnEsc:{type:Boolean,default:!0},onEsc:Function,autoFocus:{type:Boolean,default:!0},internalStyle:[String,Object],maskClosable:{type:Boolean,default:!0},onPositiveClick:Function,onNegativeClick:Function,onClose:Function,onMaskClick:Function}),Pp=q({name:"DialogEnvironment",props:Object.assign(Object.assign({},Rp),{internalKey:{type:String,required:!0},to:[String,Object],onInternalAfterLeave:{type:Function,required:!0}}),setup(e){const o=D(!0);function t(){const{onInternalAfterLeave:u,internalKey:f,onAfterLeave:p}=e;u&&u(f),p&&p()}function r(u){const{onPositiveClick:f}=e;f?Promise.resolve(f(u)).then(p=>{p!==!1&&d()}):d()}function n(u){const{onNegativeClick:f}=e;f?Promise.resolve(f(u)).then(p=>{p!==!1&&d()}):d()}function l(){const{onClose:u}=e;u?Promise.resolve(u()).then(f=>{f!==!1&&d()}):d()}function a(u){const{onMaskClick:f,maskClosable:p}=e;f&&(f(u),p&&d())}function s(){const{onEsc:u}=e;u&&u()}function d(){o.value=!1}function c(u){o.value=u}return{show:o,hide:d,handleUpdateShow:c,handleAfterLeave:t,handleCloseClick:l,handleNegativeClick:n,handlePositiveClick:r,handleMaskClick:a,handleEsc:s}},render(){const{handlePositiveClick:e,handleUpdateShow:o,handleNegativeClick:t,handleCloseClick:r,handleAfterLeave:n,handleMaskClick:l,handleEsc:a,to:s,maskClosable:d,show:c}=this;return i($p,{show:c,onUpdateShow:o,onMaskClick:l,onEsc:a,to:s,maskClosable:d,onAfterEnter:this.onAfterEnter,onAfterLeave:n,closeOnEsc:this.closeOnEsc,blockScroll:this.blockScroll,autoFocus:this.autoFocus,transformOrigin:this.transformOrigin,internalAppear:!0,internalDialog:!0},{default:()=>i(ma,Object.assign({},go(this.$props,ga),{style:this.internalStyle,onClose:r,onNegativeClick:t,onPositiveClick:e}))})}}),kp={injectionKey:String,to:[String,Object]},w1=q({name:"DialogProvider",props:kp,setup(){const e=D([]),o={};function t(s={}){const d=it(),c=Wi(Object.assign(Object.assign({},s),{key:d,destroy:()=>{o[`n-dialog-${d}`].hide()}}));return e.value.push(c),c}const r=["info","success","warning","error"].map(s=>d=>t(Object.assign(Object.assign({},d),{type:s})));function n(s){const{value:d}=e;d.splice(d.findIndex(c=>c.key===s),1)}function l(){Object.values(o).forEach(s=>{s.hide()})}const a={create:t,destroyAll:l,info:r[0],success:r[1],warning:r[2],error:r[3]};return Oe(xa,a),Oe(ba,{clickedRef:Vi(64),clickPositionRef:Ui()}),Oe(gp,e),Object.assign(Object.assign({},a),{dialogList:e,dialogInstRefs:o,handleAfterLeave:n})},render(){var e,o;return i(ao,null,[this.dialogList.map(t=>i(Pp,_t(t,["destroy","style"],{internalStyle:t.style,to:this.to,ref:r=>{r===null?delete this.dialogInstRefs[`n-dialog-${t.key}`]:this.dialogInstRefs[`n-dialog-${t.key}`]=r},internalKey:t.key,onInternalAfterLeave:this.handleAfterLeave}))),(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e)])}});function S1(){const e=Se(xa,null);return e===null&&Eo("use-dialog","No outer founded."),e}const ya=e=>{const{textColor1:o,dividerColor:t,fontWeightStrong:r}=e;return{textColor:o,color:t,fontWeight:r}},Ip={name:"Divider",common:Le,self:ya},Bp=Ip,Tp={name:"Divider",common:fe,self:ya},Fp=Tp,Op=g("divider",` - position: relative; - display: flex; - width: 100%; - box-sizing: border-box; - font-size: 16px; - color: var(--n-text-color); - transition: - color .3s var(--n-bezier), - background-color .3s var(--n-bezier); -`,[je("vertical",` - margin-top: 24px; - margin-bottom: 24px; - `,[je("no-title",` - display: flex; - align-items: center; - `)]),y("title",` - display: flex; - align-items: center; - margin-left: 12px; - margin-right: 12px; - white-space: nowrap; - font-weight: var(--n-font-weight); - `),P("title-position-left",[y("line",[P("left",{width:"28px"})])]),P("title-position-right",[y("line",[P("right",{width:"28px"})])]),P("dashed",[y("line",` - background-color: #0000; - height: 0px; - width: 100%; - border-style: dashed; - border-width: 1px 0 0; - `)]),P("vertical",` - display: inline-block; - height: 1em; - margin: 0 8px; - vertical-align: middle; - width: 1px; - `),y("line",` - border: none; - transition: background-color .3s var(--n-bezier), border-color .3s var(--n-bezier); - height: 1px; - width: 100%; - margin: 0; - `),je("dashed",[y("line",{backgroundColor:"var(--n-color)"})]),P("dashed",[y("line",{borderColor:"var(--n-color)"})]),P("vertical",{backgroundColor:"var(--n-color)"})]),Mp=Object.assign(Object.assign({},ne.props),{titlePlacement:{type:String,default:"center"},dashed:Boolean,vertical:Boolean}),z1=q({name:"Divider",props:Mp,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=ne("Divider","-divider",Op,Bp,e,o),n=R(()=>{const{common:{cubicBezierEaseInOut:a},self:{color:s,textColor:d,fontWeight:c}}=r.value;return{"--n-bezier":a,"--n-color":s,"--n-text-color":d,"--n-font-weight":c}}),l=t?Ae("divider",void 0,n,e):void 0;return{mergedClsPrefix:o,cssVars:t?void 0:n,themeClass:l==null?void 0:l.themeClass,onRender:l==null?void 0:l.onRender}},render(){var e;const{$slots:o,titlePlacement:t,vertical:r,dashed:n,cssVars:l,mergedClsPrefix:a}=this;return(e=this.onRender)===null||e===void 0||e.call(this),i("div",{role:"separator",class:[`${a}-divider`,this.themeClass,{[`${a}-divider--vertical`]:r,[`${a}-divider--no-title`]:!o.default,[`${a}-divider--dashed`]:n,[`${a}-divider--title-position-${t}`]:o.default&&t}],style:l},r?null:i("div",{class:`${a}-divider__line ${a}-divider__line--left`}),!r&&o.default?i(ao,null,i("div",{class:`${a}-divider__title`},this.$slots),i("div",{class:`${a}-divider__line ${a}-divider__line--right`})):null)}}),wa=e=>{const{modalColor:o,textColor1:t,textColor2:r,boxShadow3:n,lineHeight:l,fontWeightStrong:a,dividerColor:s,closeColorHover:d,closeColorPressed:c,closeIconColor:u,closeIconColorHover:f,closeIconColorPressed:p,borderRadius:v,primaryColorHover:h}=e;return{bodyPadding:"16px 24px",headerPadding:"16px 24px",footerPadding:"16px 24px",color:o,textColor:r,titleTextColor:t,titleFontSize:"18px",titleFontWeight:a,boxShadow:n,lineHeight:l,headerBorderBottom:`1px solid ${s}`,footerBorderTop:`1px solid ${s}`,closeIconColor:u,closeIconColorHover:f,closeIconColorPressed:p,closeSize:"22px",closeIconSize:"18px",closeColorHover:d,closeColorPressed:c,closeBorderRadius:v,resizableTriggerColorHover:h}},_p={name:"Drawer",common:Le,peers:{Scrollbar:Mr},self:wa},Dp=_p,Lp={name:"Drawer",common:fe,peers:{Scrollbar:zo},self:wa},Hp=Lp,Ap=q({name:"NDrawerContent",inheritAttrs:!1,props:{blockScroll:Boolean,show:{type:Boolean,default:void 0},displayDirective:{type:String,required:!0},placement:{type:String,required:!0},contentStyle:[Object,String],nativeScrollbar:{type:Boolean,required:!0},scrollbarProps:Object,trapFocus:{type:Boolean,default:!0},autoFocus:{type:Boolean,default:!0},showMask:{type:[Boolean,String],required:!0},resizable:Boolean,onClickoutside:Function,onAfterLeave:Function,onAfterEnter:Function,onEsc:Function},setup(e){const o=D(!!e.show),t=D(null),r=Se(bn);let n=0,l="",a=null;const s=D(!1),d=D(!1),c=R(()=>e.placement==="top"||e.placement==="bottom"),{mergedClsPrefixRef:u,mergedRtlRef:f}=ke(e),p=to("Drawer",f,u),v=w=>{d.value=!0,n=c.value?w.clientY:w.clientX,l=document.body.style.cursor,document.body.style.cursor=c.value?"ns-resize":"ew-resize",document.body.addEventListener("mousemove",S),document.body.addEventListener("mouseleave",T),document.body.addEventListener("mouseup",B)},h=()=>{a!==null&&(window.clearTimeout(a),a=null),d.value?s.value=!0:a=window.setTimeout(()=>{s.value=!0},300)},m=()=>{a!==null&&(window.clearTimeout(a),a=null),s.value=!1},{doUpdateHeight:b,doUpdateWidth:x}=r,S=w=>{var O,k;if(d.value)if(c.value){let $=((O=t.value)===null||O===void 0?void 0:O.offsetHeight)||0;const L=n-w.clientY;$+=e.placement==="bottom"?L:-L,b($),n=w.clientY}else{let $=((k=t.value)===null||k===void 0?void 0:k.offsetWidth)||0;const L=n-w.clientX;$+=e.placement==="right"?L:-L,x($),n=w.clientX}},B=()=>{d.value&&(n=0,d.value=!1,document.body.style.cursor=l,document.body.removeEventListener("mousemove",S),document.body.removeEventListener("mouseup",B),document.body.removeEventListener("mouseleave",T))},T=B;oo(()=>{e.show&&(o.value=!0)}),Ke(()=>e.show,w=>{w||B()}),wo(()=>{B()});const z=R(()=>{const{show:w}=e,O=[[Go,w]];return e.showMask||O.push([Ft,e.onClickoutside,void 0,{capture:!0}]),O});function I(){var w;o.value=!1,(w=e.onAfterLeave)===null||w===void 0||w.call(e)}return il(R(()=>e.blockScroll&&o.value)),Oe(cr,t),Oe(Dt,null),Oe(dr,null),{bodyRef:t,rtlEnabled:p,mergedClsPrefix:r.mergedClsPrefixRef,isMounted:r.isMountedRef,mergedTheme:r.mergedThemeRef,displayed:o,transitionName:R(()=>({right:"slide-in-from-right-transition",left:"slide-in-from-left-transition",top:"slide-in-from-top-transition",bottom:"slide-in-from-bottom-transition"})[e.placement]),handleAfterLeave:I,bodyDirectives:z,handleMousedownResizeTrigger:v,handleMouseenterResizeTrigger:h,handleMouseleaveResizeTrigger:m,isDragging:d,isHoverOnResizeTrigger:s}},render(){const{$slots:e,mergedClsPrefix:o}=this;return this.displayDirective==="show"||this.displayed||this.show?Lo(i("div",{role:"none"},i(hn,{disabled:!this.showMask||!this.trapFocus,active:this.show,autoFocus:this.autoFocus,onEsc:this.onEsc},{default:()=>i(no,{name:this.transitionName,appear:this.isMounted,onAfterEnter:this.onAfterEnter,onAfterLeave:this.handleAfterLeave},{default:()=>Lo(i("div",ko(this.$attrs,{role:"dialog",ref:"bodyRef","aria-modal":"true",class:[`${o}-drawer`,this.rtlEnabled&&`${o}-drawer--rtl`,`${o}-drawer--${this.placement}-placement`,this.isDragging&&`${o}-drawer--unselectable`,this.nativeScrollbar&&`${o}-drawer--native-scrollbar`]}),[this.resizable?i("div",{class:[`${o}-drawer__resize-trigger`,(this.isDragging||this.isHoverOnResizeTrigger)&&`${o}-drawer__resize-trigger--hover`],onMouseenter:this.handleMouseenterResizeTrigger,onMouseleave:this.handleMouseleaveResizeTrigger,onMousedown:this.handleMousedownResizeTrigger}):null,this.nativeScrollbar?i("div",{class:`${o}-drawer-content-wrapper`,style:this.contentStyle,role:"none"},e):i(ur,Object.assign({},this.scrollbarProps,{contentStyle:this.contentStyle,contentClass:`${o}-drawer-content-wrapper`,theme:this.mergedTheme.peers.Scrollbar,themeOverrides:this.mergedTheme.peerOverrides.Scrollbar}),e)]),this.bodyDirectives)})})),[[Go,this.displayDirective==="if"||this.displayed||this.show]]):null}}),{cubicBezierEaseIn:Ep,cubicBezierEaseOut:jp}=So;function Wp({duration:e="0.3s",leaveDuration:o="0.2s",name:t="slide-in-from-right"}={}){return[C(`&.${t}-transition-leave-active`,{transition:`transform ${o} ${Ep}`}),C(`&.${t}-transition-enter-active`,{transition:`transform ${e} ${jp}`}),C(`&.${t}-transition-enter-to`,{transform:"translateX(0)"}),C(`&.${t}-transition-enter-from`,{transform:"translateX(100%)"}),C(`&.${t}-transition-leave-from`,{transform:"translateX(0)"}),C(`&.${t}-transition-leave-to`,{transform:"translateX(100%)"})]}const{cubicBezierEaseIn:Np,cubicBezierEaseOut:Vp}=So;function Up({duration:e="0.3s",leaveDuration:o="0.2s",name:t="slide-in-from-left"}={}){return[C(`&.${t}-transition-leave-active`,{transition:`transform ${o} ${Np}`}),C(`&.${t}-transition-enter-active`,{transition:`transform ${e} ${Vp}`}),C(`&.${t}-transition-enter-to`,{transform:"translateX(0)"}),C(`&.${t}-transition-enter-from`,{transform:"translateX(-100%)"}),C(`&.${t}-transition-leave-from`,{transform:"translateX(0)"}),C(`&.${t}-transition-leave-to`,{transform:"translateX(-100%)"})]}const{cubicBezierEaseIn:Kp,cubicBezierEaseOut:Gp}=So;function qp({duration:e="0.3s",leaveDuration:o="0.2s",name:t="slide-in-from-top"}={}){return[C(`&.${t}-transition-leave-active`,{transition:`transform ${o} ${Kp}`}),C(`&.${t}-transition-enter-active`,{transition:`transform ${e} ${Gp}`}),C(`&.${t}-transition-enter-to`,{transform:"translateY(0)"}),C(`&.${t}-transition-enter-from`,{transform:"translateY(-100%)"}),C(`&.${t}-transition-leave-from`,{transform:"translateY(0)"}),C(`&.${t}-transition-leave-to`,{transform:"translateY(-100%)"})]}const{cubicBezierEaseIn:Yp,cubicBezierEaseOut:Xp}=So;function Zp({duration:e="0.3s",leaveDuration:o="0.2s",name:t="slide-in-from-bottom"}={}){return[C(`&.${t}-transition-leave-active`,{transition:`transform ${o} ${Yp}`}),C(`&.${t}-transition-enter-active`,{transition:`transform ${e} ${Xp}`}),C(`&.${t}-transition-enter-to`,{transform:"translateY(0)"}),C(`&.${t}-transition-enter-from`,{transform:"translateY(100%)"}),C(`&.${t}-transition-leave-from`,{transform:"translateY(0)"}),C(`&.${t}-transition-leave-to`,{transform:"translateY(100%)"})]}const Qp=C([g("drawer",` - word-break: break-word; - line-height: var(--n-line-height); - position: absolute; - pointer-events: all; - box-shadow: var(--n-box-shadow); - transition: - background-color .3s var(--n-bezier), - color .3s var(--n-bezier); - background-color: var(--n-color); - color: var(--n-text-color); - box-sizing: border-box; - `,[Wp(),Up(),qp(),Zp(),P("unselectable",` - user-select: none; - -webkit-user-select: none; - `),P("native-scrollbar",[g("drawer-content-wrapper",` - overflow: auto; - height: 100%; - `)]),y("resize-trigger",` - position: absolute; - background-color: #0000; - transition: background-color .3s var(--n-bezier); - `,[P("hover",` - background-color: var(--n-resize-trigger-color-hover); - `)]),g("drawer-content-wrapper",` - box-sizing: border-box; - `),g("drawer-content",` - height: 100%; - display: flex; - flex-direction: column; - `,[P("native-scrollbar",[g("drawer-body-content-wrapper",` - height: 100%; - overflow: auto; - `)]),g("drawer-body",` - flex: 1 0 0; - overflow: hidden; - `),g("drawer-body-content-wrapper",` - box-sizing: border-box; - padding: var(--n-body-padding); - `),g("drawer-header",` - font-weight: var(--n-title-font-weight); - line-height: 1; - font-size: var(--n-title-font-size); - color: var(--n-title-text-color); - padding: var(--n-header-padding); - transition: border .3s var(--n-bezier); - border-bottom: 1px solid var(--n-divider-color); - border-bottom: var(--n-header-border-bottom); - display: flex; - justify-content: space-between; - align-items: center; - `,[y("close",` - margin-left: 6px; - transition: - background-color .3s var(--n-bezier), - color .3s var(--n-bezier); - `)]),g("drawer-footer",` - display: flex; - justify-content: flex-end; - border-top: var(--n-footer-border-top); - transition: border .3s var(--n-bezier); - padding: var(--n-footer-padding); - `)]),P("right-placement",` - top: 0; - bottom: 0; - right: 0; - `,[y("resize-trigger",` - width: 3px; - height: 100%; - top: 0; - left: 0; - transform: translateX(-1.5px); - cursor: ew-resize; - `)]),P("left-placement",` - top: 0; - bottom: 0; - left: 0; - `,[y("resize-trigger",` - width: 3px; - height: 100%; - top: 0; - right: 0; - transform: translateX(1.5px); - cursor: ew-resize; - `)]),P("top-placement",` - top: 0; - left: 0; - right: 0; - `,[y("resize-trigger",` - width: 100%; - height: 3px; - bottom: 0; - left: 0; - transform: translateY(1.5px); - cursor: ns-resize; - `)]),P("bottom-placement",` - left: 0; - bottom: 0; - right: 0; - `,[y("resize-trigger",` - width: 100%; - height: 3px; - top: 0; - left: 0; - transform: translateY(-1.5px); - cursor: ns-resize; - `)])]),C("body",[C(">",[g("drawer-container",{position:"fixed"})])]),g("drawer-container",` - position: relative; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - pointer-events: none; - `,[C("> *",{pointerEvents:"all"})]),g("drawer-mask",` - background-color: rgba(0, 0, 0, .3); - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - `,[P("invisible",` - background-color: rgba(0, 0, 0, 0) - `),Mt({enterDuration:"0.2s",leaveDuration:"0.2s",enterCubicBezier:"var(--n-bezier-in)",leaveCubicBezier:"var(--n-bezier-out)"})])]),Jp=Object.assign(Object.assign({},ne.props),{show:Boolean,width:[Number,String],height:[Number,String],placement:{type:String,default:"right"},maskClosable:{type:Boolean,default:!0},showMask:{type:[Boolean,String],default:!0},to:[String,Object],displayDirective:{type:String,default:"if"},nativeScrollbar:{type:Boolean,default:!0},zIndex:Number,onMaskClick:Function,scrollbarProps:Object,contentStyle:[Object,String],trapFocus:{type:Boolean,default:!0},onEsc:Function,autoFocus:{type:Boolean,default:!0},closeOnEsc:{type:Boolean,default:!0},blockScroll:{type:Boolean,default:!0},resizable:Boolean,defaultWidth:{type:[Number,String],default:251},defaultHeight:{type:[Number,String],default:251},onUpdateWidth:[Function,Array],onUpdateHeight:[Function,Array],"onUpdate:width":[Function,Array],"onUpdate:height":[Function,Array],"onUpdate:show":[Function,Array],onUpdateShow:[Function,Array],onAfterEnter:Function,onAfterLeave:Function,drawerStyle:[String,Object],drawerClass:String,target:null,onShow:Function,onHide:Function}),$1=q({name:"Drawer",inheritAttrs:!1,props:Jp,setup(e){const{mergedClsPrefixRef:o,namespaceRef:t,inlineThemeDisabled:r}=ke(e),n=Ct(),l=ne("Drawer","-drawer",Qp,Dp,e,o),a=D(e.defaultWidth),s=D(e.defaultHeight),d=so(le(e,"width"),a),c=so(le(e,"height"),s),u=R(()=>{const{placement:z}=e;return z==="top"||z==="bottom"?"":eo(d.value)}),f=R(()=>{const{placement:z}=e;return z==="left"||z==="right"?"":eo(c.value)}),p=z=>{const{onUpdateWidth:I,"onUpdate:width":w}=e;I&&ae(I,z),w&&ae(w,z),a.value=z},v=z=>{const{onUpdateHeight:I,"onUpdate:width":w}=e;I&&ae(I,z),w&&ae(w,z),s.value=z},h=R(()=>[{width:u.value,height:f.value},e.drawerStyle||""]);function m(z){const{onMaskClick:I,maskClosable:w}=e;w&&S(!1),I&&I(z)}const b=ll();function x(z){var I;(I=e.onEsc)===null||I===void 0||I.call(e),e.show&&e.closeOnEsc&&Ji(z)&&!b.value&&S(!1)}function S(z){const{onHide:I,onUpdateShow:w,"onUpdate:show":O}=e;w&&ae(w,z),O&&ae(O,z),I&&!z&&ae(I,z)}Oe(bn,{isMountedRef:n,mergedThemeRef:l,mergedClsPrefixRef:o,doUpdateShow:S,doUpdateHeight:v,doUpdateWidth:p});const B=R(()=>{const{common:{cubicBezierEaseInOut:z,cubicBezierEaseIn:I,cubicBezierEaseOut:w},self:{color:O,textColor:k,boxShadow:$,lineHeight:L,headerPadding:M,footerPadding:j,bodyPadding:E,titleFontSize:U,titleTextColor:_,titleFontWeight:V,headerBorderBottom:te,footerBorderTop:N,closeIconColor:G,closeIconColorHover:Ce,closeIconColorPressed:X,closeColorHover:ve,closeColorPressed:he,closeIconSize:be,closeSize:me,closeBorderRadius:se,resizableTriggerColorHover:Re}}=l.value;return{"--n-line-height":L,"--n-color":O,"--n-text-color":k,"--n-box-shadow":$,"--n-bezier":z,"--n-bezier-out":w,"--n-bezier-in":I,"--n-header-padding":M,"--n-body-padding":E,"--n-footer-padding":j,"--n-title-text-color":_,"--n-title-font-size":U,"--n-title-font-weight":V,"--n-header-border-bottom":te,"--n-footer-border-top":N,"--n-close-icon-color":G,"--n-close-icon-color-hover":Ce,"--n-close-icon-color-pressed":X,"--n-close-size":me,"--n-close-color-hover":ve,"--n-close-color-pressed":he,"--n-close-icon-size":be,"--n-close-border-radius":se,"--n-resize-trigger-color-hover":Re}}),T=r?Ae("drawer",void 0,B,e):void 0;return{mergedClsPrefix:o,namespace:t,mergedBodyStyle:h,handleMaskClick:m,handleEsc:x,mergedTheme:l,cssVars:r?void 0:B,themeClass:T==null?void 0:T.themeClass,onRender:T==null?void 0:T.onRender,isMounted:n}},render(){const{mergedClsPrefix:e}=this;return i(pn,{to:this.to,show:this.show},{default:()=>{var o;return(o=this.onRender)===null||o===void 0||o.call(this),Lo(i("div",{class:[`${e}-drawer-container`,this.namespace,this.themeClass],style:this.cssVars,role:"none"},this.showMask?i(no,{name:"fade-in-transition",appear:this.isMounted},{default:()=>this.show?i("div",{"aria-hidden":!0,class:[`${e}-drawer-mask`,this.showMask==="transparent"&&`${e}-drawer-mask--invisible`],onClick:this.handleMaskClick}):null}):null,i(Ap,Object.assign({},this.$attrs,{class:[this.drawerClass,this.$attrs.class],style:[this.mergedBodyStyle,this.$attrs.style],blockScroll:this.blockScroll,contentStyle:this.contentStyle,placement:this.placement,scrollbarProps:this.scrollbarProps,show:this.show,displayDirective:this.displayDirective,nativeScrollbar:this.nativeScrollbar,onAfterEnter:this.onAfterEnter,onAfterLeave:this.onAfterLeave,trapFocus:this.trapFocus,autoFocus:this.autoFocus,resizable:this.resizable,showMask:this.showMask,onEsc:this.handleEsc,onClickoutside:this.handleMaskClick}),this.$slots)),[[Tr,{zIndex:this.zIndex,enabled:this.show}]])}})}}),ev={title:{type:String},headerStyle:[Object,String],footerStyle:[Object,String],bodyStyle:[Object,String],bodyContentStyle:[Object,String],nativeScrollbar:{type:Boolean,default:!0},scrollbarProps:Object,closable:Boolean},R1=q({name:"DrawerContent",props:ev,setup(){const e=Se(bn,null);e||Eo("drawer-content","`n-drawer-content` must be placed inside `n-drawer`.");const{doUpdateShow:o}=e;function t(){o(!1)}return{handleCloseClick:t,mergedTheme:e.mergedThemeRef,mergedClsPrefix:e.mergedClsPrefixRef}},render(){const{title:e,mergedClsPrefix:o,nativeScrollbar:t,mergedTheme:r,bodyStyle:n,bodyContentStyle:l,headerStyle:a,footerStyle:s,scrollbarProps:d,closable:c,$slots:u}=this;return i("div",{role:"none",class:[`${o}-drawer-content`,t&&`${o}-drawer-content--native-scrollbar`]},u.header||e||c?i("div",{class:`${o}-drawer-header`,style:a,role:"none"},i("div",{class:`${o}-drawer-header__main`,role:"heading","aria-level":"1"},u.header!==void 0?u.header():e),c&&i(St,{onClick:this.handleCloseClick,clsPrefix:o,class:`${o}-drawer-header__close`,absolute:!0})):null,t?i("div",{class:`${o}-drawer-body`,style:n,role:"none"},i("div",{class:`${o}-drawer-body-content-wrapper`,style:l,role:"none"},u)):i(ur,Object.assign({themeOverrides:r.peerOverrides.Scrollbar,theme:r.peers.Scrollbar},d,{class:`${o}-drawer-body`,contentClass:`${o}-drawer-body-content-wrapper`,contentStyle:l}),u),u.footer?i("div",{class:`${o}-drawer-footer`,style:s,role:"none"},u.footer()):null)}}),Sa={actionMargin:"0 0 0 20px",actionMarginRtl:"0 20px 0 0"},ov={name:"DynamicInput",common:fe,peers:{Input:Ho,Button:$o},self(){return Sa}},tv=ov,rv=()=>Sa,nv={name:"DynamicInput",common:Le,peers:{Input:pr,Button:Wt},self:rv},iv=nv,Bn="n-dynamic-input",lv=q({name:"DynamicInputInputPreset",props:{clsPrefix:{type:String,required:!0},value:{type:String,default:""},disabled:Boolean,parentPath:String,path:String,onUpdateValue:{type:Function,required:!0}},setup(){const{mergedThemeRef:e,placeholderRef:o}=Se(Bn);return{mergedTheme:e,placeholder:o}},render(){const{mergedTheme:e,placeholder:o,value:t,clsPrefix:r,onUpdateValue:n,disabled:l}=this;return i("div",{class:`${r}-dynamic-input-preset-input`},i(xt,{theme:e.peers.Input,"theme-overrides":e.peerOverrides.Input,value:t,placeholder:o,onUpdateValue:n,disabled:l}))}}),av=q({name:"DynamicInputPairPreset",props:{clsPrefix:{type:String,required:!0},value:{type:Object,default:()=>({key:"",value:""})},disabled:Boolean,parentPath:String,path:String,onUpdateValue:{type:Function,required:!0}},setup(e){const{mergedThemeRef:o,keyPlaceholderRef:t,valuePlaceholderRef:r}=Se(Bn);return{mergedTheme:o,keyPlaceholder:t,valuePlaceholder:r,handleKeyInput(n){e.onUpdateValue({key:n,value:e.value.value})},handleValueInput(n){e.onUpdateValue({key:e.value.key,value:n})}}},render(){const{mergedTheme:e,keyPlaceholder:o,valuePlaceholder:t,value:r,clsPrefix:n,disabled:l}=this;return i("div",{class:`${n}-dynamic-input-preset-pair`},i(xt,{theme:e.peers.Input,"theme-overrides":e.peerOverrides.Input,value:r.key,class:`${n}-dynamic-input-pair-input`,placeholder:o,onUpdateValue:this.handleKeyInput,disabled:l}),i(xt,{theme:e.peers.Input,"theme-overrides":e.peerOverrides.Input,value:r.value,class:`${n}-dynamic-input-pair-input`,placeholder:t,onUpdateValue:this.handleValueInput,disabled:l}))}}),sv=g("dynamic-input",{width:"100%"},[g("dynamic-input-item",` - margin-bottom: 10px; - display: flex; - flex-wrap: nowrap; - `,[g("dynamic-input-preset-input",{flex:1,alignItems:"center"}),g("dynamic-input-preset-pair",` - flex: 1; - display: flex; - align-items: center; - `,[g("dynamic-input-pair-input",[C("&:first-child",{"margin-right":"12px"})])]),y("action",` - align-self: flex-start; - display: flex; - justify-content: flex-end; - flex-shrink: 0; - flex-grow: 0; - margin: var(--action-margin); - `,[P("icon",{cursor:"pointer"})]),C("&:last-child",{marginBottom:0})]),g("form-item",` - padding-top: 0 !important; - margin-right: 0 !important; - `,[g("form-item-blank",{paddingTop:"0 !important"})])]),xr=new WeakMap,dv=Object.assign(Object.assign({},ne.props),{max:Number,min:{type:Number,default:0},value:Array,defaultValue:{type:Array,default:()=>[]},preset:{type:String,default:"input"},keyField:String,itemStyle:[String,Object],keyPlaceholder:{type:String,default:""},valuePlaceholder:{type:String,default:""},placeholder:{type:String,default:""},disabled:Boolean,showSortButton:Boolean,createButtonProps:Object,onCreate:Function,onRemove:Function,"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],onClear:Function,onInput:[Function,Array]}),P1=q({name:"DynamicInput",props:dv,setup(e,{slots:o}){const{mergedComponentPropsRef:t,mergedClsPrefixRef:r,mergedRtlRef:n,inlineThemeDisabled:l}=ke(),a=Se($r,null),s=D(e.defaultValue),d=le(e,"value"),c=so(d,s),u=ne("DynamicInput","-dynamic-input",sv,iv,e,r),f=R(()=>{const{value:k}=c;if(Array.isArray(k)){const{max:$}=e;return $!==void 0&&k.length>=$}return!1}),p=R(()=>{const{value:k}=c;return Array.isArray(k)?k.length<=e.min:!0}),v=R(()=>{var k,$;return($=(k=t==null?void 0:t.value)===null||k===void 0?void 0:k.DynamicInput)===null||$===void 0?void 0:$.buttonSize});function h(k){const{onInput:$,"onUpdate:value":L,onUpdateValue:M}=e;$&&ae($,k),L&&ae(L,k),M&&ae(M,k),s.value=k}function m(k,$){if(k==null||typeof k!="object")return $;const L=Nr(k)?Vr(k):k;let M=xr.get(L);return M===void 0&&xr.set(L,M=it()),M}function b(k,$){const{value:L}=c,M=Array.from(L??[]),j=M[k];if(M[k]=$,j&&$&&typeof j=="object"&&typeof $=="object"){const E=Nr(j)?Vr(j):j,U=Nr($)?Vr($):$,_=xr.get(E);_!==void 0&&xr.set(U,_)}h(M)}function x(){S(-1)}function S(k){const{value:$}=c,{onCreate:L}=e,M=Array.from($??[]);if(L)M.splice(k+1,0,L(k+1)),h(M);else if(o.default)M.splice(k+1,0,null),h(M);else switch(e.preset){case"input":M.splice(k+1,0,""),h(M);break;case"pair":M.splice(k+1,0,{key:"",value:""}),h(M);break}}function B(k){const{value:$}=c;if(!Array.isArray($))return;const{min:L}=e;if($.length<=L)return;const{onRemove:M}=e;M&&M(k);const j=Array.from($);j.splice(k,1),h(j)}function T(k,$,L){if($<0||L<0||$>=k.length||L>=k.length||$===L)return;const M=k[$];k[$]=k[L],k[L]=M}function z(k,$){const{value:L}=c;if(!Array.isArray(L))return;const M=Array.from(L);k==="up"&&T(M,$,$-1),k==="down"&&T(M,$,$+1),h(M)}Oe(Bn,{mergedThemeRef:u,keyPlaceholderRef:le(e,"keyPlaceholder"),valuePlaceholderRef:le(e,"valuePlaceholder"),placeholderRef:le(e,"placeholder")});const I=to("DynamicInput",n,r),w=R(()=>{const{self:{actionMargin:k,actionMarginRtl:$}}=u.value;return{"--action-margin":k,"--action-margin-rtl":$}}),O=l?Ae("dynamic-input",void 0,w,e):void 0;return{locale:Xo("DynamicInput").localeRef,rtlEnabled:I,buttonSize:v,mergedClsPrefix:r,NFormItem:a,uncontrolledValue:s,mergedValue:c,insertionDisabled:f,removeDisabled:p,handleCreateClick:x,ensureKey:m,handleValueChange:b,remove:B,move:z,createItem:S,mergedTheme:u,cssVars:l?void 0:w,themeClass:O==null?void 0:O.themeClass,onRender:O==null?void 0:O.onRender}},render(){const{$slots:e,buttonSize:o,mergedClsPrefix:t,mergedValue:r,locale:n,mergedTheme:l,keyField:a,itemStyle:s,preset:d,showSortButton:c,NFormItem:u,ensureKey:f,handleValueChange:p,remove:v,createItem:h,move:m,onRender:b,disabled:x}=this;return b==null||b(),i("div",{class:[`${t}-dynamic-input`,this.rtlEnabled&&`${t}-dynamic-input--rtl`,this.themeClass],style:this.cssVars},!Array.isArray(r)||r.length===0?i(Po,Object.assign({block:!0,ghost:!0,dashed:!0,size:o},this.createButtonProps,{disabled:this.insertionDisabled||x,theme:l.peers.Button,themeOverrides:l.peerOverrides.Button,onClick:this.handleCreateClick}),{default:()=>lo(e["create-button-default"],()=>[n.create]),icon:()=>lo(e["create-button-icon"],()=>[i(De,{clsPrefix:t},{default:()=>i(tr,null)})])}):r.map((S,B)=>i("div",{key:a?S[a]:f(S,B),"data-key":a?S[a]:f(S,B),class:`${t}-dynamic-input-item`,style:s},an(e.default,{value:r[B],index:B},()=>[d==="input"?i(lv,{disabled:x,clsPrefix:t,value:r[B],parentPath:u?u.path.value:void 0,path:u!=null&&u.path.value?`${u.path.value}[${B}]`:void 0,onUpdateValue:T=>{p(B,T)}}):d==="pair"?i(av,{disabled:x,clsPrefix:t,value:r[B],parentPath:u?u.path.value:void 0,path:u!=null&&u.path.value?`${u.path.value}[${B}]`:void 0,onUpdateValue:T=>{p(B,T)}}):null]),an(e.action,{value:r[B],index:B,create:h,remove:v,move:m},()=>[i("div",{class:`${t}-dynamic-input-item__action`},i(ff,{size:o},{default:()=>[i(Po,{disabled:this.removeDisabled||x,theme:l.peers.Button,themeOverrides:l.peerOverrides.Button,circle:!0,onClick:()=>{v(B)}},{icon:()=>i(De,{clsPrefix:t},{default:()=>i(cl,null)})}),i(Po,{disabled:this.insertionDisabled||x,circle:!0,theme:l.peers.Button,themeOverrides:l.peerOverrides.Button,onClick:()=>{h(B)}},{icon:()=>i(De,{clsPrefix:t},{default:()=>i(tr,null)})}),c?i(Po,{disabled:B===0||x,circle:!0,theme:l.peers.Button,themeOverrides:l.peerOverrides.Button,onClick:()=>{m("up",B)}},{icon:()=>i(De,{clsPrefix:t},{default:()=>i(Ed,null)})}):null,c?i(Po,{disabled:B===r.length-1||x,circle:!0,theme:l.peers.Button,themeOverrides:l.peerOverrides.Button,onClick:()=>{m("down",B)}},{icon:()=>i(De,{clsPrefix:t},{default:()=>i(Ad,null)})}):null]}))]))))}}),za={gapSmall:"4px 8px",gapMedium:"8px 12px",gapLarge:"12px 16px"},cv={name:"Space",self(){return za}},$a=cv,uv=()=>za,fv={name:"Space",self:uv},hv=fv;let Jr;const pv=()=>{if(!jo)return!0;if(Jr===void 0){const e=document.createElement("div");e.style.display="flex",e.style.flexDirection="column",e.style.rowGap="1px",e.appendChild(document.createElement("div")),e.appendChild(document.createElement("div")),document.body.appendChild(e);const o=e.scrollHeight===1;return document.body.removeChild(e),Jr=o}return Jr},vv=Object.assign(Object.assign({},ne.props),{align:String,justify:{type:String,default:"start"},inline:Boolean,vertical:Boolean,size:{type:[String,Number,Array],default:"medium"},wrapItem:{type:Boolean,default:!0},itemStyle:[String,Object],wrap:{type:Boolean,default:!0},internalUseGap:{type:Boolean,default:void 0}}),k1=q({name:"Space",props:vv,setup(e){const{mergedClsPrefixRef:o,mergedRtlRef:t}=ke(e),r=ne("Space","-space",void 0,hv,e,o),n=to("Space",t,o);return{useGap:pv(),rtlEnabled:n,mergedClsPrefix:o,margin:R(()=>{const{size:l}=e;if(Array.isArray(l))return{horizontal:l[0],vertical:l[1]};if(typeof l=="number")return{horizontal:l,vertical:l};const{self:{[W("gap",l)]:a}}=r.value,{row:s,col:d}=Qs(a);return{horizontal:Mo(d),vertical:Mo(s)}})}},render(){const{vertical:e,align:o,inline:t,justify:r,itemStyle:n,margin:l,wrap:a,mergedClsPrefix:s,rtlEnabled:d,useGap:c,wrapItem:u,internalUseGap:f}=this,p=tt(vn(this));if(!p.length)return null;const v=`${l.horizontal}px`,h=`${l.horizontal/2}px`,m=`${l.vertical}px`,b=`${l.vertical/2}px`,x=p.length-1,S=r.startsWith("space-");return i("div",{role:"none",class:[`${s}-space`,d&&`${s}-space--rtl`],style:{display:t?"inline-flex":"flex",flexDirection:e?"column":"row",justifyContent:["start","end"].includes(r)?"flex-"+r:r,flexWrap:!a||e?"nowrap":"wrap",marginTop:c||e?"":`-${b}`,marginBottom:c||e?"":`-${b}`,alignItems:o,gap:c?`${l.vertical}px ${l.horizontal}px`:""}},!u&&(c||f)?p:p.map((B,T)=>i("div",{role:"none",style:[n,{maxWidth:"100%"},c?"":e?{marginBottom:T!==x?m:""}:d?{marginLeft:S?r==="space-between"&&T===x?"":h:T!==x?v:"",marginRight:S?r==="space-between"&&T===0?"":h:"",paddingTop:b,paddingBottom:b}:{marginRight:S?r==="space-between"&&T===x?"":h:T!==x?v:"",marginLeft:S?r==="space-between"&&T===0?"":h:"",paddingTop:b,paddingBottom:b}]},B)))}}),gv={name:"DynamicTags",common:fe,peers:{Input:Ho,Button:$o,Tag:Sl,Space:$a},self(){return{inputWidth:"64px"}}},mv=gv,bv={name:"Element",common:fe},xv=bv,Cv={feedbackPadding:"4px 0 0 2px",feedbackHeightSmall:"24px",feedbackHeightMedium:"24px",feedbackHeightLarge:"26px",feedbackFontSizeSmall:"13px",feedbackFontSizeMedium:"14px",feedbackFontSizeLarge:"14px",labelFontSizeLeftSmall:"14px",labelFontSizeLeftMedium:"14px",labelFontSizeLeftLarge:"15px",labelFontSizeTopSmall:"13px",labelFontSizeTopMedium:"14px",labelFontSizeTopLarge:"14px",labelHeightSmall:"24px",labelHeightMedium:"26px",labelHeightLarge:"28px",labelPaddingVertical:"0 0 6px 2px",labelPaddingHorizontal:"0 12px 0 0",labelTextAlignVertical:"left",labelTextAlignHorizontal:"right",labelFontWeight:"400"},Ra=e=>{const{heightSmall:o,heightMedium:t,heightLarge:r,textColor1:n,errorColor:l,warningColor:a,lineHeight:s,textColor3:d}=e;return Object.assign(Object.assign({},Cv),{blankHeightSmall:o,blankHeightMedium:t,blankHeightLarge:r,lineHeight:s,labelTextColor:n,asteriskColor:l,feedbackTextColorError:l,feedbackTextColorWarning:a,feedbackTextColor:d})},yv={name:"Form",common:Le,self:Ra},Pa=yv,wv={name:"Form",common:fe,self:Ra},Sv=wv,zv=g("form",[P("inline",` - width: 100%; - display: inline-flex; - align-items: flex-start; - align-content: space-around; - `,[g("form-item",{width:"auto",marginRight:"18px"},[C("&:last-child",{marginRight:0})])])]),vr="n-form",ka="n-form-item-insts";var $v=globalThis&&globalThis.__awaiter||function(e,o,t,r){function n(l){return l instanceof t?l:new t(function(a){a(l)})}return new(t||(t=Promise))(function(l,a){function s(u){try{c(r.next(u))}catch(f){a(f)}}function d(u){try{c(r.throw(u))}catch(f){a(f)}}function c(u){u.done?l(u.value):n(u.value).then(s,d)}c((r=r.apply(e,o||[])).next())})};const Rv=Object.assign(Object.assign({},ne.props),{inline:Boolean,labelWidth:[Number,String],labelAlign:String,labelPlacement:{type:String,default:"top"},model:{type:Object,default:()=>{}},rules:Object,disabled:Boolean,size:String,showRequireMark:{type:Boolean,default:void 0},requireMarkPlacement:String,showFeedback:{type:Boolean,default:!0},onSubmit:{type:Function,default:e=>{e.preventDefault()}},showLabel:{type:Boolean,default:void 0},validateMessages:Object}),I1=q({name:"Form",props:Rv,setup(e){const{mergedClsPrefixRef:o}=ke(e);ne("Form","-form",zv,Pa,e,o);const t={},r=D(void 0),n=d=>{const c=r.value;(c===void 0||d>=c)&&(r.value=d)};function l(d,c=()=>!0){return $v(this,void 0,void 0,function*(){yield new Promise((u,f)=>{const p=[];for(const v of yo(t)){const h=t[v];for(const m of h)m.path&&p.push(m.internalValidate(null,c))}Promise.all(p).then(v=>{if(v.some(h=>!h.valid)){const h=v.filter(m=>m.errors).map(m=>m.errors);d&&d(h),f(h)}else d&&d(),u()})})})}function a(){for(const d of yo(t)){const c=t[d];for(const u of c)u.restoreValidation()}}return Oe(vr,{props:e,maxChildLabelWidthRef:r,deriveMaxChildLabelWidth:n}),Oe(ka,{formItems:t}),Object.assign({validate:l,restoreValidation:a},{mergedClsPrefix:o})},render(){const{mergedClsPrefix:e}=this;return i("form",{class:[`${e}-form`,this.inline&&`${e}-form--inline`],onSubmit:this.onSubmit},this.$slots)}});function Pv(e){const o=Se(vr,null);return{mergedSize:R(()=>e.size!==void 0?e.size:(o==null?void 0:o.props.size)!==void 0?o.props.size:"medium")}}function kv(e){const o=Se(vr,null),t=R(()=>{const{labelPlacement:v}=e;return v!==void 0?v:o!=null&&o.props.labelPlacement?o.props.labelPlacement:"top"}),r=R(()=>t.value==="left"&&(e.labelWidth==="auto"||(o==null?void 0:o.props.labelWidth)==="auto")),n=R(()=>{if(t.value==="top")return;const{labelWidth:v}=e;if(v!==void 0&&v!=="auto")return eo(v);if(r.value){const h=o==null?void 0:o.maxChildLabelWidthRef.value;return h!==void 0?eo(h):void 0}if((o==null?void 0:o.props.labelWidth)!==void 0)return eo(o.props.labelWidth)}),l=R(()=>{const{labelAlign:v}=e;if(v)return v;if(o!=null&&o.props.labelAlign)return o.props.labelAlign}),a=R(()=>{var v;return[(v=e.labelProps)===null||v===void 0?void 0:v.style,e.labelStyle,{width:n.value}]}),s=R(()=>{const{showRequireMark:v}=e;return v!==void 0?v:o==null?void 0:o.props.showRequireMark}),d=R(()=>{const{requireMarkPlacement:v}=e;return v!==void 0?v:(o==null?void 0:o.props.requireMarkPlacement)||"right"}),c=D(!1),u=R(()=>{const{validationStatus:v}=e;if(v!==void 0)return v;if(c.value)return"error"}),f=R(()=>{const{showFeedback:v}=e;return v!==void 0?v:(o==null?void 0:o.props.showFeedback)!==void 0?o.props.showFeedback:!0}),p=R(()=>{const{showLabel:v}=e;return v!==void 0?v:(o==null?void 0:o.props.showLabel)!==void 0?o.props.showLabel:!0});return{validationErrored:c,mergedLabelStyle:a,mergedLabelPlacement:t,mergedLabelAlign:l,mergedShowRequireMark:s,mergedRequireMarkPlacement:d,mergedValidationStatus:u,mergedShowFeedback:f,mergedShowLabel:p,isAutoLabelWidth:r}}function Iv(e){const o=Se(vr,null),t=R(()=>{const{rulePath:a}=e;if(a!==void 0)return a;const{path:s}=e;if(s!==void 0)return s}),r=R(()=>{const a=[],{rule:s}=e;if(s!==void 0&&(Array.isArray(s)?a.push(...s):a.push(s)),o){const{rules:d}=o.props,{value:c}=t;if(d!==void 0&&c!==void 0){const u=Ki(d,c);u!==void 0&&(Array.isArray(u)?a.push(...u):a.push(u))}}return a}),n=R(()=>r.value.some(a=>a.required)),l=R(()=>n.value||e.required);return{mergedRules:r,mergedRequired:l}}const{cubicBezierEaseInOut:wi}=So;function Bv({name:e="fade-down",fromOffset:o="-4px",enterDuration:t=".3s",leaveDuration:r=".3s",enterCubicBezier:n=wi,leaveCubicBezier:l=wi}={}){return[C(`&.${e}-transition-enter-from, &.${e}-transition-leave-to`,{opacity:0,transform:`translateY(${o})`}),C(`&.${e}-transition-enter-to, &.${e}-transition-leave-from`,{opacity:1,transform:"translateY(0)"}),C(`&.${e}-transition-leave-active`,{transition:`opacity ${r} ${l}, transform ${r} ${l}`}),C(`&.${e}-transition-enter-active`,{transition:`opacity ${t} ${n}, transform ${t} ${n}`})]}const Tv=g("form-item",` - display: grid; - line-height: var(--n-line-height); -`,[g("form-item-label",` - grid-area: label; - align-items: center; - line-height: 1.25; - text-align: var(--n-label-text-align); - font-size: var(--n-label-font-size); - min-height: var(--n-label-height); - padding: var(--n-label-padding); - color: var(--n-label-text-color); - transition: color .3s var(--n-bezier); - box-sizing: border-box; - font-weight: var(--n-label-font-weight); - `,[y("asterisk",` - white-space: nowrap; - user-select: none; - -webkit-user-select: none; - color: var(--n-asterisk-color); - transition: color .3s var(--n-bezier); - `),y("asterisk-placeholder",` - grid-area: mark; - user-select: none; - -webkit-user-select: none; - visibility: hidden; - `)]),g("form-item-blank",` - grid-area: blank; - min-height: var(--n-blank-height); - `),P("auto-label-width",[g("form-item-label","white-space: nowrap;")]),P("left-labelled",` - grid-template-areas: - "label blank" - "label feedback"; - grid-template-columns: auto minmax(0, 1fr); - grid-template-rows: auto 1fr; - align-items: start; - `,[g("form-item-label",` - display: grid; - grid-template-columns: 1fr auto; - min-height: var(--n-blank-height); - height: auto; - box-sizing: border-box; - flex-shrink: 0; - flex-grow: 0; - `,[P("reverse-columns-space",` - grid-template-columns: auto 1fr; - `),P("left-mark",` - grid-template-areas: - "mark text" - ". text"; - `),P("right-mark",` - grid-template-areas: - "text mark" - "text ."; - `),P("right-hanging-mark",` - grid-template-areas: - "text mark" - "text ."; - `),y("text",` - grid-area: text; - `),y("asterisk",` - grid-area: mark; - align-self: end; - `)])]),P("top-labelled",` - grid-template-areas: - "label" - "blank" - "feedback"; - grid-template-rows: minmax(var(--n-label-height), auto) 1fr; - grid-template-columns: minmax(0, 100%); - `,[P("no-label",` - grid-template-areas: - "blank" - "feedback"; - grid-template-rows: 1fr; - `),g("form-item-label",` - display: flex; - align-items: flex-start; - justify-content: var(--n-label-text-align); - `)]),g("form-item-blank",` - box-sizing: border-box; - display: flex; - align-items: center; - position: relative; - `),g("form-item-feedback-wrapper",` - grid-area: feedback; - box-sizing: border-box; - min-height: var(--n-feedback-height); - font-size: var(--n-feedback-font-size); - line-height: 1.25; - transform-origin: top left; - `,[C("&:not(:empty)",` - padding: var(--n-feedback-padding); - `),g("form-item-feedback",{transition:"color .3s var(--n-bezier)",color:"var(--n-feedback-text-color)"},[P("warning",{color:"var(--n-feedback-text-color-warning)"}),P("error",{color:"var(--n-feedback-text-color-error)"}),Bv({fromOffset:"-3px",enterDuration:".3s",leaveDuration:".2s"})])])]);var Si=globalThis&&globalThis.__awaiter||function(e,o,t,r){function n(l){return l instanceof t?l:new t(function(a){a(l)})}return new(t||(t=Promise))(function(l,a){function s(u){try{c(r.next(u))}catch(f){a(f)}}function d(u){try{c(r.throw(u))}catch(f){a(f)}}function c(u){u.done?l(u.value):n(u.value).then(s,d)}c((r=r.apply(e,o||[])).next())})};const Tn=Object.assign(Object.assign({},ne.props),{label:String,labelWidth:[Number,String],labelStyle:[String,Object],labelAlign:String,labelPlacement:String,path:String,first:Boolean,rulePath:String,required:Boolean,showRequireMark:{type:Boolean,default:void 0},requireMarkPlacement:String,showFeedback:{type:Boolean,default:void 0},rule:[Object,Array],size:String,ignorePathChange:Boolean,validationStatus:String,feedback:String,showLabel:{type:Boolean,default:void 0},labelProps:Object}),Fv=yo(Tn);function zi(e,o){return(...t)=>{try{const r=e(...t);return!o&&(typeof r=="boolean"||r instanceof Error||Array.isArray(r))||r!=null&&r.then?r:(r===void 0||qo("form-item/validate",`You return a ${typeof r} typed value in the validator method, which is not recommended. Please use `+(o?"`Promise`":"`boolean`, `Error` or `Promise`")+" typed value instead."),!0)}catch(r){qo("form-item/validate","An error is catched in the validation, so the validation won't be done. Your callback in `validate` method of `n-form` or `n-form-item` won't be called in this validation."),console.error(r);return}}}const Ov=q({name:"FormItem",props:Tn,setup(e){Id(ka,"formItems",le(e,"path"));const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=Se(vr,null),n=Pv(e),l=kv(e),{validationErrored:a}=l,{mergedRequired:s,mergedRules:d}=Iv(e),{mergedSize:c}=n,{mergedLabelPlacement:u,mergedLabelAlign:f,mergedRequireMarkPlacement:p}=l,v=D([]),h=D(it()),m=r?le(r.props,"disabled"):D(!1),b=ne("Form","-form-item",Tv,Pa,e,o);Ke(le(e,"path"),()=>{e.ignorePathChange||x()});function x(){v.value=[],a.value=!1,e.feedback&&(h.value=it())}function S(){w("blur")}function B(){w("change")}function T(){w("focus")}function z(){w("input")}function I(j,E){return Si(this,void 0,void 0,function*(){let U,_,V,te;typeof j=="string"?(U=j,_=E):j!==null&&typeof j=="object"&&(U=j.trigger,_=j.callback,V=j.shouldRuleBeApplied,te=j.options),yield new Promise((N,G)=>{w(U,V,te).then(({valid:Ce,errors:X})=>{Ce?(_&&_(),N()):(_&&_(X),G(X))})})})}const w=(j=null,E=()=>!0,U={suppressWarning:!0})=>Si(this,void 0,void 0,function*(){const{path:_}=e;U?U.first||(U.first=e.first):U={};const{value:V}=d,te=r?Ki(r.props.model,_||""):void 0,N={},G={},Ce=(j?V.filter(be=>Array.isArray(be.trigger)?be.trigger.includes(j):be.trigger===j):V).filter(E).map((be,me)=>{const se=Object.assign({},be);if(se.validator&&(se.validator=zi(se.validator,!1)),se.asyncValidator&&(se.asyncValidator=zi(se.asyncValidator,!0)),se.renderMessage){const Re=`__renderMessage__${me}`;G[Re]=se.message,se.message=Re,N[Re]=se.renderMessage}return se});if(!Ce.length)return{valid:!0};const X=_??"__n_no_path__",ve=new gd({[X]:Ce}),{validateMessages:he}=(r==null?void 0:r.props)||{};return he&&ve.messages(he),yield new Promise(be=>{ve.validate({[X]:te},U,me=>{me!=null&&me.length?(v.value=me.map(se=>{const Re=(se==null?void 0:se.message)||"";return{key:Re,render:()=>Re.startsWith("__renderMessage__")?N[Re]():Re}}),me.forEach(se=>{var Re;!((Re=se.message)===null||Re===void 0)&&Re.startsWith("__renderMessage__")&&(se.message=G[se.message])}),a.value=!0,be({valid:!1,errors:me})):(x(),be({valid:!0}))})})});Oe($r,{path:le(e,"path"),disabled:m,mergedSize:n.mergedSize,mergedValidationStatus:l.mergedValidationStatus,restoreValidation:x,handleContentBlur:S,handleContentChange:B,handleContentFocus:T,handleContentInput:z});const O={validate:I,restoreValidation:x,internalValidate:w},k=D(null);mo(()=>{if(!l.isAutoLabelWidth.value)return;const j=k.value;if(j!==null){const E=j.style.whiteSpace;j.style.whiteSpace="nowrap",j.style.width="",r==null||r.deriveMaxChildLabelWidth(Number(getComputedStyle(j).width.slice(0,-2))),j.style.whiteSpace=E}});const $=R(()=>{var j;const{value:E}=c,{value:U}=u,_=U==="top"?"vertical":"horizontal",{common:{cubicBezierEaseInOut:V},self:{labelTextColor:te,asteriskColor:N,lineHeight:G,feedbackTextColor:Ce,feedbackTextColorWarning:X,feedbackTextColorError:ve,feedbackPadding:he,labelFontWeight:be,[W("labelHeight",E)]:me,[W("blankHeight",E)]:se,[W("feedbackFontSize",E)]:Re,[W("feedbackHeight",E)]:ge,[W("labelPadding",_)]:ee,[W("labelTextAlign",_)]:xe,[W(W("labelFontSize",U),E)]:de}}=b.value;let ye=(j=f.value)!==null&&j!==void 0?j:xe;return U==="top"&&(ye=ye==="right"?"flex-end":"flex-start"),{"--n-bezier":V,"--n-line-height":G,"--n-blank-height":se,"--n-label-font-size":de,"--n-label-text-align":ye,"--n-label-height":me,"--n-label-padding":ee,"--n-label-font-weight":be,"--n-asterisk-color":N,"--n-label-text-color":te,"--n-feedback-padding":he,"--n-feedback-font-size":Re,"--n-feedback-height":ge,"--n-feedback-text-color":Ce,"--n-feedback-text-color-warning":X,"--n-feedback-text-color-error":ve}}),L=t?Ae("form-item",R(()=>{var j;return`${c.value[0]}${u.value[0]}${((j=f.value)===null||j===void 0?void 0:j[0])||""}`}),$,e):void 0,M=R(()=>u.value==="left"&&p.value==="left"&&f.value==="left");return Object.assign(Object.assign(Object.assign(Object.assign({labelElementRef:k,mergedClsPrefix:o,mergedRequired:s,feedbackId:h,renderExplains:v,reverseColSpace:M},l),n),O),{cssVars:t?void 0:$,themeClass:L==null?void 0:L.themeClass,onRender:L==null?void 0:L.onRender})},render(){const{$slots:e,mergedClsPrefix:o,mergedShowLabel:t,mergedShowRequireMark:r,mergedRequireMarkPlacement:n,onRender:l}=this,a=r!==void 0?r:this.mergedRequired;l==null||l();const s=()=>{const d=this.$slots.label?this.$slots.label():this.label;if(!d)return null;const c=i("span",{class:`${o}-form-item-label__text`},d),u=a?i("span",{class:`${o}-form-item-label__asterisk`},n!=="left"?" *":"* "):n==="right-hanging"&&i("span",{class:`${o}-form-item-label__asterisk-placeholder`}," *"),{labelProps:f}=this;return i("label",Object.assign({},f,{class:[f==null?void 0:f.class,`${o}-form-item-label`,`${o}-form-item-label--${n}-mark`,this.reverseColSpace&&`${o}-form-item-label--reverse-columns-space`],style:this.mergedLabelStyle,ref:"labelElementRef"}),n==="left"?[u,c]:[c,u])};return i("div",{class:[`${o}-form-item`,this.themeClass,`${o}-form-item--${this.mergedSize}-size`,`${o}-form-item--${this.mergedLabelPlacement}-labelled`,this.isAutoLabelWidth&&`${o}-form-item--auto-label-width`,!t&&`${o}-form-item--no-label`],style:this.cssVars},t&&s(),i("div",{class:[`${o}-form-item-blank`,this.mergedValidationStatus&&`${o}-form-item-blank--${this.mergedValidationStatus}`]},e),this.mergedShowFeedback?i("div",{key:this.feedbackId,class:`${o}-form-item-feedback-wrapper`},i(no,{name:"fade-down-transition",mode:"out-in"},{default:()=>{const{mergedValidationStatus:d}=this;return Ee(e.feedback,c=>{var u;const{feedback:f}=this,p=c||f?i("div",{key:"__feedback__",class:`${o}-form-item-feedback__line`},c||f):this.renderExplains.length?(u=this.renderExplains)===null||u===void 0?void 0:u.map(({key:v,render:h})=>i("div",{key:v,class:`${o}-form-item-feedback__line`},h())):null;return p?d==="warning"?i("div",{key:"controlled-warning",class:`${o}-form-item-feedback ${o}-form-item-feedback--warning`},p):d==="error"?i("div",{key:"controlled-error",class:`${o}-form-item-feedback ${o}-form-item-feedback--error`},p):d==="success"?i("div",{key:"controlled-success",class:`${o}-form-item-feedback ${o}-form-item-feedback--success`},p):i("div",{key:"controlled-default",class:`${o}-form-item-feedback`},p):null})}})):null)}}),$i=1,Ia="n-grid",Ba=1,Mv={span:{type:[Number,String],default:Ba},offset:{type:[Number,String],default:0},suffix:Boolean,privateOffset:Number,privateSpan:Number,privateColStart:Number,privateShow:{type:Boolean,default:!0}},B1=q({__GRID_ITEM__:!0,name:"GridItem",alias:["Gi"],props:Mv,setup(){const{isSsrRef:e,xGapRef:o,itemStyleRef:t,overflowRef:r,layoutShiftDisabledRef:n}=Se(Ia),l=Pr();return{overflow:r,itemStyle:t,layoutShiftDisabled:n,mergedXGap:R(()=>_o(o.value||0)),deriveStyle:()=>{e.value;const{privateSpan:a=Ba,privateShow:s=!0,privateColStart:d=void 0,privateOffset:c=0}=l.vnode.props,{value:u}=o,f=_o(u||0);return{display:s?"":"none",gridColumn:`${d??`span ${a}`} / span ${a}`,marginLeft:c?`calc((100% - (${a} - 1) * ${f}) / ${a} * ${c} + ${f} * ${c})`:""}}}},render(){var e,o;if(this.layoutShiftDisabled){const{span:t,offset:r,mergedXGap:n}=this;return i("div",{style:{gridColumn:`span ${t} / span ${t}`,marginLeft:r?`calc((100% - (${t} - 1) * ${n}) / ${t} * ${r} + ${n} * ${r})`:""}},this.$slots)}return i("div",{style:[this.itemStyle,this.deriveStyle()]},(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e,{overflow:this.overflow}))}}),_v=Array.apply(null,{length:24}).map((e,o)=>{const t=o+1,r=`calc(100% / 24 * ${t})`;return[P(`${t}-span`,{width:r}),P(`${t}-offset`,{marginLeft:r}),P(`${t}-push`,{left:r}),P(`${t}-pull`,{right:r})]}),Dv=C([g("row",{width:"100%",display:"flex",flexWrap:"wrap"}),g("col",{verticalAlign:"top",boxSizing:"border-box",display:"inline-block",position:"relative",zIndex:"auto"},[y("box",{position:"relative",zIndex:"auto",width:"100%",height:"100%"}),_v])]),Ta="n-row",Fn={gutter:{type:[Array,Number,String],default:0},alignItems:String,justifyContent:String},Lv=yo(Fn),Hv=q({name:"Row",props:Fn,setup(e){const{mergedClsPrefixRef:o,mergedRtlRef:t}=ke(e);Zo("-legacy-grid",Dv,o);const r=to("Row",t,o),n=We(()=>{const{gutter:a}=e;return Array.isArray(a)&&a[1]||0}),l=We(()=>{const{gutter:a}=e;return Array.isArray(a)?a[0]:Number(a)});return Oe(Ta,{mergedClsPrefixRef:o,gutterRef:le(e,"gutter"),verticalGutterRef:n,horizontalGutterRef:l}),{mergedClsPrefix:o,rtlEnabled:r,styleMargin:We(()=>`-${eo(n.value,{c:.5})} -${eo(l.value,{c:.5})}`),styleWidth:We(()=>`calc(100% + ${eo(l.value)})`)}},render(){return i("div",{class:[`${this.mergedClsPrefix}-row`,this.rtlEnabled&&`${this.mergedClsPrefix}-row--rtl`],style:{margin:this.styleMargin,width:this.styleWidth,alignItems:this.alignItems,justifyContent:this.justifyContent}},this.$slots)}}),On={span:{type:[String,Number],default:1},push:{type:[String,Number],default:0},pull:{type:[String,Number],default:0},offset:{type:[String,Number],default:0}},Av=yo(On),Ev=q({name:"Col",props:On,setup(e){const o=Se(Ta,null);return o||Eo("col","`n-col` must be placed inside `n-row`."),{mergedClsPrefix:o.mergedClsPrefixRef,gutter:o.gutterRef,stylePadding:R(()=>`${eo(o.verticalGutterRef.value,{c:.5})} ${eo(o.horizontalGutterRef.value,{c:.5})}`),mergedPush:R(()=>Number(e.push)-Number(e.pull))}},render(){const{$slots:e,span:o,mergedPush:t,offset:r,stylePadding:n,gutter:l,mergedClsPrefix:a}=this;return i("div",{class:[`${a}-col`,{[`${a}-col--${o}-span`]:!0,[`${a}-col--${t}-push`]:t>0,[`${a}-col--${-t}-pull`]:t<0,[`${a}-col--${r}-offset`]:r}],style:{padding:n}},l?i("div",null,e):e)}}),Mn=Object.assign(Object.assign({},On),Tn),jv=yo(Mn),Wv=q({name:"FormItemCol",props:Mn,setup(){const e=D(null);return{formItemInstRef:e,validate:(...r)=>{const{value:n}=e;if(n)return n.validate(...r)},restoreValidation:()=>{const{value:r}=e;r&&r.restoreValidation()}}},render(){return i(Ev,go(this.$props,Av),{default:()=>{const e=go(this.$props,Fv);return i(Ov,Object.assign({ref:"formItemInstRef"},e),this.$slots)}})}}),Nv=Object.assign(Object.assign({},Fn),Mn),T1=q({name:"FormItemRow",props:Nv,setup(){const e=D(null);return{formItemColInstRef:e,validate:(...r)=>{const{value:n}=e;if(n)return n.validate(...r)},restoreValidation:()=>{const{value:r}=e;r&&r.restoreValidation()}}},render(){return i(Hv,go(this.$props,Lv),{default:()=>{const e=go(this.$props,jv);return i(Wv,Object.assign(Object.assign({ref:"formItemColInstRef"},e),{span:24}),this.$slots)}})}}),F1=q({name:"GlobalStyle",setup(){if(typeof document>"u")return;const e=Se(Yo,null),{body:o}=document,{style:t}=o;let r=!1,n=!0;lr(()=>{oo(()=>{var l,a;const{textColor2:s,fontSize:d,fontFamily:c,bodyColor:u,cubicBezierEaseInOut:f,lineHeight:p}=e?Tt({},((l=e.mergedThemeRef.value)===null||l===void 0?void 0:l.common)||Le,(a=e.mergedThemeOverridesRef.value)===null||a===void 0?void 0:a.common):Le;if(r||!o.hasAttribute("n-styled")){t.setProperty("-webkit-text-size-adjust","100%"),t.setProperty("-webkit-tap-highlight-color","transparent"),t.padding="0",t.margin="0",t.backgroundColor=u,t.color=s,t.fontSize=d,t.fontFamily=c,t.lineHeight=p;const v=`color .3s ${f}, background-color .3s ${f}`;n?setTimeout(()=>{t.transition=v},0):t.transition=v,o.setAttribute("n-styled",""),r=!0,n=!1}})}),td(()=>{r&&o.removeAttribute("n-styled")})},render(){return null}}),Vv={name:"GradientText",common:fe,self(e){const{primaryColor:o,successColor:t,warningColor:r,errorColor:n,infoColor:l,primaryColorSuppl:a,successColorSuppl:s,warningColorSuppl:d,errorColorSuppl:c,infoColorSuppl:u,fontWeightStrong:f}=e;return{fontWeight:f,rotate:"252deg",colorStartPrimary:o,colorEndPrimary:a,colorStartInfo:l,colorEndInfo:u,colorStartWarning:r,colorEndWarning:d,colorStartError:n,colorEndError:c,colorStartSuccess:t,colorEndSuccess:s}}},Uv=Vv,Kv=e=>{const{primaryColor:o,successColor:t,warningColor:r,errorColor:n,infoColor:l,fontWeightStrong:a}=e;return{fontWeight:a,rotate:"252deg",colorStartPrimary:J(o,{alpha:.6}),colorEndPrimary:o,colorStartInfo:J(l,{alpha:.6}),colorEndInfo:l,colorStartWarning:J(r,{alpha:.6}),colorEndWarning:r,colorStartError:J(n,{alpha:.6}),colorEndError:n,colorStartSuccess:J(t,{alpha:.6}),colorEndSuccess:t}},Gv={name:"GradientText",common:Le,self:Kv},qv=Gv,Yv=g("gradient-text",` - display: inline-block; - font-weight: var(--n-font-weight); - -webkit-background-clip: text; - background-clip: text; - color: #0000; - white-space: nowrap; - background-image: linear-gradient(var(--n-rotate), var(--n-color-start) 0%, var(--n-color-end) 100%); - transition: - --n-color-start .3s var(--n-bezier), - --n-color-end .3s var(--n-bezier); -`),Xv=Object.assign(Object.assign({},ne.props),{size:[String,Number],fontSize:[String,Number],type:{type:String,default:"primary"},color:[Object,String],gradient:[Object,String]}),O1=q({name:"GradientText",props:Xv,setup(e){rl();const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=R(()=>{const{type:c}=e;return c==="danger"?"error":c}),n=R(()=>{let c=e.size||e.fontSize;return c&&(c=eo(c)),c||void 0}),l=R(()=>{const c=e.color||e.gradient;if(typeof c=="string")return c;if(c){const u=c.deg||0,f=c.from,p=c.to;return`linear-gradient(${u}deg, ${f} 0%, ${p} 100%)`}}),a=ne("GradientText","-gradient-text",Yv,qv,e,o),s=R(()=>{const{value:c}=r,{common:{cubicBezierEaseInOut:u},self:{rotate:f,[W("colorStart",c)]:p,[W("colorEnd",c)]:v,fontWeight:h}}=a.value;return{"--n-bezier":u,"--n-rotate":f,"--n-color-start":p,"--n-color-end":v,"--n-font-weight":h}}),d=t?Ae("gradient-text",R(()=>r.value[0]),s,e):void 0;return{mergedClsPrefix:o,compatibleType:r,styleFontSize:n,styleBgImage:l,cssVars:t?void 0:s,themeClass:d==null?void 0:d.themeClass,onRender:d==null?void 0:d.onRender}},render(){const{mergedClsPrefix:e,onRender:o}=this;return o==null||o(),i("span",{class:[`${e}-gradient-text`,`${e}-gradient-text--${this.compatibleType}-type`,this.themeClass],style:[{fontSize:this.styleFontSize,backgroundImage:this.styleBgImage},this.cssVars]},this.$slots)}}),Zv={xs:0,s:640,m:1024,l:1280,xl:1536,xxl:1920},Fa=24,en="__ssr__",Qv={layoutShiftDisabled:Boolean,responsive:{type:[String,Boolean],default:"self"},cols:{type:[Number,String],default:Fa},itemResponsive:Boolean,collapsed:Boolean,collapsedRows:{type:Number,default:1},itemStyle:[Object,String],xGap:{type:[Number,String],default:0},yGap:{type:[Number,String],default:0}},M1=q({name:"Grid",inheritAttrs:!1,props:Qv,setup(e){const{mergedClsPrefixRef:o,mergedBreakpointsRef:t}=ke(e),r=/^\d+$/,n=D(void 0),l=sd((t==null?void 0:t.value)||Zv),a=We(()=>!!(e.itemResponsive||!r.test(e.cols.toString())||!r.test(e.xGap.toString())||!r.test(e.yGap.toString()))),s=R(()=>{if(a.value)return e.responsive==="self"?n.value:l.value}),d=We(()=>{var x;return(x=Number(qt(e.cols.toString(),s.value)))!==null&&x!==void 0?x:Fa}),c=We(()=>qt(e.xGap.toString(),s.value)),u=We(()=>qt(e.yGap.toString(),s.value)),f=x=>{n.value=x.contentRect.width},p=x=>{Ai(f,x)},v=D(!1),h=R(()=>{if(e.responsive==="self")return p}),m=D(!1),b=D();return mo(()=>{const{value:x}=b;x&&x.hasAttribute(en)&&(x.removeAttribute(en),m.value=!0)}),Oe(Ia,{layoutShiftDisabledRef:le(e,"layoutShiftDisabled"),isSsrRef:m,itemStyleRef:le(e,"itemStyle"),xGapRef:c,overflowRef:v}),{isSsr:!jo,contentEl:b,mergedClsPrefix:o,style:R(()=>e.layoutShiftDisabled?{width:"100%",display:"grid",gridTemplateColumns:`repeat(${e.cols}, minmax(0, 1fr))`,columnGap:_o(e.xGap),rowGap:_o(e.yGap)}:{width:"100%",display:"grid",gridTemplateColumns:`repeat(${d.value}, minmax(0, 1fr))`,columnGap:_o(c.value),rowGap:_o(u.value)}),isResponsive:a,responsiveQuery:s,responsiveCols:d,handleResize:h,overflow:v}},render(){if(this.layoutShiftDisabled)return i("div",ko({ref:"contentEl",class:`${this.mergedClsPrefix}-grid`,style:this.style},this.$attrs),this.$slots);const e=()=>{var o,t,r,n,l,a,s;this.overflow=!1;const d=tt(vn(this)),c=[],{collapsed:u,collapsedRows:f,responsiveCols:p,responsiveQuery:v}=this;d.forEach(S=>{var B,T,z,I;if(((B=S==null?void 0:S.type)===null||B===void 0?void 0:B.__GRID_ITEM__)!==!0)return;if(yd(S)){const k=Jt(S);k.props?k.props.privateShow=!1:k.props={privateShow:!1},c.push({child:k,rawChildSpan:0});return}S.dirs=((T=S.dirs)===null||T===void 0?void 0:T.filter(({dir:k})=>k!==Go))||null;const w=Jt(S),O=Number((I=qt((z=w.props)===null||z===void 0?void 0:z.span,v))!==null&&I!==void 0?I:$i);O!==0&&c.push({child:w,rawChildSpan:O})});let h=0;const m=(o=c[c.length-1])===null||o===void 0?void 0:o.child;if(m!=null&&m.props){const S=(t=m.props)===null||t===void 0?void 0:t.suffix;S!==void 0&&S!==!1&&(h=(n=(r=m.props)===null||r===void 0?void 0:r.span)!==null&&n!==void 0?n:$i,m.props.privateSpan=h,m.props.privateColStart=p+1-h,m.props.privateShow=(l=m.props.privateShow)!==null&&l!==void 0?l:!0)}let b=0,x=!1;for(const{child:S,rawChildSpan:B}of c){if(x&&(this.overflow=!0),!x){const T=Number((s=qt((a=S.props)===null||a===void 0?void 0:a.offset,v))!==null&&s!==void 0?s:0),z=Math.min(B+T,p);if(S.props?(S.props.privateSpan=z,S.props.privateOffset=T):S.props={privateSpan:z,privateOffset:T},u){const I=b%p;z+I>p&&(b+=p-I),z+b+h>f*p?x=!0:b+=z}}x&&(S.props?S.props.privateShow!==!0&&(S.props.privateShow=!1):S.props={privateShow:!1})}return i("div",ko({ref:"contentEl",class:`${this.mergedClsPrefix}-grid`,style:this.style,[en]:this.isSsr||void 0},this.$attrs),c.map(({child:S})=>S))};return this.isResponsive&&this.responsive==="self"?i(vt,{onResize:this.handleResize},{default:e}):e()}}),Jv=e=>{const{primaryColor:o,baseColor:t}=e;return{color:o,iconColor:t}},eg={name:"IconWrapper",common:fe,self:Jv},og=eg,_n=Object.assign(Object.assign({},ne.props),{showToolbar:{type:Boolean,default:!0},showToolbarTooltip:Boolean}),Oa="n-image";function tg(){return{toolbarIconColor:"rgba(255, 255, 255, .9)",toolbarColor:"rgba(0, 0, 0, .35)",toolbarBoxShadow:"none",toolbarBorderRadius:"24px"}}const rg={name:"Image",common:Le,peers:{Tooltip:Lr},self:tg},ng={closeMargin:"16px 12px",closeSize:"20px",closeIconSize:"16px",width:"365px",padding:"16px",titleFontSize:"16px",metaFontSize:"12px",descriptionFontSize:"12px"},ig=e=>{const{textColor2:o,successColor:t,infoColor:r,warningColor:n,errorColor:l,popoverColor:a,closeIconColor:s,closeIconColorHover:d,closeIconColorPressed:c,closeColorHover:u,closeColorPressed:f,textColor1:p,textColor3:v,borderRadius:h,fontWeightStrong:m,boxShadow2:b,lineHeight:x,fontSize:S}=e;return Object.assign(Object.assign({},ng),{borderRadius:h,lineHeight:x,fontSize:S,headerFontWeight:m,iconColor:o,iconColorSuccess:t,iconColorInfo:r,iconColorWarning:n,iconColorError:l,color:a,textColor:o,closeIconColor:s,closeIconColorHover:d,closeIconColorPressed:c,closeBorderRadius:h,closeColorHover:u,closeColorPressed:f,headerTextColor:p,descriptionTextColor:v,actionTextColor:o,boxShadow:b})},lg={name:"Notification",common:fe,peers:{Scrollbar:zo},self:ig},ag=lg,sg={margin:"0 0 8px 0",padding:"10px 20px",maxWidth:"720px",minWidth:"420px",iconMargin:"0 10px 0 0",closeMargin:"0 0 0 10px",closeSize:"20px",closeIconSize:"16px",iconSize:"20px",fontSize:"14px"},Ma=e=>{const{textColor2:o,closeIconColor:t,closeIconColorHover:r,closeIconColorPressed:n,infoColor:l,successColor:a,errorColor:s,warningColor:d,popoverColor:c,boxShadow2:u,primaryColor:f,lineHeight:p,borderRadius:v,closeColorHover:h,closeColorPressed:m}=e;return Object.assign(Object.assign({},sg),{closeBorderRadius:v,textColor:o,textColorInfo:o,textColorSuccess:o,textColorError:o,textColorWarning:o,textColorLoading:o,color:c,colorInfo:c,colorSuccess:c,colorError:c,colorWarning:c,colorLoading:c,boxShadow:u,boxShadowInfo:u,boxShadowSuccess:u,boxShadowError:u,boxShadowWarning:u,boxShadowLoading:u,iconColor:o,iconColorInfo:l,iconColorSuccess:a,iconColorWarning:d,iconColorError:s,iconColorLoading:f,closeColorHover:h,closeColorPressed:m,closeIconColor:t,closeIconColorHover:r,closeIconColorPressed:n,closeColorHoverInfo:h,closeColorPressedInfo:m,closeIconColorInfo:t,closeIconColorHoverInfo:r,closeIconColorPressedInfo:n,closeColorHoverSuccess:h,closeColorPressedSuccess:m,closeIconColorSuccess:t,closeIconColorHoverSuccess:r,closeIconColorPressedSuccess:n,closeColorHoverError:h,closeColorPressedError:m,closeIconColorError:t,closeIconColorHoverError:r,closeIconColorPressedError:n,closeColorHoverWarning:h,closeColorPressedWarning:m,closeIconColorWarning:t,closeIconColorHoverWarning:r,closeIconColorPressedWarning:n,closeColorHoverLoading:h,closeColorPressedLoading:m,closeIconColorLoading:t,closeIconColorHoverLoading:r,closeIconColorPressedLoading:n,loadingColor:f,lineHeight:p,borderRadius:v})},dg={name:"Message",common:Le,self:Ma},cg=dg,ug={name:"Message",common:fe,self:Ma},fg=ug,hg={name:"ButtonGroup",common:fe},pg=hg,vg={name:"InputNumber",common:fe,peers:{Button:$o,Input:Ho},self(e){const{textColorDisabled:o}=e;return{iconColorDisabled:o}}},gg=vg,mg=e=>{const{textColorDisabled:o}=e;return{iconColorDisabled:o}},bg={name:"InputNumber",common:Le,peers:{Button:Wt,Input:pr},self:mg},xg=bg,Cg={name:"Layout",common:fe,peers:{Scrollbar:zo},self(e){const{textColor2:o,bodyColor:t,popoverColor:r,cardColor:n,dividerColor:l,scrollbarColor:a,scrollbarColorHover:s}=e;return{textColor:o,textColorInverted:o,color:t,colorEmbedded:t,headerColor:n,headerColorInverted:n,footerColor:n,footerColorInverted:n,headerBorderColor:l,headerBorderColorInverted:l,footerBorderColor:l,footerBorderColorInverted:l,siderBorderColor:l,siderBorderColorInverted:l,siderColor:n,siderColorInverted:n,siderToggleButtonBorder:"1px solid transparent",siderToggleButtonColor:r,siderToggleButtonIconColor:o,siderToggleButtonIconColorInverted:o,siderToggleBarColor:$e(t,a),siderToggleBarColorHover:$e(t,s),__invertScrollbar:"false"}}},yg=Cg,_a=e=>{const{textColor2:o,cardColor:t,modalColor:r,popoverColor:n,dividerColor:l,borderRadius:a,fontSize:s,hoverColor:d}=e;return{textColor:o,color:t,colorHover:d,colorModal:r,colorHoverModal:$e(r,d),colorPopover:n,colorHoverPopover:$e(n,d),borderColor:l,borderColorModal:$e(r,l),borderColorPopover:$e(n,l),borderRadius:a,fontSize:s}},wg={name:"List",common:Le,self:_a},Sg=wg,zg={name:"List",common:fe,self:_a},$g=zg,Rg={name:"LoadingBar",common:fe,self(e){const{primaryColor:o}=e;return{colorError:"red",colorLoading:o,height:"2px"}}},Pg=Rg,kg={name:"Log",common:fe,peers:{Scrollbar:zo,Code:Ul},self(e){const{textColor2:o,inputColor:t,fontSize:r,primaryColor:n}=e;return{loaderFontSize:r,loaderTextColor:o,loaderColor:t,loaderBorder:"1px solid #0000",loadingColor:n}}},Ig=kg,Bg={name:"Mention",common:fe,peers:{InternalSelectMenu:fr,Input:Ho},self(e){const{boxShadow2:o}=e;return{menuBoxShadow:o}}},Tg=Bg,Fg=e=>{const{boxShadow2:o}=e;return{menuBoxShadow:o}},Og={name:"Mention",common:Le,peers:{InternalSelectMenu:_r,Input:pr},self:Fg},Mg=Og;function _g(e,o,t,r){return{itemColorHoverInverted:"#0000",itemColorActiveInverted:o,itemColorActiveHoverInverted:o,itemColorActiveCollapsedInverted:o,itemTextColorInverted:e,itemTextColorHoverInverted:t,itemTextColorChildActiveInverted:t,itemTextColorChildActiveHoverInverted:t,itemTextColorActiveInverted:t,itemTextColorActiveHoverInverted:t,itemTextColorHorizontalInverted:e,itemTextColorHoverHorizontalInverted:t,itemTextColorChildActiveHorizontalInverted:t,itemTextColorChildActiveHoverHorizontalInverted:t,itemTextColorActiveHorizontalInverted:t,itemTextColorActiveHoverHorizontalInverted:t,itemIconColorInverted:e,itemIconColorHoverInverted:t,itemIconColorActiveInverted:t,itemIconColorActiveHoverInverted:t,itemIconColorChildActiveInverted:t,itemIconColorChildActiveHoverInverted:t,itemIconColorCollapsedInverted:e,itemIconColorHorizontalInverted:e,itemIconColorHoverHorizontalInverted:t,itemIconColorActiveHorizontalInverted:t,itemIconColorActiveHoverHorizontalInverted:t,itemIconColorChildActiveHorizontalInverted:t,itemIconColorChildActiveHoverHorizontalInverted:t,arrowColorInverted:e,arrowColorHoverInverted:t,arrowColorActiveInverted:t,arrowColorActiveHoverInverted:t,arrowColorChildActiveInverted:t,arrowColorChildActiveHoverInverted:t,groupTextColorInverted:r}}const Da=e=>{const{borderRadius:o,textColor3:t,primaryColor:r,textColor2:n,textColor1:l,fontSize:a,dividerColor:s,hoverColor:d,primaryColorHover:c}=e;return Object.assign({borderRadius:o,color:"#0000",groupTextColor:t,itemColorHover:d,itemColorActive:J(r,{alpha:.1}),itemColorActiveHover:J(r,{alpha:.1}),itemColorActiveCollapsed:J(r,{alpha:.1}),itemTextColor:n,itemTextColorHover:n,itemTextColorActive:r,itemTextColorActiveHover:r,itemTextColorChildActive:r,itemTextColorChildActiveHover:r,itemTextColorHorizontal:n,itemTextColorHoverHorizontal:c,itemTextColorActiveHorizontal:r,itemTextColorActiveHoverHorizontal:r,itemTextColorChildActiveHorizontal:r,itemTextColorChildActiveHoverHorizontal:r,itemIconColor:l,itemIconColorHover:l,itemIconColorActive:r,itemIconColorActiveHover:r,itemIconColorChildActive:r,itemIconColorChildActiveHover:r,itemIconColorCollapsed:l,itemIconColorHorizontal:l,itemIconColorHoverHorizontal:c,itemIconColorActiveHorizontal:r,itemIconColorActiveHoverHorizontal:r,itemIconColorChildActiveHorizontal:r,itemIconColorChildActiveHoverHorizontal:r,itemHeight:"42px",arrowColor:n,arrowColorHover:n,arrowColorActive:r,arrowColorActiveHover:r,arrowColorChildActive:r,arrowColorChildActiveHover:r,colorInverted:"#0000",borderColorHorizontal:"#0000",fontSize:a,dividerColor:s},_g("#BBB",r,"#FFF","#AAA"))},Dg={name:"Menu",common:Le,peers:{Tooltip:Lr,Dropdown:ia},self:Da},Lg=Dg,Hg={name:"Menu",common:fe,peers:{Tooltip:Dr,Dropdown:Rn},self(e){const{primaryColor:o,primaryColorSuppl:t}=e,r=Da(e);return r.itemColorActive=J(o,{alpha:.15}),r.itemColorActiveHover=J(o,{alpha:.15}),r.itemColorActiveCollapsed=J(o,{alpha:.15}),r.itemColorActiveInverted=t,r.itemColorActiveHoverInverted=t,r.itemColorActiveCollapsedInverted=t,r}},Ag=Hg,Eg={titleFontSize:"18px",backSize:"22px"};function jg(e){const{textColor1:o,textColor2:t,textColor3:r,fontSize:n,fontWeightStrong:l,primaryColorHover:a,primaryColorPressed:s}=e;return Object.assign(Object.assign({},Eg),{titleFontWeight:l,fontSize:n,titleTextColor:o,backColor:t,backColorHover:a,backColorPressed:s,subtitleTextColor:r})}const Wg={name:"PageHeader",common:fe,self:jg},Ng={iconSize:"22px"},La=e=>{const{fontSize:o,warningColor:t}=e;return Object.assign(Object.assign({},Ng),{fontSize:o,iconColor:t})},Vg={name:"Popconfirm",common:Le,peers:{Button:Wt,Popover:jt},self:La},Ug=Vg,Kg={name:"Popconfirm",common:fe,peers:{Button:$o,Popover:$t},self:La},Gg=Kg,Ha=e=>{const{infoColor:o,successColor:t,warningColor:r,errorColor:n,textColor2:l,progressRailColor:a,fontSize:s,fontWeight:d}=e;return{fontSize:s,fontSizeCircle:"28px",fontWeightCircle:d,railColor:a,railHeight:"8px",iconSizeCircle:"36px",iconSizeLine:"18px",iconColor:o,iconColorInfo:o,iconColorSuccess:t,iconColorWarning:r,iconColorError:n,textColorCircle:l,textColorLineInner:"rgb(255, 255, 255)",textColorLineOuter:l,fillColor:o,fillColorInfo:o,fillColorSuccess:t,fillColorWarning:r,fillColorError:n,lineBgProcessing:"linear-gradient(90deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .5) 100%)"}},qg={name:"Progress",common:Le,self:Ha},Aa=qg,Yg={name:"Progress",common:fe,self(e){const o=Ha(e);return o.textColorLineInner="rgb(0, 0, 0)",o.lineBgProcessing="linear-gradient(90deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .5) 100%)",o}},Ea=Yg,Xg={name:"Rate",common:fe,self(e){const{railColor:o}=e;return{itemColor:o,itemColorActive:"#CCAA33",itemSize:"20px",sizeSmall:"16px",sizeMedium:"20px",sizeLarge:"24px"}}},Zg=Xg,Qg={titleFontSizeSmall:"26px",titleFontSizeMedium:"32px",titleFontSizeLarge:"40px",titleFontSizeHuge:"48px",fontSizeSmall:"14px",fontSizeMedium:"14px",fontSizeLarge:"15px",fontSizeHuge:"16px",iconSizeSmall:"64px",iconSizeMedium:"80px",iconSizeLarge:"100px",iconSizeHuge:"125px",iconColor418:void 0,iconColor404:void 0,iconColor403:void 0,iconColor500:void 0},ja=e=>{const{textColor2:o,textColor1:t,errorColor:r,successColor:n,infoColor:l,warningColor:a,lineHeight:s,fontWeightStrong:d}=e;return Object.assign(Object.assign({},Qg),{lineHeight:s,titleFontWeight:d,titleTextColor:t,textColor:o,iconColorError:r,iconColorSuccess:n,iconColorInfo:l,iconColorWarning:a})},Jg={name:"Result",common:Le,self:ja},em=Jg,om={name:"Result",common:fe,self:ja},tm=om,rm={railHeight:"4px",railWidthVertical:"4px",handleSize:"18px",dotHeight:"8px",dotWidth:"8px",dotBorderRadius:"4px"},nm={name:"Slider",common:fe,self(e){const o="0 2px 8px 0 rgba(0, 0, 0, 0.12)",{railColor:t,modalColor:r,primaryColorSuppl:n,popoverColor:l,textColor2:a,cardColor:s,borderRadius:d,fontSize:c,opacityDisabled:u}=e;return Object.assign(Object.assign({},rm),{fontSize:c,markFontSize:c,railColor:t,railColorHover:t,fillColor:n,fillColorHover:n,opacityDisabled:u,handleColor:"#FFF",dotColor:s,dotColorModal:r,dotColorPopover:l,handleBoxShadow:"0px 2px 4px 0 rgba(0, 0, 0, 0.4)",handleBoxShadowHover:"0px 2px 4px 0 rgba(0, 0, 0, 0.4)",handleBoxShadowActive:"0px 2px 4px 0 rgba(0, 0, 0, 0.4)",handleBoxShadowFocus:"0px 2px 4px 0 rgba(0, 0, 0, 0.4)",indicatorColor:l,indicatorBoxShadow:o,indicatorTextColor:a,indicatorBorderRadius:d,dotBorder:`2px solid ${t}`,dotBorderActive:`2px solid ${n}`,dotBoxShadow:""})}},im=nm,Wa=e=>{const{opacityDisabled:o,heightTiny:t,heightSmall:r,heightMedium:n,heightLarge:l,heightHuge:a,primaryColor:s,fontSize:d}=e;return{fontSize:d,textColor:s,sizeTiny:t,sizeSmall:r,sizeMedium:n,sizeLarge:l,sizeHuge:a,color:s,opacitySpinning:o}},lm={name:"Spin",common:Le,self:Wa},am=lm,sm={name:"Spin",common:fe,self:Wa},dm=sm,Na=e=>{const{textColor2:o,textColor3:t,fontSize:r,fontWeight:n}=e;return{labelFontSize:r,labelFontWeight:n,valueFontWeight:n,valueFontSize:"24px",labelTextColor:t,valuePrefixTextColor:o,valueSuffixTextColor:o,valueTextColor:o}},cm={name:"Statistic",common:Le,self:Na},um=cm,fm={name:"Statistic",common:fe,self:Na},hm=fm,pm={stepHeaderFontSizeSmall:"14px",stepHeaderFontSizeMedium:"16px",indicatorIndexFontSizeSmall:"14px",indicatorIndexFontSizeMedium:"16px",indicatorSizeSmall:"22px",indicatorSizeMedium:"28px",indicatorIconSizeSmall:"14px",indicatorIconSizeMedium:"18px"},vm=e=>{const{fontWeightStrong:o,baseColor:t,textColorDisabled:r,primaryColor:n,errorColor:l,textColor1:a,textColor2:s}=e;return Object.assign(Object.assign({},pm),{stepHeaderFontWeight:o,indicatorTextColorProcess:t,indicatorTextColorWait:r,indicatorTextColorFinish:n,indicatorTextColorError:l,indicatorBorderColorProcess:n,indicatorBorderColorWait:r,indicatorBorderColorFinish:n,indicatorBorderColorError:l,indicatorColorProcess:n,indicatorColorWait:"#0000",indicatorColorFinish:"#0000",indicatorColorError:"#0000",splitorColorProcess:r,splitorColorWait:r,splitorColorFinish:n,splitorColorError:r,headerTextColorProcess:a,headerTextColorWait:r,headerTextColorFinish:r,headerTextColorError:l,descriptionTextColorProcess:s,descriptionTextColorWait:r,descriptionTextColorFinish:r,descriptionTextColorError:l})},gm={name:"Steps",common:fe,self:vm},mm=gm,Va={buttonHeightSmall:"14px",buttonHeightMedium:"18px",buttonHeightLarge:"22px",buttonWidthSmall:"14px",buttonWidthMedium:"18px",buttonWidthLarge:"22px",buttonWidthPressedSmall:"20px",buttonWidthPressedMedium:"24px",buttonWidthPressedLarge:"28px",railHeightSmall:"18px",railHeightMedium:"22px",railHeightLarge:"26px",railWidthSmall:"32px",railWidthMedium:"40px",railWidthLarge:"48px"},bm={name:"Switch",common:fe,self(e){const{primaryColorSuppl:o,opacityDisabled:t,borderRadius:r,primaryColor:n,textColor2:l,baseColor:a}=e,s="rgba(255, 255, 255, .20)";return Object.assign(Object.assign({},Va),{iconColor:a,textColor:l,loadingColor:o,opacityDisabled:t,railColor:s,railColorActive:o,buttonBoxShadow:"0px 2px 4px 0 rgba(0, 0, 0, 0.4)",buttonColor:"#FFF",railBorderRadiusSmall:r,railBorderRadiusMedium:r,railBorderRadiusLarge:r,buttonBorderRadiusSmall:r,buttonBorderRadiusMedium:r,buttonBorderRadiusLarge:r,boxShadowFocus:`0 0 8px 0 ${J(n,{alpha:.3})}`})}},xm=bm,Cm=e=>{const{primaryColor:o,opacityDisabled:t,borderRadius:r,textColor3:n}=e,l="rgba(0, 0, 0, .14)";return Object.assign(Object.assign({},Va),{iconColor:n,textColor:"white",loadingColor:o,opacityDisabled:t,railColor:l,railColorActive:o,buttonBoxShadow:"0 1px 4px 0 rgba(0, 0, 0, 0.3), inset 0 0 1px 0 rgba(0, 0, 0, 0.05)",buttonColor:"#FFF",railBorderRadiusSmall:r,railBorderRadiusMedium:r,railBorderRadiusLarge:r,buttonBorderRadiusSmall:r,buttonBorderRadiusMedium:r,buttonBorderRadiusLarge:r,boxShadowFocus:`0 0 0 2px ${J(o,{alpha:.2})}`})},ym={name:"Switch",common:Le,self:Cm},wm=ym,Sm={thPaddingSmall:"6px",thPaddingMedium:"12px",thPaddingLarge:"12px",tdPaddingSmall:"6px",tdPaddingMedium:"12px",tdPaddingLarge:"12px"},zm=e=>{const{dividerColor:o,cardColor:t,modalColor:r,popoverColor:n,tableHeaderColor:l,tableColorStriped:a,textColor1:s,textColor2:d,borderRadius:c,fontWeightStrong:u,lineHeight:f,fontSizeSmall:p,fontSizeMedium:v,fontSizeLarge:h}=e;return Object.assign(Object.assign({},Sm),{fontSizeSmall:p,fontSizeMedium:v,fontSizeLarge:h,lineHeight:f,borderRadius:c,borderColor:$e(t,o),borderColorModal:$e(r,o),borderColorPopover:$e(n,o),tdColor:t,tdColorModal:r,tdColorPopover:n,tdColorStriped:$e(t,a),tdColorStripedModal:$e(r,a),tdColorStripedPopover:$e(n,a),thColor:$e(t,l),thColorModal:$e(r,l),thColorPopover:$e(n,l),thTextColor:s,tdTextColor:d,thFontWeight:u})},$m={name:"Table",common:fe,self:zm},Rm=$m,Pm={tabFontSizeSmall:"14px",tabFontSizeMedium:"14px",tabFontSizeLarge:"16px",tabGapSmallLine:"36px",tabGapMediumLine:"36px",tabGapLargeLine:"36px",tabGapSmallLineVertical:"8px",tabGapMediumLineVertical:"8px",tabGapLargeLineVertical:"8px",tabPaddingSmallLine:"6px 0",tabPaddingMediumLine:"10px 0",tabPaddingLargeLine:"14px 0",tabPaddingVerticalSmallLine:"6px 12px",tabPaddingVerticalMediumLine:"8px 16px",tabPaddingVerticalLargeLine:"10px 20px",tabGapSmallBar:"36px",tabGapMediumBar:"36px",tabGapLargeBar:"36px",tabGapSmallBarVertical:"8px",tabGapMediumBarVertical:"8px",tabGapLargeBarVertical:"8px",tabPaddingSmallBar:"4px 0",tabPaddingMediumBar:"6px 0",tabPaddingLargeBar:"10px 0",tabPaddingVerticalSmallBar:"6px 12px",tabPaddingVerticalMediumBar:"8px 16px",tabPaddingVerticalLargeBar:"10px 20px",tabGapSmallCard:"4px",tabGapMediumCard:"4px",tabGapLargeCard:"4px",tabGapSmallCardVertical:"4px",tabGapMediumCardVertical:"4px",tabGapLargeCardVertical:"4px",tabPaddingSmallCard:"8px 16px",tabPaddingMediumCard:"10px 20px",tabPaddingLargeCard:"12px 24px",tabPaddingSmallSegment:"4px 0",tabPaddingMediumSegment:"6px 0",tabPaddingLargeSegment:"8px 0",tabPaddingVerticalLargeSegment:"0 8px",tabPaddingVerticalSmallCard:"8px 12px",tabPaddingVerticalMediumCard:"10px 16px",tabPaddingVerticalLargeCard:"12px 20px",tabPaddingVerticalSmallSegment:"0 4px",tabPaddingVerticalMediumSegment:"0 6px",tabGapSmallSegment:"0",tabGapMediumSegment:"0",tabGapLargeSegment:"0",tabGapSmallSegmentVertical:"0",tabGapMediumSegmentVertical:"0",tabGapLargeSegmentVertical:"0",panePaddingSmall:"8px 0 0 0",panePaddingMedium:"12px 0 0 0",panePaddingLarge:"16px 0 0 0",closeSize:"18px",closeIconSize:"14px"},Ua=e=>{const{textColor2:o,primaryColor:t,textColorDisabled:r,closeIconColor:n,closeIconColorHover:l,closeIconColorPressed:a,closeColorHover:s,closeColorPressed:d,tabColor:c,baseColor:u,dividerColor:f,fontWeight:p,textColor1:v,borderRadius:h,fontSize:m,fontWeightStrong:b}=e;return Object.assign(Object.assign({},Pm),{colorSegment:c,tabFontSizeCard:m,tabTextColorLine:v,tabTextColorActiveLine:t,tabTextColorHoverLine:t,tabTextColorDisabledLine:r,tabTextColorSegment:v,tabTextColorActiveSegment:o,tabTextColorHoverSegment:o,tabTextColorDisabledSegment:r,tabTextColorBar:v,tabTextColorActiveBar:t,tabTextColorHoverBar:t,tabTextColorDisabledBar:r,tabTextColorCard:v,tabTextColorHoverCard:v,tabTextColorActiveCard:t,tabTextColorDisabledCard:r,barColor:t,closeIconColor:n,closeIconColorHover:l,closeIconColorPressed:a,closeColorHover:s,closeColorPressed:d,closeBorderRadius:h,tabColor:c,tabColorSegment:u,tabBorderColor:f,tabFontWeightActive:p,tabFontWeight:p,tabBorderRadius:h,paneTextColor:o,fontWeightStrong:b})},km={name:"Tabs",common:Le,self:Ua},Im=km,Bm={name:"Tabs",common:fe,self(e){const o=Ua(e),{inputColor:t}=e;return o.colorSegment=t,o.tabColorSegment=t,o}},Tm=Bm,Ka=e=>{const{textColor1:o,textColor2:t,fontWeightStrong:r,fontSize:n}=e;return{fontSize:n,titleTextColor:o,textColor:t,titleFontWeight:r}},Fm={name:"Thing",common:Le,self:Ka},Om=Fm,Mm={name:"Thing",common:fe,self:Ka},_m=Mm,Dm={titleMarginMedium:"0 0 6px 0",titleMarginLarge:"-2px 0 6px 0",titleFontSizeMedium:"14px",titleFontSizeLarge:"16px",iconSizeMedium:"14px",iconSizeLarge:"14px"},Lm={name:"Timeline",common:fe,self(e){const{textColor3:o,infoColorSuppl:t,errorColorSuppl:r,successColorSuppl:n,warningColorSuppl:l,textColor1:a,textColor2:s,railColor:d,fontWeightStrong:c,fontSize:u}=e;return Object.assign(Object.assign({},Dm),{contentFontSize:u,titleFontWeight:c,circleBorder:`2px solid ${o}`,circleBorderInfo:`2px solid ${t}`,circleBorderError:`2px solid ${r}`,circleBorderSuccess:`2px solid ${n}`,circleBorderWarning:`2px solid ${l}`,iconColor:o,iconColorInfo:t,iconColorError:r,iconColorSuccess:n,iconColorWarning:l,titleTextColor:a,contentTextColor:s,metaTextColor:o,lineColor:d})}},Hm=Lm,Am={extraFontSizeSmall:"12px",extraFontSizeMedium:"12px",extraFontSizeLarge:"14px",titleFontSizeSmall:"14px",titleFontSizeMedium:"16px",titleFontSizeLarge:"16px",closeSize:"20px",closeIconSize:"16px",headerHeightSmall:"44px",headerHeightMedium:"44px",headerHeightLarge:"50px"},Em={name:"Transfer",common:fe,peers:{Checkbox:Nt,Scrollbar:zo,Input:Ho,Empty:zt,Button:$o},self(e){const{fontWeight:o,fontSizeLarge:t,fontSizeMedium:r,fontSizeSmall:n,heightLarge:l,heightMedium:a,borderRadius:s,inputColor:d,tableHeaderColor:c,textColor1:u,textColorDisabled:f,textColor2:p,textColor3:v,hoverColor:h,closeColorHover:m,closeColorPressed:b,closeIconColor:x,closeIconColorHover:S,closeIconColorPressed:B,dividerColor:T}=e;return Object.assign(Object.assign({},Am),{itemHeightSmall:a,itemHeightMedium:a,itemHeightLarge:l,fontSizeSmall:n,fontSizeMedium:r,fontSizeLarge:t,borderRadius:s,dividerColor:T,borderColor:"#0000",listColor:d,headerColor:c,titleTextColor:u,titleTextColorDisabled:f,extraTextColor:v,extraTextColorDisabled:f,itemTextColor:p,itemTextColorDisabled:f,itemColorPending:h,titleFontWeight:o,closeColorHover:m,closeColorPressed:b,closeIconColor:x,closeIconColorHover:S,closeIconColorPressed:B})}},jm=Em,Wm=e=>{const{borderRadiusSmall:o,hoverColor:t,pressedColor:r,primaryColor:n,textColor3:l,textColor2:a,textColorDisabled:s,fontSize:d}=e;return{fontSize:d,nodeBorderRadius:o,nodeColorHover:t,nodeColorPressed:r,nodeColorActive:J(n,{alpha:.1}),arrowColor:l,nodeTextColor:a,nodeTextColorDisabled:s,loadingColor:n,dropMarkColor:n}},Nm={name:"Tree",common:fe,peers:{Checkbox:Nt,Scrollbar:zo,Empty:zt},self(e){const{primaryColor:o}=e,t=Wm(e);return t.nodeColorActive=J(o,{alpha:.15}),t}},Ga=Nm,Vm={name:"TreeSelect",common:fe,peers:{Tree:Ga,Empty:zt,InternalSelection:wn}},Um=Vm,Km={headerFontSize1:"30px",headerFontSize2:"22px",headerFontSize3:"18px",headerFontSize4:"16px",headerFontSize5:"16px",headerFontSize6:"16px",headerMargin1:"28px 0 20px 0",headerMargin2:"28px 0 20px 0",headerMargin3:"28px 0 20px 0",headerMargin4:"28px 0 18px 0",headerMargin5:"28px 0 18px 0",headerMargin6:"28px 0 18px 0",headerPrefixWidth1:"16px",headerPrefixWidth2:"16px",headerPrefixWidth3:"12px",headerPrefixWidth4:"12px",headerPrefixWidth5:"12px",headerPrefixWidth6:"12px",headerBarWidth1:"4px",headerBarWidth2:"4px",headerBarWidth3:"3px",headerBarWidth4:"3px",headerBarWidth5:"3px",headerBarWidth6:"3px",pMargin:"16px 0 16px 0",liMargin:".25em 0 0 0",olPadding:"0 0 0 2em",ulPadding:"0 0 0 2em"},qa=e=>{const{primaryColor:o,textColor2:t,borderColor:r,lineHeight:n,fontSize:l,borderRadiusSmall:a,dividerColor:s,fontWeightStrong:d,textColor1:c,textColor3:u,infoColor:f,warningColor:p,errorColor:v,successColor:h,codeColor:m}=e;return Object.assign(Object.assign({},Km),{aTextColor:o,blockquoteTextColor:t,blockquotePrefixColor:r,blockquoteLineHeight:n,blockquoteFontSize:l,codeBorderRadius:a,liTextColor:t,liLineHeight:n,liFontSize:l,hrColor:s,headerFontWeight:d,headerTextColor:c,pTextColor:t,pTextColor1Depth:c,pTextColor2Depth:t,pTextColor3Depth:u,pLineHeight:n,pFontSize:l,headerBarColor:o,headerBarColorPrimary:o,headerBarColorInfo:f,headerBarColorError:v,headerBarColorWarning:p,headerBarColorSuccess:h,textColor:t,textColor1Depth:c,textColor2Depth:t,textColor3Depth:u,textColorPrimary:o,textColorInfo:f,textColorSuccess:h,textColorWarning:p,textColorError:v,codeTextColor:t,codeColor:m,codeBorder:"1px solid #0000"})},Gm={name:"Typography",common:Le,self:qa},Ya=Gm,qm={name:"Typography",common:fe,self:qa},Ym=qm,Xa=e=>{const{iconColor:o,primaryColor:t,errorColor:r,textColor2:n,successColor:l,opacityDisabled:a,actionColor:s,borderColor:d,hoverColor:c,lineHeight:u,borderRadius:f,fontSize:p}=e;return{fontSize:p,lineHeight:u,borderRadius:f,draggerColor:s,draggerBorder:`1px dashed ${d}`,draggerBorderHover:`1px dashed ${t}`,itemColorHover:c,itemColorHoverError:J(r,{alpha:.06}),itemTextColor:n,itemTextColorError:r,itemTextColorSuccess:l,itemIconColor:o,itemDisabledOpacity:a,itemBorderImageCardError:`1px solid ${r}`,itemBorderImageCard:`1px solid ${d}`}},Xm={name:"Upload",common:Le,peers:{Button:Wt,Progress:Aa},self:Xa},Zm=Xm,Qm={name:"Upload",common:fe,peers:{Button:$o,Progress:Ea},self(e){const{errorColor:o}=e,t=Xa(e);return t.itemColorHoverError=J(o,{alpha:.09}),t}},Jm=Qm,eb={name:"Watermark",common:fe,self(e){const{fontFamily:o}=e;return{fontFamily:o}}},ob=eb,tb={name:"Row",common:fe},rb=tb,nb={name:"Image",common:fe,peers:{Tooltip:Dr},self:e=>{const{textColor2:o}=e;return{toolbarIconColor:o,toolbarColor:"rgba(0, 0, 0, .35)",toolbarBoxShadow:"none",toolbarBorderRadius:"24px"}}},ib=i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M6 5C5.75454 5 5.55039 5.17688 5.50806 5.41012L5.5 5.5V14.5C5.5 14.7761 5.72386 15 6 15C6.24546 15 6.44961 14.8231 6.49194 14.5899L6.5 14.5V5.5C6.5 5.22386 6.27614 5 6 5ZM13.8536 5.14645C13.68 4.97288 13.4106 4.9536 13.2157 5.08859L13.1464 5.14645L8.64645 9.64645C8.47288 9.82001 8.4536 10.0894 8.58859 10.2843L8.64645 10.3536L13.1464 14.8536C13.3417 15.0488 13.6583 15.0488 13.8536 14.8536C14.0271 14.68 14.0464 14.4106 13.9114 14.2157L13.8536 14.1464L9.70711 10L13.8536 5.85355C14.0488 5.65829 14.0488 5.34171 13.8536 5.14645Z",fill:"currentColor"})),lb=i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M13.5 5C13.7455 5 13.9496 5.17688 13.9919 5.41012L14 5.5V14.5C14 14.7761 13.7761 15 13.5 15C13.2545 15 13.0504 14.8231 13.0081 14.5899L13 14.5V5.5C13 5.22386 13.2239 5 13.5 5ZM5.64645 5.14645C5.82001 4.97288 6.08944 4.9536 6.28431 5.08859L6.35355 5.14645L10.8536 9.64645C11.0271 9.82001 11.0464 10.0894 10.9114 10.2843L10.8536 10.3536L6.35355 14.8536C6.15829 15.0488 5.84171 15.0488 5.64645 14.8536C5.47288 14.68 5.4536 14.4106 5.58859 14.2157L5.64645 14.1464L9.79289 10L5.64645 5.85355C5.45118 5.65829 5.45118 5.34171 5.64645 5.14645Z",fill:"currentColor"})),ab=i("svg",{viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},i("path",{d:"M4.089 4.216l.057-.07a.5.5 0 0 1 .638-.057l.07.057L10 9.293l5.146-5.147a.5.5 0 0 1 .638-.057l.07.057a.5.5 0 0 1 .057.638l-.057.07L10.707 10l5.147 5.146a.5.5 0 0 1 .057.638l-.057.07a.5.5 0 0 1-.638.057l-.07-.057L10 10.707l-5.146 5.147a.5.5 0 0 1-.638.057l-.07-.057a.5.5 0 0 1-.057-.638l.057-.07L9.293 10L4.146 4.854a.5.5 0 0 1-.057-.638l.057-.07l-.057.07z",fill:"currentColor"})),sb=C([C("body >",[g("image-container","position: fixed;")]),g("image-preview-container",` - position: fixed; - left: 0; - right: 0; - top: 0; - bottom: 0; - display: flex; - `),g("image-preview-overlay",` - z-index: -1; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - background: rgba(0, 0, 0, .3); - `,[Mt()]),g("image-preview-toolbar",` - z-index: 1; - position: absolute; - left: 50%; - transform: translateX(-50%); - border-radius: var(--n-toolbar-border-radius); - height: 48px; - bottom: 40px; - padding: 0 12px; - background: var(--n-toolbar-color); - box-shadow: var(--n-toolbar-box-shadow); - color: var(--n-toolbar-icon-color); - transition: color .3s var(--n-bezier); - display: flex; - align-items: center; - `,[g("base-icon",` - padding: 0 8px; - font-size: 28px; - cursor: pointer; - `),Mt()]),g("image-preview-wrapper",` - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - display: flex; - pointer-events: none; - `,[at()]),g("image-preview",` - user-select: none; - -webkit-user-select: none; - pointer-events: all; - margin: auto; - max-height: calc(100vh - 32px); - max-width: calc(100vw - 32px); - transition: transform .3s var(--n-bezier); - `),g("image",` - display: inline-flex; - max-height: 100%; - max-width: 100%; - `,[je("preview-disabled",` - cursor: pointer; - `),C("img",` - border-radius: inherit; - `)])]),Cr=32,Za=q({name:"ImagePreview",props:Object.assign(Object.assign({},_n),{onNext:Function,onPrev:Function,clsPrefix:{type:String,required:!0}}),setup(e){const o=ne("Image","-image",sb,rg,e,le(e,"clsPrefix"));let t=null;const r=D(null),n=D(null),l=D(void 0),a=D(!1),s=D(!1),{localeRef:d}=Xo("Image");function c(){const{value:de}=n;if(!t||!de)return;const{style:ye}=de,pe=t.getBoundingClientRect(),Me=pe.left+pe.width/2,Q=pe.top+pe.height/2;ye.transformOrigin=`${Me}px ${Q}px`}function u(de){var ye,pe;switch(de.key){case" ":de.preventDefault();break;case"ArrowLeft":(ye=e.onPrev)===null||ye===void 0||ye.call(e);break;case"ArrowRight":(pe=e.onNext)===null||pe===void 0||pe.call(e);break;case"Escape":be();break}}Ke(a,de=>{de?Do("keydown",document,u):Ro("keydown",document,u)}),wo(()=>{Ro("keydown",document,u)});let f=0,p=0,v=0,h=0,m=0,b=0,x=0,S=0,B=!1;function T(de){const{clientX:ye,clientY:pe}=de;v=ye-f,h=pe-p,Ai(he)}function z(de){const{mouseUpClientX:ye,mouseUpClientY:pe,mouseDownClientX:Me,mouseDownClientY:Q}=de,A=Me-ye,Z=Q-pe,re=`vertical${Z>0?"Top":"Bottom"}`,ue=`horizontal${A>0?"Left":"Right"}`;return{moveVerticalDirection:re,moveHorizontalDirection:ue,deltaHorizontal:A,deltaVertical:Z}}function I(de){const{value:ye}=r;if(!ye)return{offsetX:0,offsetY:0};const pe=ye.getBoundingClientRect(),{moveVerticalDirection:Me,moveHorizontalDirection:Q,deltaHorizontal:A,deltaVertical:Z}=de||{};let re=0,ue=0;return pe.width<=window.innerWidth?re=0:pe.left>0?re=(pe.width-window.innerWidth)/2:pe.right0?ue=(pe.height-window.innerHeight)/2:pe.bottom.5){const de=j;M-=1,j=Math.max(.5,Math.pow(L,M));const ye=de-j;he(!1);const pe=I();j+=ye,he(!1),j-=ye,v=pe.offsetX,h=pe.offsetY,he()}}function he(de=!0){var ye;const{value:pe}=r;if(!pe)return;const{style:Me}=pe,Q=rd((ye=O==null?void 0:O.previewedImgPropsRef.value)===null||ye===void 0?void 0:ye.style);let A="";if(typeof Q=="string")A=Q+";";else for(const re in Q)A+=`${hd(re)}: ${Q[re]};`;const Z=`transform-origin: center; transform: translateX(${v}px) translateY(${h}px) rotate(${E}deg) scale(${j});`;B?Me.cssText=A+"cursor: grabbing; transition: none;"+Z:Me.cssText=A+"cursor: grab;"+Z+(de?"":"transition: none;"),de||pe.offsetHeight}function be(){a.value=!a.value,s.value=!0}function me(){j=Ce(),M=Math.ceil(Math.log(j)/Math.log(L)),v=0,h=0,he()}const se={setPreviewSrc:de=>{l.value=de},setThumbnailEl:de=>{t=de},toggleShow:be};function Re(de,ye){if(e.showToolbarTooltip){const{value:pe}=o;return i(Pn,{to:!1,theme:pe.peers.Tooltip,themeOverrides:pe.peerOverrides.Tooltip,keepAliveOnHover:!1},{default:()=>d.value[ye],trigger:()=>de})}else return de}const ge=R(()=>{const{common:{cubicBezierEaseInOut:de},self:{toolbarIconColor:ye,toolbarBorderRadius:pe,toolbarBoxShadow:Me,toolbarColor:Q}}=o.value;return{"--n-bezier":de,"--n-toolbar-icon-color":ye,"--n-toolbar-color":Q,"--n-toolbar-border-radius":pe,"--n-toolbar-box-shadow":Me}}),{inlineThemeDisabled:ee}=ke(),xe=ee?Ae("image-preview",void 0,ge,e):void 0;return Object.assign({previewRef:r,previewWrapperRef:n,previewSrc:l,show:a,appear:Ct(),displayed:s,previewedImgProps:O==null?void 0:O.previewedImgPropsRef,handleWheel(de){de.preventDefault()},handlePreviewMousedown:k,handlePreviewDblclick:$,syncTransformOrigin:c,handleAfterLeave:()=>{U(),E=0,s.value=!1},handleDragStart:de=>{var ye,pe;(pe=(ye=O==null?void 0:O.previewedImgPropsRef.value)===null||ye===void 0?void 0:ye.onDragstart)===null||pe===void 0||pe.call(ye,de),de.preventDefault()},zoomIn:X,zoomOut:ve,rotateCounterclockwise:te,rotateClockwise:N,handleSwitchPrev:_,handleSwitchNext:V,withTooltip:Re,resizeToOrignalImageSize:me,cssVars:ee?void 0:ge,themeClass:xe==null?void 0:xe.themeClass,onRender:xe==null?void 0:xe.onRender},se)},render(){var e,o;const{clsPrefix:t}=this;return i(ao,null,(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e),i(pn,{show:this.show},{default:()=>{var r;return this.show||this.displayed?((r=this.onRender)===null||r===void 0||r.call(this),Lo(i("div",{class:[`${t}-image-preview-container`,this.themeClass],style:this.cssVars,onWheel:this.handleWheel},i(no,{name:"fade-in-transition",appear:this.appear},{default:()=>this.show?i("div",{class:`${t}-image-preview-overlay`,onClick:this.toggleShow}):null}),this.showToolbar?i(no,{name:"fade-in-transition",appear:this.appear},{default:()=>{if(!this.show)return null;const{withTooltip:n}=this;return i("div",{class:`${t}-image-preview-toolbar`},this.onPrev?i(ao,null,n(i(De,{clsPrefix:t,onClick:this.handleSwitchPrev},{default:()=>ib}),"tipPrevious"),n(i(De,{clsPrefix:t,onClick:this.handleSwitchNext},{default:()=>lb}),"tipNext")):null,n(i(De,{clsPrefix:t,onClick:this.rotateCounterclockwise},{default:()=>i(oc,null)}),"tipCounterclockwise"),n(i(De,{clsPrefix:t,onClick:this.rotateClockwise},{default:()=>i(ec,null)}),"tipClockwise"),n(i(De,{clsPrefix:t,onClick:this.resizeToOrignalImageSize},{default:()=>i(nc,null)}),"tipOriginalSize"),n(i(De,{clsPrefix:t,onClick:this.zoomOut},{default:()=>i(rc,null)}),"tipZoomOut"),n(i(De,{clsPrefix:t,onClick:this.zoomIn},{default:()=>i(tc,null)}),"tipZoomIn"),n(i(De,{clsPrefix:t,onClick:this.toggleShow},{default:()=>ab}),"tipClose"))}}):null,i(no,{name:"fade-in-scale-up-transition",onAfterLeave:this.handleAfterLeave,appear:this.appear,onEnter:this.syncTransformOrigin,onBeforeLeave:this.syncTransformOrigin},{default:()=>{const{previewedImgProps:n={}}=this;return Lo(i("div",{class:`${t}-image-preview-wrapper`,ref:"previewWrapperRef"},i("img",Object.assign({},n,{draggable:!1,onMousedown:this.handlePreviewMousedown,onDblclick:this.handlePreviewDblclick,class:[`${t}-image-preview`,n.class],key:this.previewSrc,src:this.previewSrc,ref:"previewRef",onDragstart:this.handleDragStart}))),[[Go,this.show]])}})),[[Tr,{enabled:this.show}]])):null}}))}}),Qa="n-image-group",db=_n,cb=q({name:"ImageGroup",props:db,setup(e){let o;const{mergedClsPrefixRef:t}=ke(e),r=`c${it()}`,n=Pr(),l=d=>{var c;o=d,(c=s.value)===null||c===void 0||c.setPreviewSrc(d)};function a(d){if(!(n!=null&&n.proxy))return;const u=n.proxy.$el.parentElement.querySelectorAll(`[data-group-id=${r}]:not([data-error=true])`);if(!u.length)return;const f=Array.from(u).findIndex(p=>p.dataset.previewSrc===o);~f?l(u[(f+d+u.length)%u.length].dataset.previewSrc):l(u[0].dataset.previewSrc)}Oe(Qa,{mergedClsPrefixRef:t,setPreviewSrc:l,setThumbnailEl:d=>{var c;(c=s.value)===null||c===void 0||c.setThumbnailEl(d)},toggleShow:()=>{var d;(d=s.value)===null||d===void 0||d.toggleShow()},groupId:r});const s=D(null);return{mergedClsPrefix:t,previewInstRef:s,next:()=>{a(1)},prev:()=>{a(-1)}}},render(){return i(Za,{theme:this.theme,themeOverrides:this.themeOverrides,clsPrefix:this.mergedClsPrefix,ref:"previewInstRef",onPrev:this.prev,onNext:this.next,showToolbar:this.showToolbar,showToolbarTooltip:this.showToolbarTooltip},this.$slots)}}),ub=Object.assign({alt:String,height:[String,Number],imgProps:Object,previewedImgProps:Object,lazy:Boolean,intersectionObserverOptions:Object,objectFit:{type:String,default:"fill"},previewSrc:String,fallbackSrc:String,width:[String,Number],src:String,previewDisabled:Boolean,loadDescription:String,onError:Function,onLoad:Function},_n),fb=q({name:"Image",props:ub,inheritAttrs:!1,setup(e){const o=D(null),t=D(!1),r=D(null),n=Se(Qa,null),{mergedClsPrefixRef:l}=n||ke(e),a={click:()=>{if(e.previewDisabled||t.value)return;const c=e.previewSrc||e.src;if(n){n.setPreviewSrc(c),n.setThumbnailEl(o.value),n.toggleShow();return}const{value:u}=r;u&&(u.setPreviewSrc(c),u.setThumbnailEl(o.value),u.toggleShow())}},s=D(!e.lazy);mo(()=>{var c;(c=o.value)===null||c===void 0||c.setAttribute("data-group-id",(n==null?void 0:n.groupId)||"")}),mo(()=>{if(e.lazy&&e.intersectionObserverOptions){let c;const u=oo(()=>{c==null||c(),c=void 0,c=_l(o.value,e.intersectionObserverOptions,s)});wo(()=>{u(),c==null||c()})}}),oo(()=>{var c;e.src,(c=e.imgProps)===null||c===void 0||c.src,t.value=!1});const d=D(!1);return Oe(Oa,{previewedImgPropsRef:le(e,"previewedImgProps")}),Object.assign({mergedClsPrefix:l,groupId:n==null?void 0:n.groupId,previewInstRef:r,imageRef:o,showError:t,shouldStartLoading:s,loaded:d,mergedOnClick:c=>{var u,f;a.click(),(f=(u=e.imgProps)===null||u===void 0?void 0:u.onClick)===null||f===void 0||f.call(u,c)},mergedOnError:c=>{if(!s.value)return;t.value=!0;const{onError:u,imgProps:{onError:f}={}}=e;u==null||u(c),f==null||f(c)},mergedOnLoad:c=>{const{onLoad:u,imgProps:{onLoad:f}={}}=e;u==null||u(c),f==null||f(c),d.value=!0}},a)},render(){var e,o;const{mergedClsPrefix:t,imgProps:r={},loaded:n,$attrs:l,lazy:a}=this,s=(o=(e=this.$slots).placeholder)===null||o===void 0?void 0:o.call(e),d=this.src||r.src,c=i("img",Object.assign(Object.assign({},r),{ref:"imageRef",width:this.width||r.width,height:this.height||r.height,src:this.showError?this.fallbackSrc:a&&this.intersectionObserverOptions?this.shouldStartLoading?d:void 0:d,alt:this.alt||r.alt,"aria-label":this.alt||r.alt,onClick:this.mergedOnClick,onError:this.mergedOnError,onLoad:this.mergedOnLoad,loading:Sr&&a&&!this.intersectionObserverOptions?"lazy":"eager",style:[r.style||"",s&&!n?{height:"0",width:"0",visibility:"hidden"}:"",{objectFit:this.objectFit}],"data-error":this.showError,"data-preview-src":this.previewSrc||this.src}));return i("div",Object.assign({},l,{role:"none",class:[l.class,`${t}-image`,(this.previewDisabled||this.showError)&&`${t}-image--preview-disabled`]}),this.groupId?c:i(Za,{theme:this.theme,themeOverrides:this.themeOverrides,clsPrefix:t,ref:"previewInstRef",showToolbar:this.showToolbar,showToolbarTooltip:this.showToolbarTooltip},{default:()=>c}),!n&&s)}});function hb(e){return e==null||typeof e=="string"&&e.trim()===""?null:Number(e)}function pb(e){return e.includes(".")&&(/^(-)?\d+.*(\.|0)$/.test(e)||/^\.\d+$/.test(e))}function on(e){return e==null?!0:!Number.isNaN(e)}function Ri(e,o){return e==null?"":o===void 0?String(e):e.toFixed(o)}function tn(e){if(e===null)return null;if(typeof e=="number")return e;{const o=Number(e);return Number.isNaN(o)?null:o}}const vb=C([g("input-number-suffix",` - display: inline-block; - margin-right: 10px; - `),g("input-number-prefix",` - display: inline-block; - margin-left: 10px; - `)]),Pi=800,ki=100,gb=Object.assign(Object.assign({},ne.props),{autofocus:Boolean,loading:{type:Boolean,default:void 0},placeholder:String,defaultValue:{type:Number,default:null},value:Number,step:{type:[Number,String],default:1},min:[Number,String],max:[Number,String],size:String,disabled:{type:Boolean,default:void 0},validator:Function,bordered:{type:Boolean,default:void 0},showButton:{type:Boolean,default:!0},buttonPlacement:{type:String,default:"right"},readonly:Boolean,clearable:Boolean,keyboard:{type:Object,default:{}},updateValueOnInput:{type:Boolean,default:!0},parse:Function,format:Function,precision:Number,status:String,"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],onFocus:[Function,Array],onBlur:[Function,Array],onClear:[Function,Array],onChange:[Function,Array]}),_1=q({name:"InputNumber",props:gb,setup(e){const{mergedBorderedRef:o,mergedClsPrefixRef:t,mergedRtlRef:r}=ke(e),n=ne("InputNumber","-input-number",vb,xg,e,t),{localeRef:l}=Xo("InputNumber"),a=rt(e),{mergedSizeRef:s,mergedDisabledRef:d,mergedStatusRef:c}=a,u=D(null),f=D(null),p=D(null),v=D(e.defaultValue),h=le(e,"value"),m=so(h,v),b=D(""),x=A=>{const Z=String(A).split(".")[1];return Z?Z.length:0},S=A=>{const Z=[e.min,e.max,e.step,A].map(re=>re===void 0?0:x(re));return Math.max(...Z)},B=We(()=>{const{placeholder:A}=e;return A!==void 0?A:l.value.placeholder}),T=We(()=>{const A=tn(e.step);return A!==null?A===0?1:Math.abs(A):1}),z=We(()=>{const A=tn(e.min);return A!==null?A:null}),I=We(()=>{const A=tn(e.max);return A!==null?A:null}),w=A=>{const{value:Z}=m;if(A===Z){k();return}const{"onUpdate:value":re,onUpdateValue:ue,onChange:Y}=e,{nTriggerFormInput:ce,nTriggerFormChange:He}=a;Y&&ae(Y,A),ue&&ae(ue,A),re&&ae(re,A),v.value=A,ce(),He()},O=({offset:A,doUpdateIfValid:Z,fixPrecision:re,isInputing:ue})=>{const{value:Y}=b;if(ue&&pb(Y))return!1;const ce=(e.parse||hb)(Y);if(ce===null)return Z&&w(null),null;if(on(ce)){const He=x(ce),{precision:Ve}=e;if(Ve!==void 0&&Vepo){if(!Z||ue)return!1;Ze=po}if(fo!==null&&Ze{const{value:A}=m;if(on(A)){const{format:Z,precision:re}=e;Z?b.value=Z(A):A===null||re===void 0||x(A)>re?b.value=Ri(A,void 0):b.value=Ri(A,re)}else b.value=String(A)};k();const $=We(()=>O({offset:0,doUpdateIfValid:!1,isInputing:!1,fixPrecision:!1})===!1),L=We(()=>{const{value:A}=m;if(e.validator&&A===null)return!1;const{value:Z}=T;return O({offset:-Z,doUpdateIfValid:!1,isInputing:!1,fixPrecision:!1})!==!1}),M=We(()=>{const{value:A}=m;if(e.validator&&A===null)return!1;const{value:Z}=T;return O({offset:+Z,doUpdateIfValid:!1,isInputing:!1,fixPrecision:!1})!==!1});function j(A){const{onFocus:Z}=e,{nTriggerFormFocus:re}=a;Z&&ae(Z,A),re()}function E(A){var Z,re;if(A.target===((Z=u.value)===null||Z===void 0?void 0:Z.wrapperElRef))return;const ue=O({offset:0,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0});if(ue!==!1){const He=(re=u.value)===null||re===void 0?void 0:re.inputElRef;He&&(He.value=String(ue||"")),m.value===ue&&k()}else k();const{onBlur:Y}=e,{nTriggerFormBlur:ce}=a;Y&&ae(Y,A),ce(),io(()=>{k()})}function U(A){const{onClear:Z}=e;Z&&ae(Z,A)}function _(){const{value:A}=M;if(!A){se();return}const{value:Z}=m;if(Z===null)e.validator||w(G());else{const{value:re}=T;O({offset:re,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0})}}function V(){const{value:A}=L;if(!A){me();return}const{value:Z}=m;if(Z===null)e.validator||w(G());else{const{value:re}=T;O({offset:-re,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0})}}const te=j,N=E;function G(){if(e.validator)return null;const{value:A}=z,{value:Z}=I;return A!==null?Math.max(0,A):Z!==null?Math.min(0,Z):0}function Ce(A){U(A),w(null)}function X(A){var Z,re,ue;!((Z=p.value)===null||Z===void 0)&&Z.$el.contains(A.target)&&A.preventDefault(),!((re=f.value)===null||re===void 0)&&re.$el.contains(A.target)&&A.preventDefault(),(ue=u.value)===null||ue===void 0||ue.activate()}let ve=null,he=null,be=null;function me(){be&&(window.clearTimeout(be),be=null),ve&&(window.clearInterval(ve),ve=null)}function se(){ge&&(window.clearTimeout(ge),ge=null),he&&(window.clearInterval(he),he=null)}function Re(){me(),be=window.setTimeout(()=>{ve=window.setInterval(()=>{V()},ki)},Pi),Do("mouseup",document,me,{once:!0})}let ge=null;function ee(){se(),ge=window.setTimeout(()=>{he=window.setInterval(()=>{_()},ki)},Pi),Do("mouseup",document,se,{once:!0})}const xe=()=>{he||_()},de=()=>{ve||V()};function ye(A){var Z,re;if(A.key==="Enter"){if(A.target===((Z=u.value)===null||Z===void 0?void 0:Z.wrapperElRef))return;O({offset:0,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0})!==!1&&((re=u.value)===null||re===void 0||re.deactivate())}else if(A.key==="ArrowUp"){if(!M.value||e.keyboard.ArrowUp===!1)return;A.preventDefault(),O({offset:0,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0})!==!1&&_()}else if(A.key==="ArrowDown"){if(!L.value||e.keyboard.ArrowDown===!1)return;A.preventDefault(),O({offset:0,doUpdateIfValid:!0,isInputing:!1,fixPrecision:!0})!==!1&&V()}}function pe(A){b.value=A,e.updateValueOnInput&&!e.format&&!e.parse&&e.precision===void 0&&O({offset:0,doUpdateIfValid:!0,isInputing:!0,fixPrecision:!1})}Ke(m,()=>{k()});const Me={focus:()=>{var A;return(A=u.value)===null||A===void 0?void 0:A.focus()},blur:()=>{var A;return(A=u.value)===null||A===void 0?void 0:A.blur()}},Q=to("InputNumber",r,t);return Object.assign(Object.assign({},Me),{rtlEnabled:Q,inputInstRef:u,minusButtonInstRef:f,addButtonInstRef:p,mergedClsPrefix:t,mergedBordered:o,uncontrolledValue:v,mergedValue:m,mergedPlaceholder:B,displayedValueInvalid:$,mergedSize:s,mergedDisabled:d,displayedValue:b,addable:M,minusable:L,mergedStatus:c,handleFocus:te,handleBlur:N,handleClear:Ce,handleMouseDown:X,handleAddClick:xe,handleMinusClick:de,handleAddMousedown:ee,handleMinusMousedown:Re,handleKeyDown:ye,handleUpdateDisplayedValue:pe,mergedTheme:n,inputThemeOverrides:{paddingSmall:"0 8px 0 10px",paddingMedium:"0 8px 0 12px",paddingLarge:"0 8px 0 14px"},buttonThemeOverrides:R(()=>{const{self:{iconColorDisabled:A}}=n.value,[Z,re,ue,Y]=ir(A);return{textColorTextDisabled:`rgb(${Z}, ${re}, ${ue})`,opacityDisabled:`${Y}`}})})},render(){const{mergedClsPrefix:e,$slots:o}=this,t=()=>i(pi,{text:!0,disabled:!this.minusable||this.mergedDisabled||this.readonly,focusable:!1,theme:this.mergedTheme.peers.Button,themeOverrides:this.mergedTheme.peerOverrides.Button,builtinThemeOverrides:this.buttonThemeOverrides,onClick:this.handleMinusClick,onMousedown:this.handleMinusMousedown,ref:"minusButtonInstRef"},{icon:()=>lo(o["minus-icon"],()=>[i(De,{clsPrefix:e},{default:()=>i(cl,null)})])}),r=()=>i(pi,{text:!0,disabled:!this.addable||this.mergedDisabled||this.readonly,focusable:!1,theme:this.mergedTheme.peers.Button,themeOverrides:this.mergedTheme.peerOverrides.Button,builtinThemeOverrides:this.buttonThemeOverrides,onClick:this.handleAddClick,onMousedown:this.handleAddMousedown,ref:"addButtonInstRef"},{icon:()=>lo(o["add-icon"],()=>[i(De,{clsPrefix:e},{default:()=>i(tr,null)})])});return i("div",{class:[`${e}-input-number`,this.rtlEnabled&&`${e}-input-number--rtl`]},i(xt,{ref:"inputInstRef",autofocus:this.autofocus,status:this.mergedStatus,bordered:this.mergedBordered,loading:this.loading,value:this.displayedValue,onUpdateValue:this.handleUpdateDisplayedValue,theme:this.mergedTheme.peers.Input,themeOverrides:this.mergedTheme.peerOverrides.Input,builtinThemeOverrides:this.inputThemeOverrides,size:this.mergedSize,placeholder:this.mergedPlaceholder,disabled:this.mergedDisabled,readonly:this.readonly,textDecoration:this.displayedValueInvalid?"line-through":void 0,onFocus:this.handleFocus,onBlur:this.handleBlur,onKeydown:this.handleKeyDown,onMousedown:this.handleMouseDown,onClear:this.handleClear,clearable:this.clearable,internalLoadingBeforeSuffix:!0},{prefix:()=>{var n;return this.showButton&&this.buttonPlacement==="both"?[t(),Ee(o.prefix,l=>l?i("span",{class:`${e}-input-number-prefix`},l):null)]:(n=o.prefix)===null||n===void 0?void 0:n.call(o)},suffix:()=>{var n;return this.showButton?[Ee(o.suffix,l=>l?i("span",{class:`${e}-input-number-suffix`},l):null),this.buttonPlacement==="right"?t():null,r()]:(n=o.suffix)===null||n===void 0?void 0:n.call(o)}}))}}),mb="n-layout-sider",bb={extraFontSize:"12px",width:"440px"},xb={name:"Transfer",common:fe,peers:{Checkbox:Nt,Scrollbar:zo,Input:Ho,Empty:zt,Button:$o},self(e){const{iconColorDisabled:o,iconColor:t,fontWeight:r,fontSizeLarge:n,fontSizeMedium:l,fontSizeSmall:a,heightLarge:s,heightMedium:d,heightSmall:c,borderRadius:u,inputColor:f,tableHeaderColor:p,textColor1:v,textColorDisabled:h,textColor2:m,hoverColor:b}=e;return Object.assign(Object.assign({},bb),{itemHeightSmall:c,itemHeightMedium:d,itemHeightLarge:s,fontSizeSmall:a,fontSizeMedium:l,fontSizeLarge:n,borderRadius:u,borderColor:"#0000",listColor:f,headerColor:p,titleTextColor:v,titleTextColorDisabled:h,extraTextColor:m,filterDividerColor:"#0000",itemTextColor:m,itemTextColorDisabled:h,itemColorPending:b,titleFontWeight:r,iconColor:t,iconColorDisabled:o})}},Cb=xb,yb=C([g("list",` - --n-merged-border-color: var(--n-border-color); - --n-merged-color: var(--n-color); - --n-merged-color-hover: var(--n-color-hover); - margin: 0; - font-size: var(--n-font-size); - transition: - background-color .3s var(--n-bezier), - color .3s var(--n-bezier), - border-color .3s var(--n-bezier); - padding: 0; - list-style-type: none; - color: var(--n-text-color); - background-color: var(--n-merged-color); - `,[P("show-divider",[g("list-item",[C("&:not(:last-child)",[y("divider",` - background-color: var(--n-merged-border-color); - `)])])]),P("clickable",[g("list-item",` - cursor: pointer; - `)]),P("bordered",` - border: 1px solid var(--n-merged-border-color); - border-radius: var(--n-border-radius); - `),P("hoverable",[g("list-item",` - border-radius: var(--n-border-radius); - `,[C("&:hover",` - background-color: var(--n-merged-color-hover); - `,[y("divider",` - background-color: transparent; - `)])])]),P("bordered, hoverable",[g("list-item",` - padding: 12px 20px; - `),y("header, footer",` - padding: 12px 20px; - `)]),y("header, footer",` - padding: 12px 0; - box-sizing: border-box; - transition: border-color .3s var(--n-bezier); - `,[C("&:not(:last-child)",` - border-bottom: 1px solid var(--n-merged-border-color); - `)]),g("list-item",` - position: relative; - padding: 12px 0; - box-sizing: border-box; - display: flex; - flex-wrap: nowrap; - align-items: center; - transition: - background-color .3s var(--n-bezier), - border-color .3s var(--n-bezier); - `,[y("prefix",` - margin-right: 20px; - flex: 0; - `),y("suffix",` - margin-left: 20px; - flex: 0; - `),y("main",` - flex: 1; - `),y("divider",` - height: 1px; - position: absolute; - bottom: 0; - left: 0; - right: 0; - background-color: transparent; - transition: background-color .3s var(--n-bezier); - pointer-events: none; - `)])]),Or(g("list",` - --n-merged-color-hover: var(--n-color-hover-modal); - --n-merged-color: var(--n-color-modal); - --n-merged-border-color: var(--n-border-color-modal); - `)),gn(g("list",` - --n-merged-color-hover: var(--n-color-hover-popover); - --n-merged-color: var(--n-color-popover); - --n-merged-border-color: var(--n-border-color-popover); - `))]),wb=Object.assign(Object.assign({},ne.props),{size:{type:String,default:"medium"},bordered:Boolean,clickable:Boolean,hoverable:Boolean,showDivider:{type:Boolean,default:!0}}),Ja="n-list",D1=q({name:"List",props:wb,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t,mergedRtlRef:r}=ke(e),n=to("List",r,o),l=ne("List","-list",yb,Sg,e,o);Oe(Ja,{showDividerRef:le(e,"showDivider"),mergedClsPrefixRef:o});const a=R(()=>{const{common:{cubicBezierEaseInOut:d},self:{fontSize:c,textColor:u,color:f,colorModal:p,colorPopover:v,borderColor:h,borderColorModal:m,borderColorPopover:b,borderRadius:x,colorHover:S,colorHoverModal:B,colorHoverPopover:T}}=l.value;return{"--n-font-size":c,"--n-bezier":d,"--n-text-color":u,"--n-color":f,"--n-border-radius":x,"--n-border-color":h,"--n-border-color-modal":m,"--n-border-color-popover":b,"--n-color-modal":p,"--n-color-popover":v,"--n-color-hover":S,"--n-color-hover-modal":B,"--n-color-hover-popover":T}}),s=t?Ae("list",void 0,a,e):void 0;return{mergedClsPrefix:o,rtlEnabled:n,cssVars:t?void 0:a,themeClass:s==null?void 0:s.themeClass,onRender:s==null?void 0:s.onRender}},render(){var e;const{$slots:o,mergedClsPrefix:t,onRender:r}=this;return r==null||r(),i("ul",{class:[`${t}-list`,this.rtlEnabled&&`${t}-list--rtl`,this.bordered&&`${t}-list--bordered`,this.showDivider&&`${t}-list--show-divider`,this.hoverable&&`${t}-list--hoverable`,this.clickable&&`${t}-list--clickable`,this.themeClass],style:this.cssVars},o.header?i("div",{class:`${t}-list__header`},o.header()):null,(e=o.default)===null||e===void 0?void 0:e.call(o),o.footer?i("div",{class:`${t}-list__footer`},o.footer()):null)}}),L1=q({name:"ListItem",setup(){const e=Se(Ja,null);return e||Eo("list-item","`n-list-item` must be placed in `n-list`."),{showDivider:e.showDividerRef,mergedClsPrefix:e.mergedClsPrefixRef}},render(){const{$slots:e,mergedClsPrefix:o}=this;return i("li",{class:`${o}-list-item`},e.prefix?i("div",{class:`${o}-list-item__prefix`},e.prefix()):null,e.default?i("div",{class:`${o}-list-item__main`},e):null,e.suffix?i("div",{class:`${o}-list-item__suffix`},e.suffix()):null,this.showDivider&&i("div",{class:`${o}-list-item__divider`}))}}),gr="n-menu",Dn="n-submenu",Ln="n-menu-item-group",yr=8;function Hn(e){const o=Se(gr),{props:t,mergedCollapsedRef:r}=o,n=Se(Dn,null),l=Se(Ln,null),a=R(()=>t.mode==="horizontal"),s=R(()=>a.value?t.dropdownPlacement:"tmNodes"in e?"right-start":"right"),d=R(()=>{var p;return Math.max((p=t.collapsedIconSize)!==null&&p!==void 0?p:t.iconSize,t.iconSize)}),c=R(()=>{var p;return!a.value&&e.root&&r.value&&(p=t.collapsedIconSize)!==null&&p!==void 0?p:t.iconSize}),u=R(()=>{if(a.value)return;const{collapsedWidth:p,indent:v,rootIndent:h}=t,{root:m,isGroup:b}=e,x=h===void 0?v:h;if(m)return r.value?p/2-d.value/2:x;if(l)return v/2+l.paddingLeftRef.value;if(n)return(b?v/2:v)+n.paddingLeftRef.value}),f=R(()=>{const{collapsedWidth:p,indent:v,rootIndent:h}=t,{value:m}=d,{root:b}=e;return a.value||!b||!r.value?yr:(h===void 0?v:h)+m+yr-(p+m)/2});return{dropdownPlacement:s,activeIconSize:c,maxIconSize:d,paddingLeft:u,iconMarginRight:f,NMenu:o,NSubmenu:n}}const An={internalKey:{type:[String,Number],required:!0},root:Boolean,isGroup:Boolean,level:{type:Number,required:!0},title:[String,Function],extra:[String,Function]},es=Object.assign(Object.assign({},An),{tmNode:{type:Object,required:!0},tmNodes:{type:Array,required:!0}}),Sb=q({name:"MenuOptionGroup",props:es,setup(e){Oe(Dn,null);const o=Hn(e);Oe(Ln,{paddingLeftRef:o.paddingLeft});const{mergedClsPrefixRef:t,props:r}=Se(gr);return function(){const{value:n}=t,l=o.paddingLeft.value,{nodeProps:a}=r,s=a==null?void 0:a(e.tmNode.rawNode);return i("div",{class:`${n}-menu-item-group`,role:"group"},i("div",Object.assign({},s,{class:[`${n}-menu-item-group-title`,s==null?void 0:s.class],style:[(s==null?void 0:s.style)||"",l!==void 0?`padding-left: ${l}px;`:""]}),qe(e.title),e.extra?i(ao,null," ",qe(e.extra)):null),i("div",null,e.tmNodes.map(d=>En(d,r))))}}}),os=q({name:"MenuOptionContent",props:{collapsed:Boolean,disabled:Boolean,title:[String,Function],icon:Function,extra:[String,Function],showArrow:Boolean,childActive:Boolean,hover:Boolean,paddingLeft:Number,selected:Boolean,maxIconSize:{type:Number,required:!0},activeIconSize:{type:Number,required:!0},iconMarginRight:{type:Number,required:!0},clsPrefix:{type:String,required:!0},onClick:Function,tmNode:{type:Object,required:!0}},setup(e){const{props:o}=Se(gr);return{menuProps:o,style:R(()=>{const{paddingLeft:t}=e;return{paddingLeft:t&&`${t}px`}}),iconStyle:R(()=>{const{maxIconSize:t,activeIconSize:r,iconMarginRight:n}=e;return{width:`${t}px`,height:`${t}px`,fontSize:`${r}px`,marginRight:`${n}px`}})}},render(){const{clsPrefix:e,tmNode:o,menuProps:{renderIcon:t,renderLabel:r,renderExtra:n,expandIcon:l}}=this,a=t?t(o.rawNode):qe(this.icon);return i("div",{onClick:s=>{var d;(d=this.onClick)===null||d===void 0||d.call(this,s)},role:"none",class:[`${e}-menu-item-content`,{[`${e}-menu-item-content--selected`]:this.selected,[`${e}-menu-item-content--collapsed`]:this.collapsed,[`${e}-menu-item-content--child-active`]:this.childActive,[`${e}-menu-item-content--disabled`]:this.disabled,[`${e}-menu-item-content--hover`]:this.hover}],style:this.style},a&&i("div",{class:`${e}-menu-item-content__icon`,style:this.iconStyle,role:"none"},[a]),i("div",{class:`${e}-menu-item-content-header`,role:"none"},r?r(o.rawNode):qe(this.title),this.extra||n?i("span",{class:`${e}-menu-item-content-header__extra`}," ",n?n(o.rawNode):qe(this.extra)):null),this.showArrow?i(De,{ariaHidden:!0,class:`${e}-menu-item-content__arrow`,clsPrefix:e},{default:()=>l?l(o.rawNode):i(Qd,null)}):null)}}),ts=Object.assign(Object.assign({},An),{rawNodes:{type:Array,default:()=>[]},tmNodes:{type:Array,default:()=>[]},tmNode:{type:Object,required:!0},disabled:{type:Boolean,default:!1},icon:Function,onClick:Function}),zb=q({name:"Submenu",props:ts,setup(e){const o=Hn(e),{NMenu:t,NSubmenu:r}=o,{props:n,mergedCollapsedRef:l,mergedThemeRef:a}=t,s=R(()=>{const{disabled:p}=e;return r!=null&&r.mergedDisabledRef.value||n.disabled?!0:p}),d=D(!1);Oe(Dn,{paddingLeftRef:o.paddingLeft,mergedDisabledRef:s}),Oe(Ln,null);function c(){const{onClick:p}=e;p&&p()}function u(){s.value||(l.value||t.toggleExpand(e.internalKey),c())}function f(p){d.value=p}return{menuProps:n,mergedTheme:a,doSelect:t.doSelect,inverted:t.invertedRef,isHorizontal:t.isHorizontalRef,mergedClsPrefix:t.mergedClsPrefixRef,maxIconSize:o.maxIconSize,activeIconSize:o.activeIconSize,iconMarginRight:o.iconMarginRight,dropdownPlacement:o.dropdownPlacement,dropdownShow:d,paddingLeft:o.paddingLeft,mergedDisabled:s,mergedValue:t.mergedValueRef,childActive:We(()=>t.activePathRef.value.includes(e.internalKey)),collapsed:R(()=>n.mode==="horizontal"?!1:l.value?!0:!t.mergedExpandedKeysRef.value.includes(e.internalKey)),dropdownEnabled:R(()=>!s.value&&(n.mode==="horizontal"||l.value)),handlePopoverShowChange:f,handleClick:u}},render(){var e;const{mergedClsPrefix:o,menuProps:{renderIcon:t,renderLabel:r}}=this,n=()=>{const{isHorizontal:a,paddingLeft:s,collapsed:d,mergedDisabled:c,maxIconSize:u,activeIconSize:f,title:p,childActive:v,icon:h,handleClick:m,menuProps:{nodeProps:b},dropdownShow:x,iconMarginRight:S,tmNode:B,mergedClsPrefix:T}=this,z=b==null?void 0:b(B.rawNode);return i("div",Object.assign({},z,{class:[`${T}-menu-item`,z==null?void 0:z.class],role:"menuitem"}),i(os,{tmNode:B,paddingLeft:s,collapsed:d,disabled:c,iconMarginRight:S,maxIconSize:u,activeIconSize:f,title:p,extra:this.extra,showArrow:!a,childActive:v,clsPrefix:T,icon:h,hover:x,onClick:m}))},l=()=>i(wt,null,{default:()=>{const{tmNodes:a,collapsed:s}=this;return s?null:i("div",{class:`${o}-submenu-children`,role:"menu"},a.map(d=>En(d,this.menuProps)))}});return this.root?i(Jh,Object.assign({size:"large",trigger:"hover"},(e=this.menuProps)===null||e===void 0?void 0:e.dropdownProps,{themeOverrides:this.mergedTheme.peerOverrides.Dropdown,theme:this.mergedTheme.peers.Dropdown,builtinThemeOverrides:{fontSizeLarge:"14px",optionIconSizeLarge:"18px"},value:this.mergedValue,disabled:!this.dropdownEnabled,placement:this.dropdownPlacement,keyField:this.menuProps.keyField,labelField:this.menuProps.labelField,childrenField:this.menuProps.childrenField,onUpdateShow:this.handlePopoverShowChange,options:this.rawNodes,onSelect:this.doSelect,inverted:this.inverted,renderIcon:t,renderLabel:r}),{default:()=>i("div",{class:`${o}-submenu`,role:"menuitem","aria-expanded":!this.collapsed},n(),this.isHorizontal?null:l())}):i("div",{class:`${o}-submenu`,role:"menuitem","aria-expanded":!this.collapsed},n(),l())}}),rs=Object.assign(Object.assign({},An),{tmNode:{type:Object,required:!0},disabled:Boolean,icon:Function,onClick:Function}),$b=q({name:"MenuOption",props:rs,setup(e){const o=Hn(e),{NSubmenu:t,NMenu:r}=o,{props:n,mergedClsPrefixRef:l,mergedCollapsedRef:a}=r,s=t?t.mergedDisabledRef:{value:!1},d=R(()=>s.value||e.disabled);function c(f){const{onClick:p}=e;p&&p(f)}function u(f){d.value||(r.doSelect(e.internalKey,e.tmNode.rawNode),c(f))}return{mergedClsPrefix:l,dropdownPlacement:o.dropdownPlacement,paddingLeft:o.paddingLeft,iconMarginRight:o.iconMarginRight,maxIconSize:o.maxIconSize,activeIconSize:o.activeIconSize,mergedTheme:r.mergedThemeRef,menuProps:n,dropdownEnabled:We(()=>e.root&&a.value&&n.mode!=="horizontal"&&!d.value),selected:We(()=>r.mergedValueRef.value===e.internalKey),mergedDisabled:d,handleClick:u}},render(){const{mergedClsPrefix:e,mergedTheme:o,tmNode:t,menuProps:{renderLabel:r,nodeProps:n}}=this,l=n==null?void 0:n(t.rawNode);return i("div",Object.assign({},l,{role:"menuitem",class:[`${e}-menu-item`,l==null?void 0:l.class]}),i(Pn,{theme:o.peers.Tooltip,themeOverrides:o.peerOverrides.Tooltip,trigger:"hover",placement:this.dropdownPlacement,disabled:!this.dropdownEnabled||this.title===void 0,internalExtraClass:["menu-tooltip"]},{default:()=>r?r(t.rawNode):qe(this.title),trigger:()=>i(os,{tmNode:t,clsPrefix:e,paddingLeft:this.paddingLeft,iconMarginRight:this.iconMarginRight,maxIconSize:this.maxIconSize,activeIconSize:this.activeIconSize,selected:this.selected,title:this.title,extra:this.extra,disabled:this.mergedDisabled,icon:this.icon,onClick:this.handleClick})}))}}),Rb=q({name:"MenuDivider",setup(){const e=Se(gr),{mergedClsPrefixRef:o,isHorizontalRef:t}=e;return()=>t.value?null:i("div",{class:`${o.value}-menu-divider`})}}),Pb=yo(es),kb=yo(rs),Ib=yo(ts);function ns(e){return e.type==="divider"||e.type==="render"}function Bb(e){return e.type==="divider"}function En(e,o){const{rawNode:t}=e,{show:r}=t;if(r===!1)return null;if(ns(t))return Bb(t)?i(Rb,Object.assign({key:e.key},t.props)):null;const{labelField:n}=o,{key:l,level:a,isGroup:s}=e,d=Object.assign(Object.assign({},t),{title:t.title||t[n],extra:t.titleExtra||t.extra,key:l,internalKey:l,level:a,root:a===0,isGroup:s});return e.children?e.isGroup?i(Sb,go(d,Pb,{tmNode:e,tmNodes:e.children,key:l})):i(zb,go(d,Ib,{key:l,rawNodes:t[o.childrenField],tmNodes:e.children,tmNode:e})):i($b,go(d,kb,{key:l,tmNode:e}))}const Ii=[C("&::before","background-color: var(--n-item-color-hover);"),y("arrow",` - color: var(--n-arrow-color-hover); - `),y("icon",` - color: var(--n-item-icon-color-hover); - `),g("menu-item-content-header",` - color: var(--n-item-text-color-hover); - `,[C("a",` - color: var(--n-item-text-color-hover); - `),y("extra",` - color: var(--n-item-text-color-hover); - `)])],Bi=[y("icon",` - color: var(--n-item-icon-color-hover-horizontal); - `),g("menu-item-content-header",` - color: var(--n-item-text-color-hover-horizontal); - `,[C("a",` - color: var(--n-item-text-color-hover-horizontal); - `),y("extra",` - color: var(--n-item-text-color-hover-horizontal); - `)])],Tb=C([g("menu",` - background-color: var(--n-color); - color: var(--n-item-text-color); - overflow: hidden; - transition: background-color .3s var(--n-bezier); - box-sizing: border-box; - font-size: var(--n-font-size); - padding-bottom: 6px; - `,[P("horizontal",` - display: inline-flex; - padding-bottom: 0; - `,[g("submenu","margin: 0;"),g("menu-item","margin: 0;"),g("menu-item-content",` - padding: 0 20px; - border-bottom: 2px solid #0000; - `,[C("&::before","display: none;"),P("selected","border-bottom: 2px solid var(--n-border-color-horizontal)")]),g("menu-item-content",[P("selected",[y("icon","color: var(--n-item-icon-color-active-horizontal);"),g("menu-item-content-header",` - color: var(--n-item-text-color-active-horizontal); - `,[C("a","color: var(--n-item-text-color-active-horizontal);"),y("extra","color: var(--n-item-text-color-active-horizontal);")])]),P("child-active",` - border-bottom: 2px solid var(--n-border-color-horizontal); - `,[g("menu-item-content-header",` - color: var(--n-item-text-color-child-active-horizontal); - `,[C("a",` - color: var(--n-item-text-color-child-active-horizontal); - `),y("extra",` - color: var(--n-item-text-color-child-active-horizontal); - `)]),y("icon",` - color: var(--n-item-icon-color-child-active-horizontal); - `)]),je("disabled",[je("selected, child-active",[C("&:focus-within",Bi)]),P("selected",[ft(null,[y("icon","color: var(--n-item-icon-color-active-hover-horizontal);"),g("menu-item-content-header",` - color: var(--n-item-text-color-active-hover-horizontal); - `,[C("a","color: var(--n-item-text-color-active-hover-horizontal);"),y("extra","color: var(--n-item-text-color-active-hover-horizontal);")])])]),P("child-active",[ft(null,[y("icon","color: var(--n-item-icon-color-child-active-hover-horizontal);"),g("menu-item-content-header",` - color: var(--n-item-text-color-child-active-hover-horizontal); - `,[C("a","color: var(--n-item-text-color-child-active-hover-horizontal);"),y("extra","color: var(--n-item-text-color-child-active-hover-horizontal);")])])]),ft("border-bottom: 2px solid var(--n-border-color-horizontal);",Bi)]),g("menu-item-content-header",[C("a","color: var(--n-item-text-color-horizontal);")])])]),P("collapsed",[g("menu-item-content",[P("selected",[C("&::before",` - background-color: var(--n-item-color-active-collapsed) !important; - `)]),g("menu-item-content-header","opacity: 0;"),y("arrow","opacity: 0;"),y("icon","color: var(--n-item-icon-color-collapsed);")])]),g("menu-item",` - height: var(--n-item-height); - margin-top: 6px; - position: relative; - `),g("menu-item-content",` - box-sizing: border-box; - line-height: 1.75; - height: 100%; - display: grid; - grid-template-areas: "icon content arrow"; - grid-template-columns: auto 1fr auto; - align-items: center; - cursor: pointer; - position: relative; - padding-right: 18px; - transition: - background-color .3s var(--n-bezier), - padding-left .3s var(--n-bezier), - border-color .3s var(--n-bezier); - `,[C("> *","z-index: 1;"),C("&::before",` - z-index: auto; - content: ""; - background-color: #0000; - position: absolute; - left: 8px; - right: 8px; - top: 0; - bottom: 0; - pointer-events: none; - border-radius: var(--n-border-radius); - transition: background-color .3s var(--n-bezier); - `),P("disabled",` - opacity: .45; - cursor: not-allowed; - `),P("collapsed",[y("arrow","transform: rotate(0);")]),P("selected",[C("&::before","background-color: var(--n-item-color-active);"),y("arrow","color: var(--n-arrow-color-active);"),y("icon","color: var(--n-item-icon-color-active);"),g("menu-item-content-header",` - color: var(--n-item-text-color-active); - `,[C("a","color: var(--n-item-text-color-active);"),y("extra","color: var(--n-item-text-color-active);")])]),P("child-active",[g("menu-item-content-header",` - color: var(--n-item-text-color-child-active); - `,[C("a",` - color: var(--n-item-text-color-child-active); - `),y("extra",` - color: var(--n-item-text-color-child-active); - `)]),y("arrow",` - color: var(--n-arrow-color-child-active); - `),y("icon",` - color: var(--n-item-icon-color-child-active); - `)]),je("disabled",[je("selected, child-active",[C("&:focus-within",Ii)]),P("selected",[ft(null,[y("arrow","color: var(--n-arrow-color-active-hover);"),y("icon","color: var(--n-item-icon-color-active-hover);"),g("menu-item-content-header",` - color: var(--n-item-text-color-active-hover); - `,[C("a","color: var(--n-item-text-color-active-hover);"),y("extra","color: var(--n-item-text-color-active-hover);")])])]),P("child-active",[ft(null,[y("arrow","color: var(--n-arrow-color-child-active-hover);"),y("icon","color: var(--n-item-icon-color-child-active-hover);"),g("menu-item-content-header",` - color: var(--n-item-text-color-child-active-hover); - `,[C("a","color: var(--n-item-text-color-child-active-hover);"),y("extra","color: var(--n-item-text-color-child-active-hover);")])])]),P("selected",[ft(null,[C("&::before","background-color: var(--n-item-color-active-hover);")])]),ft(null,Ii)]),y("icon",` - grid-area: icon; - color: var(--n-item-icon-color); - transition: - color .3s var(--n-bezier), - font-size .3s var(--n-bezier), - margin-right .3s var(--n-bezier); - box-sizing: content-box; - display: inline-flex; - align-items: center; - justify-content: center; - `),y("arrow",` - grid-area: arrow; - font-size: 16px; - color: var(--n-arrow-color); - transform: rotate(180deg); - opacity: 1; - transition: - color .3s var(--n-bezier), - transform 0.2s var(--n-bezier), - opacity 0.2s var(--n-bezier); - `),g("menu-item-content-header",` - grid-area: content; - transition: - color .3s var(--n-bezier), - opacity .3s var(--n-bezier); - opacity: 1; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - color: var(--n-item-text-color); - `,[C("a",` - outline: none; - text-decoration: none; - transition: color .3s var(--n-bezier); - color: var(--n-item-text-color); - `,[C("&::before",` - content: ""; - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - `)]),y("extra",` - font-size: .93em; - color: var(--n-group-text-color); - transition: color .3s var(--n-bezier); - `)])]),g("submenu",` - cursor: pointer; - position: relative; - margin-top: 6px; - `,[g("menu-item-content",` - height: var(--n-item-height); - `),g("submenu-children",` - overflow: hidden; - padding: 0; - `,[rr({duration:".2s"})])]),g("menu-item-group",[g("menu-item-group-title",` - margin-top: 6px; - color: var(--n-group-text-color); - cursor: default; - font-size: .93em; - height: 36px; - display: flex; - align-items: center; - transition: - padding-left .3s var(--n-bezier), - color .3s var(--n-bezier); - `)])]),g("menu-tooltip",[C("a",` - color: inherit; - text-decoration: none; - `)]),g("menu-divider",` - transition: background-color .3s var(--n-bezier); - background-color: var(--n-divider-color); - height: 1px; - margin: 6px 18px; - `)]);function ft(e,o){return[P("hover",e,o),C("&:hover",e,o)]}const Fb=Object.assign(Object.assign({},ne.props),{options:{type:Array,default:()=>[]},collapsed:{type:Boolean,default:void 0},collapsedWidth:{type:Number,default:48},iconSize:{type:Number,default:20},collapsedIconSize:{type:Number,default:24},rootIndent:Number,indent:{type:Number,default:32},labelField:{type:String,default:"label"},keyField:{type:String,default:"key"},childrenField:{type:String,default:"children"},disabledField:{type:String,default:"disabled"},defaultExpandAll:Boolean,defaultExpandedKeys:Array,expandedKeys:Array,value:[String,Number],defaultValue:{type:[String,Number],default:null},mode:{type:String,default:"vertical"},watchProps:{type:Array,default:void 0},disabled:Boolean,show:{type:Boolean,default:!0},inverted:Boolean,"onUpdate:expandedKeys":[Function,Array],onUpdateExpandedKeys:[Function,Array],onUpdateValue:[Function,Array],"onUpdate:value":[Function,Array],expandIcon:Function,renderIcon:Function,renderLabel:Function,renderExtra:Function,dropdownProps:Object,accordion:Boolean,nodeProps:Function,items:Array,onOpenNamesChange:[Function,Array],onSelect:[Function,Array],onExpandedNamesChange:[Function,Array],expandedNames:Array,defaultExpandedNames:Array,dropdownPlacement:{type:String,default:"bottom"}}),H1=q({name:"Menu",props:Fb,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=ne("Menu","-menu",Tb,Lg,e,o),n=Se(mb,null),l=R(()=>{var O;const{collapsed:k}=e;if(k!==void 0)return k;if(n){const{collapseModeRef:$,collapsedRef:L}=n;if($.value==="width")return(O=L.value)!==null&&O!==void 0?O:!1}return!1}),a=R(()=>{const{keyField:O,childrenField:k,disabledField:$}=e;return ar(e.items||e.options,{getIgnored(L){return ns(L)},getChildren(L){return L[k]},getDisabled(L){return L[$]},getKey(L){var M;return(M=L[O])!==null&&M!==void 0?M:L.name}})}),s=R(()=>new Set(a.value.treeNodes.map(O=>O.key))),{watchProps:d}=e,c=D(null);d!=null&&d.includes("defaultValue")?oo(()=>{c.value=e.defaultValue}):c.value=e.defaultValue;const u=le(e,"value"),f=so(u,c),p=D([]),v=()=>{p.value=e.defaultExpandAll?a.value.getNonLeafKeys():e.defaultExpandedNames||e.defaultExpandedKeys||a.value.getPath(f.value,{includeSelf:!1}).keyPath};d!=null&&d.includes("defaultExpandedKeys")?oo(v):v();const h=gt(e,["expandedNames","expandedKeys"]),m=so(h,p),b=R(()=>a.value.treeNodes),x=R(()=>a.value.getPath(f.value).keyPath);Oe(gr,{props:e,mergedCollapsedRef:l,mergedThemeRef:r,mergedValueRef:f,mergedExpandedKeysRef:m,activePathRef:x,mergedClsPrefixRef:o,isHorizontalRef:R(()=>e.mode==="horizontal"),invertedRef:le(e,"inverted"),doSelect:S,toggleExpand:T});function S(O,k){const{"onUpdate:value":$,onUpdateValue:L,onSelect:M}=e;L&&ae(L,O,k),$&&ae($,O,k),M&&ae(M,O,k),c.value=O}function B(O){const{"onUpdate:expandedKeys":k,onUpdateExpandedKeys:$,onExpandedNamesChange:L,onOpenNamesChange:M}=e;k&&ae(k,O),$&&ae($,O),L&&ae(L,O),M&&ae(M,O),p.value=O}function T(O){const k=Array.from(m.value),$=k.findIndex(L=>L===O);if(~$)k.splice($,1);else{if(e.accordion&&s.value.has(O)){const L=k.findIndex(M=>s.value.has(M));L>-1&&k.splice(L,1)}k.push(O)}B(k)}const z=O=>{const k=a.value.getPath(O??f.value,{includeSelf:!1}).keyPath;if(!k.length)return;const $=Array.from(m.value),L=new Set([...$,...k]);e.accordion&&s.value.forEach(M=>{L.has(M)&&!k.includes(M)&&L.delete(M)}),B(Array.from(L))},I=R(()=>{const{inverted:O}=e,{common:{cubicBezierEaseInOut:k},self:$}=r.value,{borderRadius:L,borderColorHorizontal:M,fontSize:j,itemHeight:E,dividerColor:U}=$,_={"--n-divider-color":U,"--n-bezier":k,"--n-font-size":j,"--n-border-color-horizontal":M,"--n-border-radius":L,"--n-item-height":E};return O?(_["--n-group-text-color"]=$.groupTextColorInverted,_["--n-color"]=$.colorInverted,_["--n-item-text-color"]=$.itemTextColorInverted,_["--n-item-text-color-hover"]=$.itemTextColorHoverInverted,_["--n-item-text-color-active"]=$.itemTextColorActiveInverted,_["--n-item-text-color-child-active"]=$.itemTextColorChildActiveInverted,_["--n-item-text-color-child-active-hover"]=$.itemTextColorChildActiveInverted,_["--n-item-text-color-active-hover"]=$.itemTextColorActiveHoverInverted,_["--n-item-icon-color"]=$.itemIconColorInverted,_["--n-item-icon-color-hover"]=$.itemIconColorHoverInverted,_["--n-item-icon-color-active"]=$.itemIconColorActiveInverted,_["--n-item-icon-color-active-hover"]=$.itemIconColorActiveHoverInverted,_["--n-item-icon-color-child-active"]=$.itemIconColorChildActiveInverted,_["--n-item-icon-color-child-active-hover"]=$.itemIconColorChildActiveHoverInverted,_["--n-item-icon-color-collapsed"]=$.itemIconColorCollapsedInverted,_["--n-item-text-color-horizontal"]=$.itemTextColorHorizontalInverted,_["--n-item-text-color-hover-horizontal"]=$.itemTextColorHoverHorizontalInverted,_["--n-item-text-color-active-horizontal"]=$.itemTextColorActiveHorizontalInverted,_["--n-item-text-color-child-active-horizontal"]=$.itemTextColorChildActiveHorizontalInverted,_["--n-item-text-color-child-active-hover-horizontal"]=$.itemTextColorChildActiveHoverHorizontalInverted,_["--n-item-text-color-active-hover-horizontal"]=$.itemTextColorActiveHoverHorizontalInverted,_["--n-item-icon-color-horizontal"]=$.itemIconColorHorizontalInverted,_["--n-item-icon-color-hover-horizontal"]=$.itemIconColorHoverHorizontalInverted,_["--n-item-icon-color-active-horizontal"]=$.itemIconColorActiveHorizontalInverted,_["--n-item-icon-color-active-hover-horizontal"]=$.itemIconColorActiveHoverHorizontalInverted,_["--n-item-icon-color-child-active-horizontal"]=$.itemIconColorChildActiveHorizontalInverted,_["--n-item-icon-color-child-active-hover-horizontal"]=$.itemIconColorChildActiveHoverHorizontalInverted,_["--n-arrow-color"]=$.arrowColorInverted,_["--n-arrow-color-hover"]=$.arrowColorHoverInverted,_["--n-arrow-color-active"]=$.arrowColorActiveInverted,_["--n-arrow-color-active-hover"]=$.arrowColorActiveHoverInverted,_["--n-arrow-color-child-active"]=$.arrowColorChildActiveInverted,_["--n-arrow-color-child-active-hover"]=$.arrowColorChildActiveHoverInverted,_["--n-item-color-hover"]=$.itemColorHoverInverted,_["--n-item-color-active"]=$.itemColorActiveInverted,_["--n-item-color-active-hover"]=$.itemColorActiveHoverInverted,_["--n-item-color-active-collapsed"]=$.itemColorActiveCollapsedInverted):(_["--n-group-text-color"]=$.groupTextColor,_["--n-color"]=$.color,_["--n-item-text-color"]=$.itemTextColor,_["--n-item-text-color-hover"]=$.itemTextColorHover,_["--n-item-text-color-active"]=$.itemTextColorActive,_["--n-item-text-color-child-active"]=$.itemTextColorChildActive,_["--n-item-text-color-child-active-hover"]=$.itemTextColorChildActiveHover,_["--n-item-text-color-active-hover"]=$.itemTextColorActiveHover,_["--n-item-icon-color"]=$.itemIconColor,_["--n-item-icon-color-hover"]=$.itemIconColorHover,_["--n-item-icon-color-active"]=$.itemIconColorActive,_["--n-item-icon-color-active-hover"]=$.itemIconColorActiveHover,_["--n-item-icon-color-child-active"]=$.itemIconColorChildActive,_["--n-item-icon-color-child-active-hover"]=$.itemIconColorChildActiveHover,_["--n-item-icon-color-collapsed"]=$.itemIconColorCollapsed,_["--n-item-text-color-horizontal"]=$.itemTextColorHorizontal,_["--n-item-text-color-hover-horizontal"]=$.itemTextColorHoverHorizontal,_["--n-item-text-color-active-horizontal"]=$.itemTextColorActiveHorizontal,_["--n-item-text-color-child-active-horizontal"]=$.itemTextColorChildActiveHorizontal,_["--n-item-text-color-child-active-hover-horizontal"]=$.itemTextColorChildActiveHoverHorizontal,_["--n-item-text-color-active-hover-horizontal"]=$.itemTextColorActiveHoverHorizontal,_["--n-item-icon-color-horizontal"]=$.itemIconColorHorizontal,_["--n-item-icon-color-hover-horizontal"]=$.itemIconColorHoverHorizontal,_["--n-item-icon-color-active-horizontal"]=$.itemIconColorActiveHorizontal,_["--n-item-icon-color-active-hover-horizontal"]=$.itemIconColorActiveHoverHorizontal,_["--n-item-icon-color-child-active-horizontal"]=$.itemIconColorChildActiveHorizontal,_["--n-item-icon-color-child-active-hover-horizontal"]=$.itemIconColorChildActiveHoverHorizontal,_["--n-arrow-color"]=$.arrowColor,_["--n-arrow-color-hover"]=$.arrowColorHover,_["--n-arrow-color-active"]=$.arrowColorActive,_["--n-arrow-color-active-hover"]=$.arrowColorActiveHover,_["--n-arrow-color-child-active"]=$.arrowColorChildActive,_["--n-arrow-color-child-active-hover"]=$.arrowColorChildActiveHover,_["--n-item-color-hover"]=$.itemColorHover,_["--n-item-color-active"]=$.itemColorActive,_["--n-item-color-active-hover"]=$.itemColorActiveHover,_["--n-item-color-active-collapsed"]=$.itemColorActiveCollapsed),_}),w=t?Ae("menu",R(()=>e.inverted?"a":"b"),I,e):void 0;return{mergedClsPrefix:o,controlledExpandedKeys:h,uncontrolledExpanededKeys:p,mergedExpandedKeys:m,uncontrolledValue:c,mergedValue:f,activePath:x,tmNodes:b,mergedTheme:r,mergedCollapsed:l,cssVars:t?void 0:I,themeClass:w==null?void 0:w.themeClass,onRender:w==null?void 0:w.onRender,showOption:z}},render(){const{mergedClsPrefix:e,mode:o,themeClass:t,onRender:r}=this;return r==null||r(),i("div",{role:o==="horizontal"?"menubar":"menu",class:[`${e}-menu`,t,`${e}-menu--${o}`,this.mergedCollapsed&&`${e}-menu--collapsed`],style:this.cssVars},this.tmNodes.map(n=>En(n,this.$props)))}});function Ob(e,o={debug:!1,useSelectionEnd:!1,checkWidthOverflow:!0}){const t=e.selectionStart!==null?e.selectionStart:0,r=e.selectionEnd!==null?e.selectionEnd:0,n=o.useSelectionEnd?r:t,l=["direction","boxSizing","width","height","overflowX","overflowY","borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth","borderStyle","paddingTop","paddingRight","paddingBottom","paddingLeft","fontStyle","fontVariant","fontWeight","fontStretch","fontSize","fontSizeAdjust","lineHeight","fontFamily","textAlign","textTransform","textIndent","textDecoration","letterSpacing","wordSpacing","tabSize","MozTabSize"],a=navigator.userAgent.toLowerCase().includes("firefox");if(!jo)throw new Error("textarea-caret-position#getCaretPosition should only be called in a browser");const s=o==null?void 0:o.debug;if(s){const h=document.querySelector("#input-textarea-caret-position-mirror-div");h!=null&&h.parentNode&&h.parentNode.removeChild(h)}const d=document.createElement("div");d.id="input-textarea-caret-position-mirror-div",document.body.appendChild(d);const c=d.style,u=window.getComputedStyle?window.getComputedStyle(e):e.currentStyle,f=e.nodeName==="INPUT";c.whiteSpace=f?"nowrap":"pre-wrap",f||(c.wordWrap="break-word"),c.position="absolute",s||(c.visibility="hidden"),l.forEach(h=>{if(f&&h==="lineHeight")if(u.boxSizing==="border-box"){const m=parseInt(u.height),b=parseInt(u.paddingTop)+parseInt(u.paddingBottom)+parseInt(u.borderTopWidth)+parseInt(u.borderBottomWidth),x=b+parseInt(u.lineHeight);m>x?c.lineHeight=`${m-b}px`:m===x?c.lineHeight=u.lineHeight:c.lineHeight="0"}else c.lineHeight=u.height;else c[h]=u[h]}),a?e.scrollHeight>parseInt(u.height)&&(c.overflowY="scroll"):c.overflow="hidden",d.textContent=e.value.substring(0,n),f&&d.textContent&&(d.textContent=d.textContent.replace(/\s/g," "));const p=document.createElement("span");p.textContent=e.value.substring(n)||".",p.style.position="relative",p.style.left=`${-e.scrollLeft}px`,p.style.top=`${-e.scrollTop}px`,d.appendChild(p);const v={top:p.offsetTop+parseInt(u.borderTopWidth),left:p.offsetLeft+parseInt(u.borderLeftWidth),absolute:!1,height:parseInt(u.fontSize)*1.5};return s?p.style.backgroundColor="#aaa":document.body.removeChild(d),v.left>=e.clientWidth&&o.checkWidthOverflow&&(v.left=e.clientWidth),v}const Mb=C([g("mention","width: 100%; z-index: auto; position: relative;"),g("mention-menu",` - box-shadow: var(--n-menu-box-shadow); - `,[at({originalTransition:"background-color .3s var(--n-bezier), box-shadow .3s var(--n-bezier)"})])]),_b=Object.assign(Object.assign({},ne.props),{to:Io.propTo,autosize:[Boolean,Object],options:{type:Array,default:[]},type:{type:String,default:"text"},separator:{type:String,validator:e=>e.length!==1?(qo("mention","`separator`'s length must be 1."),!1):!0,default:" "},bordered:{type:Boolean,default:void 0},disabled:Boolean,value:String,defaultValue:{type:String,default:""},loading:Boolean,prefix:{type:[String,Array],default:"@"},placeholder:{type:String,default:""},placement:{type:String,default:"bottom-start"},size:String,renderLabel:Function,status:String,"onUpdate:show":[Array,Function],onUpdateShow:[Array,Function],"onUpdate:value":[Array,Function],onUpdateValue:[Array,Function],onSearch:Function,onSelect:Function,onFocus:Function,onBlur:Function,internalDebug:Boolean}),A1=q({name:"Mention",props:_b,setup(e){const{namespaceRef:o,mergedClsPrefixRef:t,mergedBorderedRef:r,inlineThemeDisabled:n}=ke(e),l=ne("Mention","-mention",Mb,Mg,e,t),a=rt(e),s=D(null),d=D(null),c=D(null),u=D("");let f=null,p=null,v=null;const h=R(()=>{const{value:X}=u;return e.options.filter(ve=>X?typeof ve.label=="string"?ve.label.startsWith(X):typeof ve.value=="string"?ve.value.startsWith(X):!1:!0)}),m=R(()=>ar(h.value,{getKey:X=>X.value})),b=D(null),x=D(!1),S=D(e.defaultValue),B=le(e,"value"),T=so(B,S),z=R(()=>{const{self:{menuBoxShadow:X}}=l.value;return{"--n-menu-box-shadow":X}}),I=n?Ae("mention",void 0,z,e):void 0;function w(X){if(e.disabled)return;const{onUpdateShow:ve,"onUpdate:show":he}=e;ve&&ae(ve,X),he&&ae(he,X),X||(f=null,p=null,v=null),x.value=X}function O(X){const{onUpdateValue:ve,"onUpdate:value":he}=e,{nTriggerFormChange:be,nTriggerFormInput:me}=a;he&&ae(he,X),ve&&ae(ve,X),me(),be(),S.value=X}function k(){return e.type==="text"?s.value.inputElRef:s.value.textareaElRef}function $(){var X;const ve=k();if(document.activeElement!==ve){w(!1);return}const{selectionEnd:he}=ve;if(he===null){w(!1);return}const be=ve.value,{separator:me}=e,{prefix:se}=e,Re=typeof se=="string"?[se]:se;for(let ge=he-1;ge>=0;--ge){const ee=be[ge];if(ee===me||ee===` -`||ee==="\r"){w(!1);return}if(Re.includes(ee)){const xe=be.slice(ge+1,he);w(!0),(X=e.onSearch)===null||X===void 0||X.call(e,xe,ee),u.value=xe,f=ee,p=ge+1,v=he;return}}w(!1)}function L(){const{value:X}=d;if(!X)return;const ve=k(),he=Ob(ve);he.left+=ve.parentElement.offsetLeft,X.style.left=`${he.left}px`,X.style.top=`${he.top+he.height}px`}function M(){var X;x.value&&((X=c.value)===null||X===void 0||X.syncPosition())}function j(X){O(X),E()}function E(){setTimeout(()=>{L(),$(),io().then(M)},0)}function U(X){var ve,he;if(X.key==="ArrowLeft"||X.key==="ArrowRight"){if(!((ve=s.value)===null||ve===void 0)&&ve.isCompositing)return;E()}else if(X.key==="ArrowUp"||X.key==="ArrowDown"||X.key==="Enter"){if(!((he=s.value)===null||he===void 0)&&he.isCompositing)return;const{value:be}=b;if(x.value){if(be)if(X.preventDefault(),X.key==="ArrowUp")be.prev();else if(X.key==="ArrowDown")be.next();else{const me=be.getPendingTmNode();me?G(me):w(!1)}}else E()}}function _(X){const{onFocus:ve}=e;ve==null||ve(X);const{nTriggerFormFocus:he}=a;he(),E()}function V(){var X;(X=s.value)===null||X===void 0||X.focus()}function te(){var X;(X=s.value)===null||X===void 0||X.blur()}function N(X){const{onBlur:ve}=e;ve==null||ve(X);const{nTriggerFormBlur:he}=a;he(),w(!1)}function G(X){var ve;if(f===null||p===null||v===null)return;const{rawNode:{value:he=""}}=X,be=k(),me=be.value,{separator:se}=e,Re=me.slice(v),ge=Re.startsWith(se),ee=`${he}${ge?"":se}`;O(me.slice(0,p)+ee+Re),(ve=e.onSelect)===null||ve===void 0||ve.call(e,X.rawNode,f);const xe=p+ee.length+(ge?1:0);io().then(()=>{be.selectionStart=xe,be.selectionEnd=xe,$()})}function Ce(){e.disabled||E()}return{namespace:o,mergedClsPrefix:t,mergedBordered:r,mergedSize:a.mergedSizeRef,mergedStatus:a.mergedStatusRef,mergedTheme:l,treeMate:m,selectMenuInstRef:b,inputInstRef:s,cursorRef:d,followerRef:c,showMenu:x,adjustedTo:Io(e),isMounted:Ct(),mergedValue:T,handleInputFocus:_,handleInputBlur:N,handleInputUpdateValue:j,handleInputKeyDown:U,handleSelect:G,handleInputMouseDown:Ce,focus:V,blur:te,cssVars:n?void 0:z,themeClass:I==null?void 0:I.themeClass,onRender:I==null?void 0:I.onRender}},render(){const{mergedTheme:e,mergedClsPrefix:o,$slots:t}=this;return i("div",{class:`${o}-mention`},i(xt,{status:this.mergedStatus,themeOverrides:e.peerOverrides.Input,theme:e.peers.Input,size:this.mergedSize,autosize:this.autosize,type:this.type,ref:"inputInstRef",placeholder:this.placeholder,onMousedown:this.handleInputMouseDown,onUpdateValue:this.handleInputUpdateValue,onKeydown:this.handleInputKeyDown,onFocus:this.handleInputFocus,onBlur:this.handleInputBlur,bordered:this.mergedBordered,disabled:this.disabled,value:this.mergedValue}),i(Br,null,{default:()=>[i(Ir,null,{default:()=>i("div",{style:{position:"absolute",width:0,height:0},ref:"cursorRef"})}),i(kr,{ref:"followerRef",placement:this.placement,show:this.showMenu,containerClass:this.namespace,to:this.adjustedTo,teleportDisabled:this.adjustedTo===Io.tdkey},{default:()=>i(no,{name:"fade-in-scale-up-transition",appear:this.isMounted},{default:()=>{const{mergedTheme:r,onRender:n}=this;return n==null||n(),this.showMenu?i(yn,{clsPrefix:o,theme:r.peers.InternalSelectMenu,themeOverrides:r.peerOverrides.InternalSelectMenu,autoPending:!0,ref:"selectMenuInstRef",class:[`${o}-mention-menu`,this.themeClass],loading:this.loading,treeMate:this.treeMate,virtualScroll:!1,style:this.cssVars,onToggle:this.handleSelect,renderLabel:this.renderLabel},t):null}})})]}))}}),is={icon:Function,type:{type:String,default:"info"},content:[String,Number,Function],showIcon:{type:Boolean,default:!0},closable:Boolean,keepAliveOnHover:Boolean,onClose:Function,onMouseenter:Function,onMouseleave:Function},ls="n-message-api",as="n-message-provider",Db=C([g("message-wrapper",` - margin: var(--n-margin); - z-index: 0; - transform-origin: top center; - display: flex; - `,[rr({overflow:"visible",originalTransition:"transform .3s var(--n-bezier)",enterToProps:{transform:"scale(1)"},leaveToProps:{transform:"scale(0.85)"}})]),g("message",` - box-sizing: border-box; - display: flex; - align-items: center; - transition: - color .3s var(--n-bezier), - box-shadow .3s var(--n-bezier), - background-color .3s var(--n-bezier), - opacity .3s var(--n-bezier), - transform .3s var(--n-bezier), - margin-bottom .3s var(--n-bezier); - padding: var(--n-padding); - border-radius: var(--n-border-radius); - flex-wrap: nowrap; - overflow: hidden; - max-width: var(--n-max-width); - color: var(--n-text-color); - background-color: var(--n-color); - box-shadow: var(--n-box-shadow); - `,[y("content",` - display: inline-block; - line-height: var(--n-line-height); - font-size: var(--n-font-size); - `),y("icon",` - position: relative; - margin: var(--n-icon-margin); - height: var(--n-icon-size); - width: var(--n-icon-size); - font-size: var(--n-icon-size); - flex-shrink: 0; - `,[["default","info","success","warning","error","loading"].map(e=>P(`${e}-type`,[C("> *",` - color: var(--n-icon-color-${e}); - transition: color .3s var(--n-bezier); - `)])),C("> *",` - position: absolute; - left: 0; - top: 0; - right: 0; - bottom: 0; - `,[lt()])]),y("close",` - margin: var(--n-close-margin); - transition: - background-color .3s var(--n-bezier), - color .3s var(--n-bezier); - flex-shrink: 0; - `,[C("&:hover",` - color: var(--n-close-icon-color-hover); - `),C("&:active",` - color: var(--n-close-icon-color-pressed); - `)])]),g("message-container",` - z-index: 6000; - position: fixed; - height: 0; - overflow: visible; - display: flex; - flex-direction: column; - align-items: center; - `,[P("top",` - top: 12px; - left: 0; - right: 0; - `),P("top-left",` - top: 12px; - left: 12px; - right: 0; - align-items: flex-start; - `),P("top-right",` - top: 12px; - left: 0; - right: 12px; - align-items: flex-end; - `),P("bottom",` - bottom: 4px; - left: 0; - right: 0; - justify-content: flex-end; - `),P("bottom-left",` - bottom: 4px; - left: 12px; - right: 0; - justify-content: flex-end; - align-items: flex-start; - `),P("bottom-right",` - bottom: 4px; - left: 0; - right: 12px; - justify-content: flex-end; - align-items: flex-end; - `)])]),Lb={info:()=>i(mt,null),success:()=>i(Ht,null),warning:()=>i(yt,null),error:()=>i(Lt,null),default:()=>null},Hb=q({name:"Message",props:Object.assign(Object.assign({},is),{render:Function}),setup(e){const{inlineThemeDisabled:o,mergedRtlRef:t}=ke(e),{props:r,mergedClsPrefixRef:n}=Se(as),l=to("Message",t,n),a=ne("Message","-message",Db,cg,r,n),s=R(()=>{const{type:c}=e,{common:{cubicBezierEaseInOut:u},self:{padding:f,margin:p,maxWidth:v,iconMargin:h,closeMargin:m,closeSize:b,iconSize:x,fontSize:S,lineHeight:B,borderRadius:T,iconColorInfo:z,iconColorSuccess:I,iconColorWarning:w,iconColorError:O,iconColorLoading:k,closeIconSize:$,closeBorderRadius:L,[W("textColor",c)]:M,[W("boxShadow",c)]:j,[W("color",c)]:E,[W("closeColorHover",c)]:U,[W("closeColorPressed",c)]:_,[W("closeIconColor",c)]:V,[W("closeIconColorPressed",c)]:te,[W("closeIconColorHover",c)]:N}}=a.value;return{"--n-bezier":u,"--n-margin":p,"--n-padding":f,"--n-max-width":v,"--n-font-size":S,"--n-icon-margin":h,"--n-icon-size":x,"--n-close-icon-size":$,"--n-close-border-radius":L,"--n-close-size":b,"--n-close-margin":m,"--n-text-color":M,"--n-color":E,"--n-box-shadow":j,"--n-icon-color-info":z,"--n-icon-color-success":I,"--n-icon-color-warning":w,"--n-icon-color-error":O,"--n-icon-color-loading":k,"--n-close-color-hover":U,"--n-close-color-pressed":_,"--n-close-icon-color":V,"--n-close-icon-color-pressed":te,"--n-close-icon-color-hover":N,"--n-line-height":B,"--n-border-radius":T}}),d=o?Ae("message",R(()=>e.type[0]),s,{}):void 0;return{mergedClsPrefix:n,rtlEnabled:l,messageProviderProps:r,handleClose(){var c;(c=e.onClose)===null||c===void 0||c.call(e)},cssVars:o?void 0:s,themeClass:d==null?void 0:d.themeClass,onRender:d==null?void 0:d.onRender,placement:r.placement}},render(){const{render:e,type:o,closable:t,content:r,mergedClsPrefix:n,cssVars:l,themeClass:a,onRender:s,icon:d,handleClose:c,showIcon:u}=this;s==null||s();let f;return i("div",{class:[`${n}-message-wrapper`,a],onMouseenter:this.onMouseenter,onMouseleave:this.onMouseleave,style:[{alignItems:this.placement.startsWith("top")?"flex-start":"flex-end"},l]},e?e(this.$props):i("div",{class:[`${n}-message ${n}-message--${o}-type`,this.rtlEnabled&&`${n}-message--rtl`]},(f=Ab(d,o,n))&&u?i("div",{class:`${n}-message__icon ${n}-message__icon--${o}-type`},i(At,null,{default:()=>f})):null,i("div",{class:`${n}-message__content`},qe(r)),t?i(St,{clsPrefix:n,class:`${n}-message__close`,onClick:c,absolute:!0}):null))}});function Ab(e,o,t){if(typeof e=="function")return e();{const r=o==="loading"?i(Et,{clsPrefix:t,strokeWidth:24,scale:.85}):Lb[o]();return r?i(De,{clsPrefix:t,key:o},{default:()=>r}):null}}const Eb=q({name:"MessageEnvironment",props:Object.assign(Object.assign({},is),{duration:{type:Number,default:3e3},onAfterLeave:Function,onLeave:Function,internalKey:{type:String,required:!0},onInternalAfterLeave:Function,onHide:Function,onAfterHide:Function}),setup(e){let o=null;const t=D(!0);mo(()=>{r()});function r(){const{duration:u}=e;u&&(o=window.setTimeout(a,u))}function n(u){u.currentTarget===u.target&&o!==null&&(window.clearTimeout(o),o=null)}function l(u){u.currentTarget===u.target&&r()}function a(){const{onHide:u}=e;t.value=!1,o&&(window.clearTimeout(o),o=null),u&&u()}function s(){const{onClose:u}=e;u&&u(),a()}function d(){const{onAfterLeave:u,onInternalAfterLeave:f,onAfterHide:p,internalKey:v}=e;u&&u(),f&&f(v),p&&p()}function c(){a()}return{show:t,hide:a,handleClose:s,handleAfterLeave:d,handleMouseleave:l,handleMouseenter:n,deactivate:c}},render(){return i(wt,{appear:!0,onAfterLeave:this.handleAfterLeave,onLeave:this.onLeave},{default:()=>[this.show?i(Hb,{content:this.content,type:this.type,icon:this.icon,showIcon:this.showIcon,closable:this.closable,onClose:this.handleClose,onMouseenter:this.keepAliveOnHover?this.handleMouseenter:void 0,onMouseleave:this.keepAliveOnHover?this.handleMouseleave:void 0}):null]})}}),jb=Object.assign(Object.assign({},ne.props),{to:[String,Object],duration:{type:Number,default:3e3},keepAliveOnHover:Boolean,max:Number,placement:{type:String,default:"top"},closable:Boolean,containerStyle:[String,Object]}),E1=q({name:"MessageProvider",props:jb,setup(e){const{mergedClsPrefixRef:o}=ke(e),t=D([]),r=D({}),n={create(d,c){return l(d,Object.assign({type:"default"},c))},info(d,c){return l(d,Object.assign(Object.assign({},c),{type:"info"}))},success(d,c){return l(d,Object.assign(Object.assign({},c),{type:"success"}))},warning(d,c){return l(d,Object.assign(Object.assign({},c),{type:"warning"}))},error(d,c){return l(d,Object.assign(Object.assign({},c),{type:"error"}))},loading(d,c){return l(d,Object.assign(Object.assign({},c),{type:"loading"}))},destroyAll:s};Oe(as,{props:e,mergedClsPrefixRef:o}),Oe(ls,n);function l(d,c){const u=it(),f=Wi(Object.assign(Object.assign({},c),{content:d,key:u,destroy:()=>{var v;(v=r.value[u])===null||v===void 0||v.hide()}})),{max:p}=e;return p&&t.value.length>=p&&t.value.shift(),t.value.push(f),f}function a(d){t.value.splice(t.value.findIndex(c=>c.key===d),1),delete r.value[d]}function s(){Object.values(r.value).forEach(d=>{d.hide()})}return Object.assign({mergedClsPrefix:o,messageRefs:r,messageList:t,handleAfterLeave:a},n)},render(){var e,o,t;return i(ao,null,(o=(e=this.$slots).default)===null||o===void 0?void 0:o.call(e),this.messageList.length?i(Ni,{to:(t=this.to)!==null&&t!==void 0?t:"body"},i("div",{class:[`${this.mergedClsPrefix}-message-container`,`${this.mergedClsPrefix}-message-container--${this.placement}`],key:"message-container",style:this.containerStyle},this.messageList.map(r=>i(Eb,Object.assign({ref:n=>{n&&(this.messageRefs[r.key]=n)},internalKey:r.key,onInternalAfterLeave:this.handleAfterLeave},_t(r,["destroy"],void 0),{duration:r.duration===void 0?this.duration:r.duration,keepAliveOnHover:r.keepAliveOnHover===void 0?this.keepAliveOnHover:r.keepAliveOnHover,closable:r.closable===void 0?this.closable:r.closable}))))):null)}});function j1(){const e=Se(ls,null);return e===null&&Eo("use-message","No outer founded. See prerequisite in https://www.naiveui.com/en-US/os-theme/components/message for more details. If you want to use `useMessage` outside setup, please check https://www.naiveui.com/zh-CN/os-theme/components/message#Q-&-A."),e}const ss="n-popconfirm",ds={positiveText:String,negativeText:String,showIcon:{type:Boolean,default:!0},onPositiveClick:{type:Function,required:!0},onNegativeClick:{type:Function,required:!0}},Ti=yo(ds),Wb=q({name:"NPopconfirmPanel",props:ds,setup(e){const{localeRef:o}=Xo("Popconfirm"),{inlineThemeDisabled:t}=ke(),{mergedClsPrefixRef:r,mergedThemeRef:n,props:l}=Se(ss),a=R(()=>{const{common:{cubicBezierEaseInOut:d},self:{fontSize:c,iconSize:u,iconColor:f}}=n.value;return{"--n-bezier":d,"--n-font-size":c,"--n-icon-size":u,"--n-icon-color":f}}),s=t?Ae("popconfirm-panel",void 0,a,l):void 0;return Object.assign(Object.assign({},Xo("Popconfirm")),{mergedClsPrefix:r,cssVars:t?void 0:a,localizedPositiveText:R(()=>e.positiveText||o.value.positiveText),localizedNegativeText:R(()=>e.negativeText||o.value.negativeText),positiveButtonProps:le(l,"positiveButtonProps"),negativeButtonProps:le(l,"negativeButtonProps"),handlePositiveClick(d){e.onPositiveClick(d)},handleNegativeClick(d){e.onNegativeClick(d)},themeClass:s==null?void 0:s.themeClass,onRender:s==null?void 0:s.onRender})},render(){var e;const{mergedClsPrefix:o,showIcon:t,$slots:r}=this,n=lo(r.action,()=>this.negativeText===null&&this.positiveText===null?[]:[this.negativeText!==null&&i(Po,Object.assign({size:"small",onClick:this.handleNegativeClick},this.negativeButtonProps),{default:()=>this.localizedNegativeText}),this.positiveText!==null&&i(Po,Object.assign({size:"small",type:"primary",onClick:this.handlePositiveClick},this.positiveButtonProps),{default:()=>this.localizedPositiveText})]);return(e=this.onRender)===null||e===void 0||e.call(this),i("div",{class:[`${o}-popconfirm__panel`,this.themeClass],style:this.cssVars},Ee(r.default,l=>t||l?i("div",{class:`${o}-popconfirm__body`},t?i("div",{class:`${o}-popconfirm__icon`},lo(r.icon,()=>[i(De,{clsPrefix:o},{default:()=>i(yt,null)})])):null,l):null),n?i("div",{class:[`${o}-popconfirm__action`]},n):null)}}),Nb=g("popconfirm",[y("body",` - font-size: var(--n-font-size); - display: flex; - align-items: center; - flex-wrap: nowrap; - position: relative; - `,[y("icon",` - display: flex; - font-size: var(--n-icon-size); - color: var(--n-icon-color); - transition: color .3s var(--n-bezier); - margin: 0 8px 0 0; - `)]),y("action",` - display: flex; - justify-content: flex-end; - `,[C("&:not(:first-child)","margin-top: 8px"),g("button",[C("&:not(:last-child)","margin-right: 8px;")])])]),Vb=Object.assign(Object.assign(Object.assign({},ne.props),bt),{positiveText:String,negativeText:String,showIcon:{type:Boolean,default:!0},trigger:{type:String,default:"click"},positiveButtonProps:Object,negativeButtonProps:Object,onPositiveClick:Function,onNegativeClick:Function}),W1=q({name:"Popconfirm",props:Vb,__popover__:!0,setup(e){const{mergedClsPrefixRef:o}=ke(),t=ne("Popconfirm","-popconfirm",Nb,Ug,e,o),r=D(null);function n(s){const{onPositiveClick:d,"onUpdate:show":c}=e;Promise.resolve(d?d(s):!0).then(u=>{var f;u!==!1&&((f=r.value)===null||f===void 0||f.setShow(!1),c&&ae(c,!1))})}function l(s){const{onNegativeClick:d,"onUpdate:show":c}=e;Promise.resolve(d?d(s):!0).then(u=>{var f;u!==!1&&((f=r.value)===null||f===void 0||f.setShow(!1),c&&ae(c,!1))})}return Oe(ss,{mergedThemeRef:t,mergedClsPrefixRef:o,props:e}),Object.assign(Object.assign({},{setShow(s){var d;(d=r.value)===null||d===void 0||d.setShow(s)},syncPosition(){var s;(s=r.value)===null||s===void 0||s.syncPosition()}}),{mergedTheme:t,popoverInstRef:r,handlePositiveClick:n,handleNegativeClick:l})},render(){const{$slots:e,$props:o,mergedTheme:t}=this;return i(hr,_t(o,Ti,{theme:t.peers.Popover,themeOverrides:t.peerOverrides.Popover,internalExtraClass:["popconfirm"],ref:"popoverInstRef"}),{trigger:e.activator||e.trigger,default:()=>{const r=go(o,Ti);return i(Wb,Object.assign(Object.assign({},r),{onPositiveClick:this.handlePositiveClick,onNegativeClick:this.handleNegativeClick}),e)}})}}),Ub=C([g("progress",{display:"inline-block"},[g("progress-icon",` - color: var(--n-icon-color); - transition: color .3s var(--n-bezier); - `),P("line",` - width: 100%; - display: block; - `,[g("progress-content",` - display: flex; - align-items: center; - `,[g("progress-graph",{flex:1})]),g("progress-custom-content",{marginLeft:"14px"}),g("progress-icon",` - width: 30px; - padding-left: 14px; - height: var(--n-icon-size-line); - line-height: var(--n-icon-size-line); - font-size: var(--n-icon-size-line); - `,[P("as-text",` - color: var(--n-text-color-line-outer); - text-align: center; - width: 40px; - font-size: var(--n-font-size); - padding-left: 4px; - transition: color .3s var(--n-bezier); - `)])]),P("circle, dashboard",{width:"120px"},[g("progress-custom-content",` - position: absolute; - left: 50%; - top: 50%; - transform: translateX(-50%) translateY(-50%); - display: flex; - align-items: center; - justify-content: center; - `),g("progress-text",` - position: absolute; - left: 50%; - top: 50%; - transform: translateX(-50%) translateY(-50%); - display: flex; - align-items: center; - color: inherit; - font-size: var(--n-font-size-circle); - color: var(--n-text-color-circle); - font-weight: var(--n-font-weight-circle); - transition: color .3s var(--n-bezier); - white-space: nowrap; - `),g("progress-icon",` - position: absolute; - left: 50%; - top: 50%; - transform: translateX(-50%) translateY(-50%); - display: flex; - align-items: center; - color: var(--n-icon-color); - font-size: var(--n-icon-size-circle); - `)]),P("multiple-circle",` - width: 200px; - color: inherit; - `,[g("progress-text",` - font-weight: var(--n-font-weight-circle); - color: var(--n-text-color-circle); - position: absolute; - left: 50%; - top: 50%; - transform: translateX(-50%) translateY(-50%); - display: flex; - align-items: center; - justify-content: center; - transition: color .3s var(--n-bezier); - `)]),g("progress-content",{position:"relative"}),g("progress-graph",{position:"relative"},[g("progress-graph-circle",[C("svg",{verticalAlign:"bottom"}),g("progress-graph-circle-fill",` - stroke: var(--n-fill-color); - transition: - opacity .3s var(--n-bezier), - stroke .3s var(--n-bezier), - stroke-dasharray .3s var(--n-bezier); - `,[P("empty",{opacity:0})]),g("progress-graph-circle-rail",` - transition: stroke .3s var(--n-bezier); - overflow: hidden; - stroke: var(--n-rail-color); - `)]),g("progress-graph-line",[P("indicator-inside",[g("progress-graph-line-rail",` - height: 16px; - line-height: 16px; - border-radius: 10px; - `,[g("progress-graph-line-fill",` - height: inherit; - border-radius: 10px; - `),g("progress-graph-line-indicator",` - background: #0000; - white-space: nowrap; - text-align: right; - margin-left: 14px; - margin-right: 14px; - height: inherit; - font-size: 12px; - color: var(--n-text-color-line-inner); - transition: color .3s var(--n-bezier); - `)])]),P("indicator-inside-label",` - height: 16px; - display: flex; - align-items: center; - `,[g("progress-graph-line-rail",` - flex: 1; - transition: background-color .3s var(--n-bezier); - `),g("progress-graph-line-indicator",` - background: var(--n-fill-color); - font-size: 12px; - transform: translateZ(0); - display: flex; - vertical-align: middle; - height: 16px; - line-height: 16px; - padding: 0 10px; - border-radius: 10px; - position: absolute; - white-space: nowrap; - color: var(--n-text-color-line-inner); - transition: - right .2s var(--n-bezier), - color .3s var(--n-bezier), - background-color .3s var(--n-bezier); - `)]),g("progress-graph-line-rail",` - position: relative; - overflow: hidden; - height: var(--n-rail-height); - border-radius: 5px; - background-color: var(--n-rail-color); - transition: background-color .3s var(--n-bezier); - `,[g("progress-graph-line-fill",` - background: var(--n-fill-color); - position: relative; - border-radius: 5px; - height: inherit; - width: 100%; - max-width: 0%; - transition: - background-color .3s var(--n-bezier), - max-width .2s var(--n-bezier); - `,[P("processing",[C("&::after",` - content: ""; - background-image: var(--n-line-bg-processing); - animation: progress-processing-animation 2s var(--n-bezier) infinite; - `)])])])])])]),C("@keyframes progress-processing-animation",` - 0% { - position: absolute; - left: 0; - top: 0; - bottom: 0; - right: 100%; - opacity: 1; - } - 66% { - position: absolute; - left: 0; - top: 0; - bottom: 0; - right: 0; - opacity: 0; - } - 100% { - position: absolute; - left: 0; - top: 0; - bottom: 0; - right: 0; - opacity: 0; - } - `)]),Kb={success:i(Ht,null),error:i(Lt,null),warning:i(yt,null),info:i(mt,null)},Gb=q({name:"ProgressLine",props:{clsPrefix:{type:String,required:!0},percentage:{type:Number,default:0},railColor:String,railStyle:[String,Object],fillColor:String,status:{type:String,required:!0},indicatorPlacement:{type:String,required:!0},indicatorTextColor:String,unit:{type:String,default:"%"},processing:{type:Boolean,required:!0},showIndicator:{type:Boolean,required:!0},height:[String,Number],railBorderRadius:[String,Number],fillBorderRadius:[String,Number]},setup(e,{slots:o}){const t=R(()=>eo(e.height)),r=R(()=>e.railBorderRadius!==void 0?eo(e.railBorderRadius):e.height!==void 0?eo(e.height,{c:.5}):""),n=R(()=>e.fillBorderRadius!==void 0?eo(e.fillBorderRadius):e.railBorderRadius!==void 0?eo(e.railBorderRadius):e.height!==void 0?eo(e.height,{c:.5}):"");return()=>{const{indicatorPlacement:l,railColor:a,railStyle:s,percentage:d,unit:c,indicatorTextColor:u,status:f,showIndicator:p,fillColor:v,processing:h,clsPrefix:m}=e;return i("div",{class:`${m}-progress-content`,role:"none"},i("div",{class:`${m}-progress-graph`,"aria-hidden":!0},i("div",{class:[`${m}-progress-graph-line`,{[`${m}-progress-graph-line--indicator-${l}`]:!0}]},i("div",{class:`${m}-progress-graph-line-rail`,style:[{backgroundColor:a,height:t.value,borderRadius:r.value},s]},i("div",{class:[`${m}-progress-graph-line-fill`,h&&`${m}-progress-graph-line-fill--processing`],style:{maxWidth:`${e.percentage}%`,backgroundColor:v,height:t.value,lineHeight:t.value,borderRadius:n.value}},l==="inside"?i("div",{class:`${m}-progress-graph-line-indicator`,style:{color:u}},d,c):null)))),p&&l==="outside"?i("div",null,o.default?i("div",{class:`${m}-progress-custom-content`,style:{color:u},role:"none"},o.default()):f==="default"?i("div",{role:"none",class:`${m}-progress-icon ${m}-progress-icon--as-text`,style:{color:u}},d,c):i("div",{class:`${m}-progress-icon`,"aria-hidden":!0},i(De,{clsPrefix:m},{default:()=>Kb[f]}))):null)}}}),qb={success:i(Ht,null),error:i(Lt,null),warning:i(yt,null),info:i(mt,null)},Yb=q({name:"ProgressCircle",props:{clsPrefix:{type:String,required:!0},status:{type:String,required:!0},strokeWidth:{type:Number,required:!0},fillColor:String,railColor:String,railStyle:[String,Object],percentage:{type:Number,default:0},offsetDegree:{type:Number,default:0},showIndicator:{type:Boolean,required:!0},indicatorTextColor:String,unit:String,viewBoxWidth:{type:Number,required:!0},gapDegree:{type:Number,required:!0},gapOffsetDegree:{type:Number,default:0}},setup(e,{slots:o}){function t(r,n,l){const{gapDegree:a,viewBoxWidth:s,strokeWidth:d}=e,c=50,u=0,f=c,p=0,v=2*c,h=50+d/2,m=`M ${h},${h} m ${u},${f} - a ${c},${c} 0 1 1 ${p},${-v} - a ${c},${c} 0 1 1 ${-p},${v}`,b=Math.PI*2*c,x={stroke:l,strokeDasharray:`${r/100*(b-a)}px ${s*8}px`,strokeDashoffset:`-${a/2}px`,transformOrigin:n?"center":void 0,transform:n?`rotate(${n}deg)`:void 0};return{pathString:m,pathStyle:x}}return()=>{const{fillColor:r,railColor:n,strokeWidth:l,offsetDegree:a,status:s,percentage:d,showIndicator:c,indicatorTextColor:u,unit:f,gapOffsetDegree:p,clsPrefix:v}=e,{pathString:h,pathStyle:m}=t(100,0,n),{pathString:b,pathStyle:x}=t(d,a,r),S=100+l;return i("div",{class:`${v}-progress-content`,role:"none"},i("div",{class:`${v}-progress-graph`,"aria-hidden":!0},i("div",{class:`${v}-progress-graph-circle`,style:{transform:p?`rotate(${p}deg)`:void 0}},i("svg",{viewBox:`0 0 ${S} ${S}`},i("g",null,i("path",{class:`${v}-progress-graph-circle-rail`,d:h,"stroke-width":l,"stroke-linecap":"round",fill:"none",style:m})),i("g",null,i("path",{class:[`${v}-progress-graph-circle-fill`,d===0&&`${v}-progress-graph-circle-fill--empty`],d:b,"stroke-width":l,"stroke-linecap":"round",fill:"none",style:x}))))),c?i("div",null,o.default?i("div",{class:`${v}-progress-custom-content`,role:"none"},o.default()):s!=="default"?i("div",{class:`${v}-progress-icon`,"aria-hidden":!0},i(De,{clsPrefix:v},{default:()=>qb[s]})):i("div",{class:`${v}-progress-text`,style:{color:u},role:"none"},i("span",{class:`${v}-progress-text__percentage`},d),i("span",{class:`${v}-progress-text__unit`},f))):null)}}});function Fi(e,o,t=100){return`m ${t/2} ${t/2-e} a ${e} ${e} 0 1 1 0 ${2*e} a ${e} ${e} 0 1 1 0 -${2*e}`}const Xb=q({name:"ProgressMultipleCircle",props:{clsPrefix:{type:String,required:!0},viewBoxWidth:{type:Number,required:!0},percentage:{type:Array,default:[0]},strokeWidth:{type:Number,required:!0},circleGap:{type:Number,required:!0},showIndicator:{type:Boolean,required:!0},fillColor:{type:Array,default:()=>[]},railColor:{type:Array,default:()=>[]},railStyle:{type:Array,default:()=>[]}},setup(e,{slots:o}){const t=R(()=>e.percentage.map((n,l)=>`${Math.PI*n/100*(e.viewBoxWidth/2-e.strokeWidth/2*(1+2*l)-e.circleGap*l)*2}, ${e.viewBoxWidth*8}`));return()=>{const{viewBoxWidth:r,strokeWidth:n,circleGap:l,showIndicator:a,fillColor:s,railColor:d,railStyle:c,percentage:u,clsPrefix:f}=e;return i("div",{class:`${f}-progress-content`,role:"none"},i("div",{class:`${f}-progress-graph`,"aria-hidden":!0},i("div",{class:`${f}-progress-graph-circle`},i("svg",{viewBox:`0 0 ${r} ${r}`},u.map((p,v)=>i("g",{key:v},i("path",{class:`${f}-progress-graph-circle-rail`,d:Fi(r/2-n/2*(1+2*v)-l*v,n,r),"stroke-width":n,"stroke-linecap":"round",fill:"none",style:[{strokeDashoffset:0,stroke:d[v]},c[v]]}),i("path",{class:[`${f}-progress-graph-circle-fill`,p===0&&`${f}-progress-graph-circle-fill--empty`],d:Fi(r/2-n/2*(1+2*v)-l*v,n,r),"stroke-width":n,"stroke-linecap":"round",fill:"none",style:{strokeDasharray:t.value[v],strokeDashoffset:0,stroke:s[v]}})))))),a&&o.default?i("div",null,i("div",{class:`${f}-progress-text`},o.default())):null)}}}),Zb=Object.assign(Object.assign({},ne.props),{processing:Boolean,type:{type:String,default:"line"},gapDegree:Number,gapOffsetDegree:Number,status:{type:String,default:"default"},railColor:[String,Array],railStyle:[String,Array],color:[String,Array],viewBoxWidth:{type:Number,default:100},strokeWidth:{type:Number,default:7},percentage:[Number,Array],unit:{type:String,default:"%"},showIndicator:{type:Boolean,default:!0},indicatorPosition:{type:String,default:"outside"},indicatorPlacement:{type:String,default:"outside"},indicatorTextColor:String,circleGap:{type:Number,default:1},height:Number,borderRadius:[String,Number],fillBorderRadius:[String,Number],offsetDegree:Number}),Qb=q({name:"Progress",props:Zb,setup(e){const o=R(()=>e.indicatorPlacement||e.indicatorPosition),t=R(()=>{if(e.gapDegree||e.gapDegree===0)return e.gapDegree;if(e.type==="dashboard")return 75}),{mergedClsPrefixRef:r,inlineThemeDisabled:n}=ke(e),l=ne("Progress","-progress",Ub,Aa,e,r),a=R(()=>{const{status:d}=e,{common:{cubicBezierEaseInOut:c},self:{fontSize:u,fontSizeCircle:f,railColor:p,railHeight:v,iconSizeCircle:h,iconSizeLine:m,textColorCircle:b,textColorLineInner:x,textColorLineOuter:S,lineBgProcessing:B,fontWeightCircle:T,[W("iconColor",d)]:z,[W("fillColor",d)]:I}}=l.value;return{"--n-bezier":c,"--n-fill-color":I,"--n-font-size":u,"--n-font-size-circle":f,"--n-font-weight-circle":T,"--n-icon-color":z,"--n-icon-size-circle":h,"--n-icon-size-line":m,"--n-line-bg-processing":B,"--n-rail-color":p,"--n-rail-height":v,"--n-text-color-circle":b,"--n-text-color-line-inner":x,"--n-text-color-line-outer":S}}),s=n?Ae("progress",R(()=>e.status[0]),a,e):void 0;return{mergedClsPrefix:r,mergedIndicatorPlacement:o,gapDeg:t,cssVars:n?void 0:a,themeClass:s==null?void 0:s.themeClass,onRender:s==null?void 0:s.onRender}},render(){const{type:e,cssVars:o,indicatorTextColor:t,showIndicator:r,status:n,railColor:l,railStyle:a,color:s,percentage:d,viewBoxWidth:c,strokeWidth:u,mergedIndicatorPlacement:f,unit:p,borderRadius:v,fillBorderRadius:h,height:m,processing:b,circleGap:x,mergedClsPrefix:S,gapDeg:B,gapOffsetDegree:T,themeClass:z,$slots:I,onRender:w}=this;return w==null||w(),i("div",{class:[z,`${S}-progress`,`${S}-progress--${e}`,`${S}-progress--${n}`],style:o,"aria-valuemax":100,"aria-valuemin":0,"aria-valuenow":d,role:e==="circle"||e==="line"||e==="dashboard"?"progressbar":"none"},e==="circle"||e==="dashboard"?i(Yb,{clsPrefix:S,status:n,showIndicator:r,indicatorTextColor:t,railColor:l,fillColor:s,railStyle:a,offsetDegree:this.offsetDegree,percentage:d,viewBoxWidth:c,strokeWidth:u,gapDegree:B===void 0?e==="dashboard"?75:0:B,gapOffsetDegree:T,unit:p},I):e==="line"?i(Gb,{clsPrefix:S,status:n,showIndicator:r,indicatorTextColor:t,railColor:l,fillColor:s,railStyle:a,percentage:d,processing:b,indicatorPlacement:f,unit:p,fillBorderRadius:h,railBorderRadius:v,height:m},I):e==="multiple-circle"?i(Xb,{clsPrefix:S,strokeWidth:u,railColor:l,fillColor:s,railStyle:a,viewBoxWidth:c,percentage:d,showIndicator:r,circleGap:x},I):null)}}),Jb=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 36"},i("circle",{fill:"#FFCB4C",cx:"18",cy:"17.018",r:"17"}),i("path",{fill:"#65471B",d:"M14.524 21.036c-.145-.116-.258-.274-.312-.464-.134-.46.13-.918.59-1.021 4.528-1.021 7.577 1.363 7.706 1.465.384.306.459.845.173 1.205-.286.358-.828.401-1.211.097-.11-.084-2.523-1.923-6.182-1.098-.274.061-.554-.016-.764-.184z"}),i("ellipse",{fill:"#65471B",cx:"13.119",cy:"11.174",rx:"2.125",ry:"2.656"}),i("ellipse",{fill:"#65471B",cx:"24.375",cy:"12.236",rx:"2.125",ry:"2.656"}),i("path",{fill:"#F19020",d:"M17.276 35.149s1.265-.411 1.429-1.352c.173-.972-.624-1.167-.624-1.167s1.041-.208 1.172-1.376c.123-1.101-.861-1.363-.861-1.363s.97-.4 1.016-1.539c.038-.959-.995-1.428-.995-1.428s5.038-1.221 5.556-1.341c.516-.12 1.32-.615 1.069-1.694-.249-1.08-1.204-1.118-1.697-1.003-.494.115-6.744 1.566-8.9 2.068l-1.439.334c-.54.127-.785-.11-.404-.512.508-.536.833-1.129.946-2.113.119-1.035-.232-2.313-.433-2.809-.374-.921-1.005-1.649-1.734-1.899-1.137-.39-1.945.321-1.542 1.561.604 1.854.208 3.375-.833 4.293-2.449 2.157-3.588 3.695-2.83 6.973.828 3.575 4.377 5.876 7.952 5.048l3.152-.681z"}),i("path",{fill:"#65471B",d:"M9.296 6.351c-.164-.088-.303-.224-.391-.399-.216-.428-.04-.927.393-1.112 4.266-1.831 7.699-.043 7.843.034.433.231.608.747.391 1.154-.216.405-.74.546-1.173.318-.123-.063-2.832-1.432-6.278.047-.257.109-.547.085-.785-.042zm12.135 3.75c-.156-.098-.286-.243-.362-.424-.187-.442.023-.927.468-1.084 4.381-1.536 7.685.48 7.823.567.415.26.555.787.312 1.178-.242.39-.776.495-1.191.238-.12-.072-2.727-1.621-6.267-.379-.266.091-.553.046-.783-.096z"})),e0=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 36"},i("path",{fill:"#FFCC4D",d:"M36 18c0 9.941-8.059 18-18 18-9.94 0-18-8.059-18-18C0 8.06 8.06 0 18 0c9.941 0 18 8.06 18 18"}),i("ellipse",{fill:"#664500",cx:"18",cy:"27",rx:"5",ry:"6"}),i("path",{fill:"#664500",d:"M5.999 11c-.208 0-.419-.065-.599-.2-.442-.331-.531-.958-.2-1.4C8.462 5.05 12.816 5 13 5c.552 0 1 .448 1 1 0 .551-.445.998-.996 1-.155.002-3.568.086-6.204 3.6-.196.262-.497.4-.801.4zm24.002 0c-.305 0-.604-.138-.801-.4-2.64-3.521-6.061-3.598-6.206-3.6-.55-.006-.994-.456-.991-1.005C22.006 5.444 22.45 5 23 5c.184 0 4.537.05 7.8 4.4.332.442.242 1.069-.2 1.4-.18.135-.39.2-.599.2zm-16.087 4.5l1.793-1.793c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0L12.5 14.086l-1.793-1.793c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.793 1.793-1.793 1.793c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l1.793-1.793 1.793 1.793c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414L13.914 15.5zm11 0l1.793-1.793c.391-.391.391-1.023 0-1.414s-1.023-.391-1.414 0L23.5 14.086l-1.793-1.793c-.391-.391-1.023-.391-1.414 0s-.391 1.023 0 1.414l1.793 1.793-1.793 1.793c-.391.391-.391 1.023 0 1.414.195.195.451.293.707.293s.512-.098.707-.293l1.793-1.793 1.793 1.793c.195.195.451.293.707.293s.512-.098.707-.293c.391-.391.391-1.023 0-1.414L24.914 15.5z"})),o0=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 36"},i("ellipse",{fill:"#292F33",cx:"18",cy:"26",rx:"18",ry:"10"}),i("ellipse",{fill:"#66757F",cx:"18",cy:"24",rx:"18",ry:"10"}),i("path",{fill:"#E1E8ED",d:"M18 31C3.042 31 1 16 1 12h34c0 2-1.958 19-17 19z"}),i("path",{fill:"#77B255",d:"M35 12.056c0 5.216-7.611 9.444-17 9.444S1 17.271 1 12.056C1 6.84 8.611 3.611 18 3.611s17 3.229 17 8.445z"}),i("ellipse",{fill:"#A6D388",cx:"18",cy:"13",rx:"15",ry:"7"}),i("path",{d:"M21 17c-.256 0-.512-.098-.707-.293-2.337-2.337-2.376-4.885-.125-8.262.739-1.109.9-2.246.478-3.377-.461-1.236-1.438-1.996-1.731-2.077-.553 0-.958-.443-.958-.996 0-.552.491-.995 1.043-.995.997 0 2.395 1.153 3.183 2.625 1.034 1.933.91 4.039-.351 5.929-1.961 2.942-1.531 4.332-.125 5.738.391.391.391 1.023 0 1.414-.195.196-.451.294-.707.294zm-6-2c-.256 0-.512-.098-.707-.293-2.337-2.337-2.376-4.885-.125-8.262.727-1.091.893-2.083.494-2.947-.444-.961-1.431-1.469-1.684-1.499-.552 0-.989-.447-.989-1 0-.552.458-1 1.011-1 .997 0 2.585.974 3.36 2.423.481.899 1.052 2.761-.528 5.131-1.961 2.942-1.531 4.332-.125 5.738.391.391.391 1.023 0 1.414-.195.197-.451.295-.707.295z",fill:"#5C913B"})),t0=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 36 36"},i("path",{fill:"#EF9645",d:"M15.5 2.965c1.381 0 2.5 1.119 2.5 2.5v.005L20.5.465c1.381 0 2.5 1.119 2.5 2.5V4.25l2.5-1.535c1.381 0 2.5 1.119 2.5 2.5V8.75L29 18H15.458L15.5 2.965z"}),i("path",{fill:"#FFDC5D",d:"M4.625 16.219c1.381-.611 3.354.208 4.75 2.188.917 1.3 1.187 3.151 2.391 3.344.46.073 1.234-.313 1.234-1.397V4.5s0-2 2-2 2 2 2 2v11.633c0-.029 1-.064 1-.082V2s0-2 2-2 2 2 2 2v14.053c0 .017 1 .041 1 .069V4.25s0-2 2-2 2 2 2 2v12.638c0 .118 1 .251 1 .398V8.75s0-2 2-2 2 2 2 2V24c0 6.627-5.373 12-12 12-4.775 0-8.06-2.598-9.896-5.292C8.547 28.423 8.096 26.051 8 25.334c0 0-.123-1.479-1.156-2.865-1.469-1.969-2.5-3.156-3.125-3.866-.317-.359-.625-1.707.906-2.384z"})),r0=g("result",` - color: var(--n-text-color); - line-height: var(--n-line-height); - font-size: var(--n-font-size); - transition: - color .3s var(--n-bezier); -`,[g("result-icon",` - display: flex; - justify-content: center; - transition: color .3s var(--n-bezier); - `,[y("status-image",` - font-size: var(--n-icon-size); - width: 1em; - height: 1em; - `),g("base-icon",` - color: var(--n-icon-color); - font-size: var(--n-icon-size); - `)]),g("result-content",{marginTop:"24px"}),g("result-footer",` - margin-top: 24px; - text-align: center; - `),g("result-header",[y("title",` - margin-top: 16px; - font-weight: var(--n-title-font-weight); - transition: color .3s var(--n-bezier); - text-align: center; - color: var(--n-title-text-color); - font-size: var(--n-title-font-size); - `),y("description",` - margin-top: 4px; - text-align: center; - font-size: var(--n-font-size); - `)])]),n0={403:t0,404:Jb,418:o0,500:e0,info:i(mt,null),success:i(Ht,null),warning:i(yt,null),error:i(Lt,null)},i0=Object.assign(Object.assign({},ne.props),{size:{type:String,default:"medium"},status:{type:String,default:"info"},title:String,description:String}),N1=q({name:"Result",props:i0,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=ne("Result","-result",r0,em,e,o),n=R(()=>{const{size:a,status:s}=e,{common:{cubicBezierEaseInOut:d},self:{textColor:c,lineHeight:u,titleTextColor:f,titleFontWeight:p,[W("iconColor",s)]:v,[W("fontSize",a)]:h,[W("titleFontSize",a)]:m,[W("iconSize",a)]:b}}=r.value;return{"--n-bezier":d,"--n-font-size":h,"--n-icon-size":b,"--n-line-height":u,"--n-text-color":c,"--n-title-font-size":m,"--n-title-font-weight":p,"--n-title-text-color":f,"--n-icon-color":v||""}}),l=t?Ae("result",R(()=>{const{size:a,status:s}=e;let d="";return a&&(d+=a[0]),s&&(d+=s[0]),d}),n,e):void 0;return{mergedClsPrefix:o,cssVars:t?void 0:n,themeClass:l==null?void 0:l.themeClass,onRender:l==null?void 0:l.onRender}},render(){var e;const{status:o,$slots:t,mergedClsPrefix:r,onRender:n}=this;return n==null||n(),i("div",{class:[`${r}-result`,this.themeClass],style:this.cssVars},i("div",{class:`${r}-result-icon`},((e=t.icon)===null||e===void 0?void 0:e.call(t))||i(De,{clsPrefix:r},{default:()=>n0[o]})),i("div",{class:`${r}-result-header`},this.title?i("div",{class:`${r}-result-header__title`},this.title):null,this.description?i("div",{class:`${r}-result-header__description`},this.description):null),t.default&&i("div",{class:`${r}-result-content`},t),t.footer&&i("div",{class:`${r}-result-footer`},t.footer()))}}),l0={name:"Skeleton",common:fe,self(e){const{heightSmall:o,heightMedium:t,heightLarge:r,borderRadius:n}=e;return{color:"rgba(255, 255, 255, 0.12)",colorEnd:"rgba(255, 255, 255, 0.18)",borderRadius:n,heightSmall:o,heightMedium:t,heightLarge:r}}},a0=e=>{const{heightSmall:o,heightMedium:t,heightLarge:r,borderRadius:n}=e;return{color:"#eee",colorEnd:"#ddd",borderRadius:n,heightSmall:o,heightMedium:t,heightLarge:r}},s0={name:"Skeleton",common:Le,self:a0},d0=C([g("skeleton",` - height: 1em; - width: 100%; - transition: background-color .3s var(--n-bezier); - transition: - --n-color-start .3s var(--n-bezier), - --n-color-end .3s var(--n-bezier), - background-color .3s var(--n-bezier); - animation: 2s skeleton-loading infinite cubic-bezier(0.36, 0, 0.64, 1); - background-color: var(--n-color-start); - `),C("@keyframes skeleton-loading",` - 0% { - background: var(--n-color-start); - } - 40% { - background: var(--n-color-end); - } - 80% { - background: var(--n-color-start); - } - 100% { - background: var(--n-color-start); - } - `)]),c0=Object.assign(Object.assign({},ne.props),{text:Boolean,round:Boolean,circle:Boolean,height:[String,Number],width:[String,Number],size:String,repeat:{type:Number,default:1},animated:{type:Boolean,default:!0},sharp:{type:Boolean,default:!0}}),V1=q({name:"Skeleton",inheritAttrs:!1,props:c0,setup(e){rl();const{mergedClsPrefixRef:o}=ke(e),t=ne("Skeleton","-skeleton",d0,s0,e,o);return{mergedClsPrefix:o,style:R(()=>{var r,n;const l=t.value,{common:{cubicBezierEaseInOut:a}}=l,s=l.self,{color:d,colorEnd:c,borderRadius:u}=s;let f;const{circle:p,sharp:v,round:h,width:m,height:b,size:x,text:S,animated:B}=e;x!==void 0&&(f=s[W("height",x)]);const T=p?(r=m??b)!==null&&r!==void 0?r:f:m,z=(n=p?m??b:b)!==null&&n!==void 0?n:f;return{display:S?"inline-block":"",verticalAlign:S?"-0.125em":"",borderRadius:p?"50%":h?"4096px":v?"":u,width:typeof T=="number"?_o(T):T,height:typeof z=="number"?_o(z):z,animation:B?"":"none","--n-bezier":a,"--n-color-start":d,"--n-color-end":c}})}},render(){const{repeat:e,style:o,mergedClsPrefix:t,$attrs:r}=this,n=i("div",ko({class:`${t}-skeleton`,style:o},r));return e>1?i(ao,null,Array.apply(null,{length:e}).map(l=>[n,` -`])):n}}),u0=C([C("@keyframes spin-rotate",` - from { - transform: rotate(0); - } - to { - transform: rotate(360deg); - } - `),g("spin-container",{position:"relative"},[g("spin-body",` - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - `,[Mt()])]),g("spin-body",` - display: inline-flex; - align-items: center; - justify-content: center; - flex-direction: column; - `),g("spin",` - display: inline-flex; - height: var(--n-size); - width: var(--n-size); - font-size: var(--n-size); - color: var(--n-color); - `,[P("rotate",` - animation: spin-rotate 2s linear infinite; - `)]),g("spin-description",` - display: inline-block; - font-size: var(--n-font-size); - color: var(--n-text-color); - transition: color .3s var(--n-bezier); - margin-top: 8px; - `),g("spin-content",` - opacity: 1; - transition: opacity .3s var(--n-bezier); - pointer-events: all; - `,[P("spinning",` - user-select: none; - -webkit-user-select: none; - pointer-events: none; - opacity: var(--n-opacity-spinning); - `)])]),f0={small:20,medium:18,large:16},h0=Object.assign(Object.assign({},ne.props),{description:String,stroke:String,size:{type:[String,Number],default:"medium"},show:{type:Boolean,default:!0},strokeWidth:Number,rotate:{type:Boolean,default:!0},spinning:{type:Boolean,validator:()=>!0,default:void 0}}),U1=q({name:"Spin",props:h0,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=ne("Spin","-spin",u0,am,e,o),n=R(()=>{const{size:a}=e,{common:{cubicBezierEaseInOut:s},self:d}=r.value,{opacitySpinning:c,color:u,textColor:f}=d,p=typeof a=="number"?_o(a):d[W("size",a)];return{"--n-bezier":s,"--n-opacity-spinning":c,"--n-size":p,"--n-color":u,"--n-text-color":f}}),l=t?Ae("spin",R(()=>{const{size:a}=e;return typeof a=="number"?String(a):a[0]}),n,e):void 0;return{mergedClsPrefix:o,compitableShow:gt(e,["spinning","show"]),mergedStrokeWidth:R(()=>{const{strokeWidth:a}=e;if(a!==void 0)return a;const{size:s}=e;return f0[typeof s=="number"?"medium":s]}),cssVars:t?void 0:n,themeClass:l==null?void 0:l.themeClass,onRender:l==null?void 0:l.onRender}},render(){var e,o;const{$slots:t,mergedClsPrefix:r,description:n}=this,l=t.icon&&this.rotate,a=(n||t.description)&&i("div",{class:`${r}-spin-description`},n||((e=t.description)===null||e===void 0?void 0:e.call(t))),s=t.icon?i("div",{class:[`${r}-spin-body`,this.themeClass]},i("div",{class:[`${r}-spin`,l&&`${r}-spin--rotate`],style:t.default?"":this.cssVars},t.icon()),a):i("div",{class:[`${r}-spin-body`,this.themeClass]},i(Et,{clsPrefix:r,style:t.default?"":this.cssVars,stroke:this.stroke,"stroke-width":this.mergedStrokeWidth,class:`${r}-spin`}),a);return(o=this.onRender)===null||o===void 0||o.call(this),t.default?i("div",{class:[`${r}-spin-container`,this.themeClass],style:this.cssVars},i("div",{class:[`${r}-spin-content`,this.compitableShow&&`${r}-spin-content--spinning`]},t),i(no,{name:"fade-in-transition"},{default:()=>this.compitableShow?s:null})):s}}),p0=g("statistic",[y("label",` - font-weight: var(--n-label-font-weight); - transition: .3s color var(--n-bezier); - font-size: var(--n-label-font-size); - color: var(--n-label-text-color); - `),g("statistic-value",` - margin-top: 4px; - font-weight: var(--n-value-font-weight); - `,[y("prefix",` - margin: 0 4px 0 0; - font-size: var(--n-value-font-size); - transition: .3s color var(--n-bezier); - color: var(--n-value-prefix-text-color); - `,[g("icon",{verticalAlign:"-0.125em"})]),y("content",` - font-size: var(--n-value-font-size); - transition: .3s color var(--n-bezier); - color: var(--n-value-text-color); - `),y("suffix",` - margin: 0 0 0 4px; - font-size: var(--n-value-font-size); - transition: .3s color var(--n-bezier); - color: var(--n-value-suffix-text-color); - `,[g("icon",{verticalAlign:"-0.125em"})])])]),v0=Object.assign(Object.assign({},ne.props),{tabularNums:Boolean,label:String,value:[String,Number]}),K1=q({name:"Statistic",props:v0,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t,mergedRtlRef:r}=ke(e),n=ne("Statistic","-statistic",p0,um,e,o),l=to("Statistic",r,o),a=R(()=>{const{self:{labelFontWeight:d,valueFontSize:c,valueFontWeight:u,valuePrefixTextColor:f,labelTextColor:p,valueSuffixTextColor:v,valueTextColor:h,labelFontSize:m},common:{cubicBezierEaseInOut:b}}=n.value;return{"--n-bezier":b,"--n-label-font-size":m,"--n-label-font-weight":d,"--n-label-text-color":p,"--n-value-font-weight":u,"--n-value-font-size":c,"--n-value-prefix-text-color":f,"--n-value-suffix-text-color":v,"--n-value-text-color":h}}),s=t?Ae("statistic",void 0,a,e):void 0;return{rtlEnabled:l,mergedClsPrefix:o,cssVars:t?void 0:a,themeClass:s==null?void 0:s.themeClass,onRender:s==null?void 0:s.onRender}},render(){var e;const{mergedClsPrefix:o,$slots:{default:t,label:r,prefix:n,suffix:l}}=this;return(e=this.onRender)===null||e===void 0||e.call(this),i("div",{class:[`${o}-statistic`,this.themeClass,this.rtlEnabled&&`${o}-statistic--rtl`],style:this.cssVars},Ee(r,a=>i("div",{class:`${o}-statistic__label`},this.label||a)),i("div",{class:`${o}-statistic-value`,style:{fontVariantNumeric:this.tabularNums?"tabular-nums":""}},Ee(n,a=>a&&i("span",{class:`${o}-statistic-value__prefix`},a)),this.value!==void 0?i("span",{class:`${o}-statistic-value__content`},this.value):Ee(t,a=>a&&i("span",{class:`${o}-statistic-value__content`},a)),Ee(l,a=>a&&i("span",{class:`${o}-statistic-value__suffix`},a))))}}),g0=g("switch",` - height: var(--n-height); - min-width: var(--n-width); - vertical-align: middle; - user-select: none; - -webkit-user-select: none; - display: inline-flex; - outline: none; - justify-content: center; - align-items: center; -`,[y("children-placeholder",` - height: var(--n-rail-height); - display: flex; - flex-direction: column; - overflow: hidden; - pointer-events: none; - visibility: hidden; - `),y("rail-placeholder",` - display: flex; - flex-wrap: none; - `),y("button-placeholder",` - width: calc(1.75 * var(--n-rail-height)); - height: var(--n-rail-height); - `),g("base-loading",` - position: absolute; - top: 50%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - font-size: calc(var(--n-button-width) - 4px); - color: var(--n-loading-color); - transition: color .3s var(--n-bezier); - `,[lt({left:"50%",top:"50%",originalTransform:"translateX(-50%) translateY(-50%)"})]),y("checked, unchecked",` - transition: color .3s var(--n-bezier); - color: var(--n-text-color); - box-sizing: border-box; - position: absolute; - white-space: nowrap; - top: 0; - bottom: 0; - display: flex; - align-items: center; - line-height: 1; - `),y("checked",` - right: 0; - padding-right: calc(1.25 * var(--n-rail-height) - var(--n-offset)); - `),y("unchecked",` - left: 0; - justify-content: flex-end; - padding-left: calc(1.25 * var(--n-rail-height) - var(--n-offset)); - `),C("&:focus",[y("rail",` - box-shadow: var(--n-box-shadow-focus); - `)]),P("round",[y("rail","border-radius: calc(var(--n-rail-height) / 2);",[y("button","border-radius: calc(var(--n-button-height) / 2);")])]),je("disabled",[je("icon",[P("rubber-band",[P("pressed",[y("rail",[y("button","max-width: var(--n-button-width-pressed);")])]),y("rail",[C("&:active",[y("button","max-width: var(--n-button-width-pressed);")])]),P("active",[P("pressed",[y("rail",[y("button","left: calc(100% - var(--n-offset) - var(--n-button-width-pressed));")])]),y("rail",[C("&:active",[y("button","left: calc(100% - var(--n-offset) - var(--n-button-width-pressed));")])])])])])]),P("active",[y("rail",[y("button","left: calc(100% - var(--n-button-width) - var(--n-offset))")])]),y("rail",` - overflow: hidden; - height: var(--n-rail-height); - min-width: var(--n-rail-width); - border-radius: var(--n-rail-border-radius); - cursor: pointer; - position: relative; - transition: - opacity .3s var(--n-bezier), - background .3s var(--n-bezier), - box-shadow .3s var(--n-bezier); - background-color: var(--n-rail-color); - `,[y("button-icon",` - color: var(--n-icon-color); - transition: color .3s var(--n-bezier); - font-size: calc(var(--n-button-height) - 4px); - position: absolute; - left: 0; - right: 0; - top: 0; - bottom: 0; - display: flex; - justify-content: center; - align-items: center; - line-height: 1; - `,[lt()]),y("button",` - align-items: center; - top: var(--n-offset); - left: var(--n-offset); - height: var(--n-button-height); - width: var(--n-button-width-pressed); - max-width: var(--n-button-width); - border-radius: var(--n-button-border-radius); - background-color: var(--n-button-color); - box-shadow: var(--n-button-box-shadow); - box-sizing: border-box; - cursor: inherit; - content: ""; - position: absolute; - transition: - background-color .3s var(--n-bezier), - left .3s var(--n-bezier), - opacity .3s var(--n-bezier), - max-width .3s var(--n-bezier), - box-shadow .3s var(--n-bezier); - `)]),P("active",[y("rail","background-color: var(--n-rail-color-active);")]),P("loading",[y("rail",` - cursor: wait; - `)]),P("disabled",[y("rail",` - cursor: not-allowed; - opacity: .5; - `)])]),m0=Object.assign(Object.assign({},ne.props),{size:{type:String,default:"medium"},value:{type:[String,Number,Boolean],default:void 0},loading:Boolean,defaultValue:{type:[String,Number,Boolean],default:!1},disabled:{type:Boolean,default:void 0},round:{type:Boolean,default:!0},"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],checkedValue:{type:[String,Number,Boolean],default:!0},uncheckedValue:{type:[String,Number,Boolean],default:!1},railStyle:Function,rubberBand:{type:Boolean,default:!0},onChange:[Function,Array]});let Xt;const G1=q({name:"Switch",props:m0,setup(e){Xt===void 0&&(typeof CSS<"u"?typeof CSS.supports<"u"?Xt=CSS.supports("width","max(1px)"):Xt=!1:Xt=!0);const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=ne("Switch","-switch",g0,wm,e,o),n=rt(e),{mergedSizeRef:l,mergedDisabledRef:a}=n,s=D(e.defaultValue),d=le(e,"value"),c=so(d,s),u=R(()=>c.value===e.checkedValue),f=D(!1),p=D(!1),v=R(()=>{const{railStyle:O}=e;if(O)return O({focused:p.value,checked:u.value})});function h(O){const{"onUpdate:value":k,onChange:$,onUpdateValue:L}=e,{nTriggerFormInput:M,nTriggerFormChange:j}=n;k&&ae(k,O),L&&ae(L,O),$&&ae($,O),s.value=O,M(),j()}function m(){const{nTriggerFormFocus:O}=n;O()}function b(){const{nTriggerFormBlur:O}=n;O()}function x(){e.loading||a.value||(c.value!==e.checkedValue?h(e.checkedValue):h(e.uncheckedValue))}function S(){p.value=!0,m()}function B(){p.value=!1,b(),f.value=!1}function T(O){e.loading||a.value||O.key===" "&&(c.value!==e.checkedValue?h(e.checkedValue):h(e.uncheckedValue),f.value=!1)}function z(O){e.loading||a.value||O.key===" "&&(O.preventDefault(),f.value=!0)}const I=R(()=>{const{value:O}=l,{self:{opacityDisabled:k,railColor:$,railColorActive:L,buttonBoxShadow:M,buttonColor:j,boxShadowFocus:E,loadingColor:U,textColor:_,iconColor:V,[W("buttonHeight",O)]:te,[W("buttonWidth",O)]:N,[W("buttonWidthPressed",O)]:G,[W("railHeight",O)]:Ce,[W("railWidth",O)]:X,[W("railBorderRadius",O)]:ve,[W("buttonBorderRadius",O)]:he},common:{cubicBezierEaseInOut:be}}=r.value;let me,se,Re;return Xt?(me=`calc((${Ce} - ${te}) / 2)`,se=`max(${Ce}, ${te})`,Re=`max(${X}, calc(${X} + ${te} - ${Ce}))`):(me=_o((Mo(Ce)-Mo(te))/2),se=_o(Math.max(Mo(Ce),Mo(te))),Re=Mo(Ce)>Mo(te)?X:_o(Mo(X)+Mo(te)-Mo(Ce))),{"--n-bezier":be,"--n-button-border-radius":he,"--n-button-box-shadow":M,"--n-button-color":j,"--n-button-width":N,"--n-button-width-pressed":G,"--n-button-height":te,"--n-height":se,"--n-offset":me,"--n-opacity-disabled":k,"--n-rail-border-radius":ve,"--n-rail-color":$,"--n-rail-color-active":L,"--n-rail-height":Ce,"--n-rail-width":X,"--n-width":Re,"--n-box-shadow-focus":E,"--n-loading-color":U,"--n-text-color":_,"--n-icon-color":V}}),w=t?Ae("switch",R(()=>l.value[0]),I,e):void 0;return{handleClick:x,handleBlur:B,handleFocus:S,handleKeyup:T,handleKeydown:z,mergedRailStyle:v,pressed:f,mergedClsPrefix:o,mergedValue:c,checked:u,mergedDisabled:a,cssVars:t?void 0:I,themeClass:w==null?void 0:w.themeClass,onRender:w==null?void 0:w.onRender}},render(){const{mergedClsPrefix:e,mergedDisabled:o,checked:t,mergedRailStyle:r,onRender:n,$slots:l}=this;n==null||n();const{checked:a,unchecked:s,icon:d,"checked-icon":c,"unchecked-icon":u}=l,f=!(ht(d)&&ht(c)&&ht(u));return i("div",{role:"switch","aria-checked":t,class:[`${e}-switch`,this.themeClass,f&&`${e}-switch--icon`,t&&`${e}-switch--active`,o&&`${e}-switch--disabled`,this.round&&`${e}-switch--round`,this.loading&&`${e}-switch--loading`,this.pressed&&`${e}-switch--pressed`,this.rubberBand&&`${e}-switch--rubber-band`],tabindex:this.mergedDisabled?void 0:0,style:this.cssVars,onClick:this.handleClick,onFocus:this.handleFocus,onBlur:this.handleBlur,onKeyup:this.handleKeyup,onKeydown:this.handleKeydown},i("div",{class:`${e}-switch__rail`,"aria-hidden":"true",style:r},Ee(a,p=>Ee(s,v=>p||v?i("div",{"aria-hidden":!0,class:`${e}-switch__children-placeholder`},i("div",{class:`${e}-switch__rail-placeholder`},i("div",{class:`${e}-switch__button-placeholder`}),p),i("div",{class:`${e}-switch__rail-placeholder`},i("div",{class:`${e}-switch__button-placeholder`}),v)):null)),i("div",{class:`${e}-switch__button`},Ee(d,p=>Ee(c,v=>Ee(u,h=>i(At,null,{default:()=>this.loading?i(Et,{key:"loading",clsPrefix:e,strokeWidth:20}):this.checked&&(v||p)?i("div",{class:`${e}-switch__button-icon`,key:v?"checked-icon":"icon"},v||p):!this.checked&&(h||p)?i("div",{class:`${e}-switch__button-icon`,key:h?"unchecked-icon":"icon"},h||p):null})))),Ee(a,p=>p&&i("div",{key:"checked",class:`${e}-switch__checked`},p)),Ee(s,p=>p&&i("div",{key:"unchecked",class:`${e}-switch__unchecked`},p)))))}}),jn="n-tabs",cs={tab:[String,Number,Object,Function],name:{type:[String,Number],required:!0},disabled:Boolean,displayDirective:{type:String,default:"if"},closable:{type:Boolean,default:void 0},tabProps:Object,label:[String,Number,Object,Function]},q1=q({__TAB_PANE__:!0,name:"TabPane",alias:["TabPanel"],props:cs,setup(e){const o=Se(jn,null);return o||Eo("tab-pane","`n-tab-pane` must be placed inside `n-tabs`."),{style:o.paneStyleRef,class:o.paneClassRef,mergedClsPrefix:o.mergedClsPrefixRef}},render(){return i("div",{class:[`${this.mergedClsPrefix}-tab-pane`,this.class],style:this.style},this.$slots)}}),b0=Object.assign({internalLeftPadded:Boolean,internalAddable:Boolean,internalCreatedByPane:Boolean},_t(cs,["displayDirective"])),un=q({__TAB__:!0,inheritAttrs:!1,name:"Tab",props:b0,setup(e){const{mergedClsPrefixRef:o,valueRef:t,typeRef:r,closableRef:n,tabStyleRef:l,tabChangeIdRef:a,onBeforeLeaveRef:s,triggerRef:d,handleAdd:c,activateTab:u,handleClose:f}=Se(jn);return{trigger:d,mergedClosable:R(()=>{if(e.internalAddable)return!1;const{closable:p}=e;return p===void 0?n.value:p}),style:l,clsPrefix:o,value:t,type:r,handleClose(p){p.stopPropagation(),!e.disabled&&f(e.name)},activateTab(){if(e.disabled)return;if(e.internalAddable){c();return}const{name:p}=e,v=++a.id;if(p!==t.value){const{value:h}=s;h?Promise.resolve(h(e.name,t.value)).then(m=>{m&&a.id===v&&u(p)}):u(p)}}}},render(){const{internalAddable:e,clsPrefix:o,name:t,disabled:r,label:n,tab:l,value:a,mergedClosable:s,style:d,trigger:c,$slots:{default:u}}=this,f=n??l;return i("div",{class:`${o}-tabs-tab-wrapper`},this.internalLeftPadded?i("div",{class:`${o}-tabs-tab-pad`}):null,i("div",Object.assign({key:t,"data-name":t,"data-disabled":r?!0:void 0},ko({class:[`${o}-tabs-tab`,a===t&&`${o}-tabs-tab--active`,r&&`${o}-tabs-tab--disabled`,s&&`${o}-tabs-tab--closable`,e&&`${o}-tabs-tab--addable`],onClick:c==="click"?this.activateTab:void 0,onMouseenter:c==="hover"?this.activateTab:void 0,style:e?void 0:d},this.internalCreatedByPane?this.tabProps||{}:this.$attrs)),i("span",{class:`${o}-tabs-tab__label`},e?i(ao,null,i("div",{class:`${o}-tabs-tab__height-placeholder`}," "),i(De,{clsPrefix:o},{default:()=>i(tr,null)})):u?u():typeof f=="object"?f:qe(f??t)),s&&this.type==="card"?i(St,{clsPrefix:o,class:`${o}-tabs-tab__close`,onClick:this.handleClose,disabled:r}):null))}}),x0=g("tabs",` - box-sizing: border-box; - width: 100%; - display: flex; - flex-direction: column; - transition: - background-color .3s var(--n-bezier), - border-color .3s var(--n-bezier); -`,[P("segment-type",[g("tabs-rail",[C("&.transition-disabled","color: red;",[g("tabs-tab",` - transition: none; - `)])])]),P("top",[g("tab-pane",` - padding: var(--n-pane-padding-top) var(--n-pane-padding-right) var(--n-pane-padding-bottom) var(--n-pane-padding-left); - `)]),P("left",[g("tab-pane",` - padding: var(--n-pane-padding-right) var(--n-pane-padding-bottom) var(--n-pane-padding-left) var(--n-pane-padding-top); - `)]),P("left, right",` - flex-direction: row; - `,[g("tabs-bar",` - width: 2px; - right: 0; - transition: - top .2s var(--n-bezier), - max-height .2s var(--n-bezier), - background-color .3s var(--n-bezier); - `),g("tabs-tab",` - padding: var(--n-tab-padding-vertical); - `)]),P("right",` - flex-direction: row-reverse; - `,[g("tab-pane",` - padding: var(--n-pane-padding-left) var(--n-pane-padding-top) var(--n-pane-padding-right) var(--n-pane-padding-bottom); - `),g("tabs-bar",` - left: 0; - `)]),P("bottom",` - flex-direction: column-reverse; - justify-content: flex-end; - `,[g("tab-pane",` - padding: var(--n-pane-padding-bottom) var(--n-pane-padding-right) var(--n-pane-padding-top) var(--n-pane-padding-left); - `),g("tabs-bar",` - top: 0; - `)]),g("tabs-rail",` - padding: 3px; - border-radius: var(--n-tab-border-radius); - width: 100%; - background-color: var(--n-color-segment); - transition: background-color .3s var(--n-bezier); - display: flex; - align-items: center; - `,[g("tabs-tab-wrapper",` - flex-basis: 0; - flex-grow: 1; - display: flex; - align-items: center; - justify-content: center; - `,[g("tabs-tab",` - overflow: hidden; - border-radius: var(--n-tab-border-radius); - width: 100%; - display: flex; - align-items: center; - justify-content: center; - `,[P("active",` - font-weight: var(--n-font-weight-strong); - color: var(--n-tab-text-color-active); - background-color: var(--n-tab-color-segment); - box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .08); - `),C("&:hover",` - color: var(--n-tab-text-color-hover); - `)])])]),P("flex",[g("tabs-nav",{width:"100%"},[g("tabs-wrapper",{width:"100%"},[g("tabs-tab",{marginRight:0})])])]),g("tabs-nav",` - box-sizing: border-box; - line-height: 1.5; - display: flex; - transition: border-color .3s var(--n-bezier); - `,[y("prefix, suffix",` - display: flex; - align-items: center; - `),y("prefix","padding-right: 16px;"),y("suffix","padding-left: 16px;")]),P("top, bottom",[g("tabs-nav-scroll-wrapper",[C("&::before",` - top: 0; - bottom: 0; - left: 0; - width: 20px; - `),C("&::after",` - top: 0; - bottom: 0; - right: 0; - width: 20px; - `),P("shadow-start",[C("&::before",` - box-shadow: inset 10px 0 8px -8px rgba(0, 0, 0, .12); - `)]),P("shadow-end",[C("&::after",` - box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, .12); - `)])])]),P("left, right",[g("tabs-nav-scroll-wrapper",[C("&::before",` - top: 0; - left: 0; - right: 0; - height: 20px; - `),C("&::after",` - bottom: 0; - left: 0; - right: 0; - height: 20px; - `),P("shadow-start",[C("&::before",` - box-shadow: inset 0 10px 8px -8px rgba(0, 0, 0, .12); - `)]),P("shadow-end",[C("&::after",` - box-shadow: inset 0 -10px 8px -8px rgba(0, 0, 0, .12); - `)])])]),g("tabs-nav-scroll-wrapper",` - flex: 1; - position: relative; - overflow: hidden; - `,[g("tabs-nav-y-scroll",` - height: 100%; - width: 100%; - overflow-y: auto; - scrollbar-width: none; - `,[C("&::-webkit-scrollbar",` - width: 0; - height: 0; - `)]),C("&::before, &::after",` - transition: box-shadow .3s var(--n-bezier); - pointer-events: none; - content: ""; - position: absolute; - z-index: 1; - `)]),g("tabs-nav-scroll-content",` - display: flex; - position: relative; - min-width: 100%; - width: fit-content; - box-sizing: border-box; - `),g("tabs-wrapper",` - display: inline-flex; - flex-wrap: nowrap; - position: relative; - `),g("tabs-tab-wrapper",` - display: flex; - flex-wrap: nowrap; - flex-shrink: 0; - flex-grow: 0; - `),g("tabs-tab",` - cursor: pointer; - white-space: nowrap; - flex-wrap: nowrap; - display: inline-flex; - align-items: center; - color: var(--n-tab-text-color); - font-size: var(--n-tab-font-size); - background-clip: padding-box; - padding: var(--n-tab-padding); - transition: - box-shadow .3s var(--n-bezier), - color .3s var(--n-bezier), - background-color .3s var(--n-bezier), - border-color .3s var(--n-bezier); - `,[P("disabled",{cursor:"not-allowed"}),y("close",` - margin-left: 6px; - transition: - background-color .3s var(--n-bezier), - color .3s var(--n-bezier); - `),y("label",` - display: flex; - align-items: center; - `)]),g("tabs-bar",` - position: absolute; - bottom: 0; - height: 2px; - border-radius: 1px; - background-color: var(--n-bar-color); - transition: - left .2s var(--n-bezier), - max-width .2s var(--n-bezier), - background-color .3s var(--n-bezier); - `,[C("&.transition-disabled",` - transition: none; - `),P("disabled",` - background-color: var(--n-tab-text-color-disabled) - `)]),g("tabs-pane-wrapper",` - position: relative; - overflow: hidden; - transition: max-height .2s var(--n-bezier); - `),g("tab-pane",` - color: var(--n-pane-text-color); - width: 100%; - transition: - color .3s var(--n-bezier), - background-color .3s var(--n-bezier), - opacity .2s var(--n-bezier); - left: 0; - right: 0; - top: 0; - `,[C("&.next-transition-leave-active, &.prev-transition-leave-active, &.next-transition-enter-active, &.prev-transition-enter-active",` - transition: - color .3s var(--n-bezier), - background-color .3s var(--n-bezier), - transform .2s var(--n-bezier), - opacity .2s var(--n-bezier); - `),C("&.next-transition-leave-active, &.prev-transition-leave-active",` - position: absolute; - `),C("&.next-transition-enter-from, &.prev-transition-leave-to",` - transform: translateX(32px); - opacity: 0; - `),C("&.next-transition-leave-to, &.prev-transition-enter-from",` - transform: translateX(-32px); - opacity: 0; - `),C("&.next-transition-leave-from, &.next-transition-enter-to, &.prev-transition-leave-from, &.prev-transition-enter-to",` - transform: translateX(0); - opacity: 1; - `)]),g("tabs-tab-pad",` - box-sizing: border-box; - width: var(--n-tab-gap); - flex-grow: 0; - flex-shrink: 0; - `),P("line-type, bar-type",[g("tabs-tab",` - font-weight: var(--n-tab-font-weight); - box-sizing: border-box; - vertical-align: bottom; - `,[C("&:hover",{color:"var(--n-tab-text-color-hover)"}),P("active",` - color: var(--n-tab-text-color-active); - font-weight: var(--n-tab-font-weight-active); - `),P("disabled",{color:"var(--n-tab-text-color-disabled)"})])]),g("tabs-nav",[P("line-type",[P("top",[y("prefix, suffix",` - border-bottom: 1px solid var(--n-tab-border-color); - `),g("tabs-nav-scroll-content",` - border-bottom: 1px solid var(--n-tab-border-color); - `),g("tabs-bar",` - bottom: -1px; - `)]),P("left",[y("prefix, suffix",` - border-right: 1px solid var(--n-tab-border-color); - `),g("tabs-nav-scroll-content",` - border-right: 1px solid var(--n-tab-border-color); - `),g("tabs-bar",` - right: -1px; - `)]),P("right",[y("prefix, suffix",` - border-left: 1px solid var(--n-tab-border-color); - `),g("tabs-nav-scroll-content",` - border-left: 1px solid var(--n-tab-border-color); - `),g("tabs-bar",` - left: -1px; - `)]),P("bottom",[y("prefix, suffix",` - border-top: 1px solid var(--n-tab-border-color); - `),g("tabs-nav-scroll-content",` - border-top: 1px solid var(--n-tab-border-color); - `),g("tabs-bar",` - top: -1px; - `)]),y("prefix, suffix",` - transition: border-color .3s var(--n-bezier); - `),g("tabs-nav-scroll-content",` - transition: border-color .3s var(--n-bezier); - `),g("tabs-bar",` - border-radius: 0; - `)]),P("card-type",[y("prefix, suffix",` - transition: border-color .3s var(--n-bezier); - border-bottom: 1px solid var(--n-tab-border-color); - `),g("tabs-pad",` - flex-grow: 1; - transition: border-color .3s var(--n-bezier); - border-bottom: 1px solid var(--n-tab-border-color); - `),g("tabs-tab-pad",` - transition: border-color .3s var(--n-bezier); - `),g("tabs-tab",` - font-weight: var(--n-tab-font-weight); - border: 1px solid var(--n-tab-border-color); - background-color: var(--n-tab-color); - box-sizing: border-box; - position: relative; - vertical-align: bottom; - display: flex; - justify-content: space-between; - font-size: var(--n-tab-font-size); - color: var(--n-tab-text-color); - `,[P("addable",` - padding-left: 8px; - padding-right: 8px; - font-size: 16px; - `,[y("height-placeholder",` - width: 0; - font-size: var(--n-tab-font-size); - `),je("disabled",[C("&:hover",` - color: var(--n-tab-text-color-hover); - `)])]),P("closable","padding-right: 8px;"),P("active",` - background-color: #0000; - font-weight: var(--n-tab-font-weight-active); - color: var(--n-tab-text-color-active); - `),P("disabled","color: var(--n-tab-text-color-disabled);")]),g("tabs-scroll-padding","border-bottom: 1px solid var(--n-tab-border-color);")]),P("left, right",[g("tabs-wrapper",` - flex-direction: column; - `,[g("tabs-tab-wrapper",` - flex-direction: column; - `,[g("tabs-tab-pad",` - height: var(--n-tab-gap-vertical); - width: 100%; - `)])])]),P("top",[P("card-type",[g("tabs-tab",` - border-top-left-radius: var(--n-tab-border-radius); - border-top-right-radius: var(--n-tab-border-radius); - `,[P("active",` - border-bottom: 1px solid #0000; - `)]),g("tabs-tab-pad",` - border-bottom: 1px solid var(--n-tab-border-color); - `)])]),P("left",[P("card-type",[g("tabs-tab",` - border-top-left-radius: var(--n-tab-border-radius); - border-bottom-left-radius: var(--n-tab-border-radius); - `,[P("active",` - border-right: 1px solid #0000; - `)]),g("tabs-tab-pad",` - border-right: 1px solid var(--n-tab-border-color); - `)])]),P("right",[P("card-type",[g("tabs-tab",` - border-top-right-radius: var(--n-tab-border-radius); - border-bottom-right-radius: var(--n-tab-border-radius); - `,[P("active",` - border-left: 1px solid #0000; - `)]),g("tabs-tab-pad",` - border-left: 1px solid var(--n-tab-border-color); - `)])]),P("bottom",[P("card-type",[g("tabs-tab",` - border-bottom-left-radius: var(--n-tab-border-radius); - border-bottom-right-radius: var(--n-tab-border-radius); - `,[P("active",` - border-top: 1px solid #0000; - `)]),g("tabs-tab-pad",` - border-top: 1px solid var(--n-tab-border-color); - `)])])])]),C0=Object.assign(Object.assign({},ne.props),{value:[String,Number],defaultValue:[String,Number],trigger:{type:String,default:"click"},type:{type:String,default:"bar"},closable:Boolean,justifyContent:String,size:{type:String,default:"medium"},placement:{type:String,default:"top"},tabStyle:[String,Object],barWidth:Number,paneClass:String,paneStyle:[String,Object],paneWrapperClass:String,paneWrapperStyle:[String,Object],addable:[Boolean,Object],tabsPadding:{type:Number,default:0},animated:Boolean,onBeforeLeave:Function,onAdd:Function,"onUpdate:value":[Function,Array],onUpdateValue:[Function,Array],onClose:[Function,Array],labelSize:String,activeName:[String,Number],onActiveNameChange:[Function,Array]}),Y1=q({name:"Tabs",props:C0,setup(e,{slots:o}){var t,r,n,l;const{mergedClsPrefixRef:a,inlineThemeDisabled:s}=ke(e),d=ne("Tabs","-tabs",x0,Im,e,a),c=D(null),u=D(null),f=D(null),p=D(null),v=D(null),h=D(!0),m=D(!0),b=gt(e,["labelSize","size"]),x=gt(e,["activeName","value"]),S=D((r=(t=x.value)!==null&&t!==void 0?t:e.defaultValue)!==null&&r!==void 0?r:o.default?(l=(n=tt(o.default())[0])===null||n===void 0?void 0:n.props)===null||l===void 0?void 0:l.name:null),B=so(x,S),T={id:0},z=R(()=>{if(!(!e.justifyContent||e.type==="card"))return{display:"flex",justifyContent:e.justifyContent}});Ke(B,()=>{T.id=0,k(),$()});function I(){var Q;const{value:A}=B;return A===null?null:(Q=c.value)===null||Q===void 0?void 0:Q.querySelector(`[data-name="${A}"]`)}function w(Q){if(e.type==="card")return;const{value:A}=u;if(A&&Q){const Z=`${a.value}-tabs-bar--disabled`,{barWidth:re,placement:ue}=e;if(Q.dataset.disabled==="true"?A.classList.add(Z):A.classList.remove(Z),["top","bottom"].includes(ue)){if(O(["top","maxHeight","height"]),typeof re=="number"&&Q.offsetWidth>=re){const Y=Math.floor((Q.offsetWidth-re)/2)+Q.offsetLeft;A.style.left=`${Y}px`,A.style.maxWidth=`${re}px`}else A.style.left=`${Q.offsetLeft}px`,A.style.maxWidth=`${Q.offsetWidth}px`;A.style.width="8192px",A.offsetWidth}else{if(O(["left","maxWidth","width"]),typeof re=="number"&&Q.offsetHeight>=re){const Y=Math.floor((Q.offsetHeight-re)/2)+Q.offsetTop;A.style.top=`${Y}px`,A.style.maxHeight=`${re}px`}else A.style.top=`${Q.offsetTop}px`,A.style.maxHeight=`${Q.offsetHeight}px`;A.style.height="8192px",A.offsetHeight}}}function O(Q){const{value:A}=u;if(A)for(const Z of Q)A.style[Z]=""}function k(){if(e.type==="card")return;const Q=I();Q&&w(Q)}function $(Q){var A;const Z=(A=v.value)===null||A===void 0?void 0:A.$el;if(!Z)return;const re=I();if(!re)return;const{scrollLeft:ue,offsetWidth:Y}=Z,{offsetLeft:ce,offsetWidth:He}=re;ue>ce?Z.scrollTo({top:0,left:ce,behavior:"smooth"}):ce+He>ue+Y&&Z.scrollTo({top:0,left:ce+He-Y,behavior:"smooth"})}const L=D(null);let M=0,j=null;function E(Q){const A=L.value;if(A){M=Q.getBoundingClientRect().height;const Z=`${M}px`,re=()=>{A.style.height=Z,A.style.maxHeight=Z};j?(re(),j(),j=null):j=re}}function U(Q){const A=L.value;if(A){const Z=Q.getBoundingClientRect().height,re=()=>{document.body.offsetHeight,A.style.maxHeight=`${Z}px`,A.style.height=`${Math.max(M,Z)}px`};j?(j(),j=null,re()):j=re}}function _(){const Q=L.value;Q&&(Q.style.maxHeight="",Q.style.height="")}const V={value:[]},te=D("next");function N(Q){const A=B.value;let Z="next";for(const re of V.value){if(re===A)break;if(re===Q){Z="prev";break}}te.value=Z,G(Q)}function G(Q){const{onActiveNameChange:A,onUpdateValue:Z,"onUpdate:value":re}=e;A&&ae(A,Q),Z&&ae(Z,Q),re&&ae(re,Q),S.value=Q}function Ce(Q){const{onClose:A}=e;A&&ae(A,Q)}function X(){const{value:Q}=u;if(!Q)return;const A="transition-disabled";Q.classList.add(A),k(),Q.classList.remove(A)}let ve=0;function he(Q){var A;if(Q.contentRect.width===0&&Q.contentRect.height===0||ve===Q.contentRect.width)return;ve=Q.contentRect.width;const{type:Z}=e;(Z==="line"||Z==="bar")&&X(),Z!=="segment"&&ee((A=v.value)===null||A===void 0?void 0:A.$el)}const be=Ur(he,64);Ke([()=>e.justifyContent,()=>e.size],()=>{io(()=>{const{type:Q}=e;(Q==="line"||Q==="bar")&&X()})});const me=D(!1);function se(Q){var A;const{target:Z,contentRect:{width:re}}=Q,ue=Z.parentElement.offsetWidth;if(!me.value)ueY.$el.offsetWidth&&(me.value=!1)}ee((A=v.value)===null||A===void 0?void 0:A.$el)}const Re=Ur(se,64);function ge(){const{onAdd:Q}=e;Q&&Q(),io(()=>{const A=I(),{value:Z}=v;!A||!Z||Z.scrollTo({left:A.offsetLeft,top:0,behavior:"smooth"})})}function ee(Q){if(!Q)return;const{placement:A}=e;if(A==="top"||A==="bottom"){const{scrollLeft:Z,scrollWidth:re,offsetWidth:ue}=Q;h.value=Z<=0,m.value=Z+ue>=re}else{const{scrollTop:Z,scrollHeight:re,offsetHeight:ue}=Q;h.value=Z<=0,m.value=Z+ue>=re}}const xe=Ur(Q=>{ee(Q.target)},64);Oe(jn,{triggerRef:le(e,"trigger"),tabStyleRef:le(e,"tabStyle"),paneClassRef:le(e,"paneClass"),paneStyleRef:le(e,"paneStyle"),mergedClsPrefixRef:a,typeRef:le(e,"type"),closableRef:le(e,"closable"),valueRef:B,tabChangeIdRef:T,onBeforeLeaveRef:le(e,"onBeforeLeave"),activateTab:N,handleClose:Ce,handleAdd:ge}),dd(()=>{k(),$()}),oo(()=>{const{value:Q}=f;if(!Q)return;const{value:A}=a,Z=`${A}-tabs-nav-scroll-wrapper--shadow-start`,re=`${A}-tabs-nav-scroll-wrapper--shadow-end`;h.value?Q.classList.remove(Z):Q.classList.add(Z),m.value?Q.classList.remove(re):Q.classList.add(re)});const de=D(null);Ke(B,()=>{if(e.type==="segment"){const Q=de.value;Q&&io(()=>{Q.classList.add("transition-disabled"),Q.offsetWidth,Q.classList.remove("transition-disabled")})}});const ye={syncBarPosition:()=>{k()}},pe=R(()=>{const{value:Q}=b,{type:A}=e,Z={card:"Card",bar:"Bar",line:"Line",segment:"Segment"}[A],re=`${Q}${Z}`,{self:{barColor:ue,closeIconColor:Y,closeIconColorHover:ce,closeIconColorPressed:He,tabColor:Ve,tabBorderColor:Ze,paneTextColor:po,tabFontWeight:fo,tabBorderRadius:Bo,tabFontWeightActive:To,colorSegment:xo,fontWeightStrong:Co,tabColorSegment:Ao,closeSize:Fo,closeIconSize:co,closeColorHover:uo,closeColorPressed:F,closeBorderRadius:K,[W("panePadding",Q)]:ie,[W("tabPadding",re)]:ze,[W("tabPaddingVertical",re)]:Pe,[W("tabGap",re)]:Ie,[W("tabGap",`${re}Vertical`)]:Te,[W("tabTextColor",A)]:_e,[W("tabTextColorActive",A)]:Qe,[W("tabTextColorHover",A)]:vo,[W("tabTextColorDisabled",A)]:Wo,[W("tabFontSize",Q)]:No},common:{cubicBezierEaseInOut:st}}=d.value;return{"--n-bezier":st,"--n-color-segment":xo,"--n-bar-color":ue,"--n-tab-font-size":No,"--n-tab-text-color":_e,"--n-tab-text-color-active":Qe,"--n-tab-text-color-disabled":Wo,"--n-tab-text-color-hover":vo,"--n-pane-text-color":po,"--n-tab-border-color":Ze,"--n-tab-border-radius":Bo,"--n-close-size":Fo,"--n-close-icon-size":co,"--n-close-color-hover":uo,"--n-close-color-pressed":F,"--n-close-border-radius":K,"--n-close-icon-color":Y,"--n-close-icon-color-hover":ce,"--n-close-icon-color-pressed":He,"--n-tab-color":Ve,"--n-tab-font-weight":fo,"--n-tab-font-weight-active":To,"--n-tab-padding":ze,"--n-tab-padding-vertical":Pe,"--n-tab-gap":Ie,"--n-tab-gap-vertical":Te,"--n-pane-padding-left":Ko(ie,"left"),"--n-pane-padding-right":Ko(ie,"right"),"--n-pane-padding-top":Ko(ie,"top"),"--n-pane-padding-bottom":Ko(ie,"bottom"),"--n-font-weight-strong":Co,"--n-tab-color-segment":Ao}}),Me=s?Ae("tabs",R(()=>`${b.value[0]}${e.type[0]}`),pe,e):void 0;return Object.assign({mergedClsPrefix:a,mergedValue:B,renderedNames:new Set,tabsRailElRef:de,tabsPaneWrapperRef:L,tabsElRef:c,barElRef:u,addTabInstRef:p,xScrollInstRef:v,scrollWrapperElRef:f,addTabFixed:me,tabWrapperStyle:z,handleNavResize:be,mergedSize:b,handleScroll:xe,handleTabsResize:Re,cssVars:s?void 0:pe,themeClass:Me==null?void 0:Me.themeClass,animationDirection:te,renderNameListRef:V,onAnimationBeforeLeave:E,onAnimationEnter:U,onAnimationAfterEnter:_,onRender:Me==null?void 0:Me.onRender},ye)},render(){const{mergedClsPrefix:e,type:o,placement:t,addTabFixed:r,addable:n,mergedSize:l,renderNameListRef:a,onRender:s,paneWrapperClass:d,paneWrapperStyle:c,$slots:{default:u,prefix:f,suffix:p}}=this;s==null||s();const v=u?tt(u()).filter(z=>z.type.__TAB_PANE__===!0):[],h=u?tt(u()).filter(z=>z.type.__TAB__===!0):[],m=!h.length,b=o==="card",x=o==="segment",S=!b&&!x&&this.justifyContent;a.value=[];const B=()=>{const z=i("div",{style:this.tabWrapperStyle,class:[`${e}-tabs-wrapper`]},S?null:i("div",{class:`${e}-tabs-scroll-padding`,style:{width:`${this.tabsPadding}px`}}),m?v.map((I,w)=>(a.value.push(I.props.name),rn(i(un,Object.assign({},I.props,{internalCreatedByPane:!0,internalLeftPadded:w!==0&&(!S||S==="center"||S==="start"||S==="end")}),I.children?{default:I.children.tab}:void 0)))):h.map((I,w)=>(a.value.push(I.props.name),rn(w!==0&&!S?_i(I):I))),!r&&n&&b?Mi(n,(m?v.length:h.length)!==0):null,S?null:i("div",{class:`${e}-tabs-scroll-padding`,style:{width:`${this.tabsPadding}px`}}));return i("div",{ref:"tabsElRef",class:`${e}-tabs-nav-scroll-content`},b&&n?i(vt,{onResize:this.handleTabsResize},{default:()=>z}):z,b?i("div",{class:`${e}-tabs-pad`}):null,b?null:i("div",{ref:"barElRef",class:`${e}-tabs-bar`}))},T=x?"top":t;return i("div",{class:[`${e}-tabs`,this.themeClass,`${e}-tabs--${o}-type`,`${e}-tabs--${l}-size`,S&&`${e}-tabs--flex`,`${e}-tabs--${T}`],style:this.cssVars},i("div",{class:[`${e}-tabs-nav--${o}-type`,`${e}-tabs-nav--${T}`,`${e}-tabs-nav`]},Ee(f,z=>z&&i("div",{class:`${e}-tabs-nav__prefix`},z)),x?i("div",{class:`${e}-tabs-rail`,ref:"tabsRailElRef"},m?v.map((z,I)=>(a.value.push(z.props.name),i(un,Object.assign({},z.props,{internalCreatedByPane:!0,internalLeftPadded:I!==0}),z.children?{default:z.children.tab}:void 0))):h.map((z,I)=>(a.value.push(z.props.name),I===0?z:_i(z)))):i(vt,{onResize:this.handleNavResize},{default:()=>i("div",{class:`${e}-tabs-nav-scroll-wrapper`,ref:"scrollWrapperElRef"},["top","bottom"].includes(T)?i(id,{ref:"xScrollInstRef",onScroll:this.handleScroll},{default:B}):i("div",{class:`${e}-tabs-nav-y-scroll`,onScroll:this.handleScroll},B()))}),r&&n&&b?Mi(n,!0):null,Ee(p,z=>z&&i("div",{class:`${e}-tabs-nav__suffix`},z))),m&&(this.animated&&(T==="top"||T==="bottom")?i("div",{ref:"tabsPaneWrapperRef",style:c,class:[`${e}-tabs-pane-wrapper`,d]},Oi(v,this.mergedValue,this.renderedNames,this.onAnimationBeforeLeave,this.onAnimationEnter,this.onAnimationAfterEnter,this.animationDirection)):Oi(v,this.mergedValue,this.renderedNames)))}});function Oi(e,o,t,r,n,l,a){const s=[];return e.forEach(d=>{const{name:c,displayDirective:u,"display-directive":f}=d.props,p=h=>u===h||f===h,v=o===c;if(d.key!==void 0&&(d.key=c),v||p("show")||p("show:lazy")&&t.has(c)){t.has(c)||t.add(c);const h=!p("if");s.push(h?Lo(d,[[Go,v]]):d)}}),a?i(fn,{name:`${a}-transition`,onBeforeLeave:r,onEnter:n,onAfterEnter:l},{default:()=>s}):s}function Mi(e,o){return i(un,{ref:"addTabInstRef",key:"__addable",name:"__addable",internalCreatedByPane:!0,internalAddable:!0,internalLeftPadded:o,disabled:typeof e=="object"&&e.disabled})}function _i(e){const o=Jt(e);return o.props?o.props.internalLeftPadded=!0:o.props={internalLeftPadded:!0},o}function rn(e){return Array.isArray(e.dynamicProps)?e.dynamicProps.includes("internalLeftPadded")||e.dynamicProps.push("internalLeftPadded"):e.dynamicProps=["internalLeftPadded"],e}const y0=g("thing",` - display: flex; - transition: color .3s var(--n-bezier); - font-size: var(--n-font-size); - color: var(--n-text-color); -`,[g("thing-avatar",` - margin-right: 12px; - margin-top: 2px; - `),g("thing-avatar-header-wrapper",` - display: flex; - flex-wrap: nowrap; - `,[g("thing-header-wrapper",` - flex: 1; - `)]),g("thing-main",` - flex-grow: 1; - `,[g("thing-header",` - display: flex; - margin-bottom: 4px; - justify-content: space-between; - align-items: center; - `,[y("title",` - font-size: 16px; - font-weight: var(--n-title-font-weight); - transition: color .3s var(--n-bezier); - color: var(--n-title-text-color); - `)]),y("description",[C("&:not(:last-child)",` - margin-bottom: 4px; - `)]),y("content",[C("&:not(:first-child)",` - margin-top: 12px; - `)]),y("footer",[C("&:not(:first-child)",` - margin-top: 12px; - `)]),y("action",[C("&:not(:first-child)",` - margin-top: 12px; - `)])])]),w0=Object.assign(Object.assign({},ne.props),{title:String,titleExtra:String,description:String,descriptionStyle:[String,Object],content:String,contentStyle:[String,Object],contentIndented:Boolean}),X1=q({name:"Thing",props:w0,setup(e,{slots:o}){const{mergedClsPrefixRef:t,inlineThemeDisabled:r,mergedRtlRef:n}=ke(e),l=ne("Thing","-thing",y0,Om,e,t),a=to("Thing",n,t),s=R(()=>{const{self:{titleTextColor:c,textColor:u,titleFontWeight:f,fontSize:p},common:{cubicBezierEaseInOut:v}}=l.value;return{"--n-bezier":v,"--n-font-size":p,"--n-text-color":u,"--n-title-font-weight":f,"--n-title-text-color":c}}),d=r?Ae("thing",void 0,s,e):void 0;return()=>{var c;const{value:u}=t,f=a?a.value:!1;return(c=d==null?void 0:d.onRender)===null||c===void 0||c.call(d),i("div",{class:[`${u}-thing`,d==null?void 0:d.themeClass,f&&`${u}-thing--rtl`],style:r?void 0:s.value},o.avatar&&e.contentIndented?i("div",{class:`${u}-thing-avatar`},o.avatar()):null,i("div",{class:`${u}-thing-main`},!e.contentIndented&&(o.header||e.title||o["header-extra"]||e.titleExtra||o.avatar)?i("div",{class:`${u}-thing-avatar-header-wrapper`},o.avatar?i("div",{class:`${u}-thing-avatar`},o.avatar()):null,o.header||e.title||o["header-extra"]||e.titleExtra?i("div",{class:`${u}-thing-header-wrapper`},i("div",{class:`${u}-thing-header`},o.header||e.title?i("div",{class:`${u}-thing-header__title`},o.header?o.header():e.title):null,o["header-extra"]||e.titleExtra?i("div",{class:`${u}-thing-header__extra`},o["header-extra"]?o["header-extra"]():e.titleExtra):null),o.description||e.description?i("div",{class:`${u}-thing-main__description`,style:e.descriptionStyle},o.description?o.description():e.description):null):null):i(ao,null,o.header||e.title||o["header-extra"]||e.titleExtra?i("div",{class:`${u}-thing-header`},o.header||e.title?i("div",{class:`${u}-thing-header__title`},o.header?o.header():e.title):null,o["header-extra"]||e.titleExtra?i("div",{class:`${u}-thing-header__extra`},o["header-extra"]?o["header-extra"]():e.titleExtra):null):null,o.description||e.description?i("div",{class:`${u}-thing-main__description`,style:e.descriptionStyle},o.description?o.description():e.description):null),o.default||e.content?i("div",{class:`${u}-thing-main__content`,style:e.contentStyle},o.default?o.default():e.content):null,o.footer?i("div",{class:`${u}-thing-main__footer`},o.footer()):null,o.action?i("div",{class:`${u}-thing-main__action`},o.action()):null))}}}),S0=g("h",` - font-size: var(--n-font-size); - font-weight: var(--n-font-weight); - margin: var(--n-margin); - transition: color .3s var(--n-bezier); - color: var(--n-text-color); -`,[C("&:first-child",{marginTop:0}),P("prefix-bar",{position:"relative",paddingLeft:"var(--n-prefix-width)"},[P("align-text",{paddingLeft:0},[C("&::before",{left:"calc(-1 * var(--n-prefix-width))"})]),C("&::before",` - content: ""; - width: var(--n-bar-width); - border-radius: calc(var(--n-bar-width) / 2); - transition: background-color .3s var(--n-bezier); - left: 0; - top: 0; - bottom: 0; - position: absolute; - `),C("&::before",{backgroundColor:"var(--n-bar-color)"})])]),z0=Object.assign(Object.assign({},ne.props),{type:{type:String,default:"default"},prefix:String,alignText:Boolean}),Vt=e=>q({name:`H${e}`,props:z0,setup(o){const{mergedClsPrefixRef:t,inlineThemeDisabled:r}=ke(o),n=ne("Typography","-h",S0,Ya,o,t),l=R(()=>{const{type:s}=o,{common:{cubicBezierEaseInOut:d},self:{headerFontWeight:c,headerTextColor:u,[W("headerPrefixWidth",e)]:f,[W("headerFontSize",e)]:p,[W("headerMargin",e)]:v,[W("headerBarWidth",e)]:h,[W("headerBarColor",s)]:m}}=n.value;return{"--n-bezier":d,"--n-font-size":p,"--n-margin":v,"--n-bar-color":m,"--n-bar-width":h,"--n-font-weight":c,"--n-text-color":u,"--n-prefix-width":f}}),a=r?Ae(`h${e}`,R(()=>o.type[0]),l,o):void 0;return{mergedClsPrefix:t,cssVars:r?void 0:l,themeClass:a==null?void 0:a.themeClass,onRender:a==null?void 0:a.onRender}},render(){var o;const{prefix:t,alignText:r,mergedClsPrefix:n,cssVars:l,$slots:a}=this;return(o=this.onRender)===null||o===void 0||o.call(this),i(`h${e}`,{class:[`${n}-h`,`${n}-h${e}`,this.themeClass,{[`${n}-h--prefix-bar`]:t,[`${n}-h--align-text`]:r}],style:l},a)}});Vt("1");Vt("2");const Z1=Vt("3");Vt("4");Vt("5");Vt("6");const $0=g("text",` - transition: color .3s var(--n-bezier); - color: var(--n-text-color); -`,[P("strong",` - font-weight: var(--n-font-weight-strong); - `),P("italic",{fontStyle:"italic"}),P("underline",{textDecoration:"underline"}),P("code",` - line-height: 1.4; - display: inline-block; - font-family: var(--n-font-famliy-mono); - transition: - color .3s var(--n-bezier), - border-color .3s var(--n-bezier), - background-color .3s var(--n-bezier); - box-sizing: border-box; - padding: .05em .35em 0 .35em; - border-radius: var(--n-code-border-radius); - font-size: .9em; - color: var(--n-code-text-color); - background-color: var(--n-code-color); - border: var(--n-code-border); - `)]),R0=Object.assign(Object.assign({},ne.props),{code:Boolean,type:{type:String,default:"default"},delete:Boolean,strong:Boolean,italic:Boolean,underline:Boolean,depth:[String,Number],tag:String,as:{type:String,validator:()=>!0,default:void 0}}),Q1=q({name:"Text",props:R0,setup(e){const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=ne("Typography","-text",$0,Ya,e,o),n=R(()=>{const{depth:a,type:s}=e,d=s==="default"?a===void 0?"textColor":`textColor${a}Depth`:W("textColor",s),{common:{fontWeightStrong:c,fontFamilyMono:u,cubicBezierEaseInOut:f},self:{codeTextColor:p,codeBorderRadius:v,codeColor:h,codeBorder:m,[d]:b}}=r.value;return{"--n-bezier":f,"--n-text-color":b,"--n-font-weight-strong":c,"--n-font-famliy-mono":u,"--n-code-border-radius":v,"--n-code-text-color":p,"--n-code-color":h,"--n-code-border":m}}),l=t?Ae("text",R(()=>`${e.type[0]}${e.depth||""}`),n,e):void 0;return{mergedClsPrefix:o,compitableTag:gt(e,["as","tag"]),cssVars:t?void 0:n,themeClass:l==null?void 0:l.themeClass,onRender:l==null?void 0:l.onRender}},render(){var e,o,t;const{mergedClsPrefix:r}=this;(e=this.onRender)===null||e===void 0||e.call(this);const n=[`${r}-text`,this.themeClass,{[`${r}-text--code`]:this.code,[`${r}-text--delete`]:this.delete,[`${r}-text--strong`]:this.strong,[`${r}-text--italic`]:this.italic,[`${r}-text--underline`]:this.underline}],l=(t=(o=this.$slots).default)===null||t===void 0?void 0:t.call(o);return this.code?i("code",{class:n,style:this.cssVars},this.delete?i("del",null,l):l):this.delete?i("del",{class:n,style:this.cssVars},l):i(this.compitableTag||"span",{class:n,style:this.cssVars},l)}}),Ut="n-upload",us="__UPLOAD_DRAGGER__",P0=q({name:"UploadDragger",[us]:!0,setup(e,{slots:o}){const t=Se(Ut,null);return t||Eo("upload-dragger","`n-upload-dragger` must be placed inside `n-upload`."),()=>{const{mergedClsPrefixRef:{value:r},mergedDisabledRef:{value:n},maxReachedRef:{value:l}}=t;return i("div",{class:[`${r}-upload-dragger`,(n||l)&&`${r}-upload-dragger--disabled`]},o)}}});var fs=globalThis&&globalThis.__awaiter||function(e,o,t,r){function n(l){return l instanceof t?l:new t(function(a){a(l)})}return new(t||(t=Promise))(function(l,a){function s(u){try{c(r.next(u))}catch(f){a(f)}}function d(u){try{c(r.throw(u))}catch(f){a(f)}}function c(u){u.done?l(u.value):n(u.value).then(s,d)}c((r=r.apply(e,o||[])).next())})};const hs=e=>e.includes("image/"),Di=(e="")=>{const o=e.split("/"),r=o[o.length-1].split(/#|\?/)[0];return(/\.[^./\\]*$/.exec(r)||[""])[0]},Li=/(webp|svg|png|gif|jpg|jpeg|jfif|bmp|dpg|ico)$/i,ps=e=>{if(e.type)return hs(e.type);const o=Di(e.name||"");if(Li.test(o))return!0;const t=e.thumbnailUrl||e.url||"",r=Di(t);return!!(/^data:image\//.test(t)||Li.test(r))};function k0(e){return fs(this,void 0,void 0,function*(){return yield new Promise(o=>{if(!e.type||!hs(e.type)){o("");return}o(window.URL.createObjectURL(e))})})}const I0=jo&&window.FileReader&&window.File;function B0(e){return e.isDirectory}function T0(e){return e.isFile}function F0(e,o){return fs(this,void 0,void 0,function*(){const t=[];let r,n=0;function l(){n++}function a(){n--,n||r(t)}function s(d){d.forEach(c=>{if(c){if(l(),o&&B0(c)){const u=c.createReader();l(),u.readEntries(f=>{s(f),a()},()=>{a()})}else T0(c)&&(l(),c.file(u=>{t.push({file:u,entry:c,source:"dnd"}),a()},()=>{a()}));a()}})}return yield new Promise(d=>{r=d,s(e)}),t})}function nr(e){const{id:o,name:t,percentage:r,status:n,url:l,file:a,thumbnailUrl:s,type:d,fullPath:c,batchId:u}=e;return{id:o,name:t,percentage:r??null,status:n,url:l??null,file:a??null,thumbnailUrl:s??null,type:d??null,fullPath:c??null,batchId:u??null}}function O0(e,o,t){return e=e.toLowerCase(),o=o.toLocaleLowerCase(),t=t.toLocaleLowerCase(),t.split(",").map(n=>n.trim()).filter(Boolean).some(n=>{if(n.startsWith(".")){if(e.endsWith(n))return!0}else if(n.includes("/")){const[l,a]=o.split("/"),[s,d]=n.split("/");if((s==="*"||l&&s&&s===l)&&(d==="*"||a&&d&&d===a))return!0}else return!0;return!1})}const M0=(e,o)=>{if(!e)return;const t=document.createElement("a");t.href=e,o!==void 0&&(t.download=o),document.body.appendChild(t),t.click(),document.body.removeChild(t)},vs=q({name:"UploadTrigger",props:{abstract:Boolean},setup(e,{slots:o}){const t=Se(Ut,null);t||Eo("upload-trigger","`n-upload-trigger` must be placed inside `n-upload`.");const{mergedClsPrefixRef:r,mergedDisabledRef:n,maxReachedRef:l,listTypeRef:a,dragOverRef:s,openOpenFileDialog:d,draggerInsideRef:c,handleFileAddition:u,mergedDirectoryDndRef:f,triggerStyleRef:p}=t,v=R(()=>a.value==="image-card");function h(){n.value||l.value||d()}function m(B){B.preventDefault(),s.value=!0}function b(B){B.preventDefault(),s.value=!0}function x(B){B.preventDefault(),s.value=!1}function S(B){var T;if(B.preventDefault(),!c.value||n.value||l.value){s.value=!1;return}const z=(T=B.dataTransfer)===null||T===void 0?void 0:T.items;z!=null&&z.length?F0(Array.from(z).map(I=>I.webkitGetAsEntry()),f.value).then(I=>{u(I)}).finally(()=>{s.value=!1}):s.value=!1}return()=>{var B;const{value:T}=r;return e.abstract?(B=o.default)===null||B===void 0?void 0:B.call(o,{handleClick:h,handleDrop:S,handleDragOver:m,handleDragEnter:b,handleDragLeave:x}):i("div",{class:[`${T}-upload-trigger`,(n.value||l.value)&&`${T}-upload-trigger--disabled`,v.value&&`${T}-upload-trigger--image-card`],style:p.value,onClick:h,onDrop:S,onDragover:m,onDragenter:b,onDragleave:x},v.value?i(P0,null,{default:()=>lo(o.default,()=>[i(De,{clsPrefix:T},{default:()=>i(tr,null)})])}):o)}}}),_0=q({name:"UploadProgress",props:{show:Boolean,percentage:{type:Number,required:!0},status:{type:String,required:!0}},setup(){return{mergedTheme:Se(Ut).mergedThemeRef}},render(){return i(wt,null,{default:()=>this.show?i(Qb,{type:"line",showIndicator:!1,percentage:this.percentage,status:this.status,height:2,theme:this.mergedTheme.peers.Progress,themeOverrides:this.mergedTheme.peerOverrides.Progress}):null})}}),D0=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28 28"},i("g",{fill:"none"},i("path",{d:"M21.75 3A3.25 3.25 0 0 1 25 6.25v15.5A3.25 3.25 0 0 1 21.75 25H6.25A3.25 3.25 0 0 1 3 21.75V6.25A3.25 3.25 0 0 1 6.25 3h15.5zm.583 20.4l-7.807-7.68a.75.75 0 0 0-.968-.07l-.084.07l-7.808 7.68c.183.065.38.1.584.1h15.5c.204 0 .4-.035.583-.1l-7.807-7.68l7.807 7.68zM21.75 4.5H6.25A1.75 1.75 0 0 0 4.5 6.25v15.5c0 .208.036.408.103.593l7.82-7.692a2.25 2.25 0 0 1 3.026-.117l.129.117l7.82 7.692c.066-.185.102-.385.102-.593V6.25a1.75 1.75 0 0 0-1.75-1.75zm-3.25 3a2.5 2.5 0 1 1 0 5a2.5 2.5 0 0 1 0-5zm0 1.5a1 1 0 1 0 0 2a1 1 0 0 0 0-2z",fill:"currentColor"}))),L0=i("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 28 28"},i("g",{fill:"none"},i("path",{d:"M6.4 2A2.4 2.4 0 0 0 4 4.4v19.2A2.4 2.4 0 0 0 6.4 26h15.2a2.4 2.4 0 0 0 2.4-2.4V11.578c0-.729-.29-1.428-.805-1.944l-6.931-6.931A2.4 2.4 0 0 0 14.567 2H6.4zm-.9 2.4a.9.9 0 0 1 .9-.9H14V10a2 2 0 0 0 2 2h6.5v11.6a.9.9 0 0 1-.9.9H6.4a.9.9 0 0 1-.9-.9V4.4zm16.44 6.1H16a.5.5 0 0 1-.5-.5V4.06l6.44 6.44z",fill:"currentColor"})));var H0=globalThis&&globalThis.__awaiter||function(e,o,t,r){function n(l){return l instanceof t?l:new t(function(a){a(l)})}return new(t||(t=Promise))(function(l,a){function s(u){try{c(r.next(u))}catch(f){a(f)}}function d(u){try{c(r.throw(u))}catch(f){a(f)}}function c(u){u.done?l(u.value):n(u.value).then(s,d)}c((r=r.apply(e,o||[])).next())})};const wr={paddingMedium:"0 3px",heightMedium:"24px",iconSizeMedium:"18px"},A0=q({name:"UploadFile",props:{clsPrefix:{type:String,required:!0},file:{type:Object,required:!0},listType:{type:String,required:!0}},setup(e){const o=Se(Ut),t=D(null),r=D(""),n=R(()=>{const{file:z}=e;return z.status==="finished"?"success":z.status==="error"?"error":"info"}),l=R(()=>{const{file:z}=e;if(z.status==="error")return"error"}),a=R(()=>{const{file:z}=e;return z.status==="uploading"}),s=R(()=>{if(!o.showCancelButtonRef.value)return!1;const{file:z}=e;return["uploading","pending","error"].includes(z.status)}),d=R(()=>{if(!o.showRemoveButtonRef.value)return!1;const{file:z}=e;return["finished"].includes(z.status)}),c=R(()=>{if(!o.showDownloadButtonRef.value)return!1;const{file:z}=e;return["finished"].includes(z.status)}),u=R(()=>{if(!o.showRetryButtonRef.value)return!1;const{file:z}=e;return["error"].includes(z.status)}),f=We(()=>r.value||e.file.thumbnailUrl||e.file.url),p=R(()=>{if(!o.showPreviewButtonRef.value)return!1;const{file:{status:z},listType:I}=e;return["finished"].includes(z)&&f.value&&I==="image-card"});function v(){o.submit(e.file.id)}function h(z){z.preventDefault();const{file:I}=e;["finished","pending","error"].includes(I.status)?b(I):["uploading"].includes(I.status)?S(I):qo("upload","The button clicked type is unknown.")}function m(z){z.preventDefault(),x(e.file)}function b(z){const{xhrMap:I,doChange:w,onRemoveRef:{value:O},mergedFileListRef:{value:k}}=o;Promise.resolve(O?O({file:Object.assign({},z),fileList:k}):!0).then($=>{if($===!1)return;const L=Object.assign({},z,{status:"removed"});I.delete(z.id),w(L,void 0,{remove:!0})})}function x(z){const{onDownloadRef:{value:I}}=o;Promise.resolve(I?I(Object.assign({},z)):!0).then(w=>{w!==!1&&M0(z.url,z.name)})}function S(z){const{xhrMap:I}=o,w=I.get(z.id);w==null||w.abort(),b(Object.assign({},z))}function B(){const{onPreviewRef:{value:z}}=o;if(z)z(e.file);else if(e.listType==="image-card"){const{value:I}=t;if(!I)return;I.click()}}const T=()=>H0(this,void 0,void 0,function*(){const{listType:z}=e;z!=="image"&&z!=="image-card"||o.shouldUseThumbnailUrlRef.value(e.file)&&(r.value=yield o.getFileThumbnailUrlResolver(e.file))});return oo(()=>{T()}),{mergedTheme:o.mergedThemeRef,progressStatus:n,buttonType:l,showProgress:a,disabled:o.mergedDisabledRef,showCancelButton:s,showRemoveButton:d,showDownloadButton:c,showRetryButton:u,showPreviewButton:p,mergedThumbnailUrl:f,shouldUseThumbnailUrl:o.shouldUseThumbnailUrlRef,renderIcon:o.renderIconRef,imageRef:t,handleRemoveOrCancelClick:h,handleDownloadClick:m,handleRetryClick:v,handlePreviewClick:B}},render(){const{clsPrefix:e,mergedTheme:o,listType:t,file:r,renderIcon:n}=this;let l;const a=t==="image";a||t==="image-card"?l=!this.shouldUseThumbnailUrl(r)||!this.mergedThumbnailUrl?i("span",{class:`${e}-upload-file-info__thumbnail`},n?n(r):ps(r)?i(De,{clsPrefix:e},{default:()=>D0}):i(De,{clsPrefix:e},{default:()=>L0})):i("a",{rel:"noopener noreferer",target:"_blank",href:r.url||void 0,class:`${e}-upload-file-info__thumbnail`,onClick:this.handlePreviewClick},t==="image-card"?i(fb,{src:this.mergedThumbnailUrl||void 0,previewSrc:r.url||void 0,alt:r.name,ref:"imageRef"}):i("img",{src:this.mergedThumbnailUrl||void 0,alt:r.name})):l=i("span",{class:`${e}-upload-file-info__thumbnail`},n?n(r):i(De,{clsPrefix:e},{default:()=>i(jd,null)}));const d=i(_0,{show:this.showProgress,percentage:r.percentage||0,status:this.progressStatus}),c=t==="text"||t==="image";return i("div",{class:[`${e}-upload-file`,`${e}-upload-file--${this.progressStatus}-status`,r.url&&r.status!=="error"&&t!=="image-card"&&`${e}-upload-file--with-url`,`${e}-upload-file--${t}-type`]},i("div",{class:`${e}-upload-file-info`},l,i("div",{class:`${e}-upload-file-info__name`},c&&(r.url&&r.status!=="error"?i("a",{rel:"noopener noreferer",target:"_blank",href:r.url||void 0,onClick:this.handlePreviewClick},r.name):i("span",{onClick:this.handlePreviewClick},r.name)),a&&d),i("div",{class:[`${e}-upload-file-info__action`,`${e}-upload-file-info__action--${t}-type`]},this.showPreviewButton?i(Po,{key:"preview",quaternary:!0,type:this.buttonType,onClick:this.handlePreviewClick,theme:o.peers.Button,themeOverrides:o.peerOverrides.Button,builtinThemeOverrides:wr},{icon:()=>i(De,{clsPrefix:e},{default:()=>i(dl,null)})}):null,(this.showRemoveButton||this.showCancelButton)&&!this.disabled&&i(Po,{key:"cancelOrTrash",theme:o.peers.Button,themeOverrides:o.peerOverrides.Button,quaternary:!0,builtinThemeOverrides:wr,type:this.buttonType,onClick:this.handleRemoveOrCancelClick},{icon:()=>i(At,null,{default:()=>this.showRemoveButton?i(De,{clsPrefix:e,key:"trash"},{default:()=>i(Kd,null)}):i(De,{clsPrefix:e,key:"cancel"},{default:()=>i(Yd,null)})})}),this.showRetryButton&&!this.disabled&&i(Po,{key:"retry",quaternary:!0,type:this.buttonType,onClick:this.handleRetryClick,theme:o.peers.Button,themeOverrides:o.peerOverrides.Button,builtinThemeOverrides:wr},{icon:()=>i(De,{clsPrefix:e},{default:()=>i(Jd,null)})}),this.showDownloadButton?i(Po,{key:"download",quaternary:!0,type:this.buttonType,onClick:this.handleDownloadClick,theme:o.peers.Button,themeOverrides:o.peerOverrides.Button,builtinThemeOverrides:wr},{icon:()=>i(De,{clsPrefix:e},{default:()=>i(Gd,null)})}):null)),!a&&d)}}),E0=q({name:"UploadFileList",setup(e,{slots:o}){const t=Se(Ut,null);t||Eo("upload-file-list","`n-upload-file-list` must be placed inside `n-upload`.");const{abstractRef:r,mergedClsPrefixRef:n,listTypeRef:l,mergedFileListRef:a,fileListStyleRef:s,cssVarsRef:d,themeClassRef:c,maxReachedRef:u,showTriggerRef:f,imageGroupPropsRef:p}=t,v=R(()=>l.value==="image-card"),h=()=>a.value.map(b=>i(A0,{clsPrefix:n.value,key:b.id,file:b,listType:l.value})),m=()=>v.value?i(cb,Object.assign({},p.value),{default:h}):i(wt,{group:!0},{default:h});return()=>{const{value:b}=n,{value:x}=r;return i("div",{class:[`${b}-upload-file-list`,v.value&&`${b}-upload-file-list--grid`,x?c==null?void 0:c.value:void 0],style:[x&&d?d.value:"",s.value]},m(),f.value&&!u.value&&v.value&&i(vs,null,o))}}}),j0=C([g("upload","width: 100%;",[P("dragger-inside",[g("upload-trigger",` - display: block; - `)]),P("drag-over",[g("upload-dragger",` - border: var(--n-dragger-border-hover); - `)])]),g("upload-dragger",` - cursor: pointer; - box-sizing: border-box; - width: 100%; - text-align: center; - border-radius: var(--n-border-radius); - padding: 24px; - opacity: 1; - transition: - opacity .3s var(--n-bezier), - border-color .3s var(--n-bezier), - background-color .3s var(--n-bezier); - background-color: var(--n-dragger-color); - border: var(--n-dragger-border); - `,[C("&:hover",` - border: var(--n-dragger-border-hover); - `),P("disabled",` - cursor: not-allowed; - `)]),g("upload-trigger",` - display: inline-block; - box-sizing: border-box; - opacity: 1; - transition: opacity .3s var(--n-bezier); - `,[C("+",[g("upload-file-list","margin-top: 8px;")]),P("disabled",` - opacity: var(--n-item-disabled-opacity); - cursor: not-allowed; - `),P("image-card",` - width: 96px; - height: 96px; - `,[g("base-icon",` - font-size: 24px; - `),g("upload-dragger",` - padding: 0; - height: 100%; - width: 100%; - display: flex; - align-items: center; - justify-content: center; - `)])]),g("upload-file-list",` - line-height: var(--n-line-height); - opacity: 1; - transition: opacity .3s var(--n-bezier); - `,[C("a, img","outline: none;"),P("disabled",` - opacity: var(--n-item-disabled-opacity); - cursor: not-allowed; - `,[g("upload-file","cursor: not-allowed;")]),P("grid",` - display: grid; - grid-template-columns: repeat(auto-fill, 96px); - grid-gap: 8px; - margin-top: 0; - `),g("upload-file",` - display: block; - box-sizing: border-box; - cursor: default; - padding: 0px 12px 0 6px; - transition: background-color .3s var(--n-bezier); - border-radius: var(--n-border-radius); - `,[rr(),g("progress",[rr({foldPadding:!0})]),C("&:hover",` - background-color: var(--n-item-color-hover); - `,[g("upload-file-info",[y("action",` - opacity: 1; - `)])]),P("image-type",` - border-radius: var(--n-border-radius); - text-decoration: underline; - text-decoration-color: #0000; - `,[g("upload-file-info",` - padding-top: 0px; - padding-bottom: 0px; - width: 100%; - height: 100%; - display: flex; - justify-content: space-between; - align-items: center; - padding: 6px 0; - `,[g("progress",` - padding: 2px 0; - margin-bottom: 0; - `),y("name",` - padding: 0 8px; - `),y("thumbnail",` - width: 32px; - height: 32px; - font-size: 28px; - display: flex; - justify-content: center; - align-items: center; - `,[C("img",` - width: 100%; - `)])])]),P("text-type",[g("progress",` - box-sizing: border-box; - padding-bottom: 6px; - margin-bottom: 6px; - `)]),P("image-card-type",` - position: relative; - width: 96px; - height: 96px; - border: var(--n-item-border-image-card); - border-radius: var(--n-border-radius); - padding: 0; - display: flex; - align-items: center; - justify-content: center; - transition: border-color .3s var(--n-bezier), background-color .3s var(--n-bezier); - border-radius: var(--n-border-radius); - overflow: hidden; - `,[g("progress",` - position: absolute; - left: 8px; - bottom: 8px; - right: 8px; - width: unset; - `),g("upload-file-info",` - padding: 0; - width: 100%; - height: 100%; - `,[y("thumbnail",` - width: 100%; - height: 100%; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - font-size: 36px; - `,[C("img",` - width: 100%; - `)])]),C("&::before",` - position: absolute; - z-index: 1; - left: 0; - right: 0; - top: 0; - bottom: 0; - border-radius: inherit; - opacity: 0; - transition: opacity .2s var(--n-bezier); - content: ""; - `),C("&:hover",[C("&::before","opacity: 1;"),g("upload-file-info",[y("thumbnail","opacity: .12;")])])]),P("error-status",[C("&:hover",` - background-color: var(--n-item-color-hover-error); - `),g("upload-file-info",[y("name","color: var(--n-item-text-color-error);"),y("thumbnail","color: var(--n-item-text-color-error);")]),P("image-card-type",` - border: var(--n-item-border-image-card-error); - `)]),P("with-url",` - cursor: pointer; - `,[g("upload-file-info",[y("name",` - color: var(--n-item-text-color-success); - text-decoration-color: var(--n-item-text-color-success); - `,[C("a",` - text-decoration: underline; - `)])])]),g("upload-file-info",` - position: relative; - padding-top: 6px; - padding-bottom: 6px; - display: flex; - flex-wrap: nowrap; - `,[y("thumbnail",` - font-size: 18px; - opacity: 1; - transition: opacity .2s var(--n-bezier); - color: var(--n-item-icon-color); - `,[g("base-icon",` - margin-right: 2px; - vertical-align: middle; - transition: color .3s var(--n-bezier); - `)]),y("action",` - padding-top: inherit; - padding-bottom: inherit; - position: absolute; - right: 0; - top: 0; - bottom: 0; - width: 80px; - display: flex; - align-items: center; - transition: opacity .2s var(--n-bezier); - justify-content: flex-end; - opacity: 0; - `,[g("button",[C("&:not(:last-child)",{marginRight:"4px"}),g("base-icon",[C("svg",[lt()])])]),P("image-type",` - position: relative; - max-width: 80px; - width: auto; - `),P("image-card-type",` - z-index: 2; - position: absolute; - width: 100%; - height: 100%; - left: 0; - right: 0; - bottom: 0; - top: 0; - display: flex; - justify-content: center; - align-items: center; - `)]),y("name",` - color: var(--n-item-text-color); - flex: 1; - display: flex; - justify-content: center; - text-overflow: ellipsis; - overflow: hidden; - flex-direction: column; - text-decoration-color: #0000; - font-size: var(--n-font-size); - transition: - color .3s var(--n-bezier), - text-decoration-color .3s var(--n-bezier); - `,[C("a",` - color: inherit; - text-decoration: underline; - `)])])])]),g("upload-file-input",` - display: block; - width: 0; - height: 0; - opacity: 0; - `)]);var Hi=globalThis&&globalThis.__awaiter||function(e,o,t,r){function n(l){return l instanceof t?l:new t(function(a){a(l)})}return new(t||(t=Promise))(function(l,a){function s(u){try{c(r.next(u))}catch(f){a(f)}}function d(u){try{c(r.throw(u))}catch(f){a(f)}}function c(u){u.done?l(u.value):n(u.value).then(s,d)}c((r=r.apply(e,o||[])).next())})};function W0(e,o,t){const{doChange:r,xhrMap:n}=e;let l=0;function a(d){var c;let u=Object.assign({},o,{status:"error",percentage:l});n.delete(o.id),u=nr(((c=e.onError)===null||c===void 0?void 0:c.call(e,{file:u,event:d}))||u),r(u,d)}function s(d){var c;if(e.isErrorState){if(e.isErrorState(t)){a(d);return}}else if(t.status<200||t.status>=300){a(d);return}let u=Object.assign({},o,{status:"finished",percentage:l});n.delete(o.id),u=nr(((c=e.onFinish)===null||c===void 0?void 0:c.call(e,{file:u,event:d}))||u),r(u,d)}return{handleXHRLoad:s,handleXHRError:a,handleXHRAbort(d){const c=Object.assign({},o,{status:"removed",file:null,percentage:l});n.delete(o.id),r(c,d)},handleXHRProgress(d){const c=Object.assign({},o,{status:"uploading"});if(d.lengthComputable){const u=Math.ceil(d.loaded/d.total*100);c.percentage=u,l=u}r(c,d)}}}function N0(e){const{inst:o,file:t,data:r,headers:n,withCredentials:l,action:a,customRequest:s}=e,{doChange:d}=e.inst;let c=0;s({file:t,data:r,headers:n,withCredentials:l,action:a,onProgress(u){const f=Object.assign({},t,{status:"uploading"}),p=u.percent;f.percentage=p,c=p,d(f)},onFinish(){var u;let f=Object.assign({},t,{status:"finished",percentage:c});f=nr(((u=o.onFinish)===null||u===void 0?void 0:u.call(o,{file:f}))||f),d(f)},onError(){var u;let f=Object.assign({},t,{status:"error",percentage:c});f=nr(((u=o.onError)===null||u===void 0?void 0:u.call(o,{file:f}))||f),d(f)}})}function V0(e,o,t){const r=W0(e,o,t);t.onabort=r.handleXHRAbort,t.onerror=r.handleXHRError,t.onload=r.handleXHRLoad,t.upload&&(t.upload.onprogress=r.handleXHRProgress)}function gs(e,o){return typeof e=="function"?e({file:o}):e||{}}function U0(e,o,t){const r=gs(o,t);r&&Object.keys(r).forEach(n=>{e.setRequestHeader(n,r[n])})}function K0(e,o,t){const r=gs(o,t);r&&Object.keys(r).forEach(n=>{e.append(n,r[n])})}function G0(e,o,t,{method:r,action:n,withCredentials:l,responseType:a,headers:s,data:d}){const c=new XMLHttpRequest;c.responseType=a,e.xhrMap.set(t.id,c),c.withCredentials=l;const u=new FormData;if(K0(u,d,t),u.append(o,t.file),V0(e,t,c),n!==void 0){c.open(r.toUpperCase(),n),U0(c,s,t),c.send(u);const f=Object.assign({},t,{status:"uploading"});e.doChange(f)}}const q0=Object.assign(Object.assign({},ne.props),{name:{type:String,default:"file"},accept:String,action:String,customRequest:Function,directory:Boolean,directoryDnd:{type:Boolean,default:void 0},method:{type:String,default:"POST"},multiple:Boolean,showFileList:{type:Boolean,default:!0},data:[Object,Function],headers:[Object,Function],withCredentials:Boolean,responseType:{type:String,default:""},disabled:{type:Boolean,default:void 0},onChange:Function,onRemove:Function,onFinish:Function,onError:Function,onBeforeUpload:Function,isErrorState:Function,onDownload:Function,defaultUpload:{type:Boolean,default:!0},fileList:Array,"onUpdate:fileList":[Function,Array],onUpdateFileList:[Function,Array],fileListStyle:[String,Object],defaultFileList:{type:Array,default:()=>[]},showCancelButton:{type:Boolean,default:!0},showRemoveButton:{type:Boolean,default:!0},showDownloadButton:Boolean,showRetryButton:{type:Boolean,default:!0},showPreviewButton:{type:Boolean,default:!0},listType:{type:String,default:"text"},onPreview:Function,shouldUseThumbnailUrl:{type:Function,default:e=>I0?ps(e):!1},createThumbnailUrl:Function,abstract:Boolean,max:Number,showTrigger:{type:Boolean,default:!0},imageGroupProps:Object,inputProps:Object,triggerStyle:[String,Object],renderIcon:Object}),J1=q({name:"Upload",props:q0,setup(e){e.abstract&&e.listType==="image-card"&&Eo("upload","when the list-type is image-card, abstract is not supported.");const{mergedClsPrefixRef:o,inlineThemeDisabled:t}=ke(e),r=ne("Upload","-upload",j0,Zm,e,o),n=rt(e),l=R(()=>{const{max:k}=e;return k!==void 0?v.value.length>=k:!1}),a=D(e.defaultFileList),s=le(e,"fileList"),d=D(null),c={value:!1},u=D(!1),f=new Map,p=so(s,a),v=R(()=>p.value.map(nr));function h(){var k;(k=d.value)===null||k===void 0||k.click()}function m(k){const $=k.target;S($.files?Array.from($.files).map(L=>({file:L,entry:null,source:"input"})):null,k),$.value=""}function b(k){const{"onUpdate:fileList":$,onUpdateFileList:L}=e;$&&ae($,k),L&&ae(L,k),a.value=k}const x=R(()=>e.multiple||e.directory);function S(k,$){if(!k||k.length===0)return;const{onBeforeUpload:L}=e;k=x.value?k:[k[0]];const{max:M,accept:j}=e;k=k.filter(({file:U,source:_})=>_==="dnd"&&(j!=null&&j.trim())?O0(U.name,U.type,j):!0),M&&(k=k.slice(0,M-v.value.length));const E=it();Promise.all(k.map(({file:U,entry:_})=>Hi(this,void 0,void 0,function*(){var V;const te={id:it(),batchId:E,name:U.name,status:"pending",percentage:0,file:U,url:null,type:U.type,thumbnailUrl:null,fullPath:(V=_==null?void 0:_.fullPath)!==null&&V!==void 0?V:`/${U.webkitRelativePath||U.name}`};return!L||(yield L({file:te,fileList:v.value}))!==!1?te:null}))).then(U=>Hi(this,void 0,void 0,function*(){let _=Promise.resolve();U.forEach(V=>{_=_.then(io).then(()=>{V&&T(V,$,{append:!0})})}),yield _})).then(()=>{e.defaultUpload&&B()})}function B(k){const{method:$,action:L,withCredentials:M,headers:j,data:E,name:U}=e,_=k!==void 0?v.value.filter(te=>te.id===k):v.value,V=k!==void 0;_.forEach(te=>{const{status:N}=te;(N==="pending"||N==="error"&&V)&&(e.customRequest?N0({inst:{doChange:T,xhrMap:f,onFinish:e.onFinish,onError:e.onError},file:te,action:L,withCredentials:M,headers:j,data:E,customRequest:e.customRequest}):G0({doChange:T,xhrMap:f,onFinish:e.onFinish,onError:e.onError,isErrorState:e.isErrorState},U,te,{method:$,action:L,withCredentials:M,responseType:e.responseType,headers:j,data:E}))})}const T=(k,$,L={append:!1,remove:!1})=>{const{append:M,remove:j}=L,E=Array.from(v.value),U=E.findIndex(_=>_.id===k.id);if(M||j||~U){M?E.push(k):j?E.splice(U,1):E.splice(U,1,k);const{onChange:_}=e;_&&_({file:k,fileList:E,event:$}),b(E)}};function z(k){var $;if(k.thumbnailUrl)return k.thumbnailUrl;const{createThumbnailUrl:L}=e;return L?($=L(k.file,k))!==null&&$!==void 0?$:k.url||"":k.url?k.url:k.file?k0(k.file):""}const I=R(()=>{const{common:{cubicBezierEaseInOut:k},self:{draggerColor:$,draggerBorder:L,draggerBorderHover:M,itemColorHover:j,itemColorHoverError:E,itemTextColorError:U,itemTextColorSuccess:_,itemTextColor:V,itemIconColor:te,itemDisabledOpacity:N,lineHeight:G,borderRadius:Ce,fontSize:X,itemBorderImageCardError:ve,itemBorderImageCard:he}}=r.value;return{"--n-bezier":k,"--n-border-radius":Ce,"--n-dragger-border":L,"--n-dragger-border-hover":M,"--n-dragger-color":$,"--n-font-size":X,"--n-item-color-hover":j,"--n-item-color-hover-error":E,"--n-item-disabled-opacity":N,"--n-item-icon-color":te,"--n-item-text-color":V,"--n-item-text-color-error":U,"--n-item-text-color-success":_,"--n-line-height":G,"--n-item-border-image-card-error":ve,"--n-item-border-image-card":he}}),w=t?Ae("upload",void 0,I,e):void 0;Oe(Ut,{mergedClsPrefixRef:o,mergedThemeRef:r,showCancelButtonRef:le(e,"showCancelButton"),showDownloadButtonRef:le(e,"showDownloadButton"),showRemoveButtonRef:le(e,"showRemoveButton"),showRetryButtonRef:le(e,"showRetryButton"),onRemoveRef:le(e,"onRemove"),onDownloadRef:le(e,"onDownload"),mergedFileListRef:v,triggerStyleRef:le(e,"triggerStyle"),shouldUseThumbnailUrlRef:le(e,"shouldUseThumbnailUrl"),renderIconRef:le(e,"renderIcon"),xhrMap:f,submit:B,doChange:T,showPreviewButtonRef:le(e,"showPreviewButton"),onPreviewRef:le(e,"onPreview"),getFileThumbnailUrlResolver:z,listTypeRef:le(e,"listType"),dragOverRef:u,openOpenFileDialog:h,draggerInsideRef:c,handleFileAddition:S,mergedDisabledRef:n.mergedDisabledRef,maxReachedRef:l,fileListStyleRef:le(e,"fileListStyle"),abstractRef:le(e,"abstract"),acceptRef:le(e,"accept"),cssVarsRef:t?void 0:I,themeClassRef:w==null?void 0:w.themeClass,onRender:w==null?void 0:w.onRender,showTriggerRef:le(e,"showTrigger"),imageGroupPropsRef:le(e,"imageGroupProps"),mergedDirectoryDndRef:R(()=>{var k;return(k=e.directoryDnd)!==null&&k!==void 0?k:e.directory})});const O={clear:()=>{a.value=[]},submit:B,openOpenFileDialog:h};return Object.assign({mergedClsPrefix:o,draggerInsideRef:c,inputElRef:d,mergedTheme:r,dragOver:u,mergedMultiple:x,cssVars:t?void 0:I,themeClass:w==null?void 0:w.themeClass,onRender:w==null?void 0:w.onRender,handleFileInputChange:m},O)},render(){var e,o;const{draggerInsideRef:t,mergedClsPrefix:r,$slots:n,directory:l,onRender:a}=this;if(n.default&&!this.abstract){const d=n.default()[0];!((e=d==null?void 0:d.type)===null||e===void 0)&&e[us]&&(t.value=!0)}const s=i("input",Object.assign({},this.inputProps,{ref:"inputElRef",type:"file",class:`${r}-upload-file-input`,accept:this.accept,multiple:this.mergedMultiple,onChange:this.handleFileInputChange,webkitdirectory:l||void 0,directory:l||void 0}));return this.abstract?i(ao,null,(o=n.default)===null||o===void 0?void 0:o.call(n),i(Ni,{to:"body"},s)):(a==null||a(),i("div",{class:[`${r}-upload`,t.value&&`${r}-upload--dragger-inside`,this.dragOver&&`${r}-upload--drag-over`,this.themeClass],style:this.cssVars},s,this.showTrigger&&this.listType!=="image-card"&&i(vs,null,n),this.showFileList&&i(E0,null,n)))}}),Y0=()=>({}),X0={name:"Equation",common:fe,self:Y0},Z0=X0,ex={name:"dark",common:fe,Alert:lu,Anchor:mu,AutoComplete:Ou,Avatar:Ll,AvatarGroup:Nu,BackTop:Ku,Badge:qu,Breadcrumb:rf,Button:$o,ButtonGroup:pg,Calendar:gf,Card:Vl,Carousel:If,Cascader:_f,Checkbox:Nt,Code:Ul,Collapse:Af,CollapseTransition:Wf,ColorPicker:xf,DataTable:Ph,DatePicker:lp,Descriptions:cp,Dialog:va,Divider:Fp,Drawer:Hp,Dropdown:Rn,DynamicInput:tv,DynamicTags:mv,Element:xv,Empty:zt,Ellipsis:ea,Equation:Z0,Form:Sv,GradientText:Uv,Icon:Eh,IconWrapper:og,Image:nb,Input:Ho,InputNumber:gg,LegacyTransfer:Cb,Layout:yg,List:$g,LoadingBar:Pg,Log:Ig,Menu:Ag,Mention:Tg,Message:fg,Modal:Cp,Notification:ag,PageHeader:Wg,Pagination:Ql,Popconfirm:Gg,Popover:$t,Popselect:Kl,Progress:Ea,Radio:ta,Rate:Zg,Result:tm,Row:rb,Scrollbar:zo,Select:Xl,Skeleton:l0,Slider:im,Space:$a,Spin:dm,Statistic:hm,Steps:mm,Switch:xm,Table:Rm,Tabs:Tm,Tag:Sl,Thing:_m,TimePicker:fa,Timeline:Hm,Tooltip:Dr,Transfer:jm,Tree:Ga,TreeSelect:Um,Typography:Ym,Upload:Jm,Watermark:ob};export{Ov as $,_1 as A,J1 as B,C1 as C,y1 as D,P1 as E,S1 as F,D1 as G,L1 as H,x1 as I,Sc as J,W1 as K,h1 as L,qr as M,Z1 as N,X1 as O,Jh as P,z1 as Q,b1 as R,O1 as S,f1 as T,V1 as U,B1 as V,M1 as W,cb as X,m1 as Y,K1 as Z,Q1 as _,k1 as a,Ev as a0,Hv as a1,N1 as a2,R1 as a3,$1 as a4,G1 as a5,xt as b,T1 as c,I1 as d,Po as e,q1 as f,Y1 as g,Rf as h,$p as i,Nh as j,U1 as k,v1 as l,fb as m,H1 as n,p1 as o,g1 as p,ex as q,w1 as r,E1 as s,F1 as t,j1 as u,A1 as v,vs as w,Qb as x,Pn as y,E0 as z}; diff --git a/web/dist/assets/paopao-video-player-2fe58954.js b/web/dist/assets/paopao-video-player-DAi68TC5.js similarity index 99% rename from web/dist/assets/paopao-video-player-2fe58954.js rename to web/dist/assets/paopao-video-player-DAi68TC5.js index 85af9032..68ac51cb 100644 --- a/web/dist/assets/paopao-video-player-2fe58954.js +++ b/web/dist/assets/paopao-video-player-DAi68TC5.js @@ -1,4 +1,4 @@ -import{d as h,e as s,f as l,j as t,l as p,x as m,O as d,D as y,t as u,X as f,Y as c,Z as g,q as P,s as B}from"./@vue-a481fc63.js";var T="data:image/svg+xml,%3c%3fxml version='1.0' standalone='no'%3f%3e%3c!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg t='1687171769163' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='3910' xmlns:xlink='http://www.w3.org/1999/xlink' width='500' height='500'%3e%3cpath d='M327.68 184.32a81.92 81.92 0 0 1 81.92 81.92v491.52a81.92 81.92 0 1 1-163.84 0V266.24a81.92 81.92 0 0 1 81.92-81.92z m368.64 0a81.92 81.92 0 0 1 81.92 81.92v491.52a81.92 81.92 0 1 1-163.84 0V266.24a81.92 81.92 0 0 1 81.92-81.92z' p-id='3911' fill='white'%3e%3c/path%3e%3c/svg%3e",w=T,V="data:image/svg+xml,%3c%3fxml version='1.0' standalone='no'%3f%3e%3c!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg t='1687171715945' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2813' width='500' height='500' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cpath d='M817.088 484.96l-512-323.744C295.232 154.976 282.752 154.592 272.576 160.224 262.336 165.856 256 176.608 256 188.256l0 647.328c0 11.648 6.336 22.4 16.576 28.032 4.8 2.656 10.112 3.968 15.424 3.968 5.952 0 11.904-1.664 17.088-4.928l512-323.616C826.368 533.184 832 522.976 832 512 832 501.024 826.368 490.816 817.088 484.96z' fill='white' p-id='2814'%3e%3c/path%3e%3c/svg%3e",b=V,M="data:image/svg+xml,%3c%3fxml version='1.0' standalone='no'%3f%3e%3c!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg t='1687172017162' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='7048' xmlns:xlink='http://www.w3.org/1999/xlink' width='500' height='500'%3e%3cpath d='M462.06 142.1L284.12 320H80c-26.52 0-48 21.48-48 48v288c0 26.5 21.48 48 48 48h204.12l177.94 177.9c30.06 30.06 81.94 8.94 81.94-33.94V176.04c0-42.92-51.92-63.96-81.94-33.94zM992 512c0-127.06-64.12-243.88-171.54-312.48-22.38-14.28-52.06-7.64-66.24 14.92s-7.56 52.42 14.82 66.72C848.54 331.94 896 418.22 896 512s-47.46 180.06-126.96 230.84c-22.38 14.28-29 44.14-14.82 66.72 13.02 20.72 42.24 30.28 66.24 14.92C927.88 755.88 992 639.06 992 512z m-283.54-153.74c-23.16-12.66-52.38-4.32-65.22 18.9-12.78 23.22-4.32 52.4 18.9 65.22C687.96 456.56 704 483.26 704 512c0 28.76-16.04 55.44-41.84 69.62-23.22 12.82-31.68 42-18.9 65.22 12.86 23.32 42.1 31.6 65.22 18.9 56.46-31.1 91.54-90 91.54-153.76s-35.08-122.64-91.56-153.72z' p-id='7049' fill='white'%3e%3c/path%3e%3c/svg%3e",k=M,j="data:image/svg+xml,%3c%3fxml version='1.0' standalone='no'%3f%3e%3c!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg t='1687171887277' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='5997' xmlns:xlink='http://www.w3.org/1999/xlink' width='500' height='500'%3e%3cpath d='M810.666667 938.666667h-128c-25.6 0-42.666667-17.066667-42.666667-42.666667s17.066667-42.666667 42.666667-42.666667h128c25.6 0 42.666667-17.066667 42.666666-42.666666v-128c0-25.6 17.066667-42.666667 42.666667-42.666667s42.666667 17.066667 42.666667 42.666667v128c0 72.533333-55.466667 128-128 128zM341.333333 938.666667H213.333333c-72.533333 0-128-55.466667-128-128v-128c0-25.6 17.066667-42.666667 42.666667-42.666667s42.666667 17.066667 42.666667 42.666667v128c0 25.6 17.066667 42.666667 42.666666 42.666666h128c25.6 0 42.666667 17.066667 42.666667 42.666667s-17.066667 42.666667-42.666667 42.666667zM896 384c-25.6 0-42.666667-17.066667-42.666667-42.666667V213.333333c0-25.6-17.066667-42.666667-42.666666-42.666666h-128c-25.6 0-42.666667-17.066667-42.666667-42.666667s17.066667-42.666667 42.666667-42.666667h128c72.533333 0 128 55.466667 128 128v128c0 25.6-17.066667 42.666667-42.666667 42.666667zM128 384c-25.6 0-42.666667-17.066667-42.666667-42.666667V213.333333c0-72.533333 55.466667-128 128-128h128c25.6 0 42.666667 17.066667 42.666667 42.666667s-17.066667 42.666667-42.666667 42.666667H213.333333c-25.6 0-42.666667 17.066667-42.666666 42.666666v128c0 25.6-17.066667 42.666667-42.666667 42.666667z' p-id='5998' fill='white'%3e%3c/path%3e%3c/svg%3e",$=j,C=h({name:"BasicTheme",props:{uuid:{type:String,required:!0},src:{type:String,required:!0},autoplay:{type:Boolean,required:!0},loop:{type:Boolean,required:!0},controls:{type:Boolean,required:!0},hoverable:{type:Boolean,required:!0},mask:{type:Boolean,required:!0},colors:{type:[String,Array],required:!0},time:{type:Object,required:!0},playing:{type:Boolean,default:!1},duration:{type:[String,Number],required:!0}},data(){return{hovered:!1,volume:!1,amount:1,Pause:w,Play:b,Volume:k,Maximize:$}},computed:{colorFrom(){var e;return typeof this.colors=="string"?this.colors?this.colors:"#fbbf24":(e=this.colors)!=null&&e[0]?this.colors[0]:"#fbbf24"},colorTo(){var e;return typeof this.colors=="string"?this.colors?this.colors:"#fbbf24":(e=this.colors)!=null&&e[1]?this.colors[1]:"#ec4899"}},mounted(){this.$emit("setPlayer",this.$refs[this.uuid])},methods:{setVolume(){this.$refs[this.uuid].volume=this.amount},stopVolume(){return this.amount>0?this.amount=0:this.amount=1}}});const I={class:"relative"},D=["loop","autoplay","muted"],F=["src"],q={class:"flex items-center justify-start w-full"},E={class:"font-sans text-white text-xs w-24"},N={class:"mr-3 ml-2"},A=["src"],R=["src"],U={class:"relative"},G={class:"px-3 py-2 rounded-lg flex items-center transform translate-x-2",style:{"background-color":"rgba(0, 0, 0, .8)"}},O=["src"],L=["src"],Y=["src"];function H(e,n,a,r,i,v){return s(),l("div",{class:"shadow-xl rounded-xl overflow-hidden relative",onMouseenter:n[14]||(n[14]=o=>e.hovered=!0),onMouseleave:n[15]||(n[15]=o=>e.hovered=!1),onKeydown:n[16]||(n[16]=g(o=>e.$emit("play"),["left"]))},[t("div",I,[t("video",{ref:e.uuid,class:"w-full",loop:e.loop,autoplay:e.autoplay,muted:e.autoplay,onTimeupdate:n[0]||(n[0]=o=>e.$emit("timeupdate",o.target)),onPause:n[1]||(n[1]=o=>e.$emit("isPlaying",!1)),onPlay:n[2]||(n[2]=o=>e.$emit("isPlaying",!0)),onClick:n[3]||(n[3]=o=>e.$emit("play"))},[t("source",{src:e.src,type:"video/mp4"},null,8,F)],40,D),e.controls?(s(),l("div",{key:0,class:p([{"opacity-0 translate-y-full":!e.hoverable&&e.hovered,"opacity-0 translate-y-full":e.hoverable&&!e.hovered},"transition duration-300 transform absolute w-full bottom-0 left-0 flex items-center justify-between overlay px-5 pt-3 pb-5"])},[t("div",q,[t("p",E,m(e.time.display)+"/"+m(e.duration),1),t("div",N,[d(t("img",{src:e.Pause,alt:"Icon pause video",class:"w-5 cursor-pointer",onClick:n[4]||(n[4]=o=>e.$emit("play"))},null,8,A),[[y,e.playing]]),d(t("img",{src:e.Play,alt:"Icon play video",class:"w-5 cursor-pointer",onClick:n[5]||(n[5]=o=>e.$emit("play"))},null,8,R),[[y,!e.playing]])]),t("div",{class:"w-full h-1 bg-white bg-opacity-60 rounded-sm cursor-pointer",onClick:n[6]||(n[6]=o=>e.$emit("position",o))},[t("div",{class:"relative h-full pointer-events-none",style:u(`width: ${e.time.progress}%; transition: width .2s ease-in-out;`)},[t("div",{class:"w-full rounded-sm h-full gradient-variable bg-gradient-to-r pointer-events-none absolute top-0 left-0",style:u(`--tw-gradient-from: ${e.colorFrom};--tw-gradient-to: ${e.colorTo};transition: width .2s ease-in-out`)},null,4),t("div",{class:"w-full rounded-sm filter blur-sm h-full gradient-variable bg-gradient-to-r pointer-events-none absolute top-0 left-0",style:u(`--tw-gradient-from: ${e.colorFrom};--tw-gradient-to: ${e.colorTo};transition: width .2s ease-in-out`)},null,4)],4)])]),t("div",{class:"ml-5 flex items-center justify-end",onMouseleave:n[12]||(n[12]=o=>e.volume=!1)},[t("div",U,[t("div",{class:p(`w-128 origin-left translate-x-2 -rotate-90 w-128 transition duration-200 absolute transform top-0 py-2 ${e.volume?"-translate-y-4":"opacity-0 -translate-y-1 pointer-events-none"}`)},[t("div",G,[d(t("input",{"onUpdate:modelValue":n[7]||(n[7]=o=>e.amount=o),type:"range",step:"0.05",min:"0",max:"1",class:"rounded-lg overflow-hidden appearance-none bg-white bg-opacity-30 h-1 w-128 vertical-range",onInput:n[8]||(n[8]=function(){return e.setVolume&&e.setVolume(...arguments)})},null,544),[[f,e.amount]])])],2),t("img",{src:e.Volume,alt:"High volume video",class:"w-5 cursor-pointer relative",style:{"z-index":"2"},onClick:n[9]||(n[9]=function(){return e.stopVolume&&e.stopVolume(...arguments)}),onMouseenter:n[10]||(n[10]=o=>e.volume=!0)},null,40,O)]),t("img",{src:e.Maximize,alt:"Fullscreen",class:"w-3 ml-4 cursor-pointer",onClick:n[11]||(n[11]=o=>e.$emit("fullScreen"))},null,8,L)],32)],2)):c("",!0),!e.autoplay&&e.mask&&e.time.current===0?(s(),l("div",{key:1,class:p(`transition transform duration-300 absolute top-0 left-0 w-full h-full bg-black bg-opacity-50 backdrop-filter z-10 flex items-center justify-center ${e.playing?"opacity-0 pointer-events-none":""}`)},[t("div",{class:"w-20 h-20 rounded-full bg-white bg-opacity-20 transition duration-200 hover:bg-opacity-40 flex items-center justify-center cursor-pointer",onClick:n[13]||(n[13]=o=>e.$emit("play"))},[t("img",{src:e.Play,alt:"Icon play video",class:"transform translate-x-0.5 w-12"},null,8,Y)])],2)):c("",!0)])],32)}C.render=H;var S=h({name:"BasicTheme",props:{uuid:{type:String,required:!0},src:{type:String,required:!0},autoplay:{type:Boolean,required:!0},loop:{type:Boolean,required:!0},controls:{type:Boolean,required:!0},hoverable:{type:Boolean,required:!0},mask:{type:Boolean,required:!0},colors:{type:[String,Array],required:!0},time:{type:Object,required:!0},playing:{type:Boolean,default:!1},duration:{type:[String,Number],required:!0}},data(){return{hovered:!1,volume:!1,amount:1,Pause:w,Play:b,Volume:k,Maximize:$}},computed:{color(){var e;return typeof this.colors=="string"?this.colors?this.colors:"#8B5CF6":(e=this.colors)!=null&&e[0]?this.colors[0]:"#8B5CF6"}},mounted(){this.$emit("setPlayer",this.$refs[this.uuid])},methods:{setVolume(){this.$refs[this.uuid].volume=this.amount},stopVolume(){return this.amount>0?this.amount=0:this.amount=1}}});const W={class:"relative"},X=["loop","autoplay","muted"],K=["src"],Z={class:"mr-5"},J=["src"],Q=["src"],_={class:"relative mr-6"},ee={class:"px-3 py-3 rounded-xl flex items-center transform translate-x-9 bg-black bg-opacity-30"},ne=["src"],te=["src"],oe=["src"];function re(e,n,a,r,i,v){return s(),l("div",{class:"shadow-xl rounded-3xl overflow-hidden relative",onMouseenter:n[13]||(n[13]=o=>e.hovered=!0),onMouseleave:n[14]||(n[14]=o=>e.hovered=!1),onKeydown:n[15]||(n[15]=g(o=>e.$emit("play"),["left"]))},[t("div",W,[t("video",{ref:e.uuid,class:"w-full",loop:e.loop,autoplay:e.autoplay,muted:e.autoplay,onTimeupdate:n[0]||(n[0]=o=>e.$emit("timeupdate",o.target)),onPause:n[1]||(n[1]=o=>e.$emit("isPlaying",!1)),onPlay:n[2]||(n[2]=o=>e.$emit("isPlaying",!0)),onClick:n[3]||(n[3]=o=>e.$emit("play"))},[t("source",{src:e.src,type:"video/mp4"},null,8,K)],40,X),e.controls?(s(),l("div",{key:0,class:p([{"opacity-0 translate-y-full":!e.hoverable&&e.hovered,"opacity-0 translate-y-full":e.hoverable&&!e.hovered},"absolute px-5 pb-5 bottom-0 left-0 w-full transition duration-300 transform"])},[t("div",{class:"w-full bg-black bg-opacity-30 px-5 py-4 rounded-xl flex items-center justify-between",onMouseleave:n[11]||(n[11]=o=>e.volume=!1)},[t("div",{class:"font-sans py-1 px-2 text-white rounded-md text-xs mr-5 whitespace-nowrap font-medium w-32 text-center",style:u(`font-size: 11px; background-color: ${e.color}`)},m(e.time.display)+" / "+m(e.duration),5),t("div",Z,[d(t("img",{src:e.Pause,alt:"Icon pause video",class:"w-4 cursor-pointer filter-white transition duration-300",onClick:n[4]||(n[4]=o=>e.$emit("play"))},null,8,J),[[y,e.playing]]),d(t("img",{src:e.Play,alt:"Icon play video",class:"w-4 cursor-pointer filter-white transition duration-300",onClick:n[5]||(n[5]=o=>e.$emit("play"))},null,8,Q),[[y,!e.playing]])]),t("div",{class:"w-full h-1 bg-white bg-opacity-40 rounded-sm cursor-pointer mr-6",onClick:n[6]||(n[6]=o=>e.$emit("position",o))},[t("div",{class:"w-full rounded-sm h-full bg-white pointer-events-none",style:u(`width: ${e.time.progress}%; transition: width .2s ease-in-out;`)},null,4)]),t("div",_,[t("div",{class:p(`w-128 origin-left translate-x-2 -rotate-90 w-128 transition duration-200 absolute transform top-0 py-2 ${e.volume?"-translate-y-4":"opacity-0 -translate-y-1 pointer-events-none"}`)},[t("div",ee,[d(t("input",{"onUpdate:modelValue":n[7]||(n[7]=o=>e.amount=o),type:"range",step:"0.05",min:"0",max:"1",class:"rounded-lg overflow-hidden appearance-none bg-white bg-opacity-30 h-1.5 w-128 vertical-range"},null,512),[[f,e.amount]])])],2),t("img",{src:e.Volume,alt:"High volume video",class:"w-5 cursor-pointer filter-white transition duration-300 relative",style:{"z-index":"2"},onClick:n[8]||(n[8]=function(){return e.stopVolume&&e.stopVolume(...arguments)}),onMouseenter:n[9]||(n[9]=o=>e.volume=!0)},null,40,ne)]),t("img",{src:e.Maximize,alt:"Fullscreen",class:"w-4 cursor-pointer filter-white transition duration-300",onClick:n[10]||(n[10]=o=>e.$emit("fullScreen"))},null,8,te)],32)],2)):c("",!0),!e.autoplay&&e.mask&&e.time.current===0?(s(),l("div",{key:1,class:p(`transition transform duration-300 absolute top-0 left-0 w-full h-full bg-black bg-opacity-50 backdrop-filter z-10 flex items-center justify-center ${e.playing?"opacity-0 pointer-events-none":""}`)},[t("div",{class:"w-20 h-20 rounded-full bg-white bg-opacity-20 transition duration-200 hover:bg-opacity-40 flex items-center justify-center cursor-pointer",onClick:n[12]||(n[12]=o=>e.$emit("play"))},[t("img",{src:e.Play,alt:"Icon play video",class:"transform translate-x-0.5 w-12"},null,8,oe)])],2)):c("",!0)])],32)}S.render=re;var z=h({name:"PaoPaoVideoPlayer",components:{basic:S,gradient:C},props:{src:{type:String,required:!0},autoplay:{type:Boolean,default:!1},loop:{type:Boolean,default:!1},controls:{type:Boolean,default:!0},mask:{type:Boolean,default:!0},colors:{type:[String,Array],default(){return["#8B5CF6","#ec4899"]}},hoverable:{type:Boolean,default:!1},theme:{type:String,default:"basic"}},data(){return{uuid:Math.random().toString(36).substr(2,18),player:null,duration:0,playing:!1,time:{progress:0,display:0,current:0}}},watch:{"time.current"(e){this.time.display=this.format(Number(e)),this.time.progress=e*100/this.player.duration}},methods:{isPlaying(e){this.playing=e},play(){return this.playing?this.player.pause():this.player.play()},setPlayer(e){this.player=e,this.player.addEventListener("loadeddata",()=>{this.player.readyState>=3&&(this.duration=this.format(Number(this.player.duration)),this.time.display=this.format(0))})},stop(){this.player.pause(),this.player.currentTime=0},fullScreen(){this.player.webkitEnterFullscreen()},position(e){this.player.pause();const n=e.target.getBoundingClientRect(),r=(e.clientX-n.left)*100/e.target.offsetWidth;this.player.currentTime=r*this.player.duration/100,this.player.play()},format(e){const n=Math.floor(e/3600),a=Math.floor(e%3600/60),r=Math.round(e%60);return[n,a>9?a:n?"0"+a:a||"00",r>9?r:"0"+r].filter(Boolean).join(":")}}});const ae={class:"paopao-video-player"};function ie(e,n,a,r,i,v){return s(),l("div",ae,[(s(),P(B(e.theme),{uuid:e.uuid,src:e.src,autoplay:e.autoplay,loop:e.loop,controls:e.controls,mask:e.mask,colors:e.colors,time:e.time,playing:e.playing,duration:e.duration,hoverable:e.hoverable,onPlay:e.play,onStop:e.stop,onTimeupdate:n[0]||(n[0]=o=>{let{currentTime:x}=o;return e.time.current=x}),onPosition:e.position,onFullScreen:e.fullScreen,onSetPlayer:e.setPlayer,onIsPlaying:e.isPlaying},null,40,["uuid","src","autoplay","loop","controls","mask","colors","time","playing","duration","hoverable","onPlay","onStop","onPosition","onFullScreen","onSetPlayer","onIsPlaying"]))])}function se(e,n){n===void 0&&(n={});var a=n.insertAt;if(!(!e||typeof document>"u")){var r=document.head||document.getElementsByTagName("head")[0],i=document.createElement("style");i.type="text/css",a==="top"&&r.firstChild?r.insertBefore(i,r.firstChild):r.appendChild(i),i.styleSheet?i.styleSheet.cssText=e:i.appendChild(document.createTextNode(e))}}var le=`/*! tailwindcss v2.2.17 | MIT License | https://tailwindcss.com */ +import{d as h,e as s,f as l,j as t,l as p,x as m,P as d,D as y,t as u,Y as f,Z as c,_ as g,q as P,s as B}from"./@vue-CQsYufSu.js";var T="data:image/svg+xml,%3c%3fxml version='1.0' standalone='no'%3f%3e%3c!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg t='1687171769163' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='3910' xmlns:xlink='http://www.w3.org/1999/xlink' width='500' height='500'%3e%3cpath d='M327.68 184.32a81.92 81.92 0 0 1 81.92 81.92v491.52a81.92 81.92 0 1 1-163.84 0V266.24a81.92 81.92 0 0 1 81.92-81.92z m368.64 0a81.92 81.92 0 0 1 81.92 81.92v491.52a81.92 81.92 0 1 1-163.84 0V266.24a81.92 81.92 0 0 1 81.92-81.92z' p-id='3911' fill='white'%3e%3c/path%3e%3c/svg%3e",w=T,V="data:image/svg+xml,%3c%3fxml version='1.0' standalone='no'%3f%3e%3c!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg t='1687171715945' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2813' width='500' height='500' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cpath d='M817.088 484.96l-512-323.744C295.232 154.976 282.752 154.592 272.576 160.224 262.336 165.856 256 176.608 256 188.256l0 647.328c0 11.648 6.336 22.4 16.576 28.032 4.8 2.656 10.112 3.968 15.424 3.968 5.952 0 11.904-1.664 17.088-4.928l512-323.616C826.368 533.184 832 522.976 832 512 832 501.024 826.368 490.816 817.088 484.96z' fill='white' p-id='2814'%3e%3c/path%3e%3c/svg%3e",b=V,M="data:image/svg+xml,%3c%3fxml version='1.0' standalone='no'%3f%3e%3c!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg t='1687172017162' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='7048' xmlns:xlink='http://www.w3.org/1999/xlink' width='500' height='500'%3e%3cpath d='M462.06 142.1L284.12 320H80c-26.52 0-48 21.48-48 48v288c0 26.5 21.48 48 48 48h204.12l177.94 177.9c30.06 30.06 81.94 8.94 81.94-33.94V176.04c0-42.92-51.92-63.96-81.94-33.94zM992 512c0-127.06-64.12-243.88-171.54-312.48-22.38-14.28-52.06-7.64-66.24 14.92s-7.56 52.42 14.82 66.72C848.54 331.94 896 418.22 896 512s-47.46 180.06-126.96 230.84c-22.38 14.28-29 44.14-14.82 66.72 13.02 20.72 42.24 30.28 66.24 14.92C927.88 755.88 992 639.06 992 512z m-283.54-153.74c-23.16-12.66-52.38-4.32-65.22 18.9-12.78 23.22-4.32 52.4 18.9 65.22C687.96 456.56 704 483.26 704 512c0 28.76-16.04 55.44-41.84 69.62-23.22 12.82-31.68 42-18.9 65.22 12.86 23.32 42.1 31.6 65.22 18.9 56.46-31.1 91.54-90 91.54-153.76s-35.08-122.64-91.56-153.72z' p-id='7049' fill='white'%3e%3c/path%3e%3c/svg%3e",k=M,j="data:image/svg+xml,%3c%3fxml version='1.0' standalone='no'%3f%3e%3c!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3e%3csvg t='1687171887277' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='5997' xmlns:xlink='http://www.w3.org/1999/xlink' width='500' height='500'%3e%3cpath d='M810.666667 938.666667h-128c-25.6 0-42.666667-17.066667-42.666667-42.666667s17.066667-42.666667 42.666667-42.666667h128c25.6 0 42.666667-17.066667 42.666666-42.666666v-128c0-25.6 17.066667-42.666667 42.666667-42.666667s42.666667 17.066667 42.666667 42.666667v128c0 72.533333-55.466667 128-128 128zM341.333333 938.666667H213.333333c-72.533333 0-128-55.466667-128-128v-128c0-25.6 17.066667-42.666667 42.666667-42.666667s42.666667 17.066667 42.666667 42.666667v128c0 25.6 17.066667 42.666667 42.666666 42.666666h128c25.6 0 42.666667 17.066667 42.666667 42.666667s-17.066667 42.666667-42.666667 42.666667zM896 384c-25.6 0-42.666667-17.066667-42.666667-42.666667V213.333333c0-25.6-17.066667-42.666667-42.666666-42.666666h-128c-25.6 0-42.666667-17.066667-42.666667-42.666667s17.066667-42.666667 42.666667-42.666667h128c72.533333 0 128 55.466667 128 128v128c0 25.6-17.066667 42.666667-42.666667 42.666667zM128 384c-25.6 0-42.666667-17.066667-42.666667-42.666667V213.333333c0-72.533333 55.466667-128 128-128h128c25.6 0 42.666667 17.066667 42.666667 42.666667s-17.066667 42.666667-42.666667 42.666667H213.333333c-25.6 0-42.666667 17.066667-42.666666 42.666666v128c0 25.6-17.066667 42.666667-42.666667 42.666667z' p-id='5998' fill='white'%3e%3c/path%3e%3c/svg%3e",$=j,C=h({name:"BasicTheme",props:{uuid:{type:String,required:!0},src:{type:String,required:!0},autoplay:{type:Boolean,required:!0},loop:{type:Boolean,required:!0},controls:{type:Boolean,required:!0},hoverable:{type:Boolean,required:!0},mask:{type:Boolean,required:!0},colors:{type:[String,Array],required:!0},time:{type:Object,required:!0},playing:{type:Boolean,default:!1},duration:{type:[String,Number],required:!0}},data(){return{hovered:!1,volume:!1,amount:1,Pause:w,Play:b,Volume:k,Maximize:$}},computed:{colorFrom(){var e;return typeof this.colors=="string"?this.colors?this.colors:"#fbbf24":(e=this.colors)!=null&&e[0]?this.colors[0]:"#fbbf24"},colorTo(){var e;return typeof this.colors=="string"?this.colors?this.colors:"#fbbf24":(e=this.colors)!=null&&e[1]?this.colors[1]:"#ec4899"}},mounted(){this.$emit("setPlayer",this.$refs[this.uuid])},methods:{setVolume(){this.$refs[this.uuid].volume=this.amount},stopVolume(){return this.amount>0?this.amount=0:this.amount=1}}});const I={class:"relative"},D=["loop","autoplay","muted"],F=["src"],q={class:"flex items-center justify-start w-full"},E={class:"font-sans text-white text-xs w-24"},N={class:"mr-3 ml-2"},A=["src"],R=["src"],U={class:"relative"},G={class:"px-3 py-2 rounded-lg flex items-center transform translate-x-2",style:{"background-color":"rgba(0, 0, 0, .8)"}},O=["src"],L=["src"],Y=["src"];function H(e,n,a,r,i,v){return s(),l("div",{class:"shadow-xl rounded-xl overflow-hidden relative",onMouseenter:n[14]||(n[14]=o=>e.hovered=!0),onMouseleave:n[15]||(n[15]=o=>e.hovered=!1),onKeydown:n[16]||(n[16]=g(o=>e.$emit("play"),["left"]))},[t("div",I,[t("video",{ref:e.uuid,class:"w-full",loop:e.loop,autoplay:e.autoplay,muted:e.autoplay,onTimeupdate:n[0]||(n[0]=o=>e.$emit("timeupdate",o.target)),onPause:n[1]||(n[1]=o=>e.$emit("isPlaying",!1)),onPlay:n[2]||(n[2]=o=>e.$emit("isPlaying",!0)),onClick:n[3]||(n[3]=o=>e.$emit("play"))},[t("source",{src:e.src,type:"video/mp4"},null,8,F)],40,D),e.controls?(s(),l("div",{key:0,class:p([{"opacity-0 translate-y-full":!e.hoverable&&e.hovered,"opacity-0 translate-y-full":e.hoverable&&!e.hovered},"transition duration-300 transform absolute w-full bottom-0 left-0 flex items-center justify-between overlay px-5 pt-3 pb-5"])},[t("div",q,[t("p",E,m(e.time.display)+"/"+m(e.duration),1),t("div",N,[d(t("img",{src:e.Pause,alt:"Icon pause video",class:"w-5 cursor-pointer",onClick:n[4]||(n[4]=o=>e.$emit("play"))},null,8,A),[[y,e.playing]]),d(t("img",{src:e.Play,alt:"Icon play video",class:"w-5 cursor-pointer",onClick:n[5]||(n[5]=o=>e.$emit("play"))},null,8,R),[[y,!e.playing]])]),t("div",{class:"w-full h-1 bg-white bg-opacity-60 rounded-sm cursor-pointer",onClick:n[6]||(n[6]=o=>e.$emit("position",o))},[t("div",{class:"relative h-full pointer-events-none",style:u(`width: ${e.time.progress}%; transition: width .2s ease-in-out;`)},[t("div",{class:"w-full rounded-sm h-full gradient-variable bg-gradient-to-r pointer-events-none absolute top-0 left-0",style:u(`--tw-gradient-from: ${e.colorFrom};--tw-gradient-to: ${e.colorTo};transition: width .2s ease-in-out`)},null,4),t("div",{class:"w-full rounded-sm filter blur-sm h-full gradient-variable bg-gradient-to-r pointer-events-none absolute top-0 left-0",style:u(`--tw-gradient-from: ${e.colorFrom};--tw-gradient-to: ${e.colorTo};transition: width .2s ease-in-out`)},null,4)],4)])]),t("div",{class:"ml-5 flex items-center justify-end",onMouseleave:n[12]||(n[12]=o=>e.volume=!1)},[t("div",U,[t("div",{class:p(`w-128 origin-left translate-x-2 -rotate-90 w-128 transition duration-200 absolute transform top-0 py-2 ${e.volume?"-translate-y-4":"opacity-0 -translate-y-1 pointer-events-none"}`)},[t("div",G,[d(t("input",{"onUpdate:modelValue":n[7]||(n[7]=o=>e.amount=o),type:"range",step:"0.05",min:"0",max:"1",class:"rounded-lg overflow-hidden appearance-none bg-white bg-opacity-30 h-1 w-128 vertical-range",onInput:n[8]||(n[8]=function(){return e.setVolume&&e.setVolume(...arguments)})},null,544),[[f,e.amount]])])],2),t("img",{src:e.Volume,alt:"High volume video",class:"w-5 cursor-pointer relative",style:{"z-index":"2"},onClick:n[9]||(n[9]=function(){return e.stopVolume&&e.stopVolume(...arguments)}),onMouseenter:n[10]||(n[10]=o=>e.volume=!0)},null,40,O)]),t("img",{src:e.Maximize,alt:"Fullscreen",class:"w-3 ml-4 cursor-pointer",onClick:n[11]||(n[11]=o=>e.$emit("fullScreen"))},null,8,L)],32)],2)):c("",!0),!e.autoplay&&e.mask&&e.time.current===0?(s(),l("div",{key:1,class:p(`transition transform duration-300 absolute top-0 left-0 w-full h-full bg-black bg-opacity-50 backdrop-filter z-10 flex items-center justify-center ${e.playing?"opacity-0 pointer-events-none":""}`)},[t("div",{class:"w-20 h-20 rounded-full bg-white bg-opacity-20 transition duration-200 hover:bg-opacity-40 flex items-center justify-center cursor-pointer",onClick:n[13]||(n[13]=o=>e.$emit("play"))},[t("img",{src:e.Play,alt:"Icon play video",class:"transform translate-x-0.5 w-12"},null,8,Y)])],2)):c("",!0)])],32)}C.render=H;var S=h({name:"BasicTheme",props:{uuid:{type:String,required:!0},src:{type:String,required:!0},autoplay:{type:Boolean,required:!0},loop:{type:Boolean,required:!0},controls:{type:Boolean,required:!0},hoverable:{type:Boolean,required:!0},mask:{type:Boolean,required:!0},colors:{type:[String,Array],required:!0},time:{type:Object,required:!0},playing:{type:Boolean,default:!1},duration:{type:[String,Number],required:!0}},data(){return{hovered:!1,volume:!1,amount:1,Pause:w,Play:b,Volume:k,Maximize:$}},computed:{color(){var e;return typeof this.colors=="string"?this.colors?this.colors:"#8B5CF6":(e=this.colors)!=null&&e[0]?this.colors[0]:"#8B5CF6"}},mounted(){this.$emit("setPlayer",this.$refs[this.uuid])},methods:{setVolume(){this.$refs[this.uuid].volume=this.amount},stopVolume(){return this.amount>0?this.amount=0:this.amount=1}}});const W={class:"relative"},X=["loop","autoplay","muted"],K=["src"],Z={class:"mr-5"},J=["src"],Q=["src"],_={class:"relative mr-6"},ee={class:"px-3 py-3 rounded-xl flex items-center transform translate-x-9 bg-black bg-opacity-30"},ne=["src"],te=["src"],oe=["src"];function re(e,n,a,r,i,v){return s(),l("div",{class:"shadow-xl rounded-3xl overflow-hidden relative",onMouseenter:n[13]||(n[13]=o=>e.hovered=!0),onMouseleave:n[14]||(n[14]=o=>e.hovered=!1),onKeydown:n[15]||(n[15]=g(o=>e.$emit("play"),["left"]))},[t("div",W,[t("video",{ref:e.uuid,class:"w-full",loop:e.loop,autoplay:e.autoplay,muted:e.autoplay,onTimeupdate:n[0]||(n[0]=o=>e.$emit("timeupdate",o.target)),onPause:n[1]||(n[1]=o=>e.$emit("isPlaying",!1)),onPlay:n[2]||(n[2]=o=>e.$emit("isPlaying",!0)),onClick:n[3]||(n[3]=o=>e.$emit("play"))},[t("source",{src:e.src,type:"video/mp4"},null,8,K)],40,X),e.controls?(s(),l("div",{key:0,class:p([{"opacity-0 translate-y-full":!e.hoverable&&e.hovered,"opacity-0 translate-y-full":e.hoverable&&!e.hovered},"absolute px-5 pb-5 bottom-0 left-0 w-full transition duration-300 transform"])},[t("div",{class:"w-full bg-black bg-opacity-30 px-5 py-4 rounded-xl flex items-center justify-between",onMouseleave:n[11]||(n[11]=o=>e.volume=!1)},[t("div",{class:"font-sans py-1 px-2 text-white rounded-md text-xs mr-5 whitespace-nowrap font-medium w-32 text-center",style:u(`font-size: 11px; background-color: ${e.color}`)},m(e.time.display)+" / "+m(e.duration),5),t("div",Z,[d(t("img",{src:e.Pause,alt:"Icon pause video",class:"w-4 cursor-pointer filter-white transition duration-300",onClick:n[4]||(n[4]=o=>e.$emit("play"))},null,8,J),[[y,e.playing]]),d(t("img",{src:e.Play,alt:"Icon play video",class:"w-4 cursor-pointer filter-white transition duration-300",onClick:n[5]||(n[5]=o=>e.$emit("play"))},null,8,Q),[[y,!e.playing]])]),t("div",{class:"w-full h-1 bg-white bg-opacity-40 rounded-sm cursor-pointer mr-6",onClick:n[6]||(n[6]=o=>e.$emit("position",o))},[t("div",{class:"w-full rounded-sm h-full bg-white pointer-events-none",style:u(`width: ${e.time.progress}%; transition: width .2s ease-in-out;`)},null,4)]),t("div",_,[t("div",{class:p(`w-128 origin-left translate-x-2 -rotate-90 w-128 transition duration-200 absolute transform top-0 py-2 ${e.volume?"-translate-y-4":"opacity-0 -translate-y-1 pointer-events-none"}`)},[t("div",ee,[d(t("input",{"onUpdate:modelValue":n[7]||(n[7]=o=>e.amount=o),type:"range",step:"0.05",min:"0",max:"1",class:"rounded-lg overflow-hidden appearance-none bg-white bg-opacity-30 h-1.5 w-128 vertical-range"},null,512),[[f,e.amount]])])],2),t("img",{src:e.Volume,alt:"High volume video",class:"w-5 cursor-pointer filter-white transition duration-300 relative",style:{"z-index":"2"},onClick:n[8]||(n[8]=function(){return e.stopVolume&&e.stopVolume(...arguments)}),onMouseenter:n[9]||(n[9]=o=>e.volume=!0)},null,40,ne)]),t("img",{src:e.Maximize,alt:"Fullscreen",class:"w-4 cursor-pointer filter-white transition duration-300",onClick:n[10]||(n[10]=o=>e.$emit("fullScreen"))},null,8,te)],32)],2)):c("",!0),!e.autoplay&&e.mask&&e.time.current===0?(s(),l("div",{key:1,class:p(`transition transform duration-300 absolute top-0 left-0 w-full h-full bg-black bg-opacity-50 backdrop-filter z-10 flex items-center justify-center ${e.playing?"opacity-0 pointer-events-none":""}`)},[t("div",{class:"w-20 h-20 rounded-full bg-white bg-opacity-20 transition duration-200 hover:bg-opacity-40 flex items-center justify-center cursor-pointer",onClick:n[12]||(n[12]=o=>e.$emit("play"))},[t("img",{src:e.Play,alt:"Icon play video",class:"transform translate-x-0.5 w-12"},null,8,oe)])],2)):c("",!0)])],32)}S.render=re;var z=h({name:"PaoPaoVideoPlayer",components:{basic:S,gradient:C},props:{src:{type:String,required:!0},autoplay:{type:Boolean,default:!1},loop:{type:Boolean,default:!1},controls:{type:Boolean,default:!0},mask:{type:Boolean,default:!0},colors:{type:[String,Array],default(){return["#8B5CF6","#ec4899"]}},hoverable:{type:Boolean,default:!1},theme:{type:String,default:"basic"}},data(){return{uuid:Math.random().toString(36).substr(2,18),player:null,duration:0,playing:!1,time:{progress:0,display:0,current:0}}},watch:{"time.current"(e){this.time.display=this.format(Number(e)),this.time.progress=e*100/this.player.duration}},methods:{isPlaying(e){this.playing=e},play(){return this.playing?this.player.pause():this.player.play()},setPlayer(e){this.player=e,this.player.addEventListener("loadeddata",()=>{this.player.readyState>=3&&(this.duration=this.format(Number(this.player.duration)),this.time.display=this.format(0))})},stop(){this.player.pause(),this.player.currentTime=0},fullScreen(){this.player.webkitEnterFullscreen()},position(e){this.player.pause();const n=e.target.getBoundingClientRect(),r=(e.clientX-n.left)*100/e.target.offsetWidth;this.player.currentTime=r*this.player.duration/100,this.player.play()},format(e){const n=Math.floor(e/3600),a=Math.floor(e%3600/60),r=Math.round(e%60);return[n,a>9?a:n?"0"+a:a||"00",r>9?r:"0"+r].filter(Boolean).join(":")}}});const ae={class:"paopao-video-player"};function ie(e,n,a,r,i,v){return s(),l("div",ae,[(s(),P(B(e.theme),{uuid:e.uuid,src:e.src,autoplay:e.autoplay,loop:e.loop,controls:e.controls,mask:e.mask,colors:e.colors,time:e.time,playing:e.playing,duration:e.duration,hoverable:e.hoverable,onPlay:e.play,onStop:e.stop,onTimeupdate:n[0]||(n[0]=o=>{let{currentTime:x}=o;return e.time.current=x}),onPosition:e.position,onFullScreen:e.fullScreen,onSetPlayer:e.setPlayer,onIsPlaying:e.isPlaying},null,40,["uuid","src","autoplay","loop","controls","mask","colors","time","playing","duration","hoverable","onPlay","onStop","onPosition","onFullScreen","onSetPlayer","onIsPlaying"]))])}function se(e,n){n===void 0&&(n={});var a=n.insertAt;if(!(!e||typeof document>"u")){var r=document.head||document.getElementsByTagName("head")[0],i=document.createElement("style");i.type="text/css",a==="top"&&r.firstChild?r.insertBefore(i,r.firstChild):r.appendChild(i),i.styleSheet?i.styleSheet.cssText=e:i.appendChild(document.createTextNode(e))}}var le=`/*! tailwindcss v2.2.17 | MIT License | https://tailwindcss.com */ /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ diff --git a/web/dist/assets/post-item-d81938d1.css b/web/dist/assets/post-item-DBTlFgxm.css similarity index 100% rename from web/dist/assets/post-item-d81938d1.css rename to web/dist/assets/post-item-DBTlFgxm.css diff --git a/web/dist/assets/post-item.vue_vue_type_style_index_0_lang-Dfn2xguO.js b/web/dist/assets/post-item.vue_vue_type_style_index_0_lang-Dfn2xguO.js new file mode 100644 index 00000000..468acbe2 --- /dev/null +++ b/web/dist/assets/post-item.vue_vue_type_style_index_0_lang-Dfn2xguO.js @@ -0,0 +1 @@ +import{d as V,a as W,_ as J,b as Z,c as G}from"./content-BMjusBPS.js";import{d as K,H as Q,c as q,r as U,e as l,f as $,k as a,ar as X,w as n,j as u,F as Y,u as ee,y as h,bk as i,A as _,x as m,q as c,Z as r,h as z}from"./@vue-CQsYufSu.js";import{u as te}from"./vuex-DNAxYlmG.js";import{u as se}from"./vue-router-zwGLnBy5.js";import{V as oe,A as ne,B as ae}from"./index-v3l9hw1O.js";import{c as le}from"./copy-to-clipboard-CA7crPat.js";import{k as ie,l as ue,n as ce,o as re,r as pe,s as _e,t as me,J as de,R as ve,q as he}from"./@vicons-C3A8jsfr.js";import{j as f,o as fe,M as ke,e as ge,P as ye,a as we,O as be}from"./naive-ui-DNcWoFGl.js";const xe={class:"post-item"},$e={class:"nickname-wrap"},Ce={class:"username-wrap"},Oe={class:"timestamp-mobile"},qe={class:"item-header-extra"},ze=["innerHTML"],Re=K({__name:"mobile-post-item",props:{post:{},isOwner:{type:Boolean},addFriendAction:{type:Boolean},addFollowAction:{type:Boolean}},emits:["send-whisper","handle-follow-action","handle-friend-action"],setup(T,{emit:S}){const g=se(),C=te(),y=Q(!0),o=T,w=S,d=t=>()=>z(f,null,{default:()=>z(t)}),B=q(()=>{let t=[];return o.isOwner||t.push({label:"私信 @"+o.post.user.username,key:"whisper",icon:d(pe)}),!o.isOwner&&o.addFollowAction&&(o.post.user.is_following?t.push({label:"取消关注 @"+o.post.user.username,key:"unfollow",icon:d(_e)}):t.push({label:"关注 @"+o.post.user.username,key:"follow",icon:d(me)})),!o.isOwner&&o.addFriendAction&&(o.post.user.is_friend?t.push({label:"删除好友 @"+o.post.user.username,key:"delete",icon:d(de)}):t.push({label:"添加朋友 @"+o.post.user.username,key:"requesting",icon:d(ve)})),t.push({label:"复制链接",key:"copyTweetLink",icon:d(he)}),t}),F=async t=>{switch(t){case"copyTweetLink":le(`${window.location.origin}/#/post?id=${e.value.id}&share=copy_link&t=${new Date().getTime()}`),window.$message.success("链接已复制到剪贴板");break;case"whisper":w("send-whisper",o.post.user);break;case"delete":case"requesting":w("handle-friend-action",o.post);break;case"follow":case"unfollow":w("handle-follow-action",o.post);break}},e=q({get:()=>{let t=Object.assign({texts:[],imgs:[],videos:[],links:[],attachments:[],charge_attachments:[]},o.post);return t.contents.map(s=>{(+s.type==1||+s.type==2)&&t.texts.push(s),+s.type==3&&t.imgs.push(s),+s.type==4&&t.videos.push(s),+s.type==6&&t.links.push(s),+s.type==7&&t.attachments.push(s),+s.type==8&&t.charge_attachments.push(s)}),t},set:t=>{o.post.upvote_count=t.upvote_count,o.post.collection_count=t.collection_count}}),A=()=>{ne({id:e.value.id}).then(t=>{t.status?e.value={...e.value,upvote_count:e.value.upvote_count+1}:e.value={...e.value,upvote_count:e.value.upvote_count>0?e.value.upvote_count-1:0}}).catch(t=>{console.log(t)})},P=()=>{ae({id:e.value.id}).then(t=>{t.status?e.value={...e.value,collection_count:e.value.collection_count+1}:e.value={...e.value,collection_count:e.value.collection_count>0?e.value.collection_count-1:0}}).catch(t=>{console.log(t)})},b=t=>{g.push({name:"post",query:{id:t}})},L=(t,s)=>{const p=t.target.dataset.detail;if(p&&p!=="post"){const v=p.split(":");v.length===2&&(C.commit("refresh"),v[0]==="tag"?g.push({name:"home",query:{q:v[1],t:"tag"}}):g.push({name:"user",query:{s:v[1]}}))}else p&&p==="post"?y.value=!y.value:b(s)};return(t,s)=>{const p=fe,v=U("router-link"),x=ke,M=ge,H=ye,O=W,j=J,D=Z,N=G,I=we,R=be;return l(),$("div",xe,[a(R,{"content-indented":""},X({avatar:n(()=>[a(p,{round:"",size:30,src:e.value.user.avatar},null,8,["src"])]),header:n(()=>[u("span",$e,[a(v,{onClick:s[0]||(s[0]=h(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.value.user.username}}},{default:n(()=>[_(m(e.value.user.nickname),1)]),_:1},8,["to"])]),u("span",Ce," @"+m(e.value.user.username),1),e.value.is_top?(l(),c(x,{key:0,class:"top-tag",type:"warning",size:"small",round:""},{default:n(()=>[_(" 置顶 ")]),_:1})):r("",!0),e.value.visibility==1?(l(),c(x,{key:1,class:"top-tag",type:"error",size:"small",round:""},{default:n(()=>[_(" 私密 ")]),_:1})):r("",!0),e.value.visibility==2?(l(),c(x,{key:2,class:"top-tag",type:"info",size:"small",round:""},{default:n(()=>[_(" 好友可见 ")]),_:1})):r("",!0),u("div",null,[u("span",Oe,m(i(oe)(e.value.created_on))+" "+m(e.value.ip_loc),1)])]),"header-extra":n(()=>[u("div",qe,[a(H,{placement:"bottom-end",trigger:"click",size:"small",options:B.value,onSelect:F},{default:n(()=>[a(M,{quaternary:"",circle:""},{icon:n(()=>[a(i(f),null,{default:n(()=>[a(i(ie))]),_:1})]),_:1})]),_:1},8,["options"])])]),footer:n(()=>[e.value.attachments.length>0?(l(),c(O,{key:0,attachments:e.value.attachments},null,8,["attachments"])):r("",!0),e.value.charge_attachments.length>0?(l(),c(O,{key:1,attachments:e.value.charge_attachments,price:e.value.attachment_price},null,8,["attachments","price"])):r("",!0),e.value.imgs.length>0?(l(),c(j,{key:2,imgs:e.value.imgs},null,8,["imgs"])):r("",!0),e.value.videos.length>0?(l(),c(D,{key:3,videos:e.value.videos},null,8,["videos"])):r("",!0),e.value.links.length>0?(l(),c(N,{key:4,links:e.value.links},null,8,["links"])):r("",!0)]),action:n(()=>[a(I,{justify:"space-between"},{default:n(()=>[u("div",{class:"opt-item",onClick:h(A,["stop"])},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(ue))]),_:1}),_(" "+m(e.value.upvote_count),1)]),u("div",{class:"opt-item",onClick:s[3]||(s[3]=h(k=>b(e.value.id),["stop"]))},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(ce))]),_:1}),_(" "+m(e.value.comment_count),1)]),u("div",{class:"opt-item",onClick:h(P,["stop"])},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(re))]),_:1}),_(" "+m(e.value.collection_count),1)])]),_:1})]),_:2},[e.value.texts.length>0?{name:"description",fn:n(()=>[u("div",{onClick:s[2]||(s[2]=k=>b(e.value.id))},[(l(!0),$(Y,null,ee(e.value.texts,k=>(l(),$("span",{key:k.id,class:"post-text",onClick:s[1]||(s[1]=h(E=>L(E,e.value.id),["stop"])),innerHTML:i(V)(k.content,"展开","收起",i(C).state.profile.tweetMobileEllipsisSize,y.value)},null,8,ze))),128))])]),key:"0"}:void 0]),1024)])}}}),Te={class:"nickname-wrap"},Se={class:"username-wrap"},Be={class:"item-header-extra"},Fe={class:"timestamp"},Ae=["innerHTML"],Ee=K({__name:"post-item",props:{post:{},isOwner:{type:Boolean},addFriendAction:{type:Boolean},addFollowAction:{type:Boolean}},emits:["send-whisper","handle-follow-action","handle-friend-action"],setup(T,{emit:S}){const g=se(),C=te(),y=Q(!0),o=T,w=S,d=t=>()=>z(f,null,{default:()=>z(t)}),B=q(()=>{let t=[];return o.isOwner||t.push({label:"私信 @"+o.post.user.username,key:"whisper",icon:d(pe)}),!o.isOwner&&o.addFollowAction&&(o.post.user.is_following?t.push({label:"取消关注 @"+o.post.user.username,key:"unfollow",icon:d(_e)}):t.push({label:"关注 @"+o.post.user.username,key:"follow",icon:d(me)})),!o.isOwner&&o.addFriendAction&&(o.post.user.is_friend?t.push({label:"删除好友 @"+o.post.user.username,key:"delete",icon:d(de)}):t.push({label:"添加朋友 @"+o.post.user.username,key:"requesting",icon:d(ve)})),t.push({label:"复制链接",key:"copyTweetLink",icon:d(he)}),t}),F=async t=>{switch(t){case"copyTweetLink":le(`${window.location.origin}/#/post?id=${e.value.id}&share=copy_link&t=${new Date().getTime()}`),window.$message.success("链接已复制到剪贴板");break;case"whisper":w("send-whisper",o.post.user);break;case"delete":case"requesting":w("handle-friend-action",o.post);break;case"follow":case"unfollow":w("handle-follow-action",o.post);break}},e=q({get:()=>{let t=Object.assign({texts:[],imgs:[],videos:[],links:[],attachments:[],charge_attachments:[]},o.post);return t.contents.map(s=>{(+s.type==1||+s.type==2)&&t.texts.push(s),+s.type==3&&t.imgs.push(s),+s.type==4&&t.videos.push(s),+s.type==6&&t.links.push(s),+s.type==7&&t.attachments.push(s),+s.type==8&&t.charge_attachments.push(s)}),t},set:t=>{o.post.upvote_count=t.upvote_count,o.post.collection_count=t.collection_count}}),A=()=>{ne({id:e.value.id}).then(t=>{t.status?e.value={...e.value,upvote_count:e.value.upvote_count+1}:e.value={...e.value,upvote_count:e.value.upvote_count>0?e.value.upvote_count-1:0}}).catch(t=>{console.log(t)})},P=()=>{ae({id:e.value.id}).then(t=>{t.status?e.value={...e.value,collection_count:e.value.collection_count+1}:e.value={...e.value,collection_count:e.value.collection_count>0?e.value.collection_count-1:0}}).catch(t=>{console.log(t)})},b=t=>{g.push({name:"post",query:{id:t}})},L=(t,s)=>{const p=t.target.dataset.detail;if(p&&p!=="post"){const v=p.split(":");v.length===2&&(C.commit("refresh"),v[0]==="tag"?g.push({name:"home",query:{q:v[1],t:"tag"}}):g.push({name:"user",query:{s:v[1]}}))}else p&&p==="post"?y.value=!y.value:b(s)};return(t,s)=>{const p=fe,v=U("router-link"),x=ke,M=ge,H=ye,O=W,j=J,D=Z,N=G,I=we,R=be;return l(),$("div",{class:"post-item",onClick:s[3]||(s[3]=k=>b(e.value.id))},[a(R,{"content-indented":""},X({avatar:n(()=>[a(p,{round:"",size:30,src:e.value.user.avatar},null,8,["src"])]),header:n(()=>[u("span",Te,[a(v,{onClick:s[0]||(s[0]=h(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.value.user.username}}},{default:n(()=>[_(m(e.value.user.nickname),1)]),_:1},8,["to"])]),u("span",Se," @"+m(e.value.user.username),1),e.value.is_top?(l(),c(x,{key:0,class:"top-tag",type:"warning",size:"small",round:""},{default:n(()=>[_(" 置顶 ")]),_:1})):r("",!0),e.value.visibility==1?(l(),c(x,{key:1,class:"top-tag",type:"error",size:"small",round:""},{default:n(()=>[_(" 私密 ")]),_:1})):r("",!0),e.value.visibility==2?(l(),c(x,{key:2,class:"top-tag",type:"info",size:"small",round:""},{default:n(()=>[_(" 好友可见 ")]),_:1})):r("",!0)]),"header-extra":n(()=>[u("div",Be,[u("span",Fe,m(e.value.ip_loc?e.value.ip_loc+" · ":e.value.ip_loc)+" "+m(i(oe)(e.value.created_on)),1),a(H,{placement:"bottom-end",trigger:"hover",size:"small",options:B.value,onSelect:F},{default:n(()=>[a(M,{quaternary:"",circle:""},{icon:n(()=>[a(i(f),null,{default:n(()=>[a(i(ie))]),_:1})]),_:1})]),_:1},8,["options"])])]),footer:n(()=>[e.value.attachments.length>0?(l(),c(O,{key:0,attachments:e.value.attachments},null,8,["attachments"])):r("",!0),e.value.charge_attachments.length>0?(l(),c(O,{key:1,attachments:e.value.charge_attachments,price:e.value.attachment_price},null,8,["attachments","price"])):r("",!0),e.value.imgs.length>0?(l(),c(j,{key:2,imgs:e.value.imgs},null,8,["imgs"])):r("",!0),e.value.videos.length>0?(l(),c(D,{key:3,videos:e.value.videos},null,8,["videos"])):r("",!0),e.value.links.length>0?(l(),c(N,{key:4,links:e.value.links},null,8,["links"])):r("",!0)]),action:n(()=>[a(I,{justify:"space-between"},{default:n(()=>[u("div",{class:"opt-item hover",onClick:h(A,["stop"])},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(ue))]),_:1}),_(" "+m(e.value.upvote_count),1)]),u("div",{class:"opt-item hover",onClick:s[2]||(s[2]=h(k=>b(e.value.id),["stop"]))},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(ce))]),_:1}),_(" "+m(e.value.comment_count),1)]),u("div",{class:"opt-item hover",onClick:h(P,["stop"])},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(re))]),_:1}),_(" "+m(e.value.collection_count),1)])]),_:1})]),_:2},[e.value.texts.length>0?{name:"description",fn:n(()=>[(l(!0),$(Y,null,ee(e.value.texts,k=>(l(),$("span",{key:k.id,class:"post-text hover",onClick:s[1]||(s[1]=h(E=>L(E,e.value.id),["stop"])),innerHTML:i(V)(k.content,"展开","收起",i(C).state.profile.tweetWebEllipsisSize,y.value)},null,8,Ae))),128))]),key:"0"}:void 0]),1024)])}}});export{Ee as _,Re as a}; diff --git a/web/dist/assets/post-item.vue_vue_type_style_index_0_lang-cb395a2b.js b/web/dist/assets/post-item.vue_vue_type_style_index_0_lang-cb395a2b.js deleted file mode 100644 index df8aa255..00000000 --- a/web/dist/assets/post-item.vue_vue_type_style_index_0_lang-cb395a2b.js +++ /dev/null @@ -1 +0,0 @@ -import{d as E,a as V,_ as W,b as J,c as U}from"./content-68a3f6d0.js";import{d as Y,H as G,c as q,r as K,e as l,f as x,k as a,al as Q,w as n,j as u,F as X,u as Z,y as h,bf as i,A as _,x as d,q as c,Y as r,h as z}from"./@vue-a481fc63.js";import{u as ee}from"./vuex-44de225f.js";import{u as te}from"./vue-router-e5a2430e.js";import{U as se,A as oe,B as ne}from"./index-1e276b8f.js";import{c as ae}from"./copy-to-clipboard-4ef7d3eb.js";import{k as le,l as ie,n as ue,o as ce,r as re,s as pe,t as _e,J as de,R as me,q as ve}from"./@vicons-f0266f88.js";import{j as f,o as he,M as fe,e as ke,P as ge,a as ye,O as we}from"./naive-ui-eecf2ec3.js";const be={class:"post-item"},Ce={class:"nickname-wrap"},xe={class:"username-wrap"},$e={class:"timestamp-mobile"},Oe={class:"item-header-extra"},qe=["innerHTML"],ze=["onClick"],Te=["onClick"],We=Y({__name:"mobile-post-item",props:{post:{},isOwner:{type:Boolean},addFriendAction:{type:Boolean},addFollowAction:{type:Boolean}},emits:["send-whisper","handle-follow-action","handle-friend-action"],setup(T,{emit:g}){const o=T,y=te(),$=ee(),w=G(!0),m=t=>()=>z(f,null,{default:()=>z(t)}),S=q(()=>{let t=[];return o.isOwner||t.push({label:"私信 @"+o.post.user.username,key:"whisper",icon:m(re)}),!o.isOwner&&o.addFollowAction&&(o.post.user.is_following?t.push({label:"取消关注 @"+o.post.user.username,key:"unfollow",icon:m(pe)}):t.push({label:"关注 @"+o.post.user.username,key:"follow",icon:m(_e)})),!o.isOwner&&o.addFriendAction&&(o.post.user.is_friend?t.push({label:"删除好友 @"+o.post.user.username,key:"delete",icon:m(de)}):t.push({label:"添加朋友 @"+o.post.user.username,key:"requesting",icon:m(me)})),t.push({label:"复制链接",key:"copyTweetLink",icon:m(ve)}),t}),B=async t=>{switch(t){case"copyTweetLink":ae(`${window.location.origin}/#/post?id=${e.value.id}&share=copy_link&t=${new Date().getTime()}`),window.$message.success("链接已复制到剪贴板");break;case"whisper":g("send-whisper",o.post.user);break;case"delete":case"requesting":g("handle-friend-action",o.post);break;case"follow":case"unfollow":g("handle-follow-action",o.post);break}},e=q({get:()=>{let t=Object.assign({texts:[],imgs:[],videos:[],links:[],attachments:[],charge_attachments:[]},o.post);return t.contents.map(s=>{(+s.type==1||+s.type==2)&&t.texts.push(s),+s.type==3&&t.imgs.push(s),+s.type==4&&t.videos.push(s),+s.type==6&&t.links.push(s),+s.type==7&&t.attachments.push(s),+s.type==8&&t.charge_attachments.push(s)}),t},set:t=>{o.post.upvote_count=t.upvote_count,o.post.collection_count=t.collection_count}}),F=()=>{oe({id:e.value.id}).then(t=>{t.status?e.value={...e.value,upvote_count:e.value.upvote_count+1}:e.value={...e.value,upvote_count:e.value.upvote_count>0?e.value.upvote_count-1:0}}).catch(t=>{console.log(t)})},P=()=>{ne({id:e.value.id}).then(t=>{t.status?e.value={...e.value,collection_count:e.value.collection_count+1}:e.value={...e.value,collection_count:e.value.collection_count>0?e.value.collection_count-1:0}}).catch(t=>{console.log(t)})},b=t=>{y.push({name:"post",query:{id:t}})},A=(t,s)=>{const p=t.target.dataset.detail;if(p&&p!=="post"){const v=p.split(":");v.length===2&&($.commit("refresh"),v[0]==="tag"?y.push({name:"home",query:{q:v[1],t:"tag"}}):y.push({name:"user",query:{s:v[1]}}))}else p&&p==="post"?w.value=!w.value:b(s)};return(t,s)=>{const p=he,v=K("router-link"),C=fe,L=ke,M=ge,O=V,H=W,j=J,D=U,I=ye,N=we;return l(),x("div",be,[a(N,{"content-indented":""},Q({avatar:n(()=>[a(p,{round:"",size:30,src:e.value.user.avatar},null,8,["src"])]),header:n(()=>[u("span",Ce,[a(v,{onClick:s[0]||(s[0]=h(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.value.user.username}}},{default:n(()=>[_(d(e.value.user.nickname),1)]),_:1},8,["to"])]),u("span",xe," @"+d(e.value.user.username),1),e.value.is_top?(l(),c(C,{key:0,class:"top-tag",type:"warning",size:"small",round:""},{default:n(()=>[_(" 置顶 ")]),_:1})):r("",!0),e.value.visibility==1?(l(),c(C,{key:1,class:"top-tag",type:"error",size:"small",round:""},{default:n(()=>[_(" 私密 ")]),_:1})):r("",!0),e.value.visibility==2?(l(),c(C,{key:2,class:"top-tag",type:"info",size:"small",round:""},{default:n(()=>[_(" 好友可见 ")]),_:1})):r("",!0),u("div",null,[u("span",$e,d(i(se)(e.value.created_on))+" "+d(e.value.ip_loc),1)])]),"header-extra":n(()=>[u("div",Oe,[a(M,{placement:"bottom-end",trigger:"click",size:"small",options:S.value,onSelect:B},{default:n(()=>[a(L,{quaternary:"",circle:""},{icon:n(()=>[a(i(f),null,{default:n(()=>[a(i(le))]),_:1})]),_:1})]),_:1},8,["options"])])]),footer:n(()=>[e.value.attachments.length>0?(l(),c(O,{key:0,attachments:e.value.attachments},null,8,["attachments"])):r("",!0),e.value.charge_attachments.length>0?(l(),c(O,{key:1,attachments:e.value.charge_attachments,price:e.value.attachment_price},null,8,["attachments","price"])):r("",!0),e.value.imgs.length>0?(l(),c(H,{key:2,imgs:e.value.imgs},null,8,["imgs"])):r("",!0),e.value.videos.length>0?(l(),c(j,{key:3,videos:e.value.videos},null,8,["videos"])):r("",!0),e.value.links.length>0?(l(),c(D,{key:4,links:e.value.links},null,8,["links"])):r("",!0)]),action:n(()=>[a(I,{justify:"space-between"},{default:n(()=>[u("div",{class:"opt-item",onClick:h(F,["stop"])},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(ie))]),_:1}),_(" "+d(e.value.upvote_count),1)],8,ze),u("div",{class:"opt-item",onClick:s[3]||(s[3]=h(k=>b(e.value.id),["stop"]))},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(ue))]),_:1}),_(" "+d(e.value.comment_count),1)]),u("div",{class:"opt-item",onClick:h(P,["stop"])},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(ce))]),_:1}),_(" "+d(e.value.collection_count),1)],8,Te)]),_:1})]),_:2},[e.value.texts.length>0?{name:"description",fn:n(()=>[u("div",{onClick:s[2]||(s[2]=k=>b(e.value.id))},[(l(!0),x(X,null,Z(e.value.texts,k=>(l(),x("span",{key:k.id,class:"post-text",onClick:s[1]||(s[1]=h(R=>A(R,e.value.id),["stop"])),innerHTML:i(E)(k.content,"展开","收起",i($).state.profile.tweetMobileEllipsisSize,w.value)},null,8,qe))),128))])]),key:"0"}:void 0]),1024)])}}});const Se={class:"nickname-wrap"},Be={class:"username-wrap"},Fe={class:"item-header-extra"},Pe={class:"timestamp"},Ae=["innerHTML"],Le=["onClick"],Me=["onClick"],Je=Y({__name:"post-item",props:{post:{},isOwner:{type:Boolean},addFriendAction:{type:Boolean},addFollowAction:{type:Boolean}},emits:["send-whisper","handle-follow-action","handle-friend-action"],setup(T,{emit:g}){const o=T,y=te(),$=ee(),w=G(!0),m=t=>()=>z(f,null,{default:()=>z(t)}),S=q(()=>{let t=[];return o.isOwner||t.push({label:"私信 @"+o.post.user.username,key:"whisper",icon:m(re)}),!o.isOwner&&o.addFollowAction&&(o.post.user.is_following?t.push({label:"取消关注 @"+o.post.user.username,key:"unfollow",icon:m(pe)}):t.push({label:"关注 @"+o.post.user.username,key:"follow",icon:m(_e)})),!o.isOwner&&o.addFriendAction&&(o.post.user.is_friend?t.push({label:"删除好友 @"+o.post.user.username,key:"delete",icon:m(de)}):t.push({label:"添加朋友 @"+o.post.user.username,key:"requesting",icon:m(me)})),t.push({label:"复制链接",key:"copyTweetLink",icon:m(ve)}),t}),B=async t=>{switch(t){case"copyTweetLink":ae(`${window.location.origin}/#/post?id=${e.value.id}&share=copy_link&t=${new Date().getTime()}`),window.$message.success("链接已复制到剪贴板");break;case"whisper":g("send-whisper",o.post.user);break;case"delete":case"requesting":g("handle-friend-action",o.post);break;case"follow":case"unfollow":g("handle-follow-action",o.post);break}},e=q({get:()=>{let t=Object.assign({texts:[],imgs:[],videos:[],links:[],attachments:[],charge_attachments:[]},o.post);return t.contents.map(s=>{(+s.type==1||+s.type==2)&&t.texts.push(s),+s.type==3&&t.imgs.push(s),+s.type==4&&t.videos.push(s),+s.type==6&&t.links.push(s),+s.type==7&&t.attachments.push(s),+s.type==8&&t.charge_attachments.push(s)}),t},set:t=>{o.post.upvote_count=t.upvote_count,o.post.collection_count=t.collection_count}}),F=()=>{oe({id:e.value.id}).then(t=>{t.status?e.value={...e.value,upvote_count:e.value.upvote_count+1}:e.value={...e.value,upvote_count:e.value.upvote_count>0?e.value.upvote_count-1:0}}).catch(t=>{console.log(t)})},P=()=>{ne({id:e.value.id}).then(t=>{t.status?e.value={...e.value,collection_count:e.value.collection_count+1}:e.value={...e.value,collection_count:e.value.collection_count>0?e.value.collection_count-1:0}}).catch(t=>{console.log(t)})},b=t=>{y.push({name:"post",query:{id:t}})},A=(t,s)=>{const p=t.target.dataset.detail;if(p&&p!=="post"){const v=p.split(":");v.length===2&&($.commit("refresh"),v[0]==="tag"?y.push({name:"home",query:{q:v[1],t:"tag"}}):y.push({name:"user",query:{s:v[1]}}))}else p&&p==="post"?w.value=!w.value:b(s)};return(t,s)=>{const p=he,v=K("router-link"),C=fe,L=ke,M=ge,O=V,H=W,j=J,D=U,I=ye,N=we;return l(),x("div",{class:"post-item",onClick:s[3]||(s[3]=k=>b(e.value.id))},[a(N,{"content-indented":""},Q({avatar:n(()=>[a(p,{round:"",size:30,src:e.value.user.avatar},null,8,["src"])]),header:n(()=>[u("span",Se,[a(v,{onClick:s[0]||(s[0]=h(()=>{},["stop"])),class:"username-link",to:{name:"user",query:{s:e.value.user.username}}},{default:n(()=>[_(d(e.value.user.nickname),1)]),_:1},8,["to"])]),u("span",Be," @"+d(e.value.user.username),1),e.value.is_top?(l(),c(C,{key:0,class:"top-tag",type:"warning",size:"small",round:""},{default:n(()=>[_(" 置顶 ")]),_:1})):r("",!0),e.value.visibility==1?(l(),c(C,{key:1,class:"top-tag",type:"error",size:"small",round:""},{default:n(()=>[_(" 私密 ")]),_:1})):r("",!0),e.value.visibility==2?(l(),c(C,{key:2,class:"top-tag",type:"info",size:"small",round:""},{default:n(()=>[_(" 好友可见 ")]),_:1})):r("",!0)]),"header-extra":n(()=>[u("div",Fe,[u("span",Pe,d(e.value.ip_loc?e.value.ip_loc+" · ":e.value.ip_loc)+" "+d(i(se)(e.value.created_on)),1),a(M,{placement:"bottom-end",trigger:"hover",size:"small",options:S.value,onSelect:B},{default:n(()=>[a(L,{quaternary:"",circle:""},{icon:n(()=>[a(i(f),null,{default:n(()=>[a(i(le))]),_:1})]),_:1})]),_:1},8,["options"])])]),footer:n(()=>[e.value.attachments.length>0?(l(),c(O,{key:0,attachments:e.value.attachments},null,8,["attachments"])):r("",!0),e.value.charge_attachments.length>0?(l(),c(O,{key:1,attachments:e.value.charge_attachments,price:e.value.attachment_price},null,8,["attachments","price"])):r("",!0),e.value.imgs.length>0?(l(),c(H,{key:2,imgs:e.value.imgs},null,8,["imgs"])):r("",!0),e.value.videos.length>0?(l(),c(j,{key:3,videos:e.value.videos},null,8,["videos"])):r("",!0),e.value.links.length>0?(l(),c(D,{key:4,links:e.value.links},null,8,["links"])):r("",!0)]),action:n(()=>[a(I,{justify:"space-between"},{default:n(()=>[u("div",{class:"opt-item hover",onClick:h(F,["stop"])},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(ie))]),_:1}),_(" "+d(e.value.upvote_count),1)],8,Le),u("div",{class:"opt-item hover",onClick:s[2]||(s[2]=h(k=>b(e.value.id),["stop"]))},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(ue))]),_:1}),_(" "+d(e.value.comment_count),1)]),u("div",{class:"opt-item hover",onClick:h(P,["stop"])},[a(i(f),{size:"18",class:"opt-item-icon"},{default:n(()=>[a(i(ce))]),_:1}),_(" "+d(e.value.collection_count),1)],8,Me)]),_:1})]),_:2},[e.value.texts.length>0?{name:"description",fn:n(()=>[(l(!0),x(X,null,Z(e.value.texts,k=>(l(),x("span",{key:k.id,class:"post-text hover",onClick:s[1]||(s[1]=h(R=>A(R,e.value.id),["stop"])),innerHTML:i(E)(k.content,"展开","收起",i($).state.profile.tweetWebEllipsisSize,w.value)},null,8,Ae))),128))]),key:"0"}:void 0]),1024)])}}});export{Je as _,We as a}; diff --git a/web/dist/assets/post-skeleton-f1900002.css b/web/dist/assets/post-skeleton-C1jKcoiQ.css similarity index 100% rename from web/dist/assets/post-skeleton-f1900002.css rename to web/dist/assets/post-skeleton-C1jKcoiQ.css diff --git a/web/dist/assets/post-skeleton-YfJeD-2o.js b/web/dist/assets/post-skeleton-YfJeD-2o.js new file mode 100644 index 00000000..1e157ce9 --- /dev/null +++ b/web/dist/assets/post-skeleton-YfJeD-2o.js @@ -0,0 +1 @@ +import{U as _}from"./naive-ui-DNcWoFGl.js";import{d as c,e as s,f as n,u as p,j as o,k as t,F as l}from"./@vue-CQsYufSu.js";import{_ as m}from"./index-v3l9hw1O.js";const i={class:"user"},u={class:"content"},d=c({__name:"post-skeleton",props:{num:{default:1}},setup(f){return(a,k)=>{const e=_;return s(!0),n(l,null,p(new Array(a.num),r=>(s(),n("div",{class:"skeleton-item",key:r},[o("div",i,[t(e,{circle:"",size:"small"})]),o("div",u,[t(e,{text:"",repeat:3}),t(e,{text:"",style:{width:"60%"}})])]))),128)}}}),g=m(d,[["__scopeId","data-v-ab0015b4"]]);export{g as _}; diff --git a/web/dist/assets/post-skeleton-ae2be035.js b/web/dist/assets/post-skeleton-ae2be035.js deleted file mode 100644 index 733492f9..00000000 --- a/web/dist/assets/post-skeleton-ae2be035.js +++ /dev/null @@ -1 +0,0 @@ -import{U as r}from"./naive-ui-eecf2ec3.js";import{d as c,e as s,f as n,u as p,j as o,k as t,F as l}from"./@vue-a481fc63.js";import{_ as i}from"./index-1e276b8f.js";const m={class:"user"},u={class:"content"},d=c({__name:"post-skeleton",props:{num:{default:1}},setup(f){return(_,k)=>{const e=r;return s(!0),n(l,null,p(new Array(_.num),a=>(s(),n("div",{class:"skeleton-item",key:a},[o("div",m,[t(e,{circle:"",size:"small"})]),o("div",u,[t(e,{text:"",repeat:3}),t(e,{text:"",style:{width:"60%"}})])]))),128)}}});const b=i(d,[["__scopeId","data-v-ab0015b4"]]);export{b as _}; diff --git a/web/dist/assets/qrcode-9719fc56.js b/web/dist/assets/qrcode-CGiDONbL.js similarity index 99% rename from web/dist/assets/qrcode-9719fc56.js rename to web/dist/assets/qrcode-CGiDONbL.js index 7c593bbd..f1c11814 100644 --- a/web/dist/assets/qrcode-9719fc56.js +++ b/web/dist/assets/qrcode-CGiDONbL.js @@ -1,4 +1,4 @@ -import{e as bt}from"./encode-utf8-f813de00.js";import{d as Pt}from"./dijkstrajs-f906a09e.js";var O={},Rt=function(){return typeof Promise=="function"&&Promise.prototype&&Promise.prototype.then},dt={},N={};let it;const Lt=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];N.getSymbolSize=function(t){if(!t)throw new Error('"version" cannot be null or undefined');if(t<1||t>40)throw new Error('"version" should be in range from 1 to 40');return t*4+17};N.getSymbolTotalCodewords=function(t){return Lt[t]};N.getBCHDigit=function(e){let t=0;for(;e!==0;)t++,e>>>=1;return t};N.setToSJISFunction=function(t){if(typeof t!="function")throw new Error('"toSJISFunc" is not a valid function.');it=t};N.isKanjiModeEnabled=function(){return typeof it<"u"};N.toSJIS=function(t){return it(t)};var G={};(function(e){e.L={bit:1},e.M={bit:0},e.Q={bit:3},e.H={bit:2};function t(i){if(typeof i!="string")throw new Error("Param is not a string");switch(i.toLowerCase()){case"l":case"low":return e.L;case"m":case"medium":return e.M;case"q":case"quartile":return e.Q;case"h":case"high":return e.H;default:throw new Error("Unknown EC Level: "+i)}}e.isValid=function(o){return o&&typeof o.bit<"u"&&o.bit>=0&&o.bit<4},e.from=function(o,n){if(e.isValid(o))return o;try{return t(o)}catch{return n}}})(G);function ht(){this.buffer=[],this.length=0}ht.prototype={get:function(e){const t=Math.floor(e/8);return(this.buffer[t]>>>7-e%8&1)===1},put:function(e,t){for(let i=0;i>>t-i-1&1)===1)},getLengthInBits:function(){return this.length},putBit:function(e){const t=Math.floor(this.length/8);this.buffer.length<=t&&this.buffer.push(0),e&&(this.buffer[t]|=128>>>this.length%8),this.length++}};var Ut=ht;function K(e){if(!e||e<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=e,this.data=new Uint8Array(e*e),this.reservedBit=new Uint8Array(e*e)}K.prototype.set=function(e,t,i,o){const n=e*this.size+t;this.data[n]=i,o&&(this.reservedBit[n]=!0)};K.prototype.get=function(e,t){return this.data[e*this.size+t]};K.prototype.xor=function(e,t,i){this.data[e*this.size+t]^=i};K.prototype.isReserved=function(e,t){return this.reservedBit[e*this.size+t]};var Dt=K,wt={};(function(e){const t=N.getSymbolSize;e.getRowColCoords=function(o){if(o===1)return[];const n=Math.floor(o/7)+2,r=t(o),s=r===145?26:Math.ceil((r-13)/(2*n-2))*2,c=[r-7];for(let u=1;u=0&&n<=7},e.from=function(n){return e.isValid(n)?parseInt(n,10):void 0},e.getPenaltyN1=function(n){const r=n.size;let s=0,c=0,u=0,l=null,a=null;for(let A=0;A=5&&(s+=t.N1+(c-5)),l=g,c=1),g=n.get(w,A),g===a?u++:(u>=5&&(s+=t.N1+(u-5)),a=g,u=1)}c>=5&&(s+=t.N1+(c-5)),u>=5&&(s+=t.N1+(u-5))}return s},e.getPenaltyN2=function(n){const r=n.size;let s=0;for(let c=0;c=10&&(c===1488||c===93)&&s++,u=u<<1&2047|n.get(a,l),a>=10&&(u===1488||u===93)&&s++}return s*t.N3},e.getPenaltyN4=function(n){let r=0;const s=n.data.length;for(let u=0;u=0;){const s=r[0];for(let u=0;u0){const r=new Uint8Array(this.degree);return r.set(o,n),r}return o};var kt=st,Bt={},L={},ut={};ut.isValid=function(t){return!isNaN(t)&&t>=1&&t<=40};var S={};const At="[0-9]+",zt="[A-Z $%*+\\-./:]+";let H="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";H=H.replace(/u/g,"\\u");const Vt="(?:(?![A-Z0-9 $%*+\\-./:]|"+H+`)(?:.|[\r +import{e as bt}from"./encode-utf8-Cn5aGd7v.js";import{d as Pt}from"./dijkstrajs-D_NXgYpA.js";var O={},Rt=function(){return typeof Promise=="function"&&Promise.prototype&&Promise.prototype.then},dt={},N={};let it;const Lt=[0,26,44,70,100,134,172,196,242,292,346,404,466,532,581,655,733,815,901,991,1085,1156,1258,1364,1474,1588,1706,1828,1921,2051,2185,2323,2465,2611,2761,2876,3034,3196,3362,3532,3706];N.getSymbolSize=function(t){if(!t)throw new Error('"version" cannot be null or undefined');if(t<1||t>40)throw new Error('"version" should be in range from 1 to 40');return t*4+17};N.getSymbolTotalCodewords=function(t){return Lt[t]};N.getBCHDigit=function(e){let t=0;for(;e!==0;)t++,e>>>=1;return t};N.setToSJISFunction=function(t){if(typeof t!="function")throw new Error('"toSJISFunc" is not a valid function.');it=t};N.isKanjiModeEnabled=function(){return typeof it<"u"};N.toSJIS=function(t){return it(t)};var G={};(function(e){e.L={bit:1},e.M={bit:0},e.Q={bit:3},e.H={bit:2};function t(i){if(typeof i!="string")throw new Error("Param is not a string");switch(i.toLowerCase()){case"l":case"low":return e.L;case"m":case"medium":return e.M;case"q":case"quartile":return e.Q;case"h":case"high":return e.H;default:throw new Error("Unknown EC Level: "+i)}}e.isValid=function(o){return o&&typeof o.bit<"u"&&o.bit>=0&&o.bit<4},e.from=function(o,n){if(e.isValid(o))return o;try{return t(o)}catch{return n}}})(G);function ht(){this.buffer=[],this.length=0}ht.prototype={get:function(e){const t=Math.floor(e/8);return(this.buffer[t]>>>7-e%8&1)===1},put:function(e,t){for(let i=0;i>>t-i-1&1)===1)},getLengthInBits:function(){return this.length},putBit:function(e){const t=Math.floor(this.length/8);this.buffer.length<=t&&this.buffer.push(0),e&&(this.buffer[t]|=128>>>this.length%8),this.length++}};var Ut=ht;function K(e){if(!e||e<1)throw new Error("BitMatrix size must be defined and greater than 0");this.size=e,this.data=new Uint8Array(e*e),this.reservedBit=new Uint8Array(e*e)}K.prototype.set=function(e,t,i,o){const n=e*this.size+t;this.data[n]=i,o&&(this.reservedBit[n]=!0)};K.prototype.get=function(e,t){return this.data[e*this.size+t]};K.prototype.xor=function(e,t,i){this.data[e*this.size+t]^=i};K.prototype.isReserved=function(e,t){return this.reservedBit[e*this.size+t]};var Dt=K,wt={};(function(e){const t=N.getSymbolSize;e.getRowColCoords=function(o){if(o===1)return[];const n=Math.floor(o/7)+2,r=t(o),s=r===145?26:Math.ceil((r-13)/(2*n-2))*2,c=[r-7];for(let u=1;u=0&&n<=7},e.from=function(n){return e.isValid(n)?parseInt(n,10):void 0},e.getPenaltyN1=function(n){const r=n.size;let s=0,c=0,u=0,l=null,a=null;for(let A=0;A=5&&(s+=t.N1+(c-5)),l=g,c=1),g=n.get(w,A),g===a?u++:(u>=5&&(s+=t.N1+(u-5)),a=g,u=1)}c>=5&&(s+=t.N1+(c-5)),u>=5&&(s+=t.N1+(u-5))}return s},e.getPenaltyN2=function(n){const r=n.size;let s=0;for(let c=0;c=10&&(c===1488||c===93)&&s++,u=u<<1&2047|n.get(a,l),a>=10&&(u===1488||u===93)&&s++}return s*t.N3},e.getPenaltyN4=function(n){let r=0;const s=n.data.length;for(let u=0;u=0;){const s=r[0];for(let u=0;u0){const r=new Uint8Array(this.degree);return r.set(o,n),r}return o};var kt=st,Bt={},L={},ut={};ut.isValid=function(t){return!isNaN(t)&&t>=1&&t<=40};var S={};const At="[0-9]+",zt="[A-Z $%*+\\-./:]+";let H="(?:[u3000-u303F]|[u3040-u309F]|[u30A0-u30FF]|[uFF00-uFFEF]|[u4E00-u9FAF]|[u2605-u2606]|[u2190-u2195]|u203B|[u2010u2015u2018u2019u2025u2026u201Cu201Du2225u2260]|[u0391-u0451]|[u00A7u00A8u00B1u00B4u00D7u00F7])+";H=H.replace(/u/g,"\\u");const Vt="(?:(?![A-Z0-9 $%*+\\-./:]|"+H+`)(?:.|[\r ]))+`;S.KANJI=new RegExp(H,"g");S.BYTE_KANJI=new RegExp("[^A-Z0-9 $%*+\\-./:]+","g");S.BYTE=new RegExp(Vt,"g");S.NUMERIC=new RegExp(At,"g");S.ALPHANUMERIC=new RegExp(zt,"g");const Ht=new RegExp("^"+H+"$"),Kt=new RegExp("^"+At+"$"),Jt=new RegExp("^[A-Z0-9 $%*+\\-./:]+$");S.testKanji=function(t){return Ht.test(t)};S.testNumeric=function(t){return Kt.test(t)};S.testAlphanumeric=function(t){return Jt.test(t)};(function(e){const t=ut,i=S;e.NUMERIC={id:"Numeric",bit:1,ccBits:[10,12,14]},e.ALPHANUMERIC={id:"Alphanumeric",bit:2,ccBits:[9,11,13]},e.BYTE={id:"Byte",bit:4,ccBits:[8,16,16]},e.KANJI={id:"Kanji",bit:8,ccBits:[8,10,12]},e.MIXED={bit:-1},e.getCharCountIndicator=function(r,s){if(!r.ccBits)throw new Error("Invalid mode: "+r);if(!t.isValid(s))throw new Error("Invalid version: "+s);return s>=1&&s<10?r.ccBits[0]:s<27?r.ccBits[1]:r.ccBits[2]},e.getBestModeForData=function(r){return i.testNumeric(r)?e.NUMERIC:i.testAlphanumeric(r)?e.ALPHANUMERIC:i.testKanji(r)?e.KANJI:e.BYTE},e.toString=function(r){if(r&&r.id)return r.id;throw new Error("Invalid mode")},e.isValid=function(r){return r&&r.bit&&r.ccBits};function o(n){if(typeof n!="string")throw new Error("Param is not a string");switch(n.toLowerCase()){case"numeric":return e.NUMERIC;case"alphanumeric":return e.ALPHANUMERIC;case"kanji":return e.KANJI;case"byte":return e.BYTE;default:throw new Error("Unknown mode: "+n)}}e.from=function(r,s){if(e.isValid(r))return r;try{return o(r)}catch{return s}}})(L);(function(e){const t=N,i=j,o=G,n=L,r=ut,s=7973,c=t.getBCHDigit(s);function u(w,g,E){for(let C=1;C<=40;C++)if(g<=e.getCapacity(C,E,w))return C}function l(w,g){return n.getCharCountIndicator(w,g)+4}function a(w,g){let E=0;return w.forEach(function(C){const p=l(C.mode,g);E+=p+C.getBitsLength()}),E}function A(w,g){for(let E=1;E<=40;E++)if(a(w,E)<=e.getCapacity(E,g,n.MIXED))return E}e.from=function(g,E){return r.isValid(g)?parseInt(g,10):E},e.getCapacity=function(g,E,C){if(!r.isValid(g))throw new Error("Invalid QR Code version");typeof C>"u"&&(C=n.BYTE);const p=t.getSymbolTotalCodewords(g),h=i.getTotalCodewordsCount(g,E),m=(p-h)*8;if(C===n.MIXED)return m;const d=m-l(C,g);switch(C){case n.NUMERIC:return Math.floor(d/10*3);case n.ALPHANUMERIC:return Math.floor(d/11*2);case n.KANJI:return Math.floor(d/13);case n.BYTE:default:return Math.floor(d/8)}},e.getBestVersionForData=function(g,E){let C;const p=o.from(E,o.M);if(Array.isArray(g)){if(g.length>1)return A(g,p);if(g.length===0)return 1;C=g[0]}else C=g;return u(C.mode,C.getLength(),p)},e.getEncodedBits=function(g){if(!r.isValid(g)||g<7)throw new Error("Invalid QR Code version");let E=g<<12;for(;t.getBCHDigit(E)-c>=0;)E^=s<=0;)n^=pt<0&&(o=this.data.substr(i),n=parseInt(o,10),t.put(n,r*3+1))};var _t=U;const Ot=L,W=["0","1","2","3","4","5","6","7","8","9","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"," ","$","%","*","+","-",".","/",":"];function D(e){this.mode=Ot.ALPHANUMERIC,this.data=e}D.getBitsLength=function(t){return 11*Math.floor(t/2)+6*(t%2)};D.prototype.getLength=function(){return this.data.length};D.prototype.getBitsLength=function(){return D.getBitsLength(this.data.length)};D.prototype.write=function(t){let i;for(i=0;i+2<=this.data.length;i+=2){let o=W.indexOf(this.data[i])*45;o+=W.indexOf(this.data[i+1]),t.put(o,11)}this.data.length%2&&t.put(W.indexOf(this.data[i]),6)};var Gt=D;const jt=bt,vt=L;function F(e){this.mode=vt.BYTE,typeof e=="string"&&(e=jt(e)),this.data=new Uint8Array(e)}F.getBitsLength=function(t){return t*8};F.prototype.getLength=function(){return this.data.length};F.prototype.getBitsLength=function(){return F.getBitsLength(this.data.length)};F.prototype.write=function(e){for(let t=0,i=this.data.length;t=33088&&i<=40956)i-=33088;else if(i>=57408&&i<=60351)i-=49472;else throw new Error("Invalid SJIS character: "+this.data[t]+` Make sure your charset is UTF-8`);i=(i>>>8&255)*192+(i&255),e.put(i,13)}};var Zt=k;(function(e){const t=L,i=_t,o=Gt,n=Qt,r=Zt,s=S,c=N,u=Pt;function l(h){return unescape(encodeURIComponent(h)).length}function a(h,m,d){const f=[];let y;for(;(y=h.exec(d))!==null;)f.push({data:y[0],index:y.index,mode:m,length:y[0].length});return f}function A(h){const m=a(s.NUMERIC,t.NUMERIC,h),d=a(s.ALPHANUMERIC,t.ALPHANUMERIC,h);let f,y;return c.isKanjiModeEnabled()?(f=a(s.BYTE,t.BYTE,h),y=a(s.KANJI,t.KANJI,h)):(f=a(s.BYTE_KANJI,t.BYTE,h),y=[]),m.concat(d,f,y).sort(function(I,T){return I.index-T.index}).map(function(I){return{data:I.data,mode:I.mode,length:I.length}})}function w(h,m){switch(m){case t.NUMERIC:return i.getBitsLength(h);case t.ALPHANUMERIC:return o.getBitsLength(h);case t.KANJI:return r.getBitsLength(h);case t.BYTE:return n.getBitsLength(h)}}function g(h){return h.reduce(function(m,d){const f=m.length-1>=0?m[m.length-1]:null;return f&&f.mode===d.mode?(m[m.length-1].data+=d.data,m):(m.push(d),m)},[])}function E(h){const m=[];for(let d=0;d=0&&c<=6&&(u===0||u===6)||u>=0&&u<=6&&(c===0||c===6)||c>=2&&c<=4&&u>=2&&u<=4?e.set(r+c,s+u,!0,!0):e.set(r+c,s+u,!1,!0))}}function se(e){const t=e.size;for(let i=8;i>c&1)===1,e.set(n,r,s,!0),e.set(r,n,s,!0)}function x(e,t,i){const o=e.size,n=oe.getEncodedBits(t,i);let r,s;for(r=0;r<15;r++)s=(n>>r&1)===1,r<6?e.set(r,8,s,!0):r<8?e.set(r+1,8,s,!0):e.set(o-15+r,8,s,!0),r<8?e.set(8,o-r-1,s,!0):r<9?e.set(8,15-r-1+1,s,!0):e.set(8,15-r-1,s,!0);e.set(o-8,8,1,!0)}function le(e,t){const i=e.size;let o=-1,n=i-1,r=7,s=0;for(let c=i-1;c>0;c-=2)for(c===6&&c--;;){for(let u=0;u<2;u++)if(!e.isReserved(n,c-u)){let l=!1;s>>r&1)===1),e.set(n,c-u,l),r--,r===-1&&(s++,r=7)}if(n+=o,n<0||i<=n){n-=o,o=-o;break}}}function ae(e,t,i){const o=new Xt;i.forEach(function(u){o.put(u.mode.bit,4),o.put(u.getLength(),re.getCharCountIndicator(u.mode,e)),u.write(o)});const n=Q.getSymbolTotalCodewords(e),r=ot.getTotalCodewordsCount(e,t),s=(n-r)*8;for(o.getLengthInBits()+4<=s&&o.put(0,4);o.getLengthInBits()%8!==0;)o.putBit(0);const c=(s-o.getLengthInBits())/8;for(let u=0;un(...A.get(n))),d=[]}function G(n,...e){A.set(n,e),!d.includes(n)&&d.push(n)===1&&requestAnimationFrame(F)}function H(n,e){let{target:t}=n;for(;t;){if(t.dataset&&t.dataset[e]!==void 0)return!0;t=t.parentElement}return!1}function W(n){return n.composedPath()[0]||null}function R(n){if(typeof n=="number")return{"":n.toString()};const e={};return n.split(/ +/).forEach(t=>{if(t==="")return;const[r,s]=t.split(":");s===void 0?e[""]=r:e[r]=s}),e}function q(n,e){var t;if(n==null)return;const r=R(n);if(e===void 0)return r[""];if(typeof e=="string")return(t=r[e])!==null&&t!==void 0?t:r[""];if(Array.isArray(e)){for(let s=e.length-1;s>=0;--s){const u=e[s];if(u in r)return r[u]}return r[""]}else{let s,u=-1;return Object.keys(r).forEach(l=>{const g=Number(l);!Number.isNaN(g)&&e>=g&&g>=u&&(u=g,s=r[l])}),s}}function T(n){return typeof n=="string"?n.endsWith("px")?Number(n.slice(0,n.length-2)):Number(n):n}function _(n){if(n!=null)return typeof n=="number"?`${n}px`:n.endsWith("px")?n:`${n}px`}function B(n,e){const t=n.trim().split(/\s+/g),r={top:t[0]};switch(t.length){case 1:r.right=t[0],r.bottom=t[0],r.left=t[0];break;case 2:r.right=t[1],r.left=t[1],r.bottom=t[0];break;case 3:r.right=t[1],r.bottom=t[2],r.left=t[1];break;case 4:r.right=t[1],r.bottom=t[2],r.left=t[3];break;default:throw new Error("[seemly/getMargin]:"+n+" is not a valid value.")}return e===void 0?r:r[e]}function D(n,e){const[t,r]=n.split(" ");return e?e==="row"?t:r:{row:t,col:r||t}}const w={black:"#000",silver:"#C0C0C0",gray:"#808080",white:"#FFF",maroon:"#800000",red:"#F00",purple:"#800080",fuchsia:"#F0F",green:"#008000",lime:"#0F0",olive:"#808000",yellow:"#FF0",navy:"#000080",blue:"#00F",teal:"#008080",aqua:"#0FF",transparent:"#0000"},$="^\\s*",p="\\s*$",a="\\s*((\\.\\d+)|(\\d+(\\.\\d*)?))\\s*",o="([0-9A-Fa-f])",c="([0-9A-Fa-f]{2})",y=new RegExp(`${$}rgb\\s*\\(${a},${a},${a}\\)${p}`),E=new RegExp(`${$}rgba\\s*\\(${a},${a},${a},${a}\\)${p}`),N=new RegExp(`${$}#${o}${o}${o}${p}`),C=new RegExp(`${$}#${c}${c}${c}${p}`),M=new RegExp(`${$}#${o}${o}${o}${o}${p}`),I=new RegExp(`${$}#${c}${c}${c}${c}${p}`);function f(n){return parseInt(n,16)}function x(n){try{let e;if(e=C.exec(n))return[f(e[1]),f(e[2]),f(e[3]),1];if(e=y.exec(n))return[i(e[1]),i(e[5]),i(e[9]),1];if(e=E.exec(n))return[i(e[1]),i(e[5]),i(e[9]),h(e[13])];if(e=N.exec(n))return[f(e[1]+e[1]),f(e[2]+e[2]),f(e[3]+e[3]),1];if(e=I.exec(n))return[f(e[1]),f(e[2]),f(e[3]),h(f(e[4])/255)];if(e=M.exec(n))return[f(e[1]+e[1]),f(e[2]+e[2]),f(e[3]+e[3]),h(f(e[4]+e[4])/255)];if(n in w)return x(w[n]);throw new Error(`[seemly/rgba]: Invalid color value ${n}.`)}catch(e){throw e}}function j(n){return n>1?1:n<0?0:n}function b(n,e,t,r){return`rgba(${i(n)}, ${i(e)}, ${i(t)}, ${j(r)})`}function m(n,e,t,r,s){return i((n*e*(1-r)+t*r)/s)}function J(n,e){Array.isArray(n)||(n=x(n)),Array.isArray(e)||(e=x(e));const t=n[3],r=e[3],s=h(t+r-t*r);return b(m(n[0],t,e[0],r,s),m(n[1],t,e[1],r,s),m(n[2],t,e[2],r,s),s)}function P(n,e){const[t,r,s,u=1]=Array.isArray(n)?n:x(n);return e.alpha?b(t,r,s,e.alpha):b(t,r,s,u)}function Q(n,e){const[t,r,s,u=1]=Array.isArray(n)?n:x(n),{lightness:l=1,alpha:g=1}=e;return k([t*l,r*l,s*l,u*g])}function h(n){const e=Math.round(Number(n)*100)/100;return e>1?1:e<0?0:e}function i(n){const e=Math.round(Number(n));return e>255?255:e<0?0:e}function k(n){const[e,t,r]=n;return 3 in n?`rgba(${i(e)}, ${i(t)}, ${i(r)}, ${h(n[3])})`:`rgba(${i(e)}, ${i(t)}, ${i(r)}, 1)`}function U(n=8){return Math.random().toString(16).slice(2,2+n)}export{B as a,P as b,J as c,T as d,U as e,D as f,W as g,H as h,q as i,G as j,_ as p,x as r,Q as s}; +let d=[];const A=new WeakMap;function F(){d.forEach(n=>n(...A.get(n))),d=[]}function G(n,...e){A.set(n,e),!d.includes(n)&&d.push(n)===1&&requestAnimationFrame(F)}function H(n,e){let{target:t}=n;for(;t;){if(t.dataset&&t.dataset[e]!==void 0)return!0;t=t.parentElement}return!1}function W(n){return n.composedPath()[0]||null}function R(n){if(typeof n=="number")return{"":n.toString()};const e={};return n.split(/ +/).forEach(t=>{if(t==="")return;const[r,s]=t.split(":");s===void 0?e[""]=r:e[r]=s}),e}function q(n,e){var t;if(n==null)return;const r=R(n);if(e===void 0)return r[""];if(typeof e=="string")return(t=r[e])!==null&&t!==void 0?t:r[""];if(Array.isArray(e)){for(let s=e.length-1;s>=0;--s){const f=e[s];if(f in r)return r[f]}return r[""]}else{let s,f=-1;return Object.keys(r).forEach(l=>{const g=Number(l);!Number.isNaN(g)&&e>=g&&g>=f&&(f=g,s=r[l])}),s}}function T(n){return typeof n=="string"?n.endsWith("px")?Number(n.slice(0,n.length-2)):Number(n):n}function _(n){if(n!=null)return typeof n=="number"?`${n}px`:n.endsWith("px")?n:`${n}px`}function B(n,e){const t=n.trim().split(/\s+/g),r={top:t[0]};switch(t.length){case 1:r.right=t[0],r.bottom=t[0],r.left=t[0];break;case 2:r.right=t[1],r.left=t[1],r.bottom=t[0];break;case 3:r.right=t[1],r.bottom=t[2],r.left=t[1];break;case 4:r.right=t[1],r.bottom=t[2],r.left=t[3];break;default:throw new Error("[seemly/getMargin]:"+n+" is not a valid value.")}return e===void 0?r:r[e]}function D(n,e){const[t,r]=n.split(" ");return e?e==="row"?t:r:{row:t,col:r||t}}const w={black:"#000",silver:"#C0C0C0",gray:"#808080",white:"#FFF",maroon:"#800000",red:"#F00",purple:"#800080",fuchsia:"#F0F",green:"#008000",lime:"#0F0",olive:"#808000",yellow:"#FF0",navy:"#000080",blue:"#00F",teal:"#008080",aqua:"#0FF",transparent:"#0000"},$="^\\s*",p="\\s*$",a="\\s*((\\.\\d+)|(\\d+(\\.\\d*)?))\\s*",o="([0-9A-Fa-f])",c="([0-9A-Fa-f]{2})",y=new RegExp(`${$}rgb\\s*\\(${a},${a},${a}\\)${p}`),E=new RegExp(`${$}rgba\\s*\\(${a},${a},${a},${a}\\)${p}`),N=new RegExp(`${$}#${o}${o}${o}${p}`),C=new RegExp(`${$}#${c}${c}${c}${p}`),M=new RegExp(`${$}#${o}${o}${o}${o}${p}`),k=new RegExp(`${$}#${c}${c}${c}${c}${p}`);function u(n){return parseInt(n,16)}function x(n){try{let e;if(e=C.exec(n))return[u(e[1]),u(e[2]),u(e[3]),1];if(e=y.exec(n))return[i(e[1]),i(e[5]),i(e[9]),1];if(e=E.exec(n))return[i(e[1]),i(e[5]),i(e[9]),h(e[13])];if(e=N.exec(n))return[u(e[1]+e[1]),u(e[2]+e[2]),u(e[3]+e[3]),1];if(e=k.exec(n))return[u(e[1]),u(e[2]),u(e[3]),h(u(e[4])/255)];if(e=M.exec(n))return[u(e[1]+e[1]),u(e[2]+e[2]),u(e[3]+e[3]),h(u(e[4]+e[4])/255)];if(n in w)return x(w[n]);throw new Error(`[seemly/rgba]: Invalid color value ${n}.`)}catch(e){throw e}}function I(n){return n>1?1:n<0?0:n}function b(n,e,t,r){return`rgba(${i(n)}, ${i(e)}, ${i(t)}, ${I(r)})`}function m(n,e,t,r,s){return i((n*e*(1-r)+t*r)/s)}function J(n,e){Array.isArray(n)||(n=x(n)),Array.isArray(e)||(e=x(e));const t=n[3],r=e[3],s=h(t+r-t*r);return b(m(n[0],t,e[0],r,s),m(n[1],t,e[1],r,s),m(n[2],t,e[2],r,s),s)}function P(n,e){const[t,r,s,f=1]=Array.isArray(n)?n:x(n);return e.alpha?b(t,r,s,e.alpha):b(t,r,s,f)}function Q(n,e){const[t,r,s,f=1]=Array.isArray(n)?n:x(n),{lightness:l=1,alpha:g=1}=e;return j([t*l,r*l,s*l,f*g])}function h(n){const e=Math.round(Number(n)*100)/100;return e>1?1:e<0?0:e}function i(n){const e=Math.round(Number(n));return e>255?255:e<0?0:e}function j(n){const[e,t,r]=n;return 3 in n?`rgba(${i(e)}, ${i(t)}, ${i(r)}, ${h(n[3])})`:`rgba(${i(e)}, ${i(t)}, ${i(r)}, 1)`}function U(n=8){return Math.random().toString(16).slice(2,2+n)}function V(n,e){const t=[];for(let r=0;rM(r,n))}function F(e,n={}){const{preserveGroup:t=!1}=n,r=[],s=t?i=>{i.isLeaf||(r.push(i.key),o(i.children))}:i=>{i.isLeaf||(i.isGroup||r.push(i.key),o(i.children))};function o(i){i.forEach(s)}return o(e),r}function R(e,n){const{isLeaf:t}=e;return t!==void 0?t:!n(e)}function j(e){return e.children}function U(e){return e.key}function q(){return!1}function V(e,n){const{isLeaf:t}=e;return!(t===!1&&!Array.isArray(n(e)))}function W(e){return e.disabled===!0}function Z(e,n){return e.isLeaf===!1&&!Array.isArray(n(e))}function P(e){var n;return e==null?[]:Array.isArray(e)?e:(n=e.checkedKeys)!==null&&n!==void 0?n:[]}function x(e){var n;return e==null||Array.isArray(e)?[]:(n=e.indeterminateKeys)!==null&&n!==void 0?n:[]}function z(e,n){const t=new Set(e);return n.forEach(r=>{t.has(r)||t.add(r)}),Array.from(t)}function B(e,n){const t=new Set(e);return n.forEach(r=>{t.has(r)&&t.delete(r)}),Array.from(t)}function H(e){return(e==null?void 0:e.type)==="group"}function le(e){const n=new Map;return e.forEach((t,r)=>{n.set(t.key,r)}),t=>{var r;return(r=n.get(t))!==null&&r!==void 0?r:null}}class J extends Error{constructor(){super(),this.message="SubtreeNotLoadedError: checking a subtree whose required nodes are not fully loaded."}}function Q(e,n,t,r){return w(n.concat(e),t,r,!1)}function X(e,n){const t=new Set;return e.forEach(r=>{const s=n.treeNodeMap.get(r);if(s!==void 0){let o=s.parent;for(;o!==null&&!(o.disabled||t.has(o.key));)t.add(o.key),o=o.parent}}),t}function Y(e,n,t,r){const s=w(n,t,r,!1),o=w(e,t,r,!0),i=X(e,t),d=[];return s.forEach(f=>{(o.has(f)||i.has(f))&&d.push(f)}),d.forEach(f=>s.delete(f)),s}function E(e,n){const{checkedKeys:t,keysToCheck:r,keysToUncheck:s,indeterminateKeys:o,cascade:i,leafOnly:d,checkStrategy:f,allowNotLoaded:u}=e;if(!i)return r!==void 0?{checkedKeys:z(t,r),indeterminateKeys:Array.from(o)}:s!==void 0?{checkedKeys:B(t,s),indeterminateKeys:Array.from(o)}:{checkedKeys:Array.from(t),indeterminateKeys:Array.from(o)};const{levelTreeNodeMap:h}=n;let c;s!==void 0?c=Y(s,t,n,u):r!==void 0?c=Q(r,t,n,u):c=w(t,n,u,!1);const v=f==="parent",N=f==="child"||d,g=c,A=new Set,C=Math.max.apply(null,Array.from(h.keys()));for(let b=C;b>=0;b-=1){const L=b===0,S=h.get(b);for(const a of S){if(a.isLeaf)continue;const{key:l,shallowLoaded:p}=a;if(N&&p&&a.children.forEach(y=>{!y.disabled&&!y.isLeaf&&y.shallowLoaded&&g.has(y.key)&&g.delete(y.key)}),a.disabled||!p)continue;let m=!0,k=!1,K=!0;for(const y of a.children){const O=y.key;if(!y.disabled){if(K&&(K=!1),g.has(O))k=!0;else if(A.has(O)){k=!0,m=!1;break}else if(m=!1,k)break}}m&&!K?(v&&a.children.forEach(y=>{!y.disabled&&g.has(y.key)&&g.delete(y.key)}),g.add(l)):k&&A.add(l),L&&N&&g.has(l)&&g.delete(l)}}return{checkedKeys:Array.from(g),indeterminateKeys:Array.from(A)}}function w(e,n,t,r){const{treeNodeMap:s,getChildren:o}=n,i=new Set,d=new Set(e);return e.forEach(f=>{const u=s.get(f);u!==void 0&&M(u,h=>{if(h.disabled)return G.STOP;const{key:c}=h;if(!i.has(c)&&(i.add(c),d.add(c),Z(h.rawNode,o))){if(r)return G.STOP;if(!t)throw new J}})}),d}function $(e,{includeGroup:n=!1,includeSelf:t=!0},r){var s;const o=r.treeNodeMap;let i=e==null?null:(s=o.get(e))!==null&&s!==void 0?s:null;const d={keyPath:[],treeNodePath:[],treeNode:i};if(i!=null&&i.ignored)return d.treeNode=null,d;for(;i;)!i.ignored&&(n||!i.isGroup)&&d.treeNodePath.push(i),i=i.parent;return d.treeNodePath.reverse(),t||d.treeNodePath.pop(),d.keyPath=d.treeNodePath.map(f=>f.key),d}function ee(e){if(e.length===0)return null;const n=e[0];return n.isGroup||n.ignored||n.disabled?n.getNext():n}function te(e,n){const t=e.siblings,r=t.length,{index:s}=e;return n?t[(s+1)%r]:s===t.length-1?null:t[s+1]}function _(e,n,{loop:t=!1,includeDisabled:r=!1}={}){const s=n==="prev"?ne:te,o={reverse:n==="prev"};let i=!1,d=null;function f(u){if(u!==null){if(u===e){if(!i)i=!0;else if(!e.disabled&&!e.isGroup){d=e;return}}else if((!u.disabled||r)&&!u.ignored&&!u.isGroup){d=u;return}if(u.isGroup){const h=T(u,o);h!==null?d=h:f(s(u,t))}else{const h=s(u,!1);if(h!==null)f(h);else{const c=re(u);c!=null&&c.isGroup?f(s(c,t)):t&&f(s(u,!0))}}}}return f(e),d}function ne(e,n){const t=e.siblings,r=t.length,{index:s}=e;return n?t[(s-1+r)%r]:s===0?null:t[s-1]}function re(e){return e.parent}function T(e,n={}){const{reverse:t=!1}=n,{children:r}=e;if(r){const{length:s}=r,o=t?s-1:0,i=t?-1:s,d=t?-1:1;for(let f=o;f!==i;f+=d){const u=r[f];if(!u.disabled&&!u.ignored)if(u.isGroup){const h=T(u,n);if(h!==null)return h}else return u}}return null}const ie={getChild(){return this.ignored?null:T(this)},getParent(){const{parent:e}=this;return e!=null&&e.isGroup?e.getParent():e},getNext(e={}){return _(this,"next",e)},getPrev(e={}){return _(this,"prev",e)}};function se(e,n){const t=n?new Set(n):void 0,r=[];function s(o){o.forEach(i=>{r.push(i),!(i.isLeaf||!i.children||i.ignored)&&(i.isGroup||t===void 0||t.has(i.key))&&s(i.children)})}return s(e),r}function ae(e,n){const t=e.key;for(;n;){if(n.key===t)return!0;n=n.parent}return!1}function D(e,n,t,r,s,o=null,i=0){const d=[];return e.forEach((f,u)=>{var h;const c=Object.create(r);if(c.rawNode=f,c.siblings=d,c.level=i,c.index=u,c.isFirstChild=u===0,c.isLastChild=u+1===e.length,c.parent=o,!c.ignored){const v=s(f);Array.isArray(v)&&(c.children=D(v,n,t,r,s,c,i+1))}d.push(c),n.set(c.key,c),t.has(i)||t.set(i,[]),(h=t.get(i))===null||h===void 0||h.push(c)}),d}function ue(e,n={}){var t;const r=new Map,s=new Map,{getDisabled:o=W,getIgnored:i=q,getIsGroup:d=H,getKey:f=U}=n,u=(t=n.getChildren)!==null&&t!==void 0?t:j,h=n.ignoreEmptyChildren?a=>{const l=u(a);return Array.isArray(l)?l.length?l:null:l}:u,c=Object.assign({get key(){return f(this.rawNode)},get disabled(){return o(this.rawNode)},get isGroup(){return d(this.rawNode)},get isLeaf(){return R(this.rawNode,h)},get shallowLoaded(){return V(this.rawNode,h)},get ignored(){return i(this.rawNode)},contains(a){return ae(this,a)}},ie),v=D(e,r,s,c,h);function N(a){if(a==null)return null;const l=r.get(a);return l&&!l.isGroup&&!l.ignored?l:null}function g(a){if(a==null)return null;const l=r.get(a);return l&&!l.ignored?l:null}function A(a,l){const p=g(a);return p?p.getPrev(l):null}function C(a,l){const p=g(a);return p?p.getNext(l):null}function b(a){const l=g(a);return l?l.getParent():null}function L(a){const l=g(a);return l?l.getChild():null}const S={treeNodes:v,treeNodeMap:r,levelTreeNodeMap:s,maxLevel:Math.max(...s.keys()),getChildren:h,getFlattenedNodes(a){return se(v,a)},getNode:N,getPrev:A,getNext:C,getParent:b,getChild:L,getFirstAvailableNode(){return ee(v)},getPath(a,l={}){return $(a,l,S)},getCheckedKeys(a,l={}){const{cascade:p=!0,leafOnly:m=!1,checkStrategy:k="all",allowNotLoaded:K=!1}=l;return E({checkedKeys:P(a),indeterminateKeys:x(a),cascade:p,leafOnly:m,checkStrategy:k,allowNotLoaded:K},S)},check(a,l,p={}){const{cascade:m=!0,leafOnly:k=!1,checkStrategy:K="all",allowNotLoaded:y=!1}=p;return E({checkedKeys:P(l),indeterminateKeys:x(l),keysToCheck:a==null?[]:I(a),cascade:m,leafOnly:k,checkStrategy:K,allowNotLoaded:y},S)},uncheck(a,l,p={}){const{cascade:m=!0,leafOnly:k=!1,checkStrategy:K="all",allowNotLoaded:y=!1}=p;return E({checkedKeys:P(l),indeterminateKeys:x(l),keysToUncheck:a==null?[]:I(a),cascade:m,leafOnly:k,checkStrategy:K,allowNotLoaded:y},S)},getNonLeafKeys(a={}){return F(v,a)}};return S}export{ue as a,le as c}; +function I(e){return Array.isArray(e)?e:[e]}const G={STOP:"STOP"};function M(e,n){const t=n(e);e.children!==void 0&&t!==G.STOP&&e.children.forEach(r=>M(r,n))}function F(e,n={}){const{preserveGroup:t=!1}=n,r=[],s=t?i=>{i.isLeaf||(r.push(i.key),u(i.children))}:i=>{i.isLeaf||(i.isGroup||r.push(i.key),u(i.children))};function u(i){i.forEach(s)}return u(e),r}function R(e,n){const{isLeaf:t}=e;return t!==void 0?t:!n(e)}function j(e){return e.children}function U(e){return e.key}function q(){return!1}function V(e,n){const{isLeaf:t}=e;return!(t===!1&&!Array.isArray(n(e)))}function W(e){return e.disabled===!0}function Z(e,n){return e.isLeaf===!1&&!Array.isArray(n(e))}function P(e){var n;return e==null?[]:Array.isArray(e)?e:(n=e.checkedKeys)!==null&&n!==void 0?n:[]}function x(e){var n;return e==null||Array.isArray(e)?[]:(n=e.indeterminateKeys)!==null&&n!==void 0?n:[]}function z(e,n){const t=new Set(e);return n.forEach(r=>{t.has(r)||t.add(r)}),Array.from(t)}function B(e,n){const t=new Set(e);return n.forEach(r=>{t.has(r)&&t.delete(r)}),Array.from(t)}function H(e){return(e==null?void 0:e.type)==="group"}function le(e){const n=new Map;return e.forEach((t,r)=>{n.set(t.key,r)}),t=>{var r;return(r=n.get(t))!==null&&r!==void 0?r:null}}class J extends Error{constructor(){super(),this.message="SubtreeNotLoadedError: checking a subtree whose required nodes are not fully loaded."}}function Q(e,n,t,r){return w(n.concat(e),t,r,!1)}function X(e,n){const t=new Set;return e.forEach(r=>{const s=n.treeNodeMap.get(r);if(s!==void 0){let u=s.parent;for(;u!==null&&!(u.disabled||t.has(u.key));)t.add(u.key),u=u.parent}}),t}function Y(e,n,t,r){const s=w(n,t,r,!1),u=w(e,t,r,!0),i=X(e,t),d=[];return s.forEach(f=>{(u.has(f)||i.has(f))&&d.push(f)}),d.forEach(f=>s.delete(f)),s}function E(e,n){const{checkedKeys:t,keysToCheck:r,keysToUncheck:s,indeterminateKeys:u,cascade:i,leafOnly:d,checkStrategy:f,allowNotLoaded:o}=e;if(!i)return r!==void 0?{checkedKeys:z(t,r),indeterminateKeys:Array.from(u)}:s!==void 0?{checkedKeys:B(t,s),indeterminateKeys:Array.from(u)}:{checkedKeys:Array.from(t),indeterminateKeys:Array.from(u)};const{levelTreeNodeMap:h}=n;let c;s!==void 0?c=Y(s,t,n,o):r!==void 0?c=Q(r,t,n,o):c=w(t,n,o,!1);const v=f==="parent",N=f==="child"||d,g=c,A=new Set,C=Math.max.apply(null,Array.from(h.keys()));for(let b=C;b>=0;b-=1){const L=b===0,S=h.get(b);for(const a of S){if(a.isLeaf)continue;const{key:l,shallowLoaded:p}=a;if(N&&p&&a.children.forEach(y=>{!y.disabled&&!y.isLeaf&&y.shallowLoaded&&g.has(y.key)&&g.delete(y.key)}),a.disabled||!p)continue;let m=!0,k=!1,K=!0;for(const y of a.children){const O=y.key;if(!y.disabled){if(K&&(K=!1),g.has(O))k=!0;else if(A.has(O)){k=!0,m=!1;break}else if(m=!1,k)break}}m&&!K?(v&&a.children.forEach(y=>{!y.disabled&&g.has(y.key)&&g.delete(y.key)}),g.add(l)):k&&A.add(l),L&&N&&g.has(l)&&g.delete(l)}}return{checkedKeys:Array.from(g),indeterminateKeys:Array.from(A)}}function w(e,n,t,r){const{treeNodeMap:s,getChildren:u}=n,i=new Set,d=new Set(e);return e.forEach(f=>{const o=s.get(f);o!==void 0&&M(o,h=>{if(h.disabled)return G.STOP;const{key:c}=h;if(!i.has(c)&&(i.add(c),d.add(c),Z(h.rawNode,u))){if(r)return G.STOP;if(!t)throw new J}})}),d}function $(e,{includeGroup:n=!1,includeSelf:t=!0},r){var s;const u=r.treeNodeMap;let i=e==null?null:(s=u.get(e))!==null&&s!==void 0?s:null;const d={keyPath:[],treeNodePath:[],treeNode:i};if(i!=null&&i.ignored)return d.treeNode=null,d;for(;i;)!i.ignored&&(n||!i.isGroup)&&d.treeNodePath.push(i),i=i.parent;return d.treeNodePath.reverse(),t||d.treeNodePath.pop(),d.keyPath=d.treeNodePath.map(f=>f.key),d}function ee(e){if(e.length===0)return null;const n=e[0];return n.isGroup||n.ignored||n.disabled?n.getNext():n}function te(e,n){const t=e.siblings,r=t.length,{index:s}=e;return n?t[(s+1)%r]:s===t.length-1?null:t[s+1]}function _(e,n,{loop:t=!1,includeDisabled:r=!1}={}){const s=n==="prev"?ne:te,u={reverse:n==="prev"};let i=!1,d=null;function f(o){if(o!==null){if(o===e){if(!i)i=!0;else if(!e.disabled&&!e.isGroup){d=e;return}}else if((!o.disabled||r)&&!o.ignored&&!o.isGroup){d=o;return}if(o.isGroup){const h=T(o,u);h!==null?d=h:f(s(o,t))}else{const h=s(o,!1);if(h!==null)f(h);else{const c=re(o);c!=null&&c.isGroup?f(s(c,t)):t&&f(s(o,!0))}}}}return f(e),d}function ne(e,n){const t=e.siblings,r=t.length,{index:s}=e;return n?t[(s-1+r)%r]:s===0?null:t[s-1]}function re(e){return e.parent}function T(e,n={}){const{reverse:t=!1}=n,{children:r}=e;if(r){const{length:s}=r,u=t?s-1:0,i=t?-1:s,d=t?-1:1;for(let f=u;f!==i;f+=d){const o=r[f];if(!o.disabled&&!o.ignored)if(o.isGroup){const h=T(o,n);if(h!==null)return h}else return o}}return null}const ie={getChild(){return this.ignored?null:T(this)},getParent(){const{parent:e}=this;return e!=null&&e.isGroup?e.getParent():e},getNext(e={}){return _(this,"next",e)},getPrev(e={}){return _(this,"prev",e)}};function se(e,n){const t=n?new Set(n):void 0,r=[];function s(u){u.forEach(i=>{r.push(i),!(i.isLeaf||!i.children||i.ignored)&&(i.isGroup||t===void 0||t.has(i.key))&&s(i.children)})}return s(e),r}function ae(e,n){const t=e.key;for(;n;){if(n.key===t)return!0;n=n.parent}return!1}function D(e,n,t,r,s,u=null,i=0){const d=[];return e.forEach((f,o)=>{var h;const c=Object.create(r);if(c.rawNode=f,c.siblings=d,c.level=i,c.index=o,c.isFirstChild=o===0,c.isLastChild=o+1===e.length,c.parent=u,!c.ignored){const v=s(f);Array.isArray(v)&&(c.children=D(v,n,t,r,s,c,i+1))}d.push(c),n.set(c.key,c),t.has(i)||t.set(i,[]),(h=t.get(i))===null||h===void 0||h.push(c)}),d}function oe(e,n={}){var t;const r=new Map,s=new Map,{getDisabled:u=W,getIgnored:i=q,getIsGroup:d=H,getKey:f=U}=n,o=(t=n.getChildren)!==null&&t!==void 0?t:j,h=n.ignoreEmptyChildren?a=>{const l=o(a);return Array.isArray(l)?l.length?l:null:l}:o,c=Object.assign({get key(){return f(this.rawNode)},get disabled(){return u(this.rawNode)},get isGroup(){return d(this.rawNode)},get isLeaf(){return R(this.rawNode,h)},get shallowLoaded(){return V(this.rawNode,h)},get ignored(){return i(this.rawNode)},contains(a){return ae(this,a)}},ie),v=D(e,r,s,c,h);function N(a){if(a==null)return null;const l=r.get(a);return l&&!l.isGroup&&!l.ignored?l:null}function g(a){if(a==null)return null;const l=r.get(a);return l&&!l.ignored?l:null}function A(a,l){const p=g(a);return p?p.getPrev(l):null}function C(a,l){const p=g(a);return p?p.getNext(l):null}function b(a){const l=g(a);return l?l.getParent():null}function L(a){const l=g(a);return l?l.getChild():null}const S={treeNodes:v,treeNodeMap:r,levelTreeNodeMap:s,maxLevel:Math.max(...s.keys()),getChildren:h,getFlattenedNodes(a){return se(v,a)},getNode:N,getPrev:A,getNext:C,getParent:b,getChild:L,getFirstAvailableNode(){return ee(v)},getPath(a,l={}){return $(a,l,S)},getCheckedKeys(a,l={}){const{cascade:p=!0,leafOnly:m=!1,checkStrategy:k="all",allowNotLoaded:K=!1}=l;return E({checkedKeys:P(a),indeterminateKeys:x(a),cascade:p,leafOnly:m,checkStrategy:k,allowNotLoaded:K},S)},check(a,l,p={}){const{cascade:m=!0,leafOnly:k=!1,checkStrategy:K="all",allowNotLoaded:y=!1}=p;return E({checkedKeys:P(l),indeterminateKeys:x(l),keysToCheck:a==null?[]:I(a),cascade:m,leafOnly:k,checkStrategy:K,allowNotLoaded:y},S)},uncheck(a,l,p={}){const{cascade:m=!0,leafOnly:k=!1,checkStrategy:K="all",allowNotLoaded:y=!1}=p;return E({checkedKeys:P(l),indeterminateKeys:x(l),keysToUncheck:a==null?[]:I(a),cascade:m,leafOnly:k,checkStrategy:K,allowNotLoaded:y},S)},getNonLeafKeys(a={}){return F(v,a)}};return S}export{oe as a,le as c}; diff --git a/web/dist/assets/v3-infinite-loading-2c58ec2f.js b/web/dist/assets/v3-infinite-loading-2c58ec2f.js deleted file mode 100644 index 778c100c..00000000 --- a/web/dist/assets/v3-infinite-loading-2c58ec2f.js +++ /dev/null @@ -1 +0,0 @@ -import{d as L,H as v,_ as $,E as C,b as H,V as D,e as w,f as E,O as N,D as O,j as i,v as u,k as V,x as g,Y as y,n as h,$ as M,a0 as R}from"./@vue-a481fc63.js";function T(e,o){const n=e.getBoundingClientRect();if(!o)return n.top>=0&&n.bottom<=window.innerHeight;const t=o.getBoundingClientRect();return n.top>=t.top&&n.bottom<=t.bottom}async function j(e){return await h(),e.value instanceof HTMLElement?e.value:e.value?document.querySelector(e.value):null}function x(e){let o=`0px 0px ${e.distance}px 0px`;e.top&&(o=`${e.distance}px 0px 0px 0px`);const n=new IntersectionObserver(t=>{t[0].isIntersecting&&(e.firstload&&e.emit(),e.firstload=!0)},{root:e.parentEl,rootMargin:o});return n.observe(e.infiniteLoading.value),n}const k=(e,o)=>{const n=e.__vccOpts||e;for(const[t,c]of o)n[t]=c;return n},q={},U=e=>(M("data-v-d3e37633"),e=e(),R(),e),z={class:"container"},A=U(()=>i("div",{class:"spinner"},null,-1)),F=[A];function G(e,o){return w(),E("div",z,F)}const J=k(q,[["render",G],["__scopeId","data-v-d3e37633"]]),K={class:"state-error"},P=L({__name:"InfiniteLoading",props:{top:{type:Boolean,default:!1},target:{},distance:{default:0},identifier:{},firstload:{type:Boolean,default:!0},slots:{}},emits:["infinite"],setup(e,{emit:o}){const n=e;let t=null,c=0;const d=v(null),s=v(""),{top:p,firstload:_,distance:I}=n,{identifier:b,target:B}=$(n),a={infiniteLoading:d,top:p,firstload:_,distance:I,parentEl:null,emit(){c=(a.parentEl||document.documentElement).scrollHeight,m.loading(),o("infinite",m)}},m={loading(){s.value="loading"},async loaded(){s.value="loaded";const r=a.parentEl||document.documentElement;await h(),p&&(r.scrollTop=r.scrollHeight-c),T(d.value,a.parentEl)&&a.emit()},complete(){s.value="complete",t==null||t.disconnect()},error(){s.value="error"}};return C(b,()=>{t==null||t.disconnect(),t=x(a)}),H(async()=>{a.parentEl=await j(B),t=x(a)}),D(()=>{t==null||t.disconnect()}),(r,f)=>(w(),E("div",{ref_key:"infiniteLoading",ref:d,style:{"min-height":"1px"}},[N(i("div",null,[u(r.$slots,"spinner",{},()=>[V(J)],!0)],512),[[O,s.value=="loading"]]),s.value=="complete"?u(r.$slots,"complete",{key:0},()=>{var l;return[i("span",null,g(((l=r.slots)==null?void 0:l.complete)||"No more results!"),1)]},!0):y("",!0),s.value=="error"?u(r.$slots,"error",{key:1,retry:a.emit},()=>{var l;return[i("span",K,[i("span",null,g(((l=r.slots)==null?void 0:l.error)||"Oops something went wrong!"),1),i("button",{class:"retry",onClick:f[0]||(f[0]=(...S)=>a.emit&&a.emit(...S))},"retry")])]},!0):y("",!0)],512))}}),Y=k(P,[["__scopeId","data-v-a7077831"]]);export{Y as W}; diff --git a/web/dist/assets/v3-infinite-loading-1ff9ffe7.css b/web/dist/assets/v3-infinite-loading-BnjmmxFu.css similarity index 100% rename from web/dist/assets/v3-infinite-loading-1ff9ffe7.css rename to web/dist/assets/v3-infinite-loading-BnjmmxFu.css diff --git a/web/dist/assets/v3-infinite-loading-DK6TzcZc.js b/web/dist/assets/v3-infinite-loading-DK6TzcZc.js new file mode 100644 index 00000000..2766d499 --- /dev/null +++ b/web/dist/assets/v3-infinite-loading-DK6TzcZc.js @@ -0,0 +1 @@ +import{d as L,H as v,$,E as C,b as H,W as D,e as w,f as E,P as N,D as M,j as s,v as u,k as O,x as g,Z as y,n as h,a0 as R,a1 as T}from"./@vue-CQsYufSu.js";function V(e,o){const n=e.getBoundingClientRect();if(!o)return n.top>=0&&n.bottom<=window.innerHeight;const t=o.getBoundingClientRect();return n.top>=t.top&&n.bottom<=t.bottom}async function j(e){return await h(),e.value instanceof HTMLElement?e.value:e.value?document.querySelector(e.value):null}function x(e){let o=`0px 0px ${e.distance}px 0px`;e.top&&(o=`${e.distance}px 0px 0px 0px`);const n=new IntersectionObserver(t=>{t[0].isIntersecting&&(e.firstload&&e.emit(),e.firstload=!0)},{root:e.parentEl,rootMargin:o});return n.observe(e.infiniteLoading.value),n}const k=(e,o)=>{const n=e.__vccOpts||e;for(const[t,c]of o)n[t]=c;return n},q={},P=e=>(R("data-v-d3e37633"),e=e(),T(),e),U={class:"container"},W=P(()=>s("div",{class:"spinner"},null,-1)),z=[W];function A(e,o){return w(),E("div",U,z)}const F=k(q,[["render",A],["__scopeId","data-v-d3e37633"]]),G={class:"state-error"},J=L({__name:"InfiniteLoading",props:{top:{type:Boolean,default:!1},target:{},distance:{default:0},identifier:{},firstload:{type:Boolean,default:!0},slots:{}},emits:["infinite"],setup(e,{emit:o}){const n=e;let t=null,c=0;const d=v(null),i=v(""),{top:p,firstload:I,distance:_}=n,{identifier:b,target:B}=$(n),a={infiniteLoading:d,top:p,firstload:I,distance:_,parentEl:null,emit(){c=(a.parentEl||document.documentElement).scrollHeight,m.loading(),o("infinite",m)}},m={loading(){i.value="loading"},async loaded(){i.value="loaded";const r=a.parentEl||document.documentElement;await h(),p&&(r.scrollTop=r.scrollHeight-c),V(d.value,a.parentEl)&&a.emit()},complete(){i.value="complete",t==null||t.disconnect()},error(){i.value="error"}};return C(b,()=>{t==null||t.disconnect(),t=x(a)}),H(async()=>{a.parentEl=await j(B),t=x(a)}),D(()=>{t==null||t.disconnect()}),(r,f)=>(w(),E("div",{ref_key:"infiniteLoading",ref:d,style:{"min-height":"1px"}},[N(s("div",null,[u(r.$slots,"spinner",{},()=>[O(F)],!0)],512),[[M,i.value=="loading"]]),i.value=="complete"?u(r.$slots,"complete",{key:0},()=>{var l;return[s("span",null,g(((l=r.slots)==null?void 0:l.complete)||"No more results!"),1)]},!0):y("",!0),i.value=="error"?u(r.$slots,"error",{key:1,retry:a.emit},()=>{var l;return[s("span",G,[s("span",null,g(((l=r.slots)==null?void 0:l.error)||"Oops something went wrong!"),1),s("button",{class:"retry",onClick:f[0]||(f[0]=(...S)=>a.emit&&a.emit(...S))},"retry")])]},!0):y("",!0)],512))}}),Z=k(J,[["__scopeId","data-v-a7077831"]]);export{Z as W}; diff --git a/web/dist/assets/vdirs-b0483831.js b/web/dist/assets/vdirs-DL8EOfHr.js similarity index 97% rename from web/dist/assets/vdirs-b0483831.js rename to web/dist/assets/vdirs-DL8EOfHr.js index 02dd9f6e..1ffaeaeb 100644 --- a/web/dist/assets/vdirs-b0483831.js +++ b/web/dist/assets/vdirs-DL8EOfHr.js @@ -1 +1 @@ -import{o as c,a as u}from"./evtd-b614532e.js";const i="@@mmoContext",x={mounted(n,{value:e}){n[i]={handler:void 0},typeof e=="function"&&(n[i].handler=e,c("mousemoveoutside",n,e))},updated(n,{value:e}){const t=n[i];typeof e=="function"?t.handler?t.handler!==e&&(u("mousemoveoutside",n,t.handler),t.handler=e,c("mousemoveoutside",n,e)):(n[i].handler=e,c("mousemoveoutside",n,e)):t.handler&&(u("mousemoveoutside",n,t.handler),t.handler=void 0)},unmounted(n){const{handler:e}=n[i];e&&u("mousemoveoutside",n,e),n[i].handler=void 0}},Z=x,o="@@coContext",f={mounted(n,{value:e,modifiers:t}){n[o]={handler:void 0},typeof e=="function"&&(n[o].handler=e,c("clickoutside",n,e,{capture:t.capture}))},updated(n,{value:e,modifiers:t}){const d=n[o];typeof e=="function"?d.handler?d.handler!==e&&(u("clickoutside",n,d.handler,{capture:t.capture}),d.handler=e,c("clickoutside",n,e,{capture:t.capture})):(n[o].handler=e,c("clickoutside",n,e,{capture:t.capture})):d.handler&&(u("clickoutside",n,d.handler,{capture:t.capture}),d.handler=void 0)},unmounted(n,{modifiers:e}){const{handler:t}=n[o];t&&u("clickoutside",n,t,{capture:e.capture}),n[o].handler=void 0}},z=f;function m(n,e){console.error(`[vdirs/${n}]: ${e}`)}class l{constructor(){this.elementZIndex=new Map,this.nextZIndex=2e3}get elementCount(){return this.elementZIndex.size}ensureZIndex(e,t){const{elementZIndex:d}=this;if(t!==void 0){e.style.zIndex=`${t}`,d.delete(e);return}const{nextZIndex:s}=this;d.has(e)&&d.get(e)+1===this.nextZIndex||(e.style.zIndex=`${s}`,d.set(e,s),this.nextZIndex=s+1,this.squashState())}unregister(e,t){const{elementZIndex:d}=this;d.has(e)?d.delete(e):t===void 0&&m("z-index-manager/unregister-element","Element not found when unregistering."),this.squashState()}squashState(){const{elementCount:e}=this;e||(this.nextZIndex=2e3),this.nextZIndex-e>2500&&this.rearrange()}rearrange(){const e=Array.from(this.elementZIndex.entries());e.sort((t,d)=>t[1]-d[1]),this.nextZIndex=2e3,e.forEach(t=>{const d=t[0],s=this.nextZIndex++;`${s}`!==d.style.zIndex&&(d.style.zIndex=`${s}`)})}}const a=new l,r="@@ziContext",I={mounted(n,e){const{value:t={}}=e,{zIndex:d,enabled:s}=t;n[r]={enabled:!!s,initialized:!1},s&&(a.ensureZIndex(n,d),n[r].initialized=!0)},updated(n,e){const{value:t={}}=e,{zIndex:d,enabled:s}=t,h=n[r].enabled;s&&!h&&(a.ensureZIndex(n,d),n[r].initialized=!0),n[r].enabled=!!s},unmounted(n,e){if(!n[r].initialized)return;const{value:t={}}=e,{zIndex:d}=t;a.unregister(n,d)}},g=I;export{z as c,Z as m,g as z}; +import{o as c,a as u}from"./evtd-CI_DDEu_.js";const i="@@mmoContext",x={mounted(n,{value:e}){n[i]={handler:void 0},typeof e=="function"&&(n[i].handler=e,c("mousemoveoutside",n,e))},updated(n,{value:e}){const t=n[i];typeof e=="function"?t.handler?t.handler!==e&&(u("mousemoveoutside",n,t.handler),t.handler=e,c("mousemoveoutside",n,e)):(n[i].handler=e,c("mousemoveoutside",n,e)):t.handler&&(u("mousemoveoutside",n,t.handler),t.handler=void 0)},unmounted(n){const{handler:e}=n[i];e&&u("mousemoveoutside",n,e),n[i].handler=void 0}},Z=x,o="@@coContext",f={mounted(n,{value:e,modifiers:t}){n[o]={handler:void 0},typeof e=="function"&&(n[o].handler=e,c("clickoutside",n,e,{capture:t.capture}))},updated(n,{value:e,modifiers:t}){const d=n[o];typeof e=="function"?d.handler?d.handler!==e&&(u("clickoutside",n,d.handler,{capture:t.capture}),d.handler=e,c("clickoutside",n,e,{capture:t.capture})):(n[o].handler=e,c("clickoutside",n,e,{capture:t.capture})):d.handler&&(u("clickoutside",n,d.handler,{capture:t.capture}),d.handler=void 0)},unmounted(n,{modifiers:e}){const{handler:t}=n[o];t&&u("clickoutside",n,t,{capture:e.capture}),n[o].handler=void 0}},z=f;function m(n,e){console.error(`[vdirs/${n}]: ${e}`)}class l{constructor(){this.elementZIndex=new Map,this.nextZIndex=2e3}get elementCount(){return this.elementZIndex.size}ensureZIndex(e,t){const{elementZIndex:d}=this;if(t!==void 0){e.style.zIndex=`${t}`,d.delete(e);return}const{nextZIndex:s}=this;d.has(e)&&d.get(e)+1===this.nextZIndex||(e.style.zIndex=`${s}`,d.set(e,s),this.nextZIndex=s+1,this.squashState())}unregister(e,t){const{elementZIndex:d}=this;d.has(e)?d.delete(e):t===void 0&&m("z-index-manager/unregister-element","Element not found when unregistering."),this.squashState()}squashState(){const{elementCount:e}=this;e||(this.nextZIndex=2e3),this.nextZIndex-e>2500&&this.rearrange()}rearrange(){const e=Array.from(this.elementZIndex.entries());e.sort((t,d)=>t[1]-d[1]),this.nextZIndex=2e3,e.forEach(t=>{const d=t[0],s=this.nextZIndex++;`${s}`!==d.style.zIndex&&(d.style.zIndex=`${s}`)})}}const a=new l,r="@@ziContext",I={mounted(n,e){const{value:t={}}=e,{zIndex:d,enabled:s}=t;n[r]={enabled:!!s,initialized:!1},s&&(a.ensureZIndex(n,d),n[r].initialized=!0)},updated(n,e){const{value:t={}}=e,{zIndex:d,enabled:s}=t,h=n[r].enabled;s&&!h&&(a.ensureZIndex(n,d),n[r].initialized=!0),n[r].enabled=!!s},unmounted(n,e){if(!n[r].initialized)return;const{value:t={}}=e,{zIndex:d}=t;a.unregister(n,d)}},g=I;export{z as c,Z as m,g as z}; diff --git a/web/dist/assets/vfonts-7afd136d.css b/web/dist/assets/vfonts-7afd136d.css deleted file mode 100644 index afcedec3..00000000 --- a/web/dist/assets/vfonts-7afd136d.css +++ /dev/null @@ -1 +0,0 @@ -@font-face{font-family:v-sans;font-weight:400;src:url(/assets/LatoLatin-Regular-ddd4ef7f.woff2)}@font-face{font-family:v-sans;font-weight:600;src:url(/assets/LatoLatin-Semibold-267eef30.woff2)}@font-face{font-family:v-mono;font-weight:400;src:url(/assets/FiraCode-Regular-f13d1ece.woff2)} diff --git a/web/dist/assets/vfonts-BlXx2pb-.css b/web/dist/assets/vfonts-BlXx2pb-.css new file mode 100644 index 00000000..9812d159 --- /dev/null +++ b/web/dist/assets/vfonts-BlXx2pb-.css @@ -0,0 +1 @@ +@font-face{font-family:v-sans;font-weight:400;src:url(/assets/LatoLatin-Regular-Dmlz1U0B.woff2)}@font-face{font-family:v-sans;font-weight:600;src:url(/assets/LatoLatin-Semibold-Dbk81p2D.woff2)}@font-face{font-family:v-mono;font-weight:400;src:url(/assets/FiraCode-Regular-CRwVj4V2.woff2)} diff --git a/web/dist/assets/vooks-6d99783e.js b/web/dist/assets/vooks-6d99783e.js deleted file mode 100644 index 81778bfa..00000000 --- a/web/dist/assets/vooks-6d99783e.js +++ /dev/null @@ -1 +0,0 @@ -import{H as f,a1 as c,E as q,c as k,g as V,b as U,G as g,o as B,R as X}from"./@vue-a481fc63.js";import{o as h,a as v}from"./evtd-b614532e.js";function N(e){const n=f(!!e.value);if(n.value)return c(n);const t=q(e,o=>{o&&(n.value=!0,t())});return c(n)}function ee(e){const n=k(e),t=f(n.value);return q(n,o=>{t.value=o}),typeof e=="function"?t:{__v_isRef:!0,get value(){return t.value},set value(o){e.set(o)}}}function I(){return V()!==null}const $=typeof window<"u";let y,E;const Y=()=>{var e,n;y=$?(n=(e=document)===null||e===void 0?void 0:e.fonts)===null||n===void 0?void 0:n.ready:void 0,E=!1,y!==void 0?y.then(()=>{E=!0}):E=!0};Y();function ne(e){if(E)return;let n=!1;U(()=>{E||y==null||y.then(()=>{n||e()})}),g(()=>{n=!0})}const M=f(null);function j(e){if(e.clientX>0||e.clientY>0)M.value={x:e.clientX,y:e.clientY};else{const{target:n}=e;if(n instanceof Element){const{left:t,top:o,width:u,height:i}=n.getBoundingClientRect();t>0||o>0?M.value={x:t+u/2,y:o+i/2}:M.value={x:0,y:0}}else M.value=null}}let L=0,D=!0;function te(){if(!$)return c(f(null));L===0&&h("click",document,j,!0);const e=()=>{L+=1};return D&&(D=I())?(B(e),g(()=>{L-=1,L===0&&v("click",document,j,!0)})):e(),c(M)}const G=f(void 0);let C=0;function R(){G.value=Date.now()}let S=!0;function ie(e){if(!$)return c(f(!1));const n=f(!1);let t=null;function o(){t!==null&&window.clearTimeout(t)}function u(){o(),n.value=!0,t=window.setTimeout(()=>{n.value=!1},e)}C===0&&h("click",window,R,!0);const i=()=>{C+=1,h("click",window,u,!0)};return S&&(S=I())?(B(i),g(()=>{C-=1,C===0&&v("click",window,R,!0),v("click",window,u,!0),o()})):i(),c(n)}let T=0;const K=typeof window<"u"&&window.matchMedia!==void 0,w=f(null);let r,p;function x(e){e.matches&&(w.value="dark")}function P(e){e.matches&&(w.value="light")}function O(){r=window.matchMedia("(prefers-color-scheme: dark)"),p=window.matchMedia("(prefers-color-scheme: light)"),r.matches?w.value="dark":p.matches?w.value="light":w.value=null,r.addEventListener?(r.addEventListener("change",x),p.addEventListener("change",P)):r.addListener&&(r.addListener(x),p.addListener(P))}function Q(){"removeEventListener"in r?(r.removeEventListener("change",x),p.removeEventListener("change",P)):"removeListener"in r&&(r.removeListener(x),p.removeListener(P)),r=void 0,p=void 0}let F=!0;function ae(){return K?(T===0&&O(),F&&(F=I())&&(B(()=>{T+=1}),g(()=>{T-=1,T===0&&Q()})),c(w)):c(w)}function oe(e,n){return q(e,t=>{t!==void 0&&(n.value=t)}),k(()=>e.value===void 0?n.value:e.value)}function ue(){const e=f(!1);return U(()=>{e.value=!0}),c(e)}function se(e,n){return k(()=>{for(const t of n)if(e[t]!==void 0)return e[t];return e[n[n.length-1]]})}const z=(typeof window>"u"?!1:/iPad|iPhone|iPod/.test(navigator.platform)||navigator.platform==="MacIntel"&&navigator.maxTouchPoints>1)&&!window.MSStream;function re(){return z}const A={xs:0,s:640,m:1024,l:1280,xl:1536,"2xl":1920};function J(e){return`(min-width: ${e}px)`}const b={};function le(e=A){if(!$)return k(()=>[]);if(typeof window.matchMedia!="function")return k(()=>[]);const n=f({}),t=Object.keys(e),o=(u,i)=>{u.matches?n.value[i]=!0:n.value[i]=!1};return t.forEach(u=>{const i=e[u];let s,l;b[i]===void 0?(s=window.matchMedia(J(i)),s.addEventListener?s.addEventListener("change",a=>{l.forEach(d=>{d(a,u)})}):s.addListener&&s.addListener(a=>{l.forEach(d=>{d(a,u)})}),l=new Set,b[i]={mql:s,cbs:l}):(s=b[i].mql,l=b[i].cbs),l.add(o),s.matches&&l.forEach(a=>{a(s,u)})}),g(()=>{t.forEach(u=>{const{cbs:i}=b[e[u]];i.has(o)&&i.delete(o)})}),k(()=>{const{value:u}=n;return t.filter(i=>u[i])})}function fe(e={},n){const t=X({ctrl:!1,command:!1,win:!1,shift:!1,tab:!1}),{keydown:o,keyup:u}=e,i=a=>{switch(a.key){case"Control":t.ctrl=!0;break;case"Meta":t.command=!0,t.win=!0;break;case"Shift":t.shift=!0;break;case"Tab":t.tab=!0;break}o!==void 0&&Object.keys(o).forEach(d=>{if(d!==a.key)return;const m=o[d];if(typeof m=="function")m(a);else{const{stop:H=!1,prevent:_=!1}=m;H&&a.stopPropagation(),_&&a.preventDefault(),m.handler(a)}})},s=a=>{switch(a.key){case"Control":t.ctrl=!1;break;case"Meta":t.command=!1,t.win=!1;break;case"Shift":t.shift=!1;break;case"Tab":t.tab=!1;break}u!==void 0&&Object.keys(u).forEach(d=>{if(d!==a.key)return;const m=u[d];if(typeof m=="function")m(a);else{const{stop:H=!1,prevent:_=!1}=m;H&&a.stopPropagation(),_&&a.preventDefault(),m.handler(a)}})},l=()=>{(n===void 0||n.value)&&(h("keydown",document,i),h("keyup",document,s)),n!==void 0&&q(n,a=>{a?(h("keydown",document,i),h("keyup",document,s)):(v("keydown",document,i),v("keyup",document,s))})};return I()?(B(l),g(()=>{(n===void 0||n.value)&&(v("keydown",document,i),v("keyup",document,s))})):l(),c(t)}export{re as a,oe as b,se as c,fe as d,ie as e,te as f,le as g,N as h,ue as i,ae as j,ne as o,ee as u}; diff --git a/web/dist/assets/vooks-BQzJqMzq.js b/web/dist/assets/vooks-BQzJqMzq.js new file mode 100644 index 00000000..d99188ba --- /dev/null +++ b/web/dist/assets/vooks-BQzJqMzq.js @@ -0,0 +1 @@ +import{H as c,a2 as f,E as q,c as k,g as V,b as U,G as g,o as B,S as X}from"./@vue-CQsYufSu.js";import{o as h,a as v}from"./evtd-CI_DDEu_.js";function N(e){const n=c(!!e.value);if(n.value)return f(n);const t=q(e,o=>{o&&(n.value=!0,t())});return f(n)}function ee(e){const n=k(e),t=c(n.value);return q(n,o=>{t.value=o}),typeof e=="function"?t:{__v_isRef:!0,get value(){return t.value},set value(o){e.set(o)}}}function I(){return V()!==null}const $=typeof window<"u";let y,E;const Y=()=>{var e,n;y=$?(n=(e=document)===null||e===void 0?void 0:e.fonts)===null||n===void 0?void 0:n.ready:void 0,E=!1,y!==void 0?y.then(()=>{E=!0}):E=!0};Y();function ne(e){if(E)return;let n=!1;U(()=>{E||y==null||y.then(()=>{n||e()})}),g(()=>{n=!0})}const M=c(null);function _(e){if(e.clientX>0||e.clientY>0)M.value={x:e.clientX,y:e.clientY};else{const{target:n}=e;if(n instanceof Element){const{left:t,top:o,width:s,height:i}=n.getBoundingClientRect();t>0||o>0?M.value={x:t+s/2,y:o+i/2}:M.value={x:0,y:0}}else M.value=null}}let L=0,j=!0;function te(){if(!$)return f(c(null));L===0&&h("click",document,_,!0);const e=()=>{L+=1};return j&&(j=I())?(B(e),g(()=>{L-=1,L===0&&v("click",document,_,!0)})):e(),f(M)}const G=c(void 0);let C=0;function D(){G.value=Date.now()}let F=!0;function ie(e){if(!$)return f(c(!1));const n=c(!1);let t=null;function o(){t!==null&&window.clearTimeout(t)}function s(){o(),n.value=!0,t=window.setTimeout(()=>{n.value=!1},e)}C===0&&h("click",window,D,!0);const i=()=>{C+=1,h("click",window,s,!0)};return F&&(F=I())?(B(i),g(()=>{C-=1,C===0&&v("click",window,D,!0),v("click",window,s,!0),o()})):i(),f(n)}let T=0;const K=typeof window<"u"&&window.matchMedia!==void 0,w=c(null);let r,p;function x(e){e.matches&&(w.value="dark")}function P(e){e.matches&&(w.value="light")}function O(){r=window.matchMedia("(prefers-color-scheme: dark)"),p=window.matchMedia("(prefers-color-scheme: light)"),r.matches?w.value="dark":p.matches?w.value="light":w.value=null,r.addEventListener?(r.addEventListener("change",x),p.addEventListener("change",P)):r.addListener&&(r.addListener(x),p.addListener(P))}function Q(){"removeEventListener"in r?(r.removeEventListener("change",x),p.removeEventListener("change",P)):"removeListener"in r&&(r.removeListener(x),p.removeListener(P)),r=void 0,p=void 0}let R=!0;function ae(){return K?(T===0&&O(),R&&(R=I())&&(B(()=>{T+=1}),g(()=>{T-=1,T===0&&Q()})),f(w)):f(w)}function oe(e,n){return q(e,t=>{t!==void 0&&(n.value=t)}),k(()=>e.value===void 0?n.value:e.value)}function se(){const e=c(!1);return U(()=>{e.value=!0}),f(e)}function ue(e,n){return k(()=>{for(const t of n)if(e[t]!==void 0)return e[t];return e[n[n.length-1]]})}const z=(typeof window>"u"?!1:/iPad|iPhone|iPod/.test(navigator.platform)||navigator.platform==="MacIntel"&&navigator.maxTouchPoints>1)&&!window.MSStream;function re(){return z}const A={xs:0,s:640,m:1024,l:1280,xl:1536,"2xl":1920};function J(e){return`(min-width: ${e}px)`}const b={};function le(e=A){if(!$)return k(()=>[]);if(typeof window.matchMedia!="function")return k(()=>[]);const n=c({}),t=Object.keys(e),o=(s,i)=>{s.matches?n.value[i]=!0:n.value[i]=!1};return t.forEach(s=>{const i=e[s];let u,l;b[i]===void 0?(u=window.matchMedia(J(i)),u.addEventListener?u.addEventListener("change",a=>{l.forEach(d=>{d(a,s)})}):u.addListener&&u.addListener(a=>{l.forEach(d=>{d(a,s)})}),l=new Set,b[i]={mql:u,cbs:l}):(u=b[i].mql,l=b[i].cbs),l.add(o),u.matches&&l.forEach(a=>{a(u,s)})}),g(()=>{t.forEach(s=>{const{cbs:i}=b[e[s]];i.has(o)&&i.delete(o)})}),k(()=>{const{value:s}=n;return t.filter(i=>s[i])})}function ce(e={},n){const t=X({ctrl:!1,command:!1,win:!1,shift:!1,tab:!1}),{keydown:o,keyup:s}=e,i=a=>{switch(a.key){case"Control":t.ctrl=!0;break;case"Meta":t.command=!0,t.win=!0;break;case"Shift":t.shift=!0;break;case"Tab":t.tab=!0;break}o!==void 0&&Object.keys(o).forEach(d=>{if(d!==a.key)return;const m=o[d];if(typeof m=="function")m(a);else{const{stop:H=!1,prevent:S=!1}=m;H&&a.stopPropagation(),S&&a.preventDefault(),m.handler(a)}})},u=a=>{switch(a.key){case"Control":t.ctrl=!1;break;case"Meta":t.command=!1,t.win=!1;break;case"Shift":t.shift=!1;break;case"Tab":t.tab=!1;break}s!==void 0&&Object.keys(s).forEach(d=>{if(d!==a.key)return;const m=s[d];if(typeof m=="function")m(a);else{const{stop:H=!1,prevent:S=!1}=m;H&&a.stopPropagation(),S&&a.preventDefault(),m.handler(a)}})},l=()=>{(n===void 0||n.value)&&(h("keydown",document,i),h("keyup",document,u)),n!==void 0&&q(n,a=>{a?(h("keydown",document,i),h("keyup",document,u)):(v("keydown",document,i),v("keyup",document,u))})};return I()?(B(l),g(()=>{(n===void 0||n.value)&&(v("keydown",document,i),v("keyup",document,u))})):l(),f(t)}export{re as a,oe as b,ue as c,ce as d,ie as e,te as f,le as g,N as h,se as i,ae as j,ne as o,ee as u}; diff --git a/web/dist/assets/vue-1e3b54ec.js b/web/dist/assets/vue-1e3b54ec.js deleted file mode 100644 index e018094b..00000000 --- a/web/dist/assets/vue-1e3b54ec.js +++ /dev/null @@ -1 +0,0 @@ -import{a2 as a,a3 as e,C as s,a4 as t,F as o,a5 as r,a6 as n,a7 as i,a8 as l,W as c,Q as d,T as p,L as m,a9 as f,aa as b,ab as u,ac as S,ad as h,ae as v,P as R,af as C,c as y,ag as g,q as w,Y as T,f as x,j as E,ah as M,ai as k,aj as V,ak as P,al as D,z as B,A as N,k as A,am as H,a as z,d as U,an as j,ao as F,ap as I,aq as K,ar as O,as as _,at as q,au as W,av as G,aw as L,ax as J,g as Q,ay as X,az as Y,aA as Z,h as $,aB as aa,aC as ea,aD as sa,aE as ta,aF as oa,i as ra,aG as na,S as ia,aH as la,aI as ca,aJ as da,aK as pa,aL as ma,B as fa,m as ba,aM as ua,aN as Sa,N as ha,n as va,l as Ra,aO as Ca,t as ya,I as ga,o as wa,G as Ta,aP as xa,J as Ea,aQ as Ma,b as ka,aR as Va,aS as Pa,aT as Da,aU as Ba,V as Na,aV as Aa,e as Ha,a0 as za,p as Ua,aW as ja,$ as Fa,aX as Ia,R as Ka,a1 as Oa,H as _a,aY as qa,aZ as Wa,u as Ga,v as La,r as Ja,a_ as Qa,s as Xa,a$ as Ya,b0 as Za,b1 as $a,b2 as ae,b3 as ee,b4 as se,b5 as te,b6 as oe,b7 as re,b8 as ne,b9 as ie,x as le,ba as ce,bb as de,U as pe,M as me,_ as fe,bc as be,bd as ue,be as Se,bf as he,bg as ve,bh as Re,bi as Ce,bj as ye,bk as ge,bl as we,bm as Te,bn as xe,bo as Ee,bp as Me,bq as ke,X as Ve,D as Pe,br as De,bs as Be,E as Ne,K as Ae,bt as He,bu as ze,bv as Ue,w as je,bw as Fe,O as Ie,Z as Ke,bx as Oe,y as _e,by as qe}from"./@vue-a481fc63.js";const We=()=>{},Le=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:a,BaseTransitionPropsValidators:e,Comment:s,EffectScope:t,Fragment:o,KeepAlive:r,ReactiveEffect:n,Static:i,Suspense:l,Teleport:c,Text:d,Transition:p,TransitionGroup:m,VueElement:f,assertNumber:b,callWithAsyncErrorHandling:u,callWithErrorHandling:S,camelize:h,capitalize:v,cloneVNode:R,compatUtils:C,compile:We,computed:y,createApp:g,createBlock:w,createCommentVNode:T,createElementBlock:x,createElementVNode:E,createHydrationRenderer:M,createPropsRestProxy:k,createRenderer:V,createSSRApp:P,createSlots:D,createStaticVNode:B,createTextVNode:N,createVNode:A,customRef:H,defineAsyncComponent:z,defineComponent:U,defineCustomElement:j,defineEmits:F,defineExpose:I,defineModel:K,defineOptions:O,defineProps:_,defineSSRCustomElement:q,defineSlots:W,get devtools(){return G},effect:L,effectScope:J,getCurrentInstance:Q,getCurrentScope:X,getTransitionRawChildren:Y,guardReactiveProps:Z,h:$,handleError:aa,hasInjectionContext:ea,hydrate:sa,initCustomFormatter:ta,initDirectivesForSSR:oa,inject:ra,isMemoSame:na,isProxy:ia,isReactive:la,isReadonly:ca,isRef:da,isRuntimeOnly:pa,isShallow:ma,isVNode:fa,markRaw:ba,mergeDefaults:ua,mergeModels:Sa,mergeProps:ha,nextTick:va,normalizeClass:Ra,normalizeProps:Ca,normalizeStyle:ya,onActivated:ga,onBeforeMount:wa,onBeforeUnmount:Ta,onBeforeUpdate:xa,onDeactivated:Ea,onErrorCaptured:Ma,onMounted:ka,onRenderTracked:Va,onRenderTriggered:Pa,onScopeDispose:Da,onServerPrefetch:Ba,onUnmounted:Na,onUpdated:Aa,openBlock:Ha,popScopeId:za,provide:Ua,proxyRefs:ja,pushScopeId:Fa,queuePostFlushCb:Ia,reactive:Ka,readonly:Oa,ref:_a,registerRuntimeCompiler:qa,render:Wa,renderList:Ga,renderSlot:La,resolveComponent:Ja,resolveDirective:Qa,resolveDynamicComponent:Xa,resolveFilter:Ya,resolveTransitionHooks:Za,setBlockTracking:$a,setDevtoolsHook:ae,setTransitionHooks:ee,shallowReactive:se,shallowReadonly:te,shallowRef:oe,ssrContextKey:re,ssrUtils:ne,stop:ie,toDisplayString:le,toHandlerKey:ce,toHandlers:de,toRaw:pe,toRef:me,toRefs:fe,toValue:be,transformVNodeArgs:ue,triggerRef:Se,unref:he,useAttrs:ve,useCssModule:Re,useCssVars:Ce,useModel:ye,useSSRContext:ge,useSlots:we,useTransitionState:Te,vModelCheckbox:xe,vModelDynamic:Ee,vModelRadio:Me,vModelSelect:ke,vModelText:Ve,vShow:Pe,version:De,warn:Be,watch:Ne,watchEffect:Ae,watchPostEffect:He,watchSyncEffect:ze,withAsyncContext:Ue,withCtx:je,withDefaults:Fe,withDirectives:Ie,withKeys:Ke,withMemo:Oe,withModifiers:_e,withScopeId:qe},Symbol.toStringTag,{value:"Module"}));export{Le as h}; diff --git a/web/dist/assets/vue-C5uo8kQw.js b/web/dist/assets/vue-C5uo8kQw.js new file mode 100644 index 00000000..1ebe8fff --- /dev/null +++ b/web/dist/assets/vue-C5uo8kQw.js @@ -0,0 +1,5 @@ +import{a3 as a,a4 as e,C as s,a5 as o,a6 as t,a7 as r,a8 as n,F as i,a9 as c,aa as l,ab as d,ac as p,X as b,R as m,ad as f,T as u,M as S,ae as h,af as v,ag as R,ah as y,ai as C,aj as g,ak as T,Q as w,al as E,c as x,am as k,q as M,Z as D,f as V,j as P,an as B,ao as A,ap as N,aq as H,ar as z,z as O,A as U,k as j,as as F,a as I,d as K,at as _,au as q,av as W,aw as G,ax as L,ay as J,az as Q,aA as X,aB as Y,aC as Z,aD as $,g as aa,aE as ea,aF as sa,aG as oa,h as ta,aH as ra,aI as na,aJ as ia,aK as ca,aL as la,i as da,aM as pa,U as ba,aN as ma,aO as fa,aP as ua,aQ as Sa,aR as ha,B as va,m as Ra,aS as ya,aT as Ca,O as ga,n as Ta,l as wa,aU as Ea,t as xa,I as ka,o as Ma,G as Da,aV as Va,J as Pa,aW as Ba,b as Aa,aX as Na,aY as Ha,aZ as za,a_ as Oa,W as Ua,a$ as ja,e as Fa,a1 as Ia,p as Ka,b0 as _a,a0 as qa,b1 as Wa,S as Ga,a2 as La,H as Ja,b2 as Qa,b3 as Xa,u as Ya,v as Za,r as $a,b4 as ae,s as ee,b5 as se,b6 as oe,b7 as te,b8 as re,b9 as ne,ba as ie,bb as ce,K as le,bc as de,bd as pe,be,x as me,bf as fe,bg as ue,V as Se,N as he,$ as ve,bh as Re,bi as ye,bj as Ce,bk as ge,bl as Te,bm as we,bn as Ee,bo as xe,bp as ke,bq as Me,br as De,bs as Ve,bt as Pe,bu as Be,bv as Ae,Y as Ne,D as He,bw as ze,bx as Oe,E as Ue,L as je,by as Fe,bz as Ie,bA as Ke,w as _e,bB as qe,P as We,_ as Ge,bC as Le,y as Je,bD as Qe}from"./@vue-CQsYufSu.js";/** +* vue v3.4.21 +* (c) 2018-present Yuxi (Evan) You and Vue contributors +* @license MIT +**/const Xe=()=>{},Ze=Object.freeze(Object.defineProperty({__proto__:null,BaseTransition:a,BaseTransitionPropsValidators:e,Comment:s,DeprecationTypes:o,EffectScope:t,ErrorCodes:r,ErrorTypeStrings:n,Fragment:i,KeepAlive:c,ReactiveEffect:l,Static:d,Suspense:p,Teleport:b,Text:m,TrackOpTypes:f,Transition:u,TransitionGroup:S,TriggerOpTypes:h,VueElement:v,assertNumber:R,callWithAsyncErrorHandling:y,callWithErrorHandling:C,camelize:g,capitalize:T,cloneVNode:w,compatUtils:E,compile:Xe,computed:x,createApp:k,createBlock:M,createCommentVNode:D,createElementBlock:V,createElementVNode:P,createHydrationRenderer:B,createPropsRestProxy:A,createRenderer:N,createSSRApp:H,createSlots:z,createStaticVNode:O,createTextVNode:U,createVNode:j,customRef:F,defineAsyncComponent:I,defineComponent:K,defineCustomElement:_,defineEmits:q,defineExpose:W,defineModel:G,defineOptions:L,defineProps:J,defineSSRCustomElement:Q,defineSlots:X,devtools:Y,effect:Z,effectScope:$,getCurrentInstance:aa,getCurrentScope:ea,getTransitionRawChildren:sa,guardReactiveProps:oa,h:ta,handleError:ra,hasInjectionContext:na,hydrate:ia,initCustomFormatter:ca,initDirectivesForSSR:la,inject:da,isMemoSame:pa,isProxy:ba,isReactive:ma,isReadonly:fa,isRef:ua,isRuntimeOnly:Sa,isShallow:ha,isVNode:va,markRaw:Ra,mergeDefaults:ya,mergeModels:Ca,mergeProps:ga,nextTick:Ta,normalizeClass:wa,normalizeProps:Ea,normalizeStyle:xa,onActivated:ka,onBeforeMount:Ma,onBeforeUnmount:Da,onBeforeUpdate:Va,onDeactivated:Pa,onErrorCaptured:Ba,onMounted:Aa,onRenderTracked:Na,onRenderTriggered:Ha,onScopeDispose:za,onServerPrefetch:Oa,onUnmounted:Ua,onUpdated:ja,openBlock:Fa,popScopeId:Ia,provide:Ka,proxyRefs:_a,pushScopeId:qa,queuePostFlushCb:Wa,reactive:Ga,readonly:La,ref:Ja,registerRuntimeCompiler:Qa,render:Xa,renderList:Ya,renderSlot:Za,resolveComponent:$a,resolveDirective:ae,resolveDynamicComponent:ee,resolveFilter:se,resolveTransitionHooks:oe,setBlockTracking:te,setDevtoolsHook:re,setTransitionHooks:ne,shallowReactive:ie,shallowReadonly:ce,shallowRef:le,ssrContextKey:de,ssrUtils:pe,stop:be,toDisplayString:me,toHandlerKey:fe,toHandlers:ue,toRaw:Se,toRef:he,toRefs:ve,toValue:Re,transformVNodeArgs:ye,triggerRef:Ce,unref:ge,useAttrs:Te,useCssModule:we,useCssVars:Ee,useModel:xe,useSSRContext:ke,useSlots:Me,useTransitionState:De,vModelCheckbox:Ve,vModelDynamic:Pe,vModelRadio:Be,vModelSelect:Ae,vModelText:Ne,vShow:He,version:ze,warn:Oe,watch:Ue,watchEffect:je,watchPostEffect:Fe,watchSyncEffect:Ie,withAsyncContext:Ke,withCtx:_e,withDefaults:qe,withDirectives:We,withKeys:Ge,withMemo:Le,withModifiers:Je,withScopeId:Qe},Symbol.toStringTag,{value:"Module"}));export{Ze as h}; diff --git a/web/dist/assets/vue-router-e5a2430e.js b/web/dist/assets/vue-router-e5a2430e.js deleted file mode 100644 index caeaeb66..00000000 --- a/web/dist/assets/vue-router-e5a2430e.js +++ /dev/null @@ -1,5 +0,0 @@ -import{b6 as tt,bf as Q,b4 as nt,n as rt,i as B,d as qe,R as st,c as L,h as ze,p as ae,H as ot,E as ct}from"./@vue-a481fc63.js";/*! - * vue-router v4.2.4 - * (c) 2023 Eduardo San Martin Morote - * @license MIT - */const z=typeof window<"u";function it(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const S=Object.assign;function le(e,t){const n={};for(const r in t){const s=t[r];n[r]=N(s)?s.map(e):e(s)}return n}const F=()=>{},N=Array.isArray,at=/\/$/,lt=e=>e.replace(at,"");function ue(e,t,n="/"){let r,s={},l="",d="";const m=t.indexOf("#");let i=t.indexOf("?");return m=0&&(i=-1),i>-1&&(r=t.slice(0,i),l=t.slice(i+1,m>-1?m:t.length),s=e(l)),m>-1&&(r=r||t.slice(0,m),d=t.slice(m,t.length)),r=dt(r??t,n),{fullPath:r+(l&&"?")+l+d,path:r,query:s,hash:d}}function ut(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function be(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function ft(e,t,n){const r=t.matched.length-1,s=n.matched.length-1;return r>-1&&r===s&&G(t.matched[r],n.matched[s])&&Ge(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function G(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Ge(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!ht(e[n],t[n]))return!1;return!0}function ht(e,t){return N(e)?Ce(e,t):N(t)?Ce(t,e):e===t}function Ce(e,t){return N(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function dt(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/"),s=r[r.length-1];(s===".."||s===".")&&r.push("");let l=n.length-1,d,m;for(d=0;d1&&l--;else break;return n.slice(0,l).join("/")+"/"+r.slice(d-(d===r.length?1:0)).join("/")}var X;(function(e){e.pop="pop",e.push="push"})(X||(X={}));var Y;(function(e){e.back="back",e.forward="forward",e.unknown=""})(Y||(Y={}));function pt(e){if(!e)if(z){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),lt(e)}const mt=/^[^#]+#/;function gt(e,t){return e.replace(mt,"#")+t}function vt(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const te=()=>({left:window.pageXOffset,top:window.pageYOffset});function yt(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),s=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!s)return;t=vt(s,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function ke(e,t){return(history.state?history.state.position-t:-1)+e}const he=new Map;function Rt(e,t){he.set(e,t)}function Et(e){const t=he.get(e);return he.delete(e),t}let Pt=()=>location.protocol+"//"+location.host;function Ke(e,t){const{pathname:n,search:r,hash:s}=t,l=e.indexOf("#");if(l>-1){let m=s.includes(e.slice(l))?e.slice(l).length:1,i=s.slice(m);return i[0]!=="/"&&(i="/"+i),be(i,"")}return be(n,e)+r+s}function wt(e,t,n,r){let s=[],l=[],d=null;const m=({state:u})=>{const g=Ke(e,location),R=n.value,k=t.value;let C=0;if(u){if(n.value=g,t.value=u,d&&d===R){d=null;return}C=k?u.position-k.position:0}else r(g);s.forEach(E=>{E(n.value,R,{delta:C,type:X.pop,direction:C?C>0?Y.forward:Y.back:Y.unknown})})};function i(){d=n.value}function f(u){s.push(u);const g=()=>{const R=s.indexOf(u);R>-1&&s.splice(R,1)};return l.push(g),g}function o(){const{history:u}=window;u.state&&u.replaceState(S({},u.state,{scroll:te()}),"")}function a(){for(const u of l)u();l=[],window.removeEventListener("popstate",m),window.removeEventListener("beforeunload",o)}return window.addEventListener("popstate",m),window.addEventListener("beforeunload",o,{passive:!0}),{pauseListeners:i,listen:f,destroy:a}}function Ae(e,t,n,r=!1,s=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:s?te():null}}function St(e){const{history:t,location:n}=window,r={value:Ke(e,n)},s={value:t.state};s.value||l(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function l(i,f,o){const a=e.indexOf("#"),u=a>-1?(n.host&&document.querySelector("base")?e:e.slice(a))+i:Pt()+e+i;try{t[o?"replaceState":"pushState"](f,"",u),s.value=f}catch(g){console.error(g),n[o?"replace":"assign"](u)}}function d(i,f){const o=S({},t.state,Ae(s.value.back,i,s.value.forward,!0),f,{position:s.value.position});l(i,o,!0),r.value=i}function m(i,f){const o=S({},s.value,t.state,{forward:i,scroll:te()});l(o.current,o,!0);const a=S({},Ae(r.value,i,null),{position:o.position+1},f);l(i,a,!1),r.value=i}return{location:r,state:s,push:m,replace:d}}function bt(e){e=pt(e);const t=St(e),n=wt(e,t.state,t.location,t.replace);function r(l,d=!0){d||n.pauseListeners(),history.go(l)}const s=S({location:"",base:e,go:r,createHref:gt.bind(null,e)},t,n);return Object.defineProperty(s,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(s,"state",{enumerable:!0,get:()=>t.state.value}),s}function fn(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),bt(e)}function Ct(e){return typeof e=="string"||e&&typeof e=="object"}function Ve(e){return typeof e=="string"||typeof e=="symbol"}const T={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Ue=Symbol("");var Oe;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Oe||(Oe={}));function K(e,t){return S(new Error,{type:e,[Ue]:!0},t)}function I(e,t){return e instanceof Error&&Ue in e&&(t==null||!!(e.type&t))}const _e="[^/]+?",kt={sensitive:!1,strict:!1,start:!0,end:!0},At=/[.+*?^${}()[\]/\\]/g;function Ot(e,t){const n=S({},kt,t),r=[];let s=n.start?"^":"";const l=[];for(const f of e){const o=f.length?[]:[90];n.strict&&!f.length&&(s+="/");for(let a=0;at.length?t.length===1&&t[0]===40+40?1:-1:0}function xt(e,t){let n=0;const r=e.score,s=t.score;for(;n0&&t[t.length-1]<0}const Mt={type:0,value:""},Nt=/[a-zA-Z0-9_]/;function Lt(e){if(!e)return[[]];if(e==="/")return[[Mt]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(g){throw new Error(`ERR (${n})/"${f}": ${g}`)}let n=0,r=n;const s=[];let l;function d(){l&&s.push(l),l=[]}let m=0,i,f="",o="";function a(){f&&(n===0?l.push({type:0,value:f}):n===1||n===2||n===3?(l.length>1&&(i==="*"||i==="+")&&t(`A repeatable param (${f}) must be alone in its segment. eg: '/:ids+.`),l.push({type:1,value:f,regexp:o,repeatable:i==="*"||i==="+",optional:i==="*"||i==="?"})):t("Invalid state to consume buffer"),f="")}function u(){f+=i}for(;m{d(w)}:F}function d(o){if(Ve(o)){const a=r.get(o);a&&(r.delete(o),n.splice(n.indexOf(a),1),a.children.forEach(d),a.alias.forEach(d))}else{const a=n.indexOf(o);a>-1&&(n.splice(a,1),o.record.name&&r.delete(o.record.name),o.children.forEach(d),o.alias.forEach(d))}}function m(){return n}function i(o){let a=0;for(;a=0&&(o.record.path!==n[a].record.path||!De(o,n[a]));)a++;n.splice(a,0,o),o.record.name&&!Ne(o)&&r.set(o.record.name,o)}function f(o,a){let u,g={},R,k;if("name"in o&&o.name){if(u=r.get(o.name),!u)throw K(1,{location:o});k=u.record.name,g=S(Me(a.params,u.keys.filter(w=>!w.optional).map(w=>w.name)),o.params&&Me(o.params,u.keys.map(w=>w.name))),R=u.stringify(g)}else if("path"in o)R=o.path,u=n.find(w=>w.re.test(R)),u&&(g=u.parse(R),k=u.record.name);else{if(u=a.name?r.get(a.name):n.find(w=>w.re.test(a.path)),!u)throw K(1,{location:o,currentLocation:a});k=u.record.name,g=S({},a.params,o.params),R=u.stringify(g)}const C=[];let E=u;for(;E;)C.unshift(E.record),E=E.parent;return{name:k,path:R,params:g,matched:C,meta:jt(C)}}return e.forEach(o=>l(o)),{addRoute:l,resolve:f,removeRoute:d,getRoutes:m,getRecordMatcher:s}}function Me(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function Tt(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:$t(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function $t(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="object"?n[r]:n;return t}function Ne(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function jt(e){return e.reduce((t,n)=>S(t,n.meta),{})}function Le(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function De(e,t){return t.children.some(n=>n===e||De(e,n))}const We=/#/g,Bt=/&/g,qt=/\//g,zt=/=/g,Gt=/\?/g,Qe=/\+/g,Kt=/%5B/g,Vt=/%5D/g,Fe=/%5E/g,Ut=/%60/g,Ye=/%7B/g,Dt=/%7C/g,Xe=/%7D/g,Wt=/%20/g;function me(e){return encodeURI(""+e).replace(Dt,"|").replace(Kt,"[").replace(Vt,"]")}function Qt(e){return me(e).replace(Ye,"{").replace(Xe,"}").replace(Fe,"^")}function de(e){return me(e).replace(Qe,"%2B").replace(Wt,"+").replace(We,"%23").replace(Bt,"%26").replace(Ut,"`").replace(Ye,"{").replace(Xe,"}").replace(Fe,"^")}function Ft(e){return de(e).replace(zt,"%3D")}function Yt(e){return me(e).replace(We,"%23").replace(Gt,"%3F")}function Xt(e){return e==null?"":Yt(e).replace(qt,"%2F")}function ee(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function Zt(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let s=0;sl&&de(l)):[r&&de(r)]).forEach(l=>{l!==void 0&&(t+=(t.length?"&":"")+n,l!=null&&(t+="="+l))})}return t}function Jt(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=N(r)?r.map(s=>s==null?null:""+s):r==null?r:""+r)}return t}const en=Symbol(""),Ie=Symbol(""),ne=Symbol(""),ge=Symbol(""),pe=Symbol("");function W(){let e=[];function t(r){return e.push(r),()=>{const s=e.indexOf(r);s>-1&&e.splice(s,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function $(e,t,n,r,s){const l=r&&(r.enterCallbacks[s]=r.enterCallbacks[s]||[]);return()=>new Promise((d,m)=>{const i=a=>{a===!1?m(K(4,{from:n,to:t})):a instanceof Error?m(a):Ct(a)?m(K(2,{from:t,to:a})):(l&&r.enterCallbacks[s]===l&&typeof a=="function"&&l.push(a),d())},f=e.call(r&&r.instances[s],t,n,i);let o=Promise.resolve(f);e.length<3&&(o=o.then(i)),o.catch(a=>m(a))})}function fe(e,t,n,r){const s=[];for(const l of e)for(const d in l.components){let m=l.components[d];if(!(t!=="beforeRouteEnter"&&!l.instances[d]))if(tn(m)){const f=(m.__vccOpts||m)[t];f&&s.push($(f,n,r,l,d))}else{let i=m();s.push(()=>i.then(f=>{if(!f)return Promise.reject(new Error(`Couldn't resolve component "${d}" at "${l.path}"`));const o=it(f)?f.default:f;l.components[d]=o;const u=(o.__vccOpts||o)[t];return u&&$(u,n,r,l,d)()}))}}return s}function tn(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function Te(e){const t=B(ne),n=B(ge),r=L(()=>t.resolve(Q(e.to))),s=L(()=>{const{matched:i}=r.value,{length:f}=i,o=i[f-1],a=n.matched;if(!o||!a.length)return-1;const u=a.findIndex(G.bind(null,o));if(u>-1)return u;const g=$e(i[f-2]);return f>1&&$e(o)===g&&a[a.length-1].path!==g?a.findIndex(G.bind(null,i[f-2])):u}),l=L(()=>s.value>-1&&on(n.params,r.value.params)),d=L(()=>s.value>-1&&s.value===n.matched.length-1&&Ge(n.params,r.value.params));function m(i={}){return sn(i)?t[Q(e.replace)?"replace":"push"](Q(e.to)).catch(F):Promise.resolve()}return{route:r,href:L(()=>r.value.href),isActive:l,isExactActive:d,navigate:m}}const nn=qe({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:Te,setup(e,{slots:t}){const n=st(Te(e)),{options:r}=B(ne),s=L(()=>({[je(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[je(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const l=t.default&&t.default(n);return e.custom?l:ze("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:s.value},l)}}}),rn=nn;function sn(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function on(e,t){for(const n in t){const r=t[n],s=e[n];if(typeof r=="string"){if(r!==s)return!1}else if(!N(s)||s.length!==r.length||r.some((l,d)=>l!==s[d]))return!1}return!0}function $e(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const je=(e,t,n)=>e??t??n,cn=qe({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=B(pe),s=L(()=>e.route||r.value),l=B(Ie,0),d=L(()=>{let f=Q(l);const{matched:o}=s.value;let a;for(;(a=o[f])&&!a.components;)f++;return f}),m=L(()=>s.value.matched[d.value]);ae(Ie,L(()=>d.value+1)),ae(en,m),ae(pe,s);const i=ot();return ct(()=>[i.value,m.value,e.name],([f,o,a],[u,g,R])=>{o&&(o.instances[a]=f,g&&g!==o&&f&&f===u&&(o.leaveGuards.size||(o.leaveGuards=g.leaveGuards),o.updateGuards.size||(o.updateGuards=g.updateGuards))),f&&o&&(!g||!G(o,g)||!u)&&(o.enterCallbacks[a]||[]).forEach(k=>k(f))},{flush:"post"}),()=>{const f=s.value,o=e.name,a=m.value,u=a&&a.components[o];if(!u)return Be(n.default,{Component:u,route:f});const g=a.props[o],R=g?g===!0?f.params:typeof g=="function"?g(f):g:null,C=ze(u,S({},R,t,{onVnodeUnmounted:E=>{E.component.isUnmounted&&(a.instances[o]=null)},ref:i}));return Be(n.default,{Component:C,route:f})||C}}});function Be(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const an=cn;function hn(e){const t=It(e.routes,e),n=e.parseQuery||Zt,r=e.stringifyQuery||He,s=e.history,l=W(),d=W(),m=W(),i=tt(T);let f=T;z&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const o=le.bind(null,c=>""+c),a=le.bind(null,Xt),u=le.bind(null,ee);function g(c,p){let h,v;return Ve(c)?(h=t.getRecordMatcher(c),v=p):v=c,t.addRoute(v,h)}function R(c){const p=t.getRecordMatcher(c);p&&t.removeRoute(p)}function k(){return t.getRoutes().map(c=>c.record)}function C(c){return!!t.getRecordMatcher(c)}function E(c,p){if(p=S({},p||i.value),typeof c=="string"){const y=ue(n,c,p.path),O=t.resolve({path:y.path},p),D=s.createHref(y.fullPath);return S(y,O,{params:u(O.params),hash:ee(y.hash),redirectedFrom:void 0,href:D})}let h;if("path"in c)h=S({},c,{path:ue(n,c.path,p.path).path});else{const y=S({},c.params);for(const O in y)y[O]==null&&delete y[O];h=S({},c,{params:a(y)}),p.params=a(p.params)}const v=t.resolve(h,p),b=c.hash||"";v.params=o(u(v.params));const A=ut(r,S({},c,{hash:Qt(b),path:v.path})),P=s.createHref(A);return S({fullPath:A,hash:b,query:r===He?Jt(c.query):c.query||{}},v,{redirectedFrom:void 0,href:P})}function w(c){return typeof c=="string"?ue(n,c,i.value.path):S({},c)}function _(c,p){if(f!==c)return K(8,{from:p,to:c})}function M(c){return V(c)}function j(c){return M(S(w(c),{replace:!0}))}function H(c){const p=c.matched[c.matched.length-1];if(p&&p.redirect){const{redirect:h}=p;let v=typeof h=="function"?h(c):h;return typeof v=="string"&&(v=v.includes("?")||v.includes("#")?v=w(v):{path:v},v.params={}),S({query:c.query,hash:c.hash,params:"path"in v?{}:c.params},v)}}function V(c,p){const h=f=E(c),v=i.value,b=c.state,A=c.force,P=c.replace===!0,y=H(h);if(y)return V(S(w(y),{state:typeof y=="object"?S({},b,y.state):b,force:A,replace:P}),p||h);const O=h;O.redirectedFrom=p;let D;return!A&&ft(r,v,h)&&(D=K(16,{to:O,from:v}),we(v,v,!0,!1)),(D?Promise.resolve(D):ye(O,v)).catch(x=>I(x)?I(x,2)?x:oe(x):se(x,O,v)).then(x=>{if(x){if(I(x,2))return V(S({replace:P},w(x.to),{state:typeof x.to=="object"?S({},b,x.to.state):b,force:A}),p||O)}else x=Ee(O,v,!0,P,b);return Re(O,v,x),x})}function Ze(c,p){const h=_(c,p);return h?Promise.reject(h):Promise.resolve()}function ve(c){const p=J.values().next().value;return p&&typeof p.runWithContext=="function"?p.runWithContext(c):c()}function ye(c,p){let h;const[v,b,A]=ln(c,p);h=fe(v.reverse(),"beforeRouteLeave",c,p);for(const y of v)y.leaveGuards.forEach(O=>{h.push($(O,c,p))});const P=Ze.bind(null,c,p);return h.push(P),q(h).then(()=>{h=[];for(const y of l.list())h.push($(y,c,p));return h.push(P),q(h)}).then(()=>{h=fe(b,"beforeRouteUpdate",c,p);for(const y of b)y.updateGuards.forEach(O=>{h.push($(O,c,p))});return h.push(P),q(h)}).then(()=>{h=[];for(const y of A)if(y.beforeEnter)if(N(y.beforeEnter))for(const O of y.beforeEnter)h.push($(O,c,p));else h.push($(y.beforeEnter,c,p));return h.push(P),q(h)}).then(()=>(c.matched.forEach(y=>y.enterCallbacks={}),h=fe(A,"beforeRouteEnter",c,p),h.push(P),q(h))).then(()=>{h=[];for(const y of d.list())h.push($(y,c,p));return h.push(P),q(h)}).catch(y=>I(y,8)?y:Promise.reject(y))}function Re(c,p,h){m.list().forEach(v=>ve(()=>v(c,p,h)))}function Ee(c,p,h,v,b){const A=_(c,p);if(A)return A;const P=p===T,y=z?history.state:{};h&&(v||P?s.replace(c.fullPath,S({scroll:P&&y&&y.scroll},b)):s.push(c.fullPath,b)),i.value=c,we(c,p,h,P),oe()}let U;function Je(){U||(U=s.listen((c,p,h)=>{if(!Se.listening)return;const v=E(c),b=H(v);if(b){V(S(b,{replace:!0}),v).catch(F);return}f=v;const A=i.value;z&&Rt(ke(A.fullPath,h.delta),te()),ye(v,A).catch(P=>I(P,12)?P:I(P,2)?(V(P.to,v).then(y=>{I(y,20)&&!h.delta&&h.type===X.pop&&s.go(-1,!1)}).catch(F),Promise.reject()):(h.delta&&s.go(-h.delta,!1),se(P,v,A))).then(P=>{P=P||Ee(v,A,!1),P&&(h.delta&&!I(P,8)?s.go(-h.delta,!1):h.type===X.pop&&I(P,20)&&s.go(-1,!1)),Re(v,A,P)}).catch(F)}))}let re=W(),Pe=W(),Z;function se(c,p,h){oe(c);const v=Pe.list();return v.length?v.forEach(b=>b(c,p,h)):console.error(c),Promise.reject(c)}function et(){return Z&&i.value!==T?Promise.resolve():new Promise((c,p)=>{re.add([c,p])})}function oe(c){return Z||(Z=!c,Je(),re.list().forEach(([p,h])=>c?h(c):p()),re.reset()),c}function we(c,p,h,v){const{scrollBehavior:b}=e;if(!z||!b)return Promise.resolve();const A=!h&&Et(ke(c.fullPath,0))||(v||!h)&&history.state&&history.state.scroll||null;return rt().then(()=>b(c,p,A)).then(P=>P&&yt(P)).catch(P=>se(P,c,p))}const ce=c=>s.go(c);let ie;const J=new Set,Se={currentRoute:i,listening:!0,addRoute:g,removeRoute:R,hasRoute:C,getRoutes:k,resolve:E,options:e,push:M,replace:j,go:ce,back:()=>ce(-1),forward:()=>ce(1),beforeEach:l.add,beforeResolve:d.add,afterEach:m.add,onError:Pe.add,isReady:et,install(c){const p=this;c.component("RouterLink",rn),c.component("RouterView",an),c.config.globalProperties.$router=p,Object.defineProperty(c.config.globalProperties,"$route",{enumerable:!0,get:()=>Q(i)}),z&&!ie&&i.value===T&&(ie=!0,M(s.location).catch(b=>{}));const h={};for(const b in T)Object.defineProperty(h,b,{get:()=>i.value[b],enumerable:!0});c.provide(ne,p),c.provide(ge,nt(h)),c.provide(pe,i);const v=c.unmount;J.add(c),c.unmount=function(){J.delete(c),J.size<1&&(f=T,U&&U(),U=null,i.value=T,ie=!1,Z=!1),v()}}};function q(c){return c.reduce((p,h)=>p.then(()=>ve(h)),Promise.resolve())}return Se}function ln(e,t){const n=[],r=[],s=[],l=Math.max(t.matched.length,e.matched.length);for(let d=0;dG(f,m))?r.push(m):n.push(m));const i=e.matched[d];i&&(t.matched.find(f=>G(f,i))||s.push(i))}return[n,r,s]}function dn(){return B(ne)}function pn(){return B(ge)}export{fn as a,pn as b,hn as c,dn as u}; diff --git a/web/dist/assets/vue-router-zwGLnBy5.js b/web/dist/assets/vue-router-zwGLnBy5.js new file mode 100644 index 00000000..a0b1368e --- /dev/null +++ b/web/dist/assets/vue-router-zwGLnBy5.js @@ -0,0 +1,5 @@ +import{K as tt,bk as Q,ba as nt,n as rt,i as B,d as qe,S as ot,c as N,h as ze,p as ae,H as st,E as ct}from"./@vue-CQsYufSu.js";/*! + * vue-router v4.2.5 + * (c) 2023 Eduardo San Martin Morote + * @license MIT + */const z=typeof window<"u";function it(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const S=Object.assign;function le(e,t){const n={};for(const r in t){const o=t[r];n[r]=L(o)?o.map(e):e(o)}return n}const F=()=>{},L=Array.isArray,at=/\/$/,lt=e=>e.replace(at,"");function ue(e,t,n="/"){let r,o={},l="",d="";const m=t.indexOf("#");let i=t.indexOf("?");return m=0&&(i=-1),i>-1&&(r=t.slice(0,i),l=t.slice(i+1,m>-1?m:t.length),o=e(l)),m>-1&&(r=r||t.slice(0,m),d=t.slice(m,t.length)),r=dt(r??t,n),{fullPath:r+(l&&"?")+l+d,path:r,query:o,hash:d}}function ut(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Ce(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function ft(e,t,n){const r=t.matched.length-1,o=n.matched.length-1;return r>-1&&r===o&&G(t.matched[r],n.matched[o])&&Ge(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function G(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Ge(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!ht(e[n],t[n]))return!1;return!0}function ht(e,t){return L(e)?be(e,t):L(t)?be(t,e):e===t}function be(e,t){return L(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function dt(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/"),o=r[r.length-1];(o===".."||o===".")&&r.push("");let l=n.length-1,d,m;for(d=0;d1&&l--;else break;return n.slice(0,l).join("/")+"/"+r.slice(d-(d===r.length?1:0)).join("/")}var X;(function(e){e.pop="pop",e.push="push"})(X||(X={}));var Y;(function(e){e.back="back",e.forward="forward",e.unknown=""})(Y||(Y={}));function pt(e){if(!e)if(z){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),lt(e)}const mt=/^[^#]+#/;function gt(e,t){return e.replace(mt,"#")+t}function vt(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const te=()=>({left:window.pageXOffset,top:window.pageYOffset});function yt(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),o=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!o)return;t=vt(o,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function ke(e,t){return(history.state?history.state.position-t:-1)+e}const he=new Map;function Rt(e,t){he.set(e,t)}function Et(e){const t=he.get(e);return he.delete(e),t}let Pt=()=>location.protocol+"//"+location.host;function Ke(e,t){const{pathname:n,search:r,hash:o}=t,l=e.indexOf("#");if(l>-1){let m=o.includes(e.slice(l))?e.slice(l).length:1,i=o.slice(m);return i[0]!=="/"&&(i="/"+i),Ce(i,"")}return Ce(n,e)+r+o}function wt(e,t,n,r){let o=[],l=[],d=null;const m=({state:u})=>{const g=Ke(e,location),R=n.value,k=t.value;let b=0;if(u){if(n.value=g,t.value=u,d&&d===R){d=null;return}b=k?u.position-k.position:0}else r(g);o.forEach(E=>{E(n.value,R,{delta:b,type:X.pop,direction:b?b>0?Y.forward:Y.back:Y.unknown})})};function i(){d=n.value}function f(u){o.push(u);const g=()=>{const R=o.indexOf(u);R>-1&&o.splice(R,1)};return l.push(g),g}function s(){const{history:u}=window;u.state&&u.replaceState(S({},u.state,{scroll:te()}),"")}function a(){for(const u of l)u();l=[],window.removeEventListener("popstate",m),window.removeEventListener("beforeunload",s)}return window.addEventListener("popstate",m),window.addEventListener("beforeunload",s,{passive:!0}),{pauseListeners:i,listen:f,destroy:a}}function Ae(e,t,n,r=!1,o=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:o?te():null}}function St(e){const{history:t,location:n}=window,r={value:Ke(e,n)},o={value:t.state};o.value||l(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function l(i,f,s){const a=e.indexOf("#"),u=a>-1?(n.host&&document.querySelector("base")?e:e.slice(a))+i:Pt()+e+i;try{t[s?"replaceState":"pushState"](f,"",u),o.value=f}catch(g){console.error(g),n[s?"replace":"assign"](u)}}function d(i,f){const s=S({},t.state,Ae(o.value.back,i,o.value.forward,!0),f,{position:o.value.position});l(i,s,!0),r.value=i}function m(i,f){const s=S({},o.value,t.state,{forward:i,scroll:te()});l(s.current,s,!0);const a=S({},Ae(r.value,i,null),{position:s.position+1},f);l(i,a,!1),r.value=i}return{location:r,state:o,push:m,replace:d}}function Ct(e){e=pt(e);const t=St(e),n=wt(e,t.state,t.location,t.replace);function r(l,d=!0){d||n.pauseListeners(),history.go(l)}const o=S({location:"",base:e,go:r,createHref:gt.bind(null,e)},t,n);return Object.defineProperty(o,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(o,"state",{enumerable:!0,get:()=>t.state.value}),o}function fn(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Ct(e)}function bt(e){return typeof e=="string"||e&&typeof e=="object"}function Ve(e){return typeof e=="string"||typeof e=="symbol"}const $={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},Ue=Symbol("");var Oe;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Oe||(Oe={}));function K(e,t){return S(new Error,{type:e,[Ue]:!0},t)}function T(e,t){return e instanceof Error&&Ue in e&&(t==null||!!(e.type&t))}const _e="[^/]+?",kt={sensitive:!1,strict:!1,start:!0,end:!0},At=/[.+*?^${}()[\]/\\]/g;function Ot(e,t){const n=S({},kt,t),r=[];let o=n.start?"^":"";const l=[];for(const f of e){const s=f.length?[]:[90];n.strict&&!f.length&&(o+="/");for(let a=0;at.length?t.length===1&&t[0]===80?1:-1:0}function xt(e,t){let n=0;const r=e.score,o=t.score;for(;n0&&t[t.length-1]<0}const Mt={type:0,value:""},Lt=/[a-zA-Z0-9_]/;function Nt(e){if(!e)return[[]];if(e==="/")return[[Mt]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(g){throw new Error(`ERR (${n})/"${f}": ${g}`)}let n=0,r=n;const o=[];let l;function d(){l&&o.push(l),l=[]}let m=0,i,f="",s="";function a(){f&&(n===0?l.push({type:0,value:f}):n===1||n===2||n===3?(l.length>1&&(i==="*"||i==="+")&&t(`A repeatable param (${f}) must be alone in its segment. eg: '/:ids+.`),l.push({type:1,value:f,regexp:s,repeatable:i==="*"||i==="+",optional:i==="*"||i==="?"})):t("Invalid state to consume buffer"),f="")}function u(){f+=i}for(;m{d(w)}:F}function d(s){if(Ve(s)){const a=r.get(s);a&&(r.delete(s),n.splice(n.indexOf(a),1),a.children.forEach(d),a.alias.forEach(d))}else{const a=n.indexOf(s);a>-1&&(n.splice(a,1),s.record.name&&r.delete(s.record.name),s.children.forEach(d),s.alias.forEach(d))}}function m(){return n}function i(s){let a=0;for(;a=0&&(s.record.path!==n[a].record.path||!De(s,n[a]));)a++;n.splice(a,0,s),s.record.name&&!Le(s)&&r.set(s.record.name,s)}function f(s,a){let u,g={},R,k;if("name"in s&&s.name){if(u=r.get(s.name),!u)throw K(1,{location:s});k=u.record.name,g=S(Me(a.params,u.keys.filter(w=>!w.optional).map(w=>w.name)),s.params&&Me(s.params,u.keys.map(w=>w.name))),R=u.stringify(g)}else if("path"in s)R=s.path,u=n.find(w=>w.re.test(R)),u&&(g=u.parse(R),k=u.record.name);else{if(u=a.name?r.get(a.name):n.find(w=>w.re.test(a.path)),!u)throw K(1,{location:s,currentLocation:a});k=u.record.name,g=S({},a.params,s.params),R=u.stringify(g)}const b=[];let E=u;for(;E;)b.unshift(E.record),E=E.parent;return{name:k,path:R,params:g,matched:b,meta:Ht(b)}}return e.forEach(s=>l(s)),{addRoute:l,resolve:f,removeRoute:d,getRoutes:m,getRecordMatcher:o}}function Me(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function $t(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:jt(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function jt(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="object"?n[r]:n;return t}function Le(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function Ht(e){return e.reduce((t,n)=>S(t,n.meta),{})}function Ne(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function De(e,t){return t.children.some(n=>n===e||De(e,n))}const We=/#/g,Bt=/&/g,qt=/\//g,zt=/=/g,Gt=/\?/g,Qe=/\+/g,Kt=/%5B/g,Vt=/%5D/g,Fe=/%5E/g,Ut=/%60/g,Ye=/%7B/g,Dt=/%7C/g,Xe=/%7D/g,Wt=/%20/g;function me(e){return encodeURI(""+e).replace(Dt,"|").replace(Kt,"[").replace(Vt,"]")}function Qt(e){return me(e).replace(Ye,"{").replace(Xe,"}").replace(Fe,"^")}function de(e){return me(e).replace(Qe,"%2B").replace(Wt,"+").replace(We,"%23").replace(Bt,"%26").replace(Ut,"`").replace(Ye,"{").replace(Xe,"}").replace(Fe,"^")}function Ft(e){return de(e).replace(zt,"%3D")}function Yt(e){return me(e).replace(We,"%23").replace(Gt,"%3F")}function Xt(e){return e==null?"":Yt(e).replace(qt,"%2F")}function ee(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function Zt(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let o=0;ol&&de(l)):[r&&de(r)]).forEach(l=>{l!==void 0&&(t+=(t.length?"&":"")+n,l!=null&&(t+="="+l))})}return t}function Jt(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=L(r)?r.map(o=>o==null?null:""+o):r==null?r:""+r)}return t}const en=Symbol(""),Te=Symbol(""),ne=Symbol(""),ge=Symbol(""),pe=Symbol("");function W(){let e=[];function t(r){return e.push(r),()=>{const o=e.indexOf(r);o>-1&&e.splice(o,1)}}function n(){e=[]}return{add:t,list:()=>e.slice(),reset:n}}function j(e,t,n,r,o){const l=r&&(r.enterCallbacks[o]=r.enterCallbacks[o]||[]);return()=>new Promise((d,m)=>{const i=a=>{a===!1?m(K(4,{from:n,to:t})):a instanceof Error?m(a):bt(a)?m(K(2,{from:t,to:a})):(l&&r.enterCallbacks[o]===l&&typeof a=="function"&&l.push(a),d())},f=e.call(r&&r.instances[o],t,n,i);let s=Promise.resolve(f);e.length<3&&(s=s.then(i)),s.catch(a=>m(a))})}function fe(e,t,n,r){const o=[];for(const l of e)for(const d in l.components){let m=l.components[d];if(!(t!=="beforeRouteEnter"&&!l.instances[d]))if(tn(m)){const f=(m.__vccOpts||m)[t];f&&o.push(j(f,n,r,l,d))}else{let i=m();o.push(()=>i.then(f=>{if(!f)return Promise.reject(new Error(`Couldn't resolve component "${d}" at "${l.path}"`));const s=it(f)?f.default:f;l.components[d]=s;const u=(s.__vccOpts||s)[t];return u&&j(u,n,r,l,d)()}))}}return o}function tn(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function $e(e){const t=B(ne),n=B(ge),r=N(()=>t.resolve(Q(e.to))),o=N(()=>{const{matched:i}=r.value,{length:f}=i,s=i[f-1],a=n.matched;if(!s||!a.length)return-1;const u=a.findIndex(G.bind(null,s));if(u>-1)return u;const g=je(i[f-2]);return f>1&&je(s)===g&&a[a.length-1].path!==g?a.findIndex(G.bind(null,i[f-2])):u}),l=N(()=>o.value>-1&&sn(n.params,r.value.params)),d=N(()=>o.value>-1&&o.value===n.matched.length-1&&Ge(n.params,r.value.params));function m(i={}){return on(i)?t[Q(e.replace)?"replace":"push"](Q(e.to)).catch(F):Promise.resolve()}return{route:r,href:N(()=>r.value.href),isActive:l,isExactActive:d,navigate:m}}const nn=qe({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:$e,setup(e,{slots:t}){const n=ot($e(e)),{options:r}=B(ne),o=N(()=>({[He(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[He(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const l=t.default&&t.default(n);return e.custom?l:ze("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:o.value},l)}}}),rn=nn;function on(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function sn(e,t){for(const n in t){const r=t[n],o=e[n];if(typeof r=="string"){if(r!==o)return!1}else if(!L(o)||o.length!==r.length||r.some((l,d)=>l!==o[d]))return!1}return!0}function je(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const He=(e,t,n)=>e??t??n,cn=qe({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=B(pe),o=N(()=>e.route||r.value),l=B(Te,0),d=N(()=>{let f=Q(l);const{matched:s}=o.value;let a;for(;(a=s[f])&&!a.components;)f++;return f}),m=N(()=>o.value.matched[d.value]);ae(Te,N(()=>d.value+1)),ae(en,m),ae(pe,o);const i=st();return ct(()=>[i.value,m.value,e.name],([f,s,a],[u,g,R])=>{s&&(s.instances[a]=f,g&&g!==s&&f&&f===u&&(s.leaveGuards.size||(s.leaveGuards=g.leaveGuards),s.updateGuards.size||(s.updateGuards=g.updateGuards))),f&&s&&(!g||!G(s,g)||!u)&&(s.enterCallbacks[a]||[]).forEach(k=>k(f))},{flush:"post"}),()=>{const f=o.value,s=e.name,a=m.value,u=a&&a.components[s];if(!u)return Be(n.default,{Component:u,route:f});const g=a.props[s],R=g?g===!0?f.params:typeof g=="function"?g(f):g:null,b=ze(u,S({},R,t,{onVnodeUnmounted:E=>{E.component.isUnmounted&&(a.instances[s]=null)},ref:i}));return Be(n.default,{Component:b,route:f})||b}}});function Be(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const an=cn;function hn(e){const t=Tt(e.routes,e),n=e.parseQuery||Zt,r=e.stringifyQuery||Ie,o=e.history,l=W(),d=W(),m=W(),i=tt($);let f=$;z&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const s=le.bind(null,c=>""+c),a=le.bind(null,Xt),u=le.bind(null,ee);function g(c,p){let h,v;return Ve(c)?(h=t.getRecordMatcher(c),v=p):v=c,t.addRoute(v,h)}function R(c){const p=t.getRecordMatcher(c);p&&t.removeRoute(p)}function k(){return t.getRoutes().map(c=>c.record)}function b(c){return!!t.getRecordMatcher(c)}function E(c,p){if(p=S({},p||i.value),typeof c=="string"){const y=ue(n,c,p.path),O=t.resolve({path:y.path},p),D=o.createHref(y.fullPath);return S(y,O,{params:u(O.params),hash:ee(y.hash),redirectedFrom:void 0,href:D})}let h;if("path"in c)h=S({},c,{path:ue(n,c.path,p.path).path});else{const y=S({},c.params);for(const O in y)y[O]==null&&delete y[O];h=S({},c,{params:a(y)}),p.params=a(p.params)}const v=t.resolve(h,p),C=c.hash||"";v.params=s(u(v.params));const A=ut(r,S({},c,{hash:Qt(C),path:v.path})),P=o.createHref(A);return S({fullPath:A,hash:C,query:r===Ie?Jt(c.query):c.query||{}},v,{redirectedFrom:void 0,href:P})}function w(c){return typeof c=="string"?ue(n,c,i.value.path):S({},c)}function _(c,p){if(f!==c)return K(8,{from:p,to:c})}function M(c){return V(c)}function H(c){return M(S(w(c),{replace:!0}))}function I(c){const p=c.matched[c.matched.length-1];if(p&&p.redirect){const{redirect:h}=p;let v=typeof h=="function"?h(c):h;return typeof v=="string"&&(v=v.includes("?")||v.includes("#")?v=w(v):{path:v},v.params={}),S({query:c.query,hash:c.hash,params:"path"in v?{}:c.params},v)}}function V(c,p){const h=f=E(c),v=i.value,C=c.state,A=c.force,P=c.replace===!0,y=I(h);if(y)return V(S(w(y),{state:typeof y=="object"?S({},C,y.state):C,force:A,replace:P}),p||h);const O=h;O.redirectedFrom=p;let D;return!A&&ft(r,v,h)&&(D=K(16,{to:O,from:v}),we(v,v,!0,!1)),(D?Promise.resolve(D):ye(O,v)).catch(x=>T(x)?T(x,2)?x:se(x):oe(x,O,v)).then(x=>{if(x){if(T(x,2))return V(S({replace:P},w(x.to),{state:typeof x.to=="object"?S({},C,x.to.state):C,force:A}),p||O)}else x=Ee(O,v,!0,P,C);return Re(O,v,x),x})}function Ze(c,p){const h=_(c,p);return h?Promise.reject(h):Promise.resolve()}function ve(c){const p=J.values().next().value;return p&&typeof p.runWithContext=="function"?p.runWithContext(c):c()}function ye(c,p){let h;const[v,C,A]=ln(c,p);h=fe(v.reverse(),"beforeRouteLeave",c,p);for(const y of v)y.leaveGuards.forEach(O=>{h.push(j(O,c,p))});const P=Ze.bind(null,c,p);return h.push(P),q(h).then(()=>{h=[];for(const y of l.list())h.push(j(y,c,p));return h.push(P),q(h)}).then(()=>{h=fe(C,"beforeRouteUpdate",c,p);for(const y of C)y.updateGuards.forEach(O=>{h.push(j(O,c,p))});return h.push(P),q(h)}).then(()=>{h=[];for(const y of A)if(y.beforeEnter)if(L(y.beforeEnter))for(const O of y.beforeEnter)h.push(j(O,c,p));else h.push(j(y.beforeEnter,c,p));return h.push(P),q(h)}).then(()=>(c.matched.forEach(y=>y.enterCallbacks={}),h=fe(A,"beforeRouteEnter",c,p),h.push(P),q(h))).then(()=>{h=[];for(const y of d.list())h.push(j(y,c,p));return h.push(P),q(h)}).catch(y=>T(y,8)?y:Promise.reject(y))}function Re(c,p,h){m.list().forEach(v=>ve(()=>v(c,p,h)))}function Ee(c,p,h,v,C){const A=_(c,p);if(A)return A;const P=p===$,y=z?history.state:{};h&&(v||P?o.replace(c.fullPath,S({scroll:P&&y&&y.scroll},C)):o.push(c.fullPath,C)),i.value=c,we(c,p,h,P),se()}let U;function Je(){U||(U=o.listen((c,p,h)=>{if(!Se.listening)return;const v=E(c),C=I(v);if(C){V(S(C,{replace:!0}),v).catch(F);return}f=v;const A=i.value;z&&Rt(ke(A.fullPath,h.delta),te()),ye(v,A).catch(P=>T(P,12)?P:T(P,2)?(V(P.to,v).then(y=>{T(y,20)&&!h.delta&&h.type===X.pop&&o.go(-1,!1)}).catch(F),Promise.reject()):(h.delta&&o.go(-h.delta,!1),oe(P,v,A))).then(P=>{P=P||Ee(v,A,!1),P&&(h.delta&&!T(P,8)?o.go(-h.delta,!1):h.type===X.pop&&T(P,20)&&o.go(-1,!1)),Re(v,A,P)}).catch(F)}))}let re=W(),Pe=W(),Z;function oe(c,p,h){se(c);const v=Pe.list();return v.length?v.forEach(C=>C(c,p,h)):console.error(c),Promise.reject(c)}function et(){return Z&&i.value!==$?Promise.resolve():new Promise((c,p)=>{re.add([c,p])})}function se(c){return Z||(Z=!c,Je(),re.list().forEach(([p,h])=>c?h(c):p()),re.reset()),c}function we(c,p,h,v){const{scrollBehavior:C}=e;if(!z||!C)return Promise.resolve();const A=!h&&Et(ke(c.fullPath,0))||(v||!h)&&history.state&&history.state.scroll||null;return rt().then(()=>C(c,p,A)).then(P=>P&&yt(P)).catch(P=>oe(P,c,p))}const ce=c=>o.go(c);let ie;const J=new Set,Se={currentRoute:i,listening:!0,addRoute:g,removeRoute:R,hasRoute:b,getRoutes:k,resolve:E,options:e,push:M,replace:H,go:ce,back:()=>ce(-1),forward:()=>ce(1),beforeEach:l.add,beforeResolve:d.add,afterEach:m.add,onError:Pe.add,isReady:et,install(c){const p=this;c.component("RouterLink",rn),c.component("RouterView",an),c.config.globalProperties.$router=p,Object.defineProperty(c.config.globalProperties,"$route",{enumerable:!0,get:()=>Q(i)}),z&&!ie&&i.value===$&&(ie=!0,M(o.location).catch(C=>{}));const h={};for(const C in $)Object.defineProperty(h,C,{get:()=>i.value[C],enumerable:!0});c.provide(ne,p),c.provide(ge,nt(h)),c.provide(pe,i);const v=c.unmount;J.add(c),c.unmount=function(){J.delete(c),J.size<1&&(f=$,U&&U(),U=null,i.value=$,ie=!1,Z=!1),v()}}};function q(c){return c.reduce((p,h)=>p.then(()=>ve(h)),Promise.resolve())}return Se}function ln(e,t){const n=[],r=[],o=[],l=Math.max(t.matched.length,e.matched.length);for(let d=0;dG(f,m))?r.push(m):n.push(m));const i=e.matched[d];i&&(t.matched.find(f=>G(f,i))||o.push(i))}return[n,r,o]}function dn(){return B(ne)}function pn(){return B(ge)}export{fn as a,pn as b,hn as c,dn as u}; diff --git a/web/dist/assets/vueuc-7c8d4b48.js b/web/dist/assets/vueuc-7c8d4b48.js deleted file mode 100644 index 120c37c6..00000000 --- a/web/dist/assets/vueuc-7c8d4b48.js +++ /dev/null @@ -1 +0,0 @@ -import{a as q,o as se}from"./evtd-b614532e.js";import{j as Me,d as ce,p as G,e as Ce,g as Le}from"./seemly-76b7b838.js";import{A as He,F as Se,C as Ve,d as k,p as Ye,g as Te,i as fe,H as F,G as R,O as ze,M as Z,c as D,h as E,W as Xe,b as K,E as U,n as Ee,v as Ae,I as De,J as Ne,N as _e}from"./@vue-a481fc63.js";import{u as ee}from"./@css-render-7124a1a5.js";import{h as je,u as ue,o as Pe,i as Ue}from"./vooks-6d99783e.js";import{z as qe}from"./vdirs-b0483831.js";import{R as Ke}from"./@juggle-41516555.js";import{C as Ge}from"./css-render-6a5c5852.js";function ae(n,e,t="default"){const r=e[t];if(r===void 0)throw new Error(`[vueuc/${n}]: slot[${t}] is empty.`);return r()}function de(n,e=!0,t=[]){return n.forEach(r=>{if(r!==null){if(typeof r!="object"){(typeof r=="string"||typeof r=="number")&&t.push(He(String(r)));return}if(Array.isArray(r)){de(r,e,t);return}if(r.type===Se){if(r.children===null)return;Array.isArray(r.children)&&de(r.children,e,t)}else r.type!==Ve&&t.push(r)}}),t}function he(n,e,t="default"){const r=e[t];if(r===void 0)throw new Error(`[vueuc/${n}]: slot[${t}] is empty.`);const o=de(r());if(o.length===1)return o[0];throw new Error(`[vueuc/${n}]: slot[${t}] should have exactly one child.`)}let H=null;function Fe(){if(H===null&&(H=document.getElementById("v-binder-view-measurer"),H===null)){H=document.createElement("div"),H.id="v-binder-view-measurer";const{style:n}=H;n.position="fixed",n.left="0",n.right="0",n.top="0",n.bottom="0",n.pointerEvents="none",n.visibility="hidden",document.body.appendChild(H)}return H.getBoundingClientRect()}function Je(n,e){const t=Fe();return{top:e,left:n,height:0,width:0,right:t.width-n,bottom:t.height-e}}function oe(n){const e=n.getBoundingClientRect(),t=Fe();return{left:e.left-t.left,top:e.top-t.top,bottom:t.height+t.top-e.bottom,right:t.width+t.left-e.right,width:e.width,height:e.height}}function Qe(n){return n.nodeType===9?null:n.parentNode}function Be(n){if(n===null)return null;const e=Qe(n);if(e===null)return null;if(e.nodeType===9)return document;if(e.nodeType===1){const{overflow:t,overflowX:r,overflowY:o}=getComputedStyle(e);if(/(auto|scroll|overlay)/.test(t+o+r))return e}return Be(e)}const Ze=k({name:"Binder",props:{syncTargetWithParent:Boolean,syncTarget:{type:Boolean,default:!0}},setup(n){var e;Ye("VBinder",(e=Te())===null||e===void 0?void 0:e.proxy);const t=fe("VBinder",null),r=F(null),o=i=>{r.value=i,t&&n.syncTargetWithParent&&t.setTargetRef(i)};let l=[];const p=()=>{let i=r.value;for(;i=Be(i),i!==null;)l.push(i);for(const b of l)se("scroll",b,x,!0)},g=()=>{for(const i of l)q("scroll",i,x,!0);l=[]},a=new Set,m=i=>{a.size===0&&p(),a.has(i)||a.add(i)},y=i=>{a.has(i)&&a.delete(i),a.size===0&&g()},x=()=>{Me(d)},d=()=>{a.forEach(i=>i())},c=new Set,v=i=>{c.size===0&&se("resize",window,u),c.has(i)||c.add(i)},h=i=>{c.has(i)&&c.delete(i),c.size===0&&q("resize",window,u)},u=()=>{c.forEach(i=>i())};return R(()=>{q("resize",window,u),g()}),{targetRef:r,setTargetRef:o,addScrollListener:m,removeScrollListener:y,addResizeListener:v,removeResizeListener:h}},render(){return ae("binder",this.$slots)}}),$t=Ze,Mt=k({name:"Target",setup(){const{setTargetRef:n,syncTarget:e}=fe("VBinder");return{syncTarget:e,setTargetDirective:{mounted:n,updated:n}}},render(){const{syncTarget:n,setTargetDirective:e}=this;return n?ze(he("follower",this.$slots),[[e]]):he("follower",this.$slots)}});function pe(n,e){console.error(`[vueuc/${n}]: ${e}`)}const{c:W}=Ge(),te="vueuc-style";function me(n){return n&-n}class Re{constructor(e,t){this.l=e,this.min=t;const r=new Array(e+1);for(let o=0;oo)throw new Error("[FinweckTree.sum]: `i` is larger than length.");let l=e*r;for(;e>0;)l+=t[e],e-=me(e);return l}getBound(e){let t=0,r=this.l;for(;r>t;){const o=Math.floor((t+r)/2),l=this.sum(o);if(l>e){r=o;continue}else if(l{const{to:e}=n;return e??"body"})}},render(){return this.showTeleport?this.disabled?ae("lazy-teleport",this.$slots):E(Xe,{disabled:this.disabled,to:this.mergedTo},ae("lazy-teleport",this.$slots)):null}}),J={top:"bottom",bottom:"top",left:"right",right:"left"},be={start:"end",center:"center",end:"start"},ie={top:"height",bottom:"height",left:"width",right:"width"},tt={"bottom-start":"top left",bottom:"top center","bottom-end":"top right","top-start":"bottom left",top:"bottom center","top-end":"bottom right","right-start":"top left",right:"center left","right-end":"bottom left","left-start":"top right",left:"center right","left-end":"bottom right"},nt={"bottom-start":"bottom left",bottom:"bottom center","bottom-end":"bottom right","top-start":"top left",top:"top center","top-end":"top right","right-start":"top right",right:"center right","right-end":"bottom right","left-start":"top left",left:"center left","left-end":"bottom left"},rt={"bottom-start":"right","bottom-end":"left","top-start":"right","top-end":"left","right-start":"bottom","right-end":"top","left-start":"bottom","left-end":"top"},ge={top:!0,bottom:!1,left:!0,right:!1},we={top:"end",bottom:"start",left:"end",right:"start"};function ot(n,e,t,r,o,l){if(!o||l)return{placement:n,top:0,left:0};const[p,g]=n.split("-");let a=g??"center",m={top:0,left:0};const y=(c,v,h)=>{let u=0,i=0;const b=t[c]-e[v]-e[c];return b>0&&r&&(h?i=ge[v]?b:-b:u=ge[v]?b:-b),{left:u,top:i}},x=p==="left"||p==="right";if(a!=="center"){const c=rt[n],v=J[c],h=ie[c];if(t[h]>e[h]){if(e[c]+e[h]e[v]&&(a=be[g])}else{const c=p==="bottom"||p==="top"?"left":"top",v=J[c],h=ie[c],u=(t[h]-e[h])/2;(e[c]e[v]?(a=we[c],m=y(h,c,x)):(a=we[v],m=y(h,v,x)))}let d=p;return e[p] *",{pointerEvents:"all"})])]),St=k({name:"Follower",inheritAttrs:!1,props:{show:Boolean,enabled:{type:Boolean,default:void 0},placement:{type:String,default:"bottom"},syncTrigger:{type:Array,default:["resize","scroll"]},to:[String,Object],flip:{type:Boolean,default:!0},internalShift:Boolean,x:Number,y:Number,width:String,minWidth:String,containerClass:String,teleportDisabled:Boolean,zindexable:{type:Boolean,default:!0},zIndex:Number,overlap:Boolean},setup(n){const e=fe("VBinder"),t=ue(()=>n.enabled!==void 0?n.enabled:n.show),r=F(null),o=F(null),l=()=>{const{syncTrigger:d}=n;d.includes("scroll")&&e.addScrollListener(a),d.includes("resize")&&e.addResizeListener(a)},p=()=>{e.removeScrollListener(a),e.removeResizeListener(a)};K(()=>{t.value&&(a(),l())});const g=ee();st.mount({id:"vueuc/binder",head:!0,anchorMetaName:te,ssr:g}),R(()=>{p()}),Pe(()=>{t.value&&a()});const a=()=>{if(!t.value)return;const d=r.value;if(d===null)return;const c=e.targetRef,{x:v,y:h,overlap:u}=n,i=v!==void 0&&h!==void 0?Je(v,h):oe(c);d.style.setProperty("--v-target-width",`${Math.round(i.width)}px`),d.style.setProperty("--v-target-height",`${Math.round(i.height)}px`);const{width:b,minWidth:z,placement:I,internalShift:C,flip:O}=n;d.setAttribute("v-placement",I),u?d.setAttribute("v-overlap",""):d.removeAttribute("v-overlap");const{style:B}=d;b==="target"?B.width=`${i.width}px`:b!==void 0?B.width=b:B.width="",z==="target"?B.minWidth=`${i.width}px`:z!==void 0?B.minWidth=z:B.minWidth="";const X=oe(d),N=oe(o.value),{left:_,top:s,placement:f}=ot(I,i,X,C,O,u),w=it(f,u),{left:$,top:M,transform:T}=lt(f,N,i,s,_,u);d.setAttribute("v-placement",f),d.style.setProperty("--v-offset-left",`${Math.round(_)}px`),d.style.setProperty("--v-offset-top",`${Math.round(s)}px`),d.style.transform=`translateX(${$}) translateY(${M}) ${T}`,d.style.setProperty("--v-transform-origin",w),d.style.transformOrigin=w};U(t,d=>{d?(l(),m()):p()});const m=()=>{Ee().then(a).catch(d=>console.error(d))};["placement","x","y","internalShift","flip","width","overlap","minWidth"].forEach(d=>{U(Z(n,d),a)}),["teleportDisabled"].forEach(d=>{U(Z(n,d),m)}),U(Z(n,"syncTrigger"),d=>{d.includes("resize")?e.addResizeListener(a):e.removeResizeListener(a),d.includes("scroll")?e.addScrollListener(a):e.removeScrollListener(a)});const y=Ue(),x=ue(()=>{const{to:d}=n;if(d!==void 0)return d;y.value});return{VBinder:e,mergedEnabled:t,offsetContainerRef:o,followerRef:r,mergedTo:x,syncPosition:a}},render(){return E(et,{show:this.show,to:this.mergedTo,disabled:this.teleportDisabled},{default:()=>{var n,e;const t=E("div",{class:["v-binder-follower-container",this.containerClass],ref:"offsetContainerRef"},[E("div",{class:"v-binder-follower-content",ref:"followerRef"},(e=(n=this.$slots).default)===null||e===void 0?void 0:e.call(n))]);return this.zindexable?ze(t,[[qe,{enabled:this.mergedEnabled,zIndex:this.zIndex}]]):t}})}});class ut{constructor(){this.handleResize=this.handleResize.bind(this),this.observer=new(typeof window<"u"&&window.ResizeObserver||Ke)(this.handleResize),this.elHandlersMap=new Map}handleResize(e){for(const t of e){const r=this.elHandlersMap.get(t.target);r!==void 0&&r(t)}}registerHandler(e,t){this.elHandlersMap.set(e,t),this.observer.observe(e)}unregisterHandler(e){this.elHandlersMap.has(e)&&(this.elHandlersMap.delete(e),this.observer.unobserve(e))}}const ye=new ut,xe=k({name:"ResizeObserver",props:{onResize:Function},setup(n){let e=!1;const t=Te().proxy;function r(o){const{onResize:l}=n;l!==void 0&&l(o)}K(()=>{const o=t.$el;if(o===void 0){pe("resize-observer","$el does not exist.");return}if(o.nextElementSibling!==o.nextSibling&&o.nodeType===3&&o.nodeValue!==""){pe("resize-observer","$el can not be observed (it may be a text node).");return}o.nextElementSibling!==null&&(ye.registerHandler(o.nextElementSibling,r),e=!0)}),R(()=>{e&&ye.unregisterHandler(t.$el.nextElementSibling)})},render(){return Ae(this.$slots,"default")}});let Q;function at(){return Q===void 0&&("matchMedia"in window?Q=window.matchMedia("(pointer:coarse)").matches:Q=!1),Q}let le;function $e(){return le===void 0&&(le="chrome"in window?window.devicePixelRatio:1),le}const dt=W(".v-vl",{maxHeight:"inherit",height:"100%",overflow:"auto",minWidth:"1px"},[W("&:not(.v-vl--show-scrollbar)",{scrollbarWidth:"none"},[W("&::-webkit-scrollbar, &::-webkit-scrollbar-track-piece, &::-webkit-scrollbar-thumb",{width:0,height:0,display:"none"})])]),Tt=k({name:"VirtualList",inheritAttrs:!1,props:{showScrollbar:{type:Boolean,default:!0},items:{type:Array,default:()=>[]},itemSize:{type:Number,required:!0},itemResizable:Boolean,itemsStyle:[String,Object],visibleItemsTag:{type:[String,Object],default:"div"},visibleItemsProps:Object,ignoreItemResize:Boolean,onScroll:Function,onWheel:Function,onResize:Function,defaultScrollKey:[Number,String],defaultScrollIndex:Number,keyField:{type:String,default:"key"},paddingTop:{type:[Number,String],default:0},paddingBottom:{type:[Number,String],default:0}},setup(n){const e=ee();dt.mount({id:"vueuc/virtual-list",head:!0,anchorMetaName:te,ssr:e}),K(()=>{const{defaultScrollIndex:s,defaultScrollKey:f}=n;s!=null?v({index:s}):f!=null&&v({key:f})});let t=!1,r=!1;De(()=>{if(t=!1,!r){r=!0;return}v({top:x.value,left:y})}),Ne(()=>{t=!0,r||(r=!0)});const o=D(()=>{const s=new Map,{keyField:f}=n;return n.items.forEach((w,$)=>{s.set(w[f],$)}),s}),l=F(null),p=F(void 0),g=new Map,a=D(()=>{const{items:s,itemSize:f,keyField:w}=n,$=new Re(s.length,f);return s.forEach((M,T)=>{const S=M[w],A=g.get(S);A!==void 0&&$.add(T,A)}),$}),m=F(0);let y=0;const x=F(0),d=ue(()=>Math.max(a.value.getBound(x.value-ce(n.paddingTop))-1,0)),c=D(()=>{const{value:s}=p;if(s===void 0)return[];const{items:f,itemSize:w}=n,$=d.value,M=Math.min($+Math.ceil(s/w+1),f.length-1),T=[];for(let S=$;S<=M;++S)T.push(f[S]);return T}),v=(s,f)=>{if(typeof s=="number"){b(s,f,"auto");return}const{left:w,top:$,index:M,key:T,position:S,behavior:A,debounce:L=!0}=s;if(w!==void 0||$!==void 0)b(w,$,A);else if(M!==void 0)i(M,A,L);else if(T!==void 0){const ne=o.value.get(T);ne!==void 0&&i(ne,A,L)}else S==="bottom"?b(0,Number.MAX_SAFE_INTEGER,A):S==="top"&&b(0,0,A)};let h,u=null;function i(s,f,w){const{value:$}=a,M=$.sum(s)+ce(n.paddingTop);if(!w)l.value.scrollTo({left:0,top:M,behavior:f});else{h=s,u!==null&&window.clearTimeout(u),u=window.setTimeout(()=>{h=void 0,u=null},16);const{scrollTop:T,offsetHeight:S}=l.value;if(M>T){const A=$.get(s);M+A<=T+S||l.value.scrollTo({left:0,top:M+A-S,behavior:f})}else l.value.scrollTo({left:0,top:M,behavior:f})}}function b(s,f,w){l.value.scrollTo({left:s,top:f,behavior:w})}function z(s,f){var w,$,M;if(t||n.ignoreItemResize||_(f.target))return;const{value:T}=a,S=o.value.get(s),A=T.get(S),L=(M=($=(w=f.borderBoxSize)===null||w===void 0?void 0:w[0])===null||$===void 0?void 0:$.blockSize)!==null&&M!==void 0?M:f.contentRect.height;if(L===A)return;L-n.itemSize===0?g.delete(s):g.set(s,L-n.itemSize);const j=L-A;if(j===0)return;T.add(S,j);const V=l.value;if(V!=null){if(h===void 0){const re=T.sum(S);V.scrollTop>re&&V.scrollBy(0,j)}else if(SV.scrollTop+V.offsetHeight&&V.scrollBy(0,j)}N()}m.value++}const I=!at();let C=!1;function O(s){var f;(f=n.onScroll)===null||f===void 0||f.call(n,s),(!I||!C)&&N()}function B(s){var f;if((f=n.onWheel)===null||f===void 0||f.call(n,s),I){const w=l.value;if(w!=null){if(s.deltaX===0&&(w.scrollTop===0&&s.deltaY<=0||w.scrollTop+w.offsetHeight>=w.scrollHeight&&s.deltaY>=0))return;s.preventDefault(),w.scrollTop+=s.deltaY/$e(),w.scrollLeft+=s.deltaX/$e(),N(),C=!0,Me(()=>{C=!1})}}}function X(s){if(t||_(s.target)||s.contentRect.height===p.value)return;p.value=s.contentRect.height;const{onResize:f}=n;f!==void 0&&f(s)}function N(){const{value:s}=l;s!=null&&(x.value=s.scrollTop,y=s.scrollLeft)}function _(s){let f=s;for(;f!==null;){if(f.style.display==="none")return!0;f=f.parentElement}return!1}return{listHeight:p,listStyle:{overflow:"auto"},keyToIndex:o,itemsStyle:D(()=>{const{itemResizable:s}=n,f=G(a.value.sum());return m.value,[n.itemsStyle,{boxSizing:"content-box",height:s?"":f,minHeight:s?f:"",paddingTop:G(n.paddingTop),paddingBottom:G(n.paddingBottom)}]}),visibleItemsStyle:D(()=>(m.value,{transform:`translateY(${G(a.value.sum(d.value))})`})),viewportItems:c,listElRef:l,itemsElRef:F(null),scrollTo:v,handleListResize:X,handleListScroll:O,handleListWheel:B,handleItemResize:z}},render(){const{itemResizable:n,keyField:e,keyToIndex:t,visibleItemsTag:r}=this;return E(xe,{onResize:this.handleListResize},{default:()=>{var o,l;return E("div",_e(this.$attrs,{class:["v-vl",this.showScrollbar&&"v-vl--show-scrollbar"],onScroll:this.handleListScroll,onWheel:this.handleListWheel,ref:"listElRef"}),[this.items.length!==0?E("div",{ref:"itemsElRef",class:"v-vl-items",style:this.itemsStyle},[E(r,Object.assign({class:"v-vl-visible-items",style:this.visibleItemsStyle},this.visibleItemsProps),{default:()=>this.viewportItems.map(p=>{const g=p[e],a=t.get(g),m=this.$slots.default({item:p,index:a})[0];return n?E(xe,{key:g,onResize:y=>this.handleItemResize(g,y)},{default:()=>m}):(m.key=g,m)})})]):(l=(o=this.$slots).empty)===null||l===void 0?void 0:l.call(o)])}})}}),ft=W(".v-x-scroll",{overflow:"auto",scrollbarWidth:"none"},[W("&::-webkit-scrollbar",{width:0,height:0})]),zt=k({name:"XScroll",props:{disabled:Boolean,onScroll:Function},setup(){const n=F(null);function e(o){!(o.currentTarget.offsetWidthx){const{updateCounter:C}=n;for(let O=b;O>=0;--O){const B=u-1-O;C!==void 0?C(B):m.textContent=`${B}`;const X=m.offsetWidth;if(v-=d[O],v+X<=x||O===0){h=!0,b=O-1,c&&(b===-1?(c.style.maxWidth=`${x-X}px`,c.style.boxSizing="border-box"):c.style.maxWidth="");break}}}}const{onUpdateOverflow:i}=n;h?i!==void 0&&i(!0):(i!==void 0&&i(!1),m.setAttribute(Y,""))}const l=ee();return ct.mount({id:"vueuc/overflow",head:!0,anchorMetaName:te,ssr:l}),K(o),{selfRef:t,counterRef:r,sync:o}},render(){const{$slots:n}=this;return Ee(this.sync),E("div",{class:"v-overflow",ref:"selfRef"},[Ae(n,"default"),n.counter?n.counter():E("span",{style:{display:"inline-block"},ref:"counterRef"}),n.tail?n.tail():null])}});function Ie(n){return n instanceof HTMLElement}function Oe(n){for(let e=0;e=0;e--){const t=n.childNodes[e];if(Ie(t)&&(ke(t)||We(t)))return!0}return!1}function ke(n){if(!ht(n))return!1;try{n.focus({preventScroll:!0})}catch{}return document.activeElement===n}function ht(n){if(n.tabIndex>0||n.tabIndex===0&&n.getAttribute("tabIndex")!==null)return!0;if(n.getAttribute("disabled"))return!1;switch(n.nodeName){case"A":return!!n.href&&n.rel!=="ignore";case"INPUT":return n.type!=="hidden"&&n.type!=="file";case"BUTTON":case"SELECT":case"TEXTAREA":return!0;default:return!1}}let P=[];const At=k({name:"FocusTrap",props:{disabled:Boolean,active:Boolean,autoFocus:{type:Boolean,default:!0},onEsc:Function,initialFocusTo:String,finalFocusTo:String,returnFocusOnDeactivated:{type:Boolean,default:!0}},setup(n){const e=Ce(),t=F(null),r=F(null);let o=!1,l=!1;const p=typeof document>"u"?null:document.activeElement;function g(){return P[P.length-1]===e}function a(u){var i;u.code==="Escape"&&g()&&((i=n.onEsc)===null||i===void 0||i.call(n,u))}K(()=>{U(()=>n.active,u=>{u?(x(),se("keydown",document,a)):(q("keydown",document,a),o&&d())},{immediate:!0})}),R(()=>{q("keydown",document,a),o&&d()});function m(u){if(!l&&g()){const i=y();if(i===null||i.contains(Le(u)))return;c("first")}}function y(){const u=t.value;if(u===null)return null;let i=u;for(;i=i.nextSibling,!(i===null||i instanceof Element&&i.tagName==="DIV"););return i}function x(){var u;if(!n.disabled){if(P.push(e),n.autoFocus){const{initialFocusTo:i}=n;i===void 0?c("first"):(u=ve(i))===null||u===void 0||u.focus({preventScroll:!0})}o=!0,document.addEventListener("focus",m,!0)}}function d(){var u;if(n.disabled||(document.removeEventListener("focus",m,!0),P=P.filter(b=>b!==e),g()))return;const{finalFocusTo:i}=n;i!==void 0?(u=ve(i))===null||u===void 0||u.focus({preventScroll:!0}):n.returnFocusOnDeactivated&&p instanceof HTMLElement&&(l=!0,p.focus({preventScroll:!0}),l=!1)}function c(u){if(g()&&n.active){const i=t.value,b=r.value;if(i!==null&&b!==null){const z=y();if(z==null||z===b){l=!0,i.focus({preventScroll:!0}),l=!1;return}l=!0;const I=u==="first"?Oe(z):We(z);l=!1,I||(l=!0,i.focus({preventScroll:!0}),l=!1)}}}function v(u){if(l)return;const i=y();i!==null&&(u.relatedTarget!==null&&i.contains(u.relatedTarget)?c("last"):c("first"))}function h(u){l||(u.relatedTarget!==null&&u.relatedTarget===t.value?c("last"):c("first"))}return{focusableStartRef:t,focusableEndRef:r,focusableStyle:"position: absolute; height: 0; width: 0;",handleStartFocus:v,handleEndFocus:h}},render(){const{default:n}=this.$slots;if(n===void 0)return null;if(this.disabled)return n();const{active:e,focusableStyle:t}=this;return E(Se,null,[E("div",{"aria-hidden":"true",tabindex:e?"0":"-1",ref:"focusableStartRef",style:t,onFocus:this.handleStartFocus}),n(),E("div",{"aria-hidden":"true",style:t,ref:"focusableEndRef",tabindex:e?"0":"-1",onFocus:this.handleEndFocus})])}});export{At as F,et as L,xe as V,Tt as a,St as b,Mt as c,$t as d,Et as e,zt as f,ye as r}; diff --git a/web/dist/assets/vueuc-CbQ6ZCvR.js b/web/dist/assets/vueuc-CbQ6ZCvR.js new file mode 100644 index 00000000..048ac310 --- /dev/null +++ b/web/dist/assets/vueuc-CbQ6ZCvR.js @@ -0,0 +1 @@ +import{a as q,o as se}from"./evtd-CI_DDEu_.js";import{k as Me,d as ce,p as G,e as Ce,g as Le}from"./seemly-B7f2tHrf.js";import{A as He,F as Se,C as Ve,d as k,p as Xe,g as Te,i as fe,H as I,G as R,P as ze,N as Z,c as _,h as A,X as Ye,b as K,E as U,n as Ee,v as Ae,I as De,J as Ne,O as _e}from"./@vue-CQsYufSu.js";import{u as ee}from"./@css-render-CQdyXCYJ.js";import{h as Pe,u as ue,o as je,i as Ue}from"./vooks-BQzJqMzq.js";import{z as qe}from"./vdirs-DL8EOfHr.js";import{R as Ke}from"./@juggle-C8OzoCMD.js";import{C as Ge}from"./css-render-Ct37b3-v.js";function ae(n,e,t="default"){const o=e[t];if(o===void 0)throw new Error(`[vueuc/${n}]: slot[${t}] is empty.`);return o()}function de(n,e=!0,t=[]){return n.forEach(o=>{if(o!==null){if(typeof o!="object"){(typeof o=="string"||typeof o=="number")&&t.push(He(String(o)));return}if(Array.isArray(o)){de(o,e,t);return}if(o.type===Se){if(o.children===null)return;Array.isArray(o.children)&&de(o.children,e,t)}else o.type!==Ve&&t.push(o)}}),t}function he(n,e,t="default"){const o=e[t];if(o===void 0)throw new Error(`[vueuc/${n}]: slot[${t}] is empty.`);const r=de(o());if(r.length===1)return r[0];throw new Error(`[vueuc/${n}]: slot[${t}] should have exactly one child.`)}let X=null;function Fe(){if(X===null&&(X=document.getElementById("v-binder-view-measurer"),X===null)){X=document.createElement("div"),X.id="v-binder-view-measurer";const{style:n}=X;n.position="fixed",n.left="0",n.right="0",n.top="0",n.bottom="0",n.pointerEvents="none",n.visibility="hidden",document.body.appendChild(X)}return X.getBoundingClientRect()}function Je(n,e){const t=Fe();return{top:e,left:n,height:0,width:0,right:t.width-n,bottom:t.height-e}}function re(n){const e=n.getBoundingClientRect(),t=Fe();return{left:e.left-t.left,top:e.top-t.top,bottom:t.height+t.top-e.bottom,right:t.width+t.left-e.right,width:e.width,height:e.height}}function Qe(n){return n.nodeType===9?null:n.parentNode}function Be(n){if(n===null)return null;const e=Qe(n);if(e===null)return null;if(e.nodeType===9)return document;if(e.nodeType===1){const{overflow:t,overflowX:o,overflowY:r}=getComputedStyle(e);if(/(auto|scroll|overlay)/.test(t+r+o))return e}return Be(e)}const Ze=k({name:"Binder",props:{syncTargetWithParent:Boolean,syncTarget:{type:Boolean,default:!0}},setup(n){var e;Xe("VBinder",(e=Te())===null||e===void 0?void 0:e.proxy);const t=fe("VBinder",null),o=I(null),r=i=>{o.value=i,t&&n.syncTargetWithParent&&t.setTargetRef(i)};let l=[];const v=()=>{let i=o.value;for(;i=Be(i),i!==null;)l.push(i);for(const y of l)se("scroll",y,M,!0)},m=()=>{for(const i of l)q("scroll",i,M,!0);l=[]},d=new Set,g=i=>{d.size===0&&v(),d.has(i)||d.add(i)},w=i=>{d.has(i)&&d.delete(i),d.size===0&&m()},M=()=>{Me(a)},a=()=>{d.forEach(i=>i())},c=new Set,p=i=>{c.size===0&&se("resize",window,s),c.has(i)||c.add(i)},h=i=>{c.has(i)&&c.delete(i),c.size===0&&q("resize",window,s)},s=()=>{c.forEach(i=>i())};return R(()=>{q("resize",window,s),m()}),{targetRef:o,setTargetRef:r,addScrollListener:g,removeScrollListener:w,addResizeListener:p,removeResizeListener:h}},render(){return ae("binder",this.$slots)}}),$t=Ze,Mt=k({name:"Target",setup(){const{setTargetRef:n,syncTarget:e}=fe("VBinder");return{syncTarget:e,setTargetDirective:{mounted:n,updated:n}}},render(){const{syncTarget:n,setTargetDirective:e}=this;return n?ze(he("follower",this.$slots),[[e]]):he("follower",this.$slots)}});function pe(n,e){console.error(`[vueuc/${n}]: ${e}`)}const{c:O}=Ge(),te="vueuc-style";function me(n){return n&-n}class Re{constructor(e,t){this.l=e,this.min=t;const o=new Array(e+1);for(let r=0;rr)throw new Error("[FinweckTree.sum]: `i` is larger than length.");let l=e*o;for(;e>0;)l+=t[e],e-=me(e);return l}getBound(e){let t=0,o=this.l;for(;o>t;){const r=Math.floor((t+o)/2),l=this.sum(r);if(l>e){o=r;continue}else if(l{const{to:e}=n;return e??"body"})}},render(){return this.showTeleport?this.disabled?ae("lazy-teleport",this.$slots):A(Ye,{disabled:this.disabled,to:this.mergedTo},ae("lazy-teleport",this.$slots)):null}}),J={top:"bottom",bottom:"top",left:"right",right:"left"},be={start:"end",center:"center",end:"start"},ie={top:"height",bottom:"height",left:"width",right:"width"},tt={"bottom-start":"top left",bottom:"top center","bottom-end":"top right","top-start":"bottom left",top:"bottom center","top-end":"bottom right","right-start":"top left",right:"center left","right-end":"bottom left","left-start":"top right",left:"center right","left-end":"bottom right"},nt={"bottom-start":"bottom left",bottom:"bottom center","bottom-end":"bottom right","top-start":"top left",top:"top center","top-end":"top right","right-start":"top right",right:"center right","right-end":"bottom right","left-start":"top left",left:"center left","left-end":"bottom left"},ot={"bottom-start":"right","bottom-end":"left","top-start":"right","top-end":"left","right-start":"bottom","right-end":"top","left-start":"bottom","left-end":"top"},ge={top:!0,bottom:!1,left:!0,right:!1},we={top:"end",bottom:"start",left:"end",right:"start"};function rt(n,e,t,o,r,l){if(!r||l)return{placement:n,top:0,left:0};const[v,m]=n.split("-");let d=m??"center",g={top:0,left:0};const w=(c,p,h)=>{let s=0,i=0;const y=t[c]-e[p]-e[c];return y>0&&o&&(h?i=ge[p]?y:-y:s=ge[p]?y:-y),{left:s,top:i}},M=v==="left"||v==="right";if(d!=="center"){const c=ot[n],p=J[c],h=ie[c];if(t[h]>e[h]){if(e[c]+e[h]e[p]&&(d=be[m])}else{const c=v==="bottom"||v==="top"?"left":"top",p=J[c],h=ie[c],s=(t[h]-e[h])/2;(e[c]e[p]?(d=we[c],g=w(h,c,M)):(d=we[p],g=w(h,p,M)))}let a=v;return e[v] *",{pointerEvents:"all"})])]),St=k({name:"Follower",inheritAttrs:!1,props:{show:Boolean,enabled:{type:Boolean,default:void 0},placement:{type:String,default:"bottom"},syncTrigger:{type:Array,default:["resize","scroll"]},to:[String,Object],flip:{type:Boolean,default:!0},internalShift:Boolean,x:Number,y:Number,width:String,minWidth:String,containerClass:String,teleportDisabled:Boolean,zindexable:{type:Boolean,default:!0},zIndex:Number,overlap:Boolean},setup(n){const e=fe("VBinder"),t=ue(()=>n.enabled!==void 0?n.enabled:n.show),o=I(null),r=I(null),l=()=>{const{syncTrigger:a}=n;a.includes("scroll")&&e.addScrollListener(d),a.includes("resize")&&e.addResizeListener(d)},v=()=>{e.removeScrollListener(d),e.removeResizeListener(d)};K(()=>{t.value&&(d(),l())});const m=ee();st.mount({id:"vueuc/binder",head:!0,anchorMetaName:te,ssr:m}),R(()=>{v()}),je(()=>{t.value&&d()});const d=()=>{if(!t.value)return;const a=o.value;if(a===null)return;const c=e.targetRef,{x:p,y:h,overlap:s}=n,i=p!==void 0&&h!==void 0?Je(p,h):re(c);a.style.setProperty("--v-target-width",`${Math.round(i.width)}px`),a.style.setProperty("--v-target-height",`${Math.round(i.height)}px`);const{width:y,minWidth:x,placement:B,internalShift:C,flip:N}=n;a.setAttribute("v-placement",B),s?a.setAttribute("v-overlap",""):a.removeAttribute("v-overlap");const{style:E}=a;y==="target"?E.width=`${i.width}px`:y!==void 0?E.width=y:E.width="",x==="target"?E.minWidth=`${i.width}px`:x!==void 0?E.minWidth=x:E.minWidth="";const Y=re(a),L=re(r.value),{left:H,top:u,placement:f}=rt(B,i,Y,C,N,s),b=it(f,s),{left:$,top:S,transform:z}=lt(f,L,i,u,H,s);a.setAttribute("v-placement",f),a.style.setProperty("--v-offset-left",`${Math.round(H)}px`),a.style.setProperty("--v-offset-top",`${Math.round(u)}px`),a.style.transform=`translateX(${$}) translateY(${S}) ${z}`,a.style.setProperty("--v-transform-origin",b),a.style.transformOrigin=b};U(t,a=>{a?(l(),g()):v()});const g=()=>{Ee().then(d).catch(a=>console.error(a))};["placement","x","y","internalShift","flip","width","overlap","minWidth"].forEach(a=>{U(Z(n,a),d)}),["teleportDisabled"].forEach(a=>{U(Z(n,a),g)}),U(Z(n,"syncTrigger"),a=>{a.includes("resize")?e.addResizeListener(d):e.removeResizeListener(d),a.includes("scroll")?e.addScrollListener(d):e.removeScrollListener(d)});const w=Ue(),M=ue(()=>{const{to:a}=n;if(a!==void 0)return a;w.value});return{VBinder:e,mergedEnabled:t,offsetContainerRef:r,followerRef:o,mergedTo:M,syncPosition:d}},render(){return A(et,{show:this.show,to:this.mergedTo,disabled:this.teleportDisabled},{default:()=>{var n,e;const t=A("div",{class:["v-binder-follower-container",this.containerClass],ref:"offsetContainerRef"},[A("div",{class:"v-binder-follower-content",ref:"followerRef"},(e=(n=this.$slots).default)===null||e===void 0?void 0:e.call(n))]);return this.zindexable?ze(t,[[qe,{enabled:this.mergedEnabled,zIndex:this.zIndex}]]):t}})}});class ut{constructor(){this.handleResize=this.handleResize.bind(this),this.observer=new(typeof window<"u"&&window.ResizeObserver||Ke)(this.handleResize),this.elHandlersMap=new Map}handleResize(e){for(const t of e){const o=this.elHandlersMap.get(t.target);o!==void 0&&o(t)}}registerHandler(e,t){this.elHandlersMap.set(e,t),this.observer.observe(e)}unregisterHandler(e){this.elHandlersMap.has(e)&&(this.elHandlersMap.delete(e),this.observer.unobserve(e))}}const ye=new ut,xe=k({name:"ResizeObserver",props:{onResize:Function},setup(n){let e=!1;const t=Te().proxy;function o(r){const{onResize:l}=n;l!==void 0&&l(r)}K(()=>{const r=t.$el;if(r===void 0){pe("resize-observer","$el does not exist.");return}if(r.nextElementSibling!==r.nextSibling&&r.nodeType===3&&r.nodeValue!==""){pe("resize-observer","$el can not be observed (it may be a text node).");return}r.nextElementSibling!==null&&(ye.registerHandler(r.nextElementSibling,o),e=!0)}),R(()=>{e&&ye.unregisterHandler(t.$el.nextElementSibling)})},render(){return Ae(this.$slots,"default")}});let Q;function at(){return typeof document>"u"?!1:(Q===void 0&&("matchMedia"in window?Q=window.matchMedia("(pointer:coarse)").matches:Q=!1),Q)}let le;function $e(){return typeof document>"u"?1:(le===void 0&&(le="chrome"in window?window.devicePixelRatio:1),le)}const dt=O(".v-vl",{maxHeight:"inherit",height:"100%",overflow:"auto",minWidth:"1px"},[O("&:not(.v-vl--show-scrollbar)",{scrollbarWidth:"none"},[O("&::-webkit-scrollbar, &::-webkit-scrollbar-track-piece, &::-webkit-scrollbar-thumb",{width:0,height:0,display:"none"})])]),Tt=k({name:"VirtualList",inheritAttrs:!1,props:{showScrollbar:{type:Boolean,default:!0},items:{type:Array,default:()=>[]},itemSize:{type:Number,required:!0},itemResizable:Boolean,itemsStyle:[String,Object],visibleItemsTag:{type:[String,Object],default:"div"},visibleItemsProps:Object,ignoreItemResize:Boolean,onScroll:Function,onWheel:Function,onResize:Function,defaultScrollKey:[Number,String],defaultScrollIndex:Number,keyField:{type:String,default:"key"},paddingTop:{type:[Number,String],default:0},paddingBottom:{type:[Number,String],default:0}},setup(n){const e=ee();dt.mount({id:"vueuc/virtual-list",head:!0,anchorMetaName:te,ssr:e}),K(()=>{const{defaultScrollIndex:u,defaultScrollKey:f}=n;u!=null?p({index:u}):f!=null&&p({key:f})});let t=!1,o=!1;De(()=>{if(t=!1,!o){o=!0;return}p({top:M.value,left:w})}),Ne(()=>{t=!0,o||(o=!0)});const r=_(()=>{const u=new Map,{keyField:f}=n;return n.items.forEach((b,$)=>{u.set(b[f],$)}),u}),l=I(null),v=I(void 0),m=new Map,d=_(()=>{const{items:u,itemSize:f,keyField:b}=n,$=new Re(u.length,f);return u.forEach((S,z)=>{const T=S[b],F=m.get(T);F!==void 0&&$.add(z,F)}),$}),g=I(0);let w=0;const M=I(0),a=ue(()=>Math.max(d.value.getBound(M.value-ce(n.paddingTop))-1,0)),c=_(()=>{const{value:u}=v;if(u===void 0)return[];const{items:f,itemSize:b}=n,$=a.value,S=Math.min($+Math.ceil(u/b+1),f.length-1),z=[];for(let T=$;T<=S;++T)z.push(f[T]);return z}),p=(u,f)=>{if(typeof u=="number"){y(u,f,"auto");return}const{left:b,top:$,index:S,key:z,position:T,behavior:F,debounce:V=!0}=u;if(b!==void 0||$!==void 0)y(b,$,F);else if(S!==void 0)i(S,F,V);else if(z!==void 0){const ne=r.value.get(z);ne!==void 0&&i(ne,F,V)}else T==="bottom"?y(0,Number.MAX_SAFE_INTEGER,F):T==="top"&&y(0,0,F)};let h,s=null;function i(u,f,b){const{value:$}=d,S=$.sum(u)+ce(n.paddingTop);if(!b)l.value.scrollTo({left:0,top:S,behavior:f});else{h=u,s!==null&&window.clearTimeout(s),s=window.setTimeout(()=>{h=void 0,s=null},16);const{scrollTop:z,offsetHeight:T}=l.value;if(S>z){const F=$.get(u);S+F<=z+T||l.value.scrollTo({left:0,top:S+F-T,behavior:f})}else l.value.scrollTo({left:0,top:S,behavior:f})}}function y(u,f,b){l.value.scrollTo({left:u,top:f,behavior:b})}function x(u,f){var b,$,S;if(t||n.ignoreItemResize||H(f.target))return;const{value:z}=d,T=r.value.get(u),F=z.get(T),V=(S=($=(b=f.borderBoxSize)===null||b===void 0?void 0:b[0])===null||$===void 0?void 0:$.blockSize)!==null&&S!==void 0?S:f.contentRect.height;if(V===F)return;V-n.itemSize===0?m.delete(u):m.set(u,V-n.itemSize);const P=V-F;if(P===0)return;z.add(T,P);const D=l.value;if(D!=null){if(h===void 0){const oe=z.sum(T);D.scrollTop>oe&&D.scrollBy(0,P)}else if(TD.scrollTop+D.offsetHeight&&D.scrollBy(0,P)}L()}g.value++}const B=!at();let C=!1;function N(u){var f;(f=n.onScroll)===null||f===void 0||f.call(n,u),(!B||!C)&&L()}function E(u){var f;if((f=n.onWheel)===null||f===void 0||f.call(n,u),B){const b=l.value;if(b!=null){if(u.deltaX===0&&(b.scrollTop===0&&u.deltaY<=0||b.scrollTop+b.offsetHeight>=b.scrollHeight&&u.deltaY>=0))return;u.preventDefault(),b.scrollTop+=u.deltaY/$e(),b.scrollLeft+=u.deltaX/$e(),L(),C=!0,Me(()=>{C=!1})}}}function Y(u){if(t||H(u.target)||u.contentRect.height===v.value)return;v.value=u.contentRect.height;const{onResize:f}=n;f!==void 0&&f(u)}function L(){const{value:u}=l;u!=null&&(M.value=u.scrollTop,w=u.scrollLeft)}function H(u){let f=u;for(;f!==null;){if(f.style.display==="none")return!0;f=f.parentElement}return!1}return{listHeight:v,listStyle:{overflow:"auto"},keyToIndex:r,itemsStyle:_(()=>{const{itemResizable:u}=n,f=G(d.value.sum());return g.value,[n.itemsStyle,{boxSizing:"content-box",height:u?"":f,minHeight:u?f:"",paddingTop:G(n.paddingTop),paddingBottom:G(n.paddingBottom)}]}),visibleItemsStyle:_(()=>(g.value,{transform:`translateY(${G(d.value.sum(a.value))})`})),viewportItems:c,listElRef:l,itemsElRef:I(null),scrollTo:p,handleListResize:Y,handleListScroll:N,handleListWheel:E,handleItemResize:x}},render(){const{itemResizable:n,keyField:e,keyToIndex:t,visibleItemsTag:o}=this;return A(xe,{onResize:this.handleListResize},{default:()=>{var r,l;return A("div",_e(this.$attrs,{class:["v-vl",this.showScrollbar&&"v-vl--show-scrollbar"],onScroll:this.handleListScroll,onWheel:this.handleListWheel,ref:"listElRef"}),[this.items.length!==0?A("div",{ref:"itemsElRef",class:"v-vl-items",style:this.itemsStyle},[A(o,Object.assign({class:"v-vl-visible-items",style:this.visibleItemsStyle},this.visibleItemsProps),{default:()=>this.viewportItems.map(v=>{const m=v[e],d=t.get(m),g=this.$slots.default({item:v,index:d})[0];return n?A(xe,{key:m,onResize:w=>this.handleItemResize(m,w)},{default:()=>g}):(g.key=m,g)})})]):(l=(r=this.$slots).empty)===null||l===void 0?void 0:l.call(r)])}})}}),ft=O(".v-x-scroll",{overflow:"auto",scrollbarWidth:"none"},[O("&::-webkit-scrollbar",{width:0,height:0})]),zt=k({name:"XScroll",props:{disabled:Boolean,onScroll:Function},setup(){const n=I(null);function e(r){!(r.currentTarget.offsetWidtha){const{updateCounter:N}=n;for(let E=x;E>=0;--E){const Y=i-1-E;N!==void 0?N(Y):w.textContent=`${Y}`;const L=w.offsetWidth;if(h-=c[E],h+L<=a||E===0){s=!0,x=E-1,p&&(x===-1?(p.style.maxWidth=`${a-L}px`,p.style.boxSizing="border-box"):p.style.maxWidth="");const{onUpdateCount:H}=n;H&&H(Y);break}}}}const{onUpdateOverflow:y}=n;s?y!==void 0&&y(!0):(y!==void 0&&y(!1),w.setAttribute(W,""))}const l=ee();return ct.mount({id:"vueuc/overflow",head:!0,anchorMetaName:te,ssr:l}),K(()=>r({showAllItemsBeforeCalculate:!1})),{selfRef:t,counterRef:o,sync:r}},render(){const{$slots:n}=this;return Ee(()=>this.sync({showAllItemsBeforeCalculate:!1})),A("div",{class:"v-overflow",ref:"selfRef"},[Ae(n,"default"),n.counter?n.counter():A("span",{style:{display:"inline-block"},ref:"counterRef"}),n.tail?n.tail():null])}});function Ie(n){return n instanceof HTMLElement}function Oe(n){for(let e=0;e=0;e--){const t=n.childNodes[e];if(Ie(t)&&(ke(t)||We(t)))return!0}return!1}function ke(n){if(!ht(n))return!1;try{n.focus({preventScroll:!0})}catch{}return document.activeElement===n}function ht(n){if(n.tabIndex>0||n.tabIndex===0&&n.getAttribute("tabIndex")!==null)return!0;if(n.getAttribute("disabled"))return!1;switch(n.nodeName){case"A":return!!n.href&&n.rel!=="ignore";case"INPUT":return n.type!=="hidden"&&n.type!=="file";case"BUTTON":case"SELECT":case"TEXTAREA":return!0;default:return!1}}let j=[];const At=k({name:"FocusTrap",props:{disabled:Boolean,active:Boolean,autoFocus:{type:Boolean,default:!0},onEsc:Function,initialFocusTo:String,finalFocusTo:String,returnFocusOnDeactivated:{type:Boolean,default:!0}},setup(n){const e=Ce(),t=I(null),o=I(null);let r=!1,l=!1;const v=typeof document>"u"?null:document.activeElement;function m(){return j[j.length-1]===e}function d(s){var i;s.code==="Escape"&&m()&&((i=n.onEsc)===null||i===void 0||i.call(n,s))}K(()=>{U(()=>n.active,s=>{s?(M(),se("keydown",document,d)):(q("keydown",document,d),r&&a())},{immediate:!0})}),R(()=>{q("keydown",document,d),r&&a()});function g(s){if(!l&&m()){const i=w();if(i===null||i.contains(Le(s)))return;c("first")}}function w(){const s=t.value;if(s===null)return null;let i=s;for(;i=i.nextSibling,!(i===null||i instanceof Element&&i.tagName==="DIV"););return i}function M(){var s;if(!n.disabled){if(j.push(e),n.autoFocus){const{initialFocusTo:i}=n;i===void 0?c("first"):(s=ve(i))===null||s===void 0||s.focus({preventScroll:!0})}r=!0,document.addEventListener("focus",g,!0)}}function a(){var s;if(n.disabled||(document.removeEventListener("focus",g,!0),j=j.filter(y=>y!==e),m()))return;const{finalFocusTo:i}=n;i!==void 0?(s=ve(i))===null||s===void 0||s.focus({preventScroll:!0}):n.returnFocusOnDeactivated&&v instanceof HTMLElement&&(l=!0,v.focus({preventScroll:!0}),l=!1)}function c(s){if(m()&&n.active){const i=t.value,y=o.value;if(i!==null&&y!==null){const x=w();if(x==null||x===y){l=!0,i.focus({preventScroll:!0}),l=!1;return}l=!0;const B=s==="first"?Oe(x):We(x);l=!1,B||(l=!0,i.focus({preventScroll:!0}),l=!1)}}}function p(s){if(l)return;const i=w();i!==null&&(s.relatedTarget!==null&&i.contains(s.relatedTarget)?c("last"):c("first"))}function h(s){l||(s.relatedTarget!==null&&s.relatedTarget===t.value?c("last"):c("first"))}return{focusableStartRef:t,focusableEndRef:o,focusableStyle:"position: absolute; height: 0; width: 0;",handleStartFocus:p,handleEndFocus:h}},render(){const{default:n}=this.$slots;if(n===void 0)return null;if(this.disabled)return n();const{active:e,focusableStyle:t}=this;return A(Se,null,[A("div",{"aria-hidden":"true",tabindex:e?"0":"-1",ref:"focusableStartRef",style:t,onFocus:this.handleStartFocus}),n(),A("div",{"aria-hidden":"true",style:t,ref:"focusableEndRef",tabindex:e?"0":"-1",onFocus:this.handleEndFocus})])}});export{At as F,et as L,xe as V,Tt as a,St as b,Mt as c,$t as d,Et as e,zt as f,ye as r}; diff --git a/web/dist/assets/vuex-44de225f.js b/web/dist/assets/vuex-DNAxYlmG.js similarity index 78% rename from web/dist/assets/vuex-44de225f.js rename to web/dist/assets/vuex-DNAxYlmG.js index a71833fb..4d665d6b 100644 --- a/web/dist/assets/vuex-44de225f.js +++ b/web/dist/assets/vuex-DNAxYlmG.js @@ -1,5 +1,5 @@ -import{E as M,ax as V,R as H,bz as U,i as k,c as B}from"./@vue-a481fc63.js";/*! +import{E as M,aD as V,S as H,bE as U,i as k,c as B}from"./@vue-CQsYufSu.js";/*! * vuex v4.1.0 * (c) 2022 Evan You * @license MIT - */var x="store";function st(e){return e===void 0&&(e=null),k(e!==null?e:x)}function g(e,t){Object.keys(e).forEach(function(i){return t(e[i],i)})}function K(e){return e!==null&&typeof e=="object"}function W(e){return e&&typeof e.then=="function"}function Y(e,t){return function(){return e(t)}}function T(e,t,i){return t.indexOf(e)<0&&(i&&i.prepend?t.unshift(e):t.push(e)),function(){var r=t.indexOf(e);r>-1&&t.splice(r,1)}}function A(e,t){e._actions=Object.create(null),e._mutations=Object.create(null),e._wrappedGetters=Object.create(null),e._modulesNamespaceMap=Object.create(null);var i=e.state;y(e,i,[],e._modules.root,!0),S(e,i,t)}function S(e,t,i){var r=e._state,n=e._scope;e.getters={},e._makeLocalGettersCache=Object.create(null);var o=e._wrappedGetters,a={},s={},u=V(!0);u.run(function(){g(o,function(l,c){a[c]=Y(l,e),s[c]=B(function(){return a[c]()}),Object.defineProperty(e.getters,c,{get:function(){return s[c].value},enumerable:!0})})}),e._state=H({data:t}),e._scope=u,e.strict&&Q(e),r&&i&&e._withCommit(function(){r.data=null}),n&&n.stop()}function y(e,t,i,r,n){var o=!i.length,a=e._modules.getNamespace(i);if(r.namespaced&&(e._modulesNamespaceMap[a],e._modulesNamespaceMap[a]=r),!o&&!n){var s=E(t,i.slice(0,-1)),u=i[i.length-1];e._withCommit(function(){s[u]=r.state})}var l=r.context=z(e,a,i);r.forEachMutation(function(c,f){var h=a+f;X(e,h,c,l)}),r.forEachAction(function(c,f){var h=c.root?f:a+f,d=c.handler||c;q(e,h,d,l)}),r.forEachGetter(function(c,f){var h=a+f;J(e,h,c,l)}),r.forEachChild(function(c,f){y(e,t,i.concat(f),c,n)})}function z(e,t,i){var r=t==="",n={dispatch:r?e.dispatch:function(o,a,s){var u=b(o,a,s),l=u.payload,c=u.options,f=u.type;return(!c||!c.root)&&(f=t+f),e.dispatch(f,l)},commit:r?e.commit:function(o,a,s){var u=b(o,a,s),l=u.payload,c=u.options,f=u.type;(!c||!c.root)&&(f=t+f),e.commit(f,l,c)}};return Object.defineProperties(n,{getters:{get:r?function(){return e.getters}:function(){return G(e,t)}},state:{get:function(){return E(e.state,i)}}}),n}function G(e,t){if(!e._makeLocalGettersCache[t]){var i={},r=t.length;Object.keys(e.getters).forEach(function(n){if(n.slice(0,r)===t){var o=n.slice(r);Object.defineProperty(i,o,{get:function(){return e.getters[n]},enumerable:!0})}}),e._makeLocalGettersCache[t]=i}return e._makeLocalGettersCache[t]}function X(e,t,i,r){var n=e._mutations[t]||(e._mutations[t]=[]);n.push(function(a){i.call(e,r.state,a)})}function q(e,t,i,r){var n=e._actions[t]||(e._actions[t]=[]);n.push(function(a){var s=i.call(e,{dispatch:r.dispatch,commit:r.commit,getters:r.getters,state:r.state,rootGetters:e.getters,rootState:e.state},a);return W(s)||(s=Promise.resolve(s)),e._devtoolHook?s.catch(function(u){throw e._devtoolHook.emit("vuex:error",u),u}):s})}function J(e,t,i,r){e._wrappedGetters[t]||(e._wrappedGetters[t]=function(o){return i(r.state,r.getters,o.state,o.getters)})}function Q(e){M(function(){return e._state.data},function(){},{deep:!0,flush:"sync"})}function E(e,t){return t.reduce(function(i,r){return i[r]},e)}function b(e,t,i){return K(e)&&e.type&&(i=t,t=e,e=e.type),{type:e,payload:t,options:i}}var Z="vuex bindings",j="vuex:mutations",C="vuex:actions",_="vuex",tt=0;function et(e,t){U({id:"org.vuejs.vuex",app:e,label:"Vuex",homepage:"https://next.vuex.vuejs.org/",logo:"https://vuejs.org/images/icons/favicon-96x96.png",packageName:"vuex",componentStateTypes:[Z]},function(i){i.addTimelineLayer({id:j,label:"Vuex Mutations",color:I}),i.addTimelineLayer({id:C,label:"Vuex Actions",color:I}),i.addInspector({id:_,label:"Vuex",icon:"storage",treeFilterPlaceholder:"Filter stores..."}),i.on.getInspectorTree(function(r){if(r.app===e&&r.inspectorId===_)if(r.filter){var n=[];D(n,t._modules.root,r.filter,""),r.rootNodes=n}else r.rootNodes=[N(t._modules.root,"")]}),i.on.getInspectorState(function(r){if(r.app===e&&r.inspectorId===_){var n=r.nodeId;G(t,n),r.state=nt(at(t._modules,n),n==="root"?t.getters:t._makeLocalGettersCache,n)}}),i.on.editInspectorState(function(r){if(r.app===e&&r.inspectorId===_){var n=r.nodeId,o=r.path;n!=="root"&&(o=n.split("/").filter(Boolean).concat(o)),t._withCommit(function(){r.set(t._state.data,o,r.state.value)})}}),t.subscribe(function(r,n){var o={};r.payload&&(o.payload=r.payload),o.state=n,i.notifyComponentUpdate(),i.sendInspectorTree(_),i.sendInspectorState(_),i.addTimelineEvent({layerId:j,event:{time:Date.now(),title:r.type,data:o}})}),t.subscribeAction({before:function(r,n){var o={};r.payload&&(o.payload=r.payload),r._id=tt++,r._time=Date.now(),o.state=n,i.addTimelineEvent({layerId:C,event:{time:r._time,title:r.type,groupId:r._id,subtitle:"start",data:o}})},after:function(r,n){var o={},a=Date.now()-r._time;o.duration={_custom:{type:"duration",display:a+"ms",tooltip:"Action duration",value:a}},r.payload&&(o.payload=r.payload),o.state=n,i.addTimelineEvent({layerId:C,event:{time:Date.now(),title:r.type,groupId:r._id,subtitle:"end",data:o}})}})})}var I=8702998,rt=6710886,it=16777215,L={label:"namespaced",textColor:it,backgroundColor:rt};function $(e){return e&&e!=="root"?e.split("/").slice(-2,-1)[0]:"Root"}function N(e,t){return{id:t||"root",label:$(t),tags:e.namespaced?[L]:[],children:Object.keys(e._children).map(function(i){return N(e._children[i],t+i+"/")})}}function D(e,t,i,r){r.includes(i)&&e.push({id:r||"root",label:r.endsWith("/")?r.slice(0,r.length-1):r||"Root",tags:t.namespaced?[L]:[]}),Object.keys(t._children).forEach(function(n){D(e,t._children[n],i,r+n+"/")})}function nt(e,t,i){t=i==="root"?t:t[i];var r=Object.keys(t),n={state:Object.keys(e.state).map(function(a){return{key:a,editable:!0,value:e.state[a]}})};if(r.length){var o=ot(t);n.getters=Object.keys(o).map(function(a){return{key:a.endsWith("/")?$(a):a,editable:!1,value:O(function(){return o[a]})}})}return n}function ot(e){var t={};return Object.keys(e).forEach(function(i){var r=i.split("/");if(r.length>1){var n=t,o=r.pop();r.forEach(function(a){n[a]||(n[a]={_custom:{value:{},display:a,tooltip:"Module",abstract:!0}}),n=n[a]._custom.value}),n[o]=O(function(){return e[i]})}else t[i]=O(function(){return e[i]})}),t}function at(e,t){var i=t.split("/").filter(function(r){return r});return i.reduce(function(r,n,o){var a=r[n];if(!a)throw new Error('Missing module "'+n+'" for path "'+t+'".');return o===i.length-1?a:a._children},t==="root"?e:e.root._children)}function O(e){try{return e()}catch(t){return t}}var v=function(t,i){this.runtime=i,this._children=Object.create(null),this._rawModule=t;var r=t.state;this.state=(typeof r=="function"?r():r)||{}},R={namespaced:{configurable:!0}};R.namespaced.get=function(){return!!this._rawModule.namespaced};v.prototype.addChild=function(t,i){this._children[t]=i};v.prototype.removeChild=function(t){delete this._children[t]};v.prototype.getChild=function(t){return this._children[t]};v.prototype.hasChild=function(t){return t in this._children};v.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)};v.prototype.forEachChild=function(t){g(this._children,t)};v.prototype.forEachGetter=function(t){this._rawModule.getters&&g(this._rawModule.getters,t)};v.prototype.forEachAction=function(t){this._rawModule.actions&&g(this._rawModule.actions,t)};v.prototype.forEachMutation=function(t){this._rawModule.mutations&&g(this._rawModule.mutations,t)};Object.defineProperties(v.prototype,R);var m=function(t){this.register([],t,!1)};m.prototype.get=function(t){return t.reduce(function(i,r){return i.getChild(r)},this.root)};m.prototype.getNamespace=function(t){var i=this.root;return t.reduce(function(r,n){return i=i.getChild(n),r+(i.namespaced?n+"/":"")},"")};m.prototype.update=function(t){P([],this.root,t)};m.prototype.register=function(t,i,r){var n=this;r===void 0&&(r=!0);var o=new v(i,r);if(t.length===0)this.root=o;else{var a=this.get(t.slice(0,-1));a.addChild(t[t.length-1],o)}i.modules&&g(i.modules,function(s,u){n.register(t.concat(u),s,r)})};m.prototype.unregister=function(t){var i=this.get(t.slice(0,-1)),r=t[t.length-1],n=i.getChild(r);n&&n.runtime&&i.removeChild(r)};m.prototype.isRegistered=function(t){var i=this.get(t.slice(0,-1)),r=t[t.length-1];return i?i.hasChild(r):!1};function P(e,t,i){if(t.update(i),i.modules)for(var r in i.modules){if(!t.getChild(r))return;P(e.concat(r),t.getChild(r),i.modules[r])}}function ut(e){return new p(e)}var p=function(t){var i=this;t===void 0&&(t={});var r=t.plugins;r===void 0&&(r=[]);var n=t.strict;n===void 0&&(n=!1);var o=t.devtools;this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new m(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._makeLocalGettersCache=Object.create(null),this._scope=null,this._devtools=o;var a=this,s=this,u=s.dispatch,l=s.commit;this.dispatch=function(h,d){return u.call(a,h,d)},this.commit=function(h,d,F){return l.call(a,h,d,F)},this.strict=n;var c=this._modules.root.state;y(this,c,[],this._modules.root),S(this,c),r.forEach(function(f){return f(i)})},w={state:{configurable:!0}};p.prototype.install=function(t,i){t.provide(i||x,this),t.config.globalProperties.$store=this;var r=this._devtools!==void 0?this._devtools:!1;r&&et(t,this)};w.state.get=function(){return this._state.data};w.state.set=function(e){};p.prototype.commit=function(t,i,r){var n=this,o=b(t,i,r),a=o.type,s=o.payload,u={type:a,payload:s},l=this._mutations[a];l&&(this._withCommit(function(){l.forEach(function(f){f(s)})}),this._subscribers.slice().forEach(function(c){return c(u,n.state)}))};p.prototype.dispatch=function(t,i){var r=this,n=b(t,i),o=n.type,a=n.payload,s={type:o,payload:a},u=this._actions[o];if(u){try{this._actionSubscribers.slice().filter(function(c){return c.before}).forEach(function(c){return c.before(s,r.state)})}catch{}var l=u.length>1?Promise.all(u.map(function(c){return c(a)})):u[0](a);return new Promise(function(c,f){l.then(function(h){try{r._actionSubscribers.filter(function(d){return d.after}).forEach(function(d){return d.after(s,r.state)})}catch{}c(h)},function(h){try{r._actionSubscribers.filter(function(d){return d.error}).forEach(function(d){return d.error(s,r.state,h)})}catch{}f(h)})})}};p.prototype.subscribe=function(t,i){return T(t,this._subscribers,i)};p.prototype.subscribeAction=function(t,i){var r=typeof t=="function"?{before:t}:t;return T(r,this._actionSubscribers,i)};p.prototype.watch=function(t,i,r){var n=this;return M(function(){return t(n.state,n.getters)},i,Object.assign({},r))};p.prototype.replaceState=function(t){var i=this;this._withCommit(function(){i._state.data=t})};p.prototype.registerModule=function(t,i,r){r===void 0&&(r={}),typeof t=="string"&&(t=[t]),this._modules.register(t,i),y(this,this.state,t,this._modules.get(t),r.preserveState),S(this,this.state)};p.prototype.unregisterModule=function(t){var i=this;typeof t=="string"&&(t=[t]),this._modules.unregister(t),this._withCommit(function(){var r=E(i.state,t.slice(0,-1));delete r[t[t.length-1]]}),A(this)};p.prototype.hasModule=function(t){return typeof t=="string"&&(t=[t]),this._modules.isRegistered(t)};p.prototype.hotUpdate=function(t){this._modules.update(t),A(this,!0)};p.prototype._withCommit=function(t){var i=this._committing;this._committing=!0,t(),this._committing=i};Object.defineProperties(p.prototype,w);export{ut as c,st as u}; + */var T="store";function st(e){return e===void 0&&(e=null),k(e!==null?e:T)}function g(e,t){Object.keys(e).forEach(function(i){return t(e[i],i)})}function K(e){return e!==null&&typeof e=="object"}function W(e){return e&&typeof e.then=="function"}function Y(e,t){return function(){return e(t)}}function x(e,t,i){return t.indexOf(e)<0&&(i&&i.prepend?t.unshift(e):t.push(e)),function(){var r=t.indexOf(e);r>-1&&t.splice(r,1)}}function A(e,t){e._actions=Object.create(null),e._mutations=Object.create(null),e._wrappedGetters=Object.create(null),e._modulesNamespaceMap=Object.create(null);var i=e.state;y(e,i,[],e._modules.root,!0),S(e,i,t)}function S(e,t,i){var r=e._state,n=e._scope;e.getters={},e._makeLocalGettersCache=Object.create(null);var o=e._wrappedGetters,a={},s={},u=V(!0);u.run(function(){g(o,function(l,c){a[c]=Y(l,e),s[c]=B(function(){return a[c]()}),Object.defineProperty(e.getters,c,{get:function(){return s[c].value},enumerable:!0})})}),e._state=H({data:t}),e._scope=u,e.strict&&Q(e),r&&i&&e._withCommit(function(){r.data=null}),n&&n.stop()}function y(e,t,i,r,n){var o=!i.length,a=e._modules.getNamespace(i);if(r.namespaced&&(e._modulesNamespaceMap[a],e._modulesNamespaceMap[a]=r),!o&&!n){var s=E(t,i.slice(0,-1)),u=i[i.length-1];e._withCommit(function(){s[u]=r.state})}var l=r.context=X(e,a,i);r.forEachMutation(function(c,f){var h=a+f;q(e,h,c,l)}),r.forEachAction(function(c,f){var h=c.root?f:a+f,d=c.handler||c;z(e,h,d,l)}),r.forEachGetter(function(c,f){var h=a+f;J(e,h,c,l)}),r.forEachChild(function(c,f){y(e,t,i.concat(f),c,n)})}function X(e,t,i){var r=t==="",n={dispatch:r?e.dispatch:function(o,a,s){var u=b(o,a,s),l=u.payload,c=u.options,f=u.type;return(!c||!c.root)&&(f=t+f),e.dispatch(f,l)},commit:r?e.commit:function(o,a,s){var u=b(o,a,s),l=u.payload,c=u.options,f=u.type;(!c||!c.root)&&(f=t+f),e.commit(f,l,c)}};return Object.defineProperties(n,{getters:{get:r?function(){return e.getters}:function(){return G(e,t)}},state:{get:function(){return E(e.state,i)}}}),n}function G(e,t){if(!e._makeLocalGettersCache[t]){var i={},r=t.length;Object.keys(e.getters).forEach(function(n){if(n.slice(0,r)===t){var o=n.slice(r);Object.defineProperty(i,o,{get:function(){return e.getters[n]},enumerable:!0})}}),e._makeLocalGettersCache[t]=i}return e._makeLocalGettersCache[t]}function q(e,t,i,r){var n=e._mutations[t]||(e._mutations[t]=[]);n.push(function(a){i.call(e,r.state,a)})}function z(e,t,i,r){var n=e._actions[t]||(e._actions[t]=[]);n.push(function(a){var s=i.call(e,{dispatch:r.dispatch,commit:r.commit,getters:r.getters,state:r.state,rootGetters:e.getters,rootState:e.state},a);return W(s)||(s=Promise.resolve(s)),e._devtoolHook?s.catch(function(u){throw e._devtoolHook.emit("vuex:error",u),u}):s})}function J(e,t,i,r){e._wrappedGetters[t]||(e._wrappedGetters[t]=function(o){return i(r.state,r.getters,o.state,o.getters)})}function Q(e){M(function(){return e._state.data},function(){},{deep:!0,flush:"sync"})}function E(e,t){return t.reduce(function(i,r){return i[r]},e)}function b(e,t,i){return K(e)&&e.type&&(i=t,t=e,e=e.type),{type:e,payload:t,options:i}}var Z="vuex bindings",j="vuex:mutations",C="vuex:actions",_="vuex",tt=0;function et(e,t){U({id:"org.vuejs.vuex",app:e,label:"Vuex",homepage:"https://next.vuex.vuejs.org/",logo:"https://vuejs.org/images/icons/favicon-96x96.png",packageName:"vuex",componentStateTypes:[Z]},function(i){i.addTimelineLayer({id:j,label:"Vuex Mutations",color:I}),i.addTimelineLayer({id:C,label:"Vuex Actions",color:I}),i.addInspector({id:_,label:"Vuex",icon:"storage",treeFilterPlaceholder:"Filter stores..."}),i.on.getInspectorTree(function(r){if(r.app===e&&r.inspectorId===_)if(r.filter){var n=[];D(n,t._modules.root,r.filter,""),r.rootNodes=n}else r.rootNodes=[N(t._modules.root,"")]}),i.on.getInspectorState(function(r){if(r.app===e&&r.inspectorId===_){var n=r.nodeId;G(t,n),r.state=nt(at(t._modules,n),n==="root"?t.getters:t._makeLocalGettersCache,n)}}),i.on.editInspectorState(function(r){if(r.app===e&&r.inspectorId===_){var n=r.nodeId,o=r.path;n!=="root"&&(o=n.split("/").filter(Boolean).concat(o)),t._withCommit(function(){r.set(t._state.data,o,r.state.value)})}}),t.subscribe(function(r,n){var o={};r.payload&&(o.payload=r.payload),o.state=n,i.notifyComponentUpdate(),i.sendInspectorTree(_),i.sendInspectorState(_),i.addTimelineEvent({layerId:j,event:{time:Date.now(),title:r.type,data:o}})}),t.subscribeAction({before:function(r,n){var o={};r.payload&&(o.payload=r.payload),r._id=tt++,r._time=Date.now(),o.state=n,i.addTimelineEvent({layerId:C,event:{time:r._time,title:r.type,groupId:r._id,subtitle:"start",data:o}})},after:function(r,n){var o={},a=Date.now()-r._time;o.duration={_custom:{type:"duration",display:a+"ms",tooltip:"Action duration",value:a}},r.payload&&(o.payload=r.payload),o.state=n,i.addTimelineEvent({layerId:C,event:{time:Date.now(),title:r.type,groupId:r._id,subtitle:"end",data:o}})}})})}var I=8702998,rt=6710886,it=16777215,L={label:"namespaced",textColor:it,backgroundColor:rt};function $(e){return e&&e!=="root"?e.split("/").slice(-2,-1)[0]:"Root"}function N(e,t){return{id:t||"root",label:$(t),tags:e.namespaced?[L]:[],children:Object.keys(e._children).map(function(i){return N(e._children[i],t+i+"/")})}}function D(e,t,i,r){r.includes(i)&&e.push({id:r||"root",label:r.endsWith("/")?r.slice(0,r.length-1):r||"Root",tags:t.namespaced?[L]:[]}),Object.keys(t._children).forEach(function(n){D(e,t._children[n],i,r+n+"/")})}function nt(e,t,i){t=i==="root"?t:t[i];var r=Object.keys(t),n={state:Object.keys(e.state).map(function(a){return{key:a,editable:!0,value:e.state[a]}})};if(r.length){var o=ot(t);n.getters=Object.keys(o).map(function(a){return{key:a.endsWith("/")?$(a):a,editable:!1,value:O(function(){return o[a]})}})}return n}function ot(e){var t={};return Object.keys(e).forEach(function(i){var r=i.split("/");if(r.length>1){var n=t,o=r.pop();r.forEach(function(a){n[a]||(n[a]={_custom:{value:{},display:a,tooltip:"Module",abstract:!0}}),n=n[a]._custom.value}),n[o]=O(function(){return e[i]})}else t[i]=O(function(){return e[i]})}),t}function at(e,t){var i=t.split("/").filter(function(r){return r});return i.reduce(function(r,n,o){var a=r[n];if(!a)throw new Error('Missing module "'+n+'" for path "'+t+'".');return o===i.length-1?a:a._children},t==="root"?e:e.root._children)}function O(e){try{return e()}catch(t){return t}}var p=function(t,i){this.runtime=i,this._children=Object.create(null),this._rawModule=t;var r=t.state;this.state=(typeof r=="function"?r():r)||{}},R={namespaced:{configurable:!0}};R.namespaced.get=function(){return!!this._rawModule.namespaced};p.prototype.addChild=function(t,i){this._children[t]=i};p.prototype.removeChild=function(t){delete this._children[t]};p.prototype.getChild=function(t){return this._children[t]};p.prototype.hasChild=function(t){return t in this._children};p.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)};p.prototype.forEachChild=function(t){g(this._children,t)};p.prototype.forEachGetter=function(t){this._rawModule.getters&&g(this._rawModule.getters,t)};p.prototype.forEachAction=function(t){this._rawModule.actions&&g(this._rawModule.actions,t)};p.prototype.forEachMutation=function(t){this._rawModule.mutations&&g(this._rawModule.mutations,t)};Object.defineProperties(p.prototype,R);var m=function(t){this.register([],t,!1)};m.prototype.get=function(t){return t.reduce(function(i,r){return i.getChild(r)},this.root)};m.prototype.getNamespace=function(t){var i=this.root;return t.reduce(function(r,n){return i=i.getChild(n),r+(i.namespaced?n+"/":"")},"")};m.prototype.update=function(t){P([],this.root,t)};m.prototype.register=function(t,i,r){var n=this;r===void 0&&(r=!0);var o=new p(i,r);if(t.length===0)this.root=o;else{var a=this.get(t.slice(0,-1));a.addChild(t[t.length-1],o)}i.modules&&g(i.modules,function(s,u){n.register(t.concat(u),s,r)})};m.prototype.unregister=function(t){var i=this.get(t.slice(0,-1)),r=t[t.length-1],n=i.getChild(r);n&&n.runtime&&i.removeChild(r)};m.prototype.isRegistered=function(t){var i=this.get(t.slice(0,-1)),r=t[t.length-1];return i?i.hasChild(r):!1};function P(e,t,i){if(t.update(i),i.modules)for(var r in i.modules){if(!t.getChild(r))return;P(e.concat(r),t.getChild(r),i.modules[r])}}function ut(e){return new v(e)}var v=function(t){var i=this;t===void 0&&(t={});var r=t.plugins;r===void 0&&(r=[]);var n=t.strict;n===void 0&&(n=!1);var o=t.devtools;this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new m(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._makeLocalGettersCache=Object.create(null),this._scope=null,this._devtools=o;var a=this,s=this,u=s.dispatch,l=s.commit;this.dispatch=function(h,d){return u.call(a,h,d)},this.commit=function(h,d,F){return l.call(a,h,d,F)},this.strict=n;var c=this._modules.root.state;y(this,c,[],this._modules.root),S(this,c),r.forEach(function(f){return f(i)})},w={state:{configurable:!0}};v.prototype.install=function(t,i){t.provide(i||T,this),t.config.globalProperties.$store=this;var r=this._devtools!==void 0?this._devtools:!1;r&&et(t,this)};w.state.get=function(){return this._state.data};w.state.set=function(e){};v.prototype.commit=function(t,i,r){var n=this,o=b(t,i,r),a=o.type,s=o.payload,u={type:a,payload:s},l=this._mutations[a];l&&(this._withCommit(function(){l.forEach(function(f){f(s)})}),this._subscribers.slice().forEach(function(c){return c(u,n.state)}))};v.prototype.dispatch=function(t,i){var r=this,n=b(t,i),o=n.type,a=n.payload,s={type:o,payload:a},u=this._actions[o];if(u){try{this._actionSubscribers.slice().filter(function(c){return c.before}).forEach(function(c){return c.before(s,r.state)})}catch{}var l=u.length>1?Promise.all(u.map(function(c){return c(a)})):u[0](a);return new Promise(function(c,f){l.then(function(h){try{r._actionSubscribers.filter(function(d){return d.after}).forEach(function(d){return d.after(s,r.state)})}catch{}c(h)},function(h){try{r._actionSubscribers.filter(function(d){return d.error}).forEach(function(d){return d.error(s,r.state,h)})}catch{}f(h)})})}};v.prototype.subscribe=function(t,i){return x(t,this._subscribers,i)};v.prototype.subscribeAction=function(t,i){var r=typeof t=="function"?{before:t}:t;return x(r,this._actionSubscribers,i)};v.prototype.watch=function(t,i,r){var n=this;return M(function(){return t(n.state,n.getters)},i,Object.assign({},r))};v.prototype.replaceState=function(t){var i=this;this._withCommit(function(){i._state.data=t})};v.prototype.registerModule=function(t,i,r){r===void 0&&(r={}),typeof t=="string"&&(t=[t]),this._modules.register(t,i),y(this,this.state,t,this._modules.get(t),r.preserveState),S(this,this.state)};v.prototype.unregisterModule=function(t){var i=this;typeof t=="string"&&(t=[t]),this._modules.unregister(t),this._withCommit(function(){var r=E(i.state,t.slice(0,-1));delete r[t[t.length-1]]}),A(this)};v.prototype.hasModule=function(t){return typeof t=="string"&&(t=[t]),this._modules.isRegistered(t)};v.prototype.hotUpdate=function(t){this._modules.update(t),A(this,!0)};v.prototype._withCommit=function(t){var i=this._committing;this._committing=!0,t(),this._committing=i};Object.defineProperties(v.prototype,w);export{ut as c,st as u}; diff --git a/web/dist/assets/whisper-6a06efa4.js b/web/dist/assets/whisper-6a06efa4.js deleted file mode 100644 index 1d16c7f7..00000000 --- a/web/dist/assets/whisper-6a06efa4.js +++ /dev/null @@ -1 +0,0 @@ -import{$ as b,_ as k}from"./index-1e276b8f.js";import{d as B,H as p,e as C,q as N,w as s,j as a,k as n,A as _,x as i}from"./@vue-a481fc63.js";import{S as U,I as V,T as $,b as z,e as I,i as R}from"./naive-ui-eecf2ec3.js";const S={class:"whisper-wrap"},T={class:"whisper-line"},W={class:"whisper-line send-wrap"},j=B({__name:"whisper",props:{show:{type:Boolean,default:!1},user:{}},emits:["success"],setup(r,{emit:u}){const d=r,o=p(""),t=p(!1),c=()=>{u("success")},m=()=>{t.value=!0,b({user_id:d.user.id,content:o.value}).then(e=>{window.$message.success("发送成功"),t.value=!1,o.value="",c()}).catch(e=>{t.value=!1})};return(e,l)=>{const h=U,w=V,f=$,v=z,g=I,y=R;return C(),N(y,{show:e.show,"onUpdate:show":c,class:"whisper-card",preset:"card",size:"small",title:"私信","mask-closable":!1,bordered:!1,style:{width:"360px"}},{default:s(()=>[a("div",S,[n(f,{"show-icon":!1},{default:s(()=>[_(" 即将发送私信给: "),n(w,{style:{"max-width":"100%"}},{default:s(()=>[n(h,{type:"success"},{default:s(()=>[_(i(e.user.nickname)+"@"+i(e.user.username),1)]),_:1})]),_:1})]),_:1}),a("div",T,[n(v,{type:"textarea",placeholder:"请输入私信内容(请勿发送不和谐内容,否则将会被封号)",autosize:{minRows:5,maxRows:10},value:o.value,"onUpdate:value":l[0]||(l[0]=x=>o.value=x),maxlength:"200","show-count":""},null,8,["value"])]),a("div",W,[n(g,{strong:"",secondary:"",type:"primary",loading:t.value,onClick:m},{default:s(()=>[_(" 发送 ")]),_:1},8,["loading"])])])]),_:1},8,["show"])}}});const H=k(j,[["__scopeId","data-v-0cbfe47c"]]);export{H as _}; diff --git a/web/dist/assets/whisper-61451957.css b/web/dist/assets/whisper-BRTlBWW_.css similarity index 100% rename from web/dist/assets/whisper-61451957.css rename to web/dist/assets/whisper-BRTlBWW_.css diff --git a/web/dist/assets/whisper-DFhobfFF.js b/web/dist/assets/whisper-DFhobfFF.js new file mode 100644 index 00000000..863dde8c --- /dev/null +++ b/web/dist/assets/whisper-DFhobfFF.js @@ -0,0 +1 @@ +import{a0 as b,_ as B}from"./index-v3l9hw1O.js";import{d as C,H as p,e as N,q as U,w as s,j as a,k as n,A as _,x as i}from"./@vue-CQsYufSu.js";import{S as V,I as z,T as I,b as R,e as S,i as T}from"./naive-ui-DNcWoFGl.js";const W={class:"whisper-wrap"},$={class:"whisper-line"},j={class:"whisper-line send-wrap"},q=C({__name:"whisper",props:{show:{type:Boolean,default:!1},user:{}},emits:["success"],setup(r,{emit:u}){const d=r,o=p(""),t=p(!1),m=u,c=()=>{m("success")},h=()=>{t.value=!0,b({user_id:d.user.id,content:o.value}).then(e=>{window.$message.success("发送成功"),t.value=!1,o.value="",c()}).catch(e=>{t.value=!1})};return(e,l)=>{const w=V,f=z,g=I,v=R,x=S,y=T;return N(),U(y,{show:e.show,"onUpdate:show":c,class:"whisper-card",preset:"card",size:"small",title:"私信","mask-closable":!1,bordered:!1,style:{width:"360px"}},{default:s(()=>[a("div",W,[n(g,{"show-icon":!1},{default:s(()=>[_(" 即将发送私信给: "),n(f,{style:{"max-width":"100%"}},{default:s(()=>[n(w,{type:"success"},{default:s(()=>[_(i(e.user.nickname)+"@"+i(e.user.username),1)]),_:1})]),_:1})]),_:1}),a("div",$,[n(v,{type:"textarea",placeholder:"请输入私信内容(请勿发送不和谐内容,否则将会被封号)",autosize:{minRows:5,maxRows:10},value:o.value,"onUpdate:value":l[0]||(l[0]=k=>o.value=k),maxlength:"200","show-count":""},null,8,["value"])]),a("div",j,[n(x,{strong:"",secondary:"",type:"primary",loading:t.value,onClick:h},{default:s(()=>[_(" 发送 ")]),_:1},8,["loading"])])])]),_:1},8,["show"])}}}),M=B(q,[["__scopeId","data-v-0cbfe47c"]]);export{M as _}; diff --git a/web/dist/assets/whisper-add-friend-01aea97d.css b/web/dist/assets/whisper-add-friend-BHdbaWOh.css similarity index 100% rename from web/dist/assets/whisper-add-friend-01aea97d.css rename to web/dist/assets/whisper-add-friend-BHdbaWOh.css diff --git a/web/dist/assets/whisper-add-friend-CuQaAOYJ.js b/web/dist/assets/whisper-add-friend-CuQaAOYJ.js new file mode 100644 index 00000000..fb595a5a --- /dev/null +++ b/web/dist/assets/whisper-add-friend-CuQaAOYJ.js @@ -0,0 +1 @@ +import{O as b,_ as B}from"./index-v3l9hw1O.js";import{S as C,I as N,T as V,b as W,e as q,i as z}from"./naive-ui-DNcWoFGl.js";import{d as A,H as i,e as F,q as I,w as s,j as a,k as n,A as l,x as r}from"./@vue-CQsYufSu.js";const R={class:"whisper-wrap"},S={class:"whisper-line"},T={class:"whisper-line send-wrap"},U=A({__name:"whisper-add-friend",props:{show:{type:Boolean,default:!1},user:{}},emits:["success"],setup(p,{emit:u}){const d=p,o=i(""),t=i(!1),m=u,_=()=>{m("success")},h=()=>{t.value=!0,b({user_id:d.user.id,greetings:o.value}).then(e=>{window.$message.success("发送成功"),t.value=!1,o.value="",_()}).catch(e=>{t.value=!1})};return(e,c)=>{const w=C,f=N,g=V,v=W,x=q,y=z;return F(),I(y,{show:e.show,"onUpdate:show":_,class:"whisper-card",preset:"card",size:"small",title:"申请添加朋友","mask-closable":!1,bordered:!1,style:{width:"360px"}},{default:s(()=>[a("div",R,[n(g,{"show-icon":!1},{default:s(()=>[l(" 发送添加朋友申请给: "),n(f,{style:{"max-width":"100%"}},{default:s(()=>[n(w,{type:"success"},{default:s(()=>[l(r(e.user.nickname)+"@"+r(e.user.username),1)]),_:1})]),_:1})]),_:1}),a("div",S,[n(v,{type:"textarea",placeholder:"请输入真挚的问候语",autosize:{minRows:5,maxRows:10},value:o.value,"onUpdate:value":c[0]||(c[0]=k=>o.value=k),maxlength:"120","show-count":""},null,8,["value"])]),a("div",T,[n(x,{strong:"",secondary:"",type:"primary",loading:t.value,onClick:h},{default:s(()=>[l(" 发送 ")]),_:1},8,["loading"])])])]),_:1},8,["show"])}}}),M=B(U,[["__scopeId","data-v-60be56a2"]]);export{M as W}; diff --git a/web/dist/assets/whisper-add-friend-e34f36ad.js b/web/dist/assets/whisper-add-friend-e34f36ad.js deleted file mode 100644 index 9ff563f3..00000000 --- a/web/dist/assets/whisper-add-friend-e34f36ad.js +++ /dev/null @@ -1 +0,0 @@ -import{N as b,_ as k}from"./index-1e276b8f.js";import{S as B,I as N,T as A,b as C,e as F,i as V}from"./naive-ui-eecf2ec3.js";import{d as W,H as i,e as q,q as z,w as s,j as a,k as n,A as _,x as r}from"./@vue-a481fc63.js";const I={class:"whisper-wrap"},R={class:"whisper-line"},S={class:"whisper-line send-wrap"},T=W({__name:"whisper-add-friend",props:{show:{type:Boolean,default:!1},user:{}},emits:["success"],setup(p,{emit:d}){const u=p,o=i(""),t=i(!1),l=()=>{d("success")},m=()=>{t.value=!0,b({user_id:u.user.id,greetings:o.value}).then(e=>{window.$message.success("发送成功"),t.value=!1,o.value="",l()}).catch(e=>{t.value=!1})};return(e,c)=>{const h=B,w=N,f=A,g=C,v=F,y=V;return q(),z(y,{show:e.show,"onUpdate:show":l,class:"whisper-card",preset:"card",size:"small",title:"申请添加朋友","mask-closable":!1,bordered:!1,style:{width:"360px"}},{default:s(()=>[a("div",I,[n(f,{"show-icon":!1},{default:s(()=>[_(" 发送添加朋友申请给: "),n(w,{style:{"max-width":"100%"}},{default:s(()=>[n(h,{type:"success"},{default:s(()=>[_(r(e.user.nickname)+"@"+r(e.user.username),1)]),_:1})]),_:1})]),_:1}),a("div",R,[n(g,{type:"textarea",placeholder:"请输入真挚的问候语",autosize:{minRows:5,maxRows:10},value:o.value,"onUpdate:value":c[0]||(c[0]=x=>o.value=x),maxlength:"120","show-count":""},null,8,["value"])]),a("div",S,[n(v,{strong:"",secondary:"",type:"primary",loading:t.value,onClick:m},{default:s(()=>[_(" 发送 ")]),_:1},8,["loading"])])])]),_:1},8,["show"])}}});const H=k(T,[["__scopeId","data-v-60be56a2"]]);export{H as W}; diff --git a/web/dist/assets/xss-a5544f63.js b/web/dist/assets/xss-a5544f63.js deleted file mode 100644 index cee06829..00000000 --- a/web/dist/assets/xss-a5544f63.js +++ /dev/null @@ -1 +0,0 @@ -import{l as G}from"./cssfilter-af71ba68.js";var X={exports:{}},o={},x={indexOf:function(r,t){var e,n;if(Array.prototype.indexOf)return r.indexOf(t);for(e=0,n=r.length;e/g,fr=/"/g,lr=/"/g,ur=/&#([a-zA-Z0-9]*);?/gim,cr=/:?/gim,gr=/&newline;?/gim,w=/((j\s*a\s*v\s*a|v\s*b|l\s*i\s*v\s*e)\s*s\s*c\s*r\s*i\s*p\s*t\s*|m\s*o\s*c\s*h\s*a)\:/gi,k=/e\s*x\s*p\s*r\s*e\s*s\s*s\s*i\s*o\s*n\s*\(.*/gi,D=/u\s*r\s*l\s*\(.*/gi;function U(r){return r.replace(fr,""")}function m(r){return r.replace(lr,'"')}function N(r){return r.replace(ur,function(e,n){return n[0]==="x"||n[0]==="X"?String.fromCharCode(parseInt(n.substr(1),16)):String.fromCharCode(parseInt(n,10))})}function Q(r){return r.replace(cr,":").replace(gr," ")}function $(r){for(var t="",e=0,n=r.length;e",n);if(a===-1)break;e=a+3}return t}function Tr(r){var t=r.split("");return t=t.filter(function(e){var n=e.charCodeAt(0);return n===127?!1:n<=31?n===10||n===13:!0}),t.join("")}o.whiteList=W();o.getDefaultWhiteList=W;o.onTag=er;o.onIgnoreTag=tr;o.onTagAttr=nr;o.onIgnoreTagAttr=ir;o.safeAttrValue=ar;o.escapeHtml=H;o.escapeQuote=U;o.unescapeQuote=m;o.escapeHtmlEntities=N;o.escapeDangerHtml5Entities=Q;o.clearNonPrintableCharacter=$;o.friendlyAttrValue=q;o.escapeAttrValue=z;o.onIgnoreTagStripAll=pr;o.StripTagBody=vr;o.stripCommentTag=dr;o.stripBlankChar=Tr;o.cssFilter=B;o.getDefaultCSSWhiteList=rr;var P={},h=x;function Ar(r){var t=h.spaceIndex(r);if(t===-1)var e=r.slice(1,-1);else var e=r.slice(1,t+1);return e=h.trim(e).toLowerCase(),e.slice(0,1)==="/"&&(e=e.slice(1)),e.slice(-1)==="/"&&(e=e.slice(0,-1)),e}function hr(r){return r.slice(0,2)===""){n+=e(r.slice(a,f)),c=r.slice(f,i+1),l=Ar(c),n+=t(f,n.length,l,c,hr(c)),a=i+1,f=!1;continue}if(g==='"'||g==="'")for(var A=1,v=r.charAt(i-A);v.trim()===""||v==="=";){if(v==="="){s=g;continue r}v=r.charAt(i-++A)}}else if(g===s){s=!1;continue}}return a0;t--){var e=r[t];if(e!==" ")return e==="="?t:-1}}function wr(r){return r[0]==='"'&&r[r.length-1]==='"'||r[0]==="'"&&r[r.length-1]==="'"}function V(r){return wr(r)?r.substr(1,r.length-2):r}P.parseTag=Er;P.parseAttr=Ir;var Cr=G.FilterCSS,p=o,Z=P,yr=Z.parseTag,Lr=Z.parseAttr,y=x;function C(r){return r==null}function Pr(r){var t=y.spaceIndex(r);if(t===-1)return{html:"",closing:r[r.length-2]==="/"};r=y.trim(r.slice(t+1,-1));var e=r[r.length-1]==="/";return e&&(r=y.trim(r.slice(0,-1))),{html:r,closing:e}}function Rr(r){var t={};for(var e in r)t[e]=r[e];return t}function M(r){r=Rr(r||{}),r.stripIgnoreTag&&(r.onIgnoreTag&&console.error('Notes: cannot use these two options "stripIgnoreTag" and "onIgnoreTag" at the same time'),r.onIgnoreTag=p.onIgnoreTagStripAll),r.whiteList=r.whiteList||r.allowList||p.whiteList,r.onTag=r.onTag||p.onTag,r.onTagAttr=r.onTagAttr||p.onTagAttr,r.onIgnoreTag=r.onIgnoreTag||p.onIgnoreTag,r.onIgnoreTagAttr=r.onIgnoreTagAttr||p.onIgnoreTagAttr,r.safeAttrValue=r.safeAttrValue||p.safeAttrValue,r.escapeHtml=r.escapeHtml||p.escapeHtml,this.options=r,r.css===!1?this.cssFilter=!1:(r.css=r.css||{},this.cssFilter=new Cr(r.css))}M.prototype.process=function(r){if(r=r||"",r=r.toString(),!r)return"";var t=this,e=t.options,n=e.whiteList,a=e.onTag,f=e.onIgnoreTag,s=e.onTagAttr,i=e.onIgnoreTagAttr,u=e.safeAttrValue,l=e.escapeHtml,c=t.cssFilter;e.stripBlankChar&&(r=p.stripBlankChar(r)),e.allowCommentTag||(r=p.stripCommentTag(r));var g=!1;if(e.stripIgnoreTagBody){var g=p.StripTagBody(e.stripIgnoreTagBody,f);f=g.onIgnoreTag}var A=yr(r,function(v,J,d,T,K){var b={sourcePosition:v,position:J,isClosing:K,isWhite:n.hasOwnProperty(d)},I=a(d,T,b);if(!C(I))return I;if(b.isWhite){if(b.isClosing)return"";var O=Pr(T),Y=n[d],F=Lr(O.html,function(E,S){var R=y.indexOf(Y,E)!==-1,_=s(d,E,S,R);if(!C(_))return _;if(R)return S=u(d,E,S,c),S?E+'="'+S+'"':E;var _=i(d,E,S,R);return C(_)?void 0:_}),T="<"+d;return F&&(T+=" "+F),O.closing&&(T+=" /"),T+=">",T}else{var I=f(d,T,b);return C(I)?l(T):I}},l);return g&&(A=g.remove(A)),A};var Xr=M;(function(r,t){var e=o,n=P,a=Xr;function f(u,l){var c=new a(l);return c.process(u)}t=r.exports=f,t.filterXSS=f,t.FilterXSS=a;for(var s in e)t[s]=e[s];for(var s in n)t[s]=n[s];typeof window<"u"&&(window.filterXSS=r.exports);function i(){return typeof self<"u"&&typeof DedicatedWorkerGlobalScope<"u"&&self instanceof DedicatedWorkerGlobalScope}i()&&(self.filterXSS=r.exports)})(X,X.exports);var xr=X.exports;export{xr as l}; diff --git a/web/dist/assets/xss-l0sNRNKZ.js b/web/dist/assets/xss-l0sNRNKZ.js new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/web/dist/assets/xss-l0sNRNKZ.js @@ -0,0 +1 @@ + diff --git a/web/dist/index.html b/web/dist/index.html index 5c352efe..018f5803 100644 --- a/web/dist/index.html +++ b/web/dist/index.html @@ -8,34 +8,33 @@ 泡泡 - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + +
-