@aloudata/aloudata-design 1.8.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Form/style/index.less +10 -0
- package/dist/Icon/components/AlertTriangleDuotone.d.ts +10 -0
- package/dist/Icon/components/AlertTriangleDuotone.js +42 -0
- package/dist/Icon/components/CancelCircleDuotone.d.ts +10 -0
- package/dist/Icon/components/CancelCircleDuotone.js +45 -0
- package/dist/Icon/components/CheckCircleDuotone.d.ts +10 -0
- package/dist/Icon/components/CheckCircleDuotone.js +45 -0
- package/dist/Icon/components/InfoCircleLine.d.ts +10 -0
- package/dist/Icon/components/InfoCircleLine.js +42 -0
- package/dist/Icon/index.d.ts +4 -0
- package/dist/Icon/index.js +4 -0
- package/dist/Icon/svg/alert-triangle-duotone.svg +3 -0
- package/dist/Icon/svg/cancel-circle-duotone.svg +4 -0
- package/dist/Icon/svg/check-circle-duotone.svg +4 -0
- package/dist/Icon/svg/info-circle-line.svg +3 -0
- package/dist/Result/index.d.ts +45 -0
- package/dist/Result/index.js +126 -0
- package/dist/Result/noFound.d.ts +6 -0
- package/dist/Result/noFound.js +35 -0
- package/dist/Result/serverError.d.ts +6 -0
- package/dist/Result/serverError.js +35 -0
- package/dist/Result/style/index.d.ts +2 -0
- package/dist/Result/style/index.js +2 -0
- package/dist/Result/style/index.less +91 -0
- package/dist/Result/unauthorized.d.ts +6 -0
- package/dist/Result/unauthorized.js +36 -0
- package/dist/Select/index.d.ts +1 -0
- package/dist/Select/index.js +19 -4
- package/dist/Table/Table.d.ts +1 -1
- package/dist/Table/components/TableHead/index.d.ts +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +9 -4
- package/dist/Icon/iconSvgs/arrows_right_sm.svg +0 -3
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
@import '../../style/index.less';
|
|
2
|
+
|
|
3
|
+
.ald-result-vertical {
|
|
4
|
+
.ald-result-icon {
|
|
5
|
+
margin-bottom: 16px;
|
|
6
|
+
display: flex;
|
|
7
|
+
align-items: center;
|
|
8
|
+
justify-content: center;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.ald-result-title {
|
|
12
|
+
color: var(--colors-gray-900, #171717);
|
|
13
|
+
text-align: center;
|
|
14
|
+
font-size: 16px;
|
|
15
|
+
font-style: normal;
|
|
16
|
+
font-weight: 500;
|
|
17
|
+
line-height: 24px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.ald-result-subtitle {
|
|
21
|
+
color: var(--colors-gray-700, #858585);
|
|
22
|
+
text-align: center;
|
|
23
|
+
font-size: 13px;
|
|
24
|
+
font-style: normal;
|
|
25
|
+
font-weight: 400;
|
|
26
|
+
line-height: 20px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.ald-result-extra {
|
|
30
|
+
margin-top: 24px;
|
|
31
|
+
display: flex;
|
|
32
|
+
justify-content: center;
|
|
33
|
+
align-items: center;
|
|
34
|
+
gap: 12px;
|
|
35
|
+
align-self: stretch;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.ald-result-content {
|
|
39
|
+
margin-top: 24px;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.ald-result-horizontal {
|
|
44
|
+
display: flex;
|
|
45
|
+
align-items: center;
|
|
46
|
+
|
|
47
|
+
.ald-result-left {
|
|
48
|
+
width: 50%;
|
|
49
|
+
|
|
50
|
+
.ald-result-title {
|
|
51
|
+
color: #171717;
|
|
52
|
+
font-size: 48px;
|
|
53
|
+
font-weight: 600;
|
|
54
|
+
line-height: 56px;
|
|
55
|
+
margin-bottom: 24px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.ald-result-subtitle {
|
|
59
|
+
color: var(--colors-gray-700, #858585);
|
|
60
|
+
font-size: 16px;
|
|
61
|
+
font-style: normal;
|
|
62
|
+
font-weight: 400;
|
|
63
|
+
line-height: 24px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.ald-result-extra {
|
|
67
|
+
margin-top: 36px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.ald-result-right {
|
|
72
|
+
width: 50%;
|
|
73
|
+
display: flex;
|
|
74
|
+
align-items: center;
|
|
75
|
+
justify-content: center;
|
|
76
|
+
|
|
77
|
+
.ald-result-icon {
|
|
78
|
+
width: 100%;
|
|
79
|
+
display: flex;
|
|
80
|
+
align-items: center;
|
|
81
|
+
justify-content: center;
|
|
82
|
+
margin: 0;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.ald-result-image-horizontal {
|
|
86
|
+
width: 100%;
|
|
87
|
+
height: 100%;
|
|
88
|
+
object-fit: contain;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|