Skip to content

Commit 696c0a2

Browse files
authored
Merge pull request #9468 from ImalshaD/ImalshaD/add-pre-issue-id-token
2 parents f6fb076 + c07135f commit 696c0a2

File tree

13 files changed

+558
-1
lines changed

13 files changed

+558
-1
lines changed

.changeset/long-pens-know.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
"@wso2is/admin.actions.v1": minor
3+
"@wso2is/console": minor
4+
"@wso2is/admin.feature-gate.v1": patch
5+
"@wso2is/admin.core.v1": patch
6+
"@wso2is/i18n": patch
7+
---
8+
9+
Add Pre Issue ID Token action

apps/console/src/configs/routes.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1545,6 +1545,17 @@ export const getAppViewRoutes = (): RouteInterface[] => {
15451545
protected: true,
15461546
showOnSidePanel: false
15471547
},
1548+
{
1549+
component: lazy(() =>
1550+
import("@wso2is/admin.actions.v1/pages/action-configuration-page")
1551+
),
1552+
exact: true,
1553+
id: "pre-issue-id-token",
1554+
name: "Pre Issue ID Token",
1555+
path: AppConstants.getPaths().get("PRE_ISSUE_ID_TOKEN_EDIT"),
1556+
protected: true,
1557+
showOnSidePanel: false
1558+
},
15481559
{
15491560
component: lazy(() =>
15501561
import("@wso2is/admin.actions.v1/pages/action-configuration-page")
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
/**
2+
* Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com).
3+
*
4+
* WSO2 LLC. licenses this file to you under the Apache License,
5+
* Version 2.0 (the "License"); you may not use this file except
6+
* in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing,
12+
* software distributed under the License is distributed on an
13+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
* KIND, either express or implied. See the License for the
15+
* specific language governing permissions and limitations
16+
* under the License.
17+
*/
18+
19+
.form-wrapper {
20+
.form-container {
21+
margin-top: 0px;
22+
margin-bottom: 0px;
23+
}
24+
25+
.box-container {
26+
background-color: #f9fafb;
27+
border-radius: 8px;
28+
padding: 30px;
29+
30+
.box-field {
31+
margin-top: 20px;
32+
margin-left: 10px;
33+
margin-right: 10px;
34+
}
35+
}
36+
37+
.text-field-container {
38+
margin-top: 8px;
39+
margin-bottom: 8px;
40+
}
41+
42+
.select-field-container {
43+
margin-bottom: 8px;
44+
}
45+
46+
.hint-text {
47+
margin-top: 0px;
48+
margin-bottom: 8px;
49+
}
50+
51+
.divider-container {
52+
margin-top: 20px;
53+
margin-bottom: 20px;
54+
}
55+
56+
.heading-container {
57+
margin-top: 20px;
58+
margin-bottom: 20px;
59+
}
60+
61+
.button-container {
62+
margin-top: 30px;
63+
}
64+
65+
.alert-title {
66+
font-weight: 100;
67+
}
68+
69+
.secondary-button {
70+
margin-top: 10px;
71+
}
72+
73+
.placeholder {
74+
border-radius: 8px;
75+
margin-bottom: 8px;
76+
77+
&.label {
78+
height: 20px;
79+
max-width: 100px;
80+
}
81+
82+
&.text-field {
83+
height: 40px;
84+
}
85+
}
86+
87+
.placeholder-box {
88+
> * {
89+
margin-bottom: 8px;
90+
}
91+
}
92+
}

0 commit comments

Comments
 (0)