Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit74e59cc

Browse files
authored
Merge pull request#1197 from lowcoder-org/subscription-handling
Subscription handling
2 parentsc771ef9 +ed1a330 commit74e59cc

File tree

44 files changed

+2078
-783
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2078
-783
lines changed

‎client/packages/lowcoder-design/package.json‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
"dependencies": {
1010
"colord":"^2.9.3",
1111
"react-fontawesome":"^0.2.0",
12-
"react-markdown":"^8.0.0",
12+
"react-markdown":"^9.0.1",
1313
"react-virtualized":"^9.22.3",
14-
"rehype-raw":"^6.1.1",
15-
"rehype-sanitize":"^5.0.1",
14+
"rehype-raw":"^7.0.0",
15+
"rehype-sanitize":"^6.0.0",
1616
"remark-gfm":"^4.0.0",
1717
"simplebar":"^6.2.5",
1818
"simplebar-react":"^3.2.4"

‎client/packages/lowcoder-design/src/components/markdown.tsx‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { lazy } from "react";
44
importrehypeRawfrom"rehype-raw";
55
importrehypeSanitize,{defaultSchema}from"rehype-sanitize";
66
importremarkGfmfrom"remark-gfm";
7-
importtype{ReactMarkdownOptions}from"react-markdown/lib/react-markdown";
7+
importtype{OptionsasReactMarkdownOptions}from"react-markdown/lib";
88

99
constReactMarkdown=lazy(()=>import('react-markdown'));
1010

‎client/packages/lowcoder/index.html‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151
<script>
5252
window.global=window;
5353
</script>
54+
<script
55+
src="https://tag.clearbitscripts.com/v1/pk_dfbc0aeefb28dc63475b67134facf127/tags.js"
56+
referrerPolicy="no-referrer"
57+
></script>
5458
</head>
5559
<body>
5660
<divid="not-supported-browser"></div>

‎client/packages/lowcoder/src/api/apiResponses.ts‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ export interface GenericApiResponse<T> {
1212
data:T;
1313
}
1414

15+
exportinterfaceFetchGroupApiResponse<T>extendsGenericApiResponse<T>{
16+
totalAdmins:number,
17+
totalAdminsAndDevelopers:number,
18+
totalDevelopersOnly:number,
19+
totalOtherMembers:number,
20+
}
21+
1522
// NO_DATASOURCES_FOUND, 1000, "Unable to find {0} with id {1}"
1623
// INVALID_PARAMTER, 4000, "Invalid parameter {0} provided in the input"
1724
// PLUGIN_NOT_INSTALLED, 4001, "Plugin {0} not installed"

‎client/packages/lowcoder/src/api/configApi.ts‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ class ConfigApi extends Api {
1717
}
1818
returnApi.get(authConfigURL);
1919
}
20+
21+
staticfetchDeploymentId():AxiosPromise<ConfigResponse>{
22+
returnApi.get(`${ConfigApi.configURL}/deploymentId`);
23+
}
2024
}
2125

2226
exportdefaultConfigApi;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp