@aloudata/aloudata-design 1.8.1 → 1.9.1

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.
Files changed (33) hide show
  1. package/dist/Form/index.d.ts +1 -1
  2. package/dist/Form/style/index.less +10 -0
  3. package/dist/Icon/components/AlertTriangleDuotone.d.ts +11 -0
  4. package/dist/Icon/components/AlertTriangleDuotone.js +42 -0
  5. package/dist/Icon/components/CancelCircleDuotone.d.ts +11 -0
  6. package/dist/Icon/components/CancelCircleDuotone.js +45 -0
  7. package/dist/Icon/components/CheckCircleDuotone.d.ts +11 -0
  8. package/dist/Icon/components/CheckCircleDuotone.js +45 -0
  9. package/dist/Icon/components/InfoCircleLine.d.ts +11 -0
  10. package/dist/Icon/components/InfoCircleLine.js +42 -0
  11. package/dist/Icon/index.d.ts +4 -0
  12. package/dist/Icon/index.js +4 -0
  13. package/dist/Icon/svg/alert-triangle-duotone.svg +3 -0
  14. package/dist/Icon/svg/cancel-circle-duotone.svg +4 -0
  15. package/dist/Icon/svg/check-circle-duotone.svg +4 -0
  16. package/dist/Icon/svg/info-circle-line.svg +3 -0
  17. package/dist/Result/index.d.ts +45 -0
  18. package/dist/Result/index.js +126 -0
  19. package/dist/Result/noFound.d.ts +6 -0
  20. package/dist/Result/noFound.js +37 -0
  21. package/dist/Result/serverError.d.ts +6 -0
  22. package/dist/Result/serverError.js +37 -0
  23. package/dist/Result/style/index.d.ts +2 -0
  24. package/dist/Result/style/index.js +2 -0
  25. package/dist/Result/style/index.less +99 -0
  26. package/dist/Result/unauthorized.d.ts +6 -0
  27. package/dist/Result/unauthorized.js +38 -0
  28. package/dist/Select/index.d.ts +1 -0
  29. package/dist/Select/index.js +19 -4
  30. package/dist/index.d.ts +1 -0
  31. package/dist/index.js +1 -0
  32. package/package.json +8 -3
  33. package/dist/Icon/iconSvgs/arrows_right_sm.svg +0 -3
@@ -0,0 +1,2 @@
1
+ import '../../style';
2
+ import './index.less';
@@ -0,0 +1,2 @@
1
+ import "../../style";
2
+ import "./index.less";
@@ -0,0 +1,99 @@
1
+ @import '../../style/index.less';
2
+
3
+ .ald-result-vertical {
4
+ display: flex;
5
+ align-items: center;
6
+ justify-content: center;
7
+ flex-direction: column;
8
+ width: 100%;
9
+ height: 100%;
10
+
11
+ .ald-result-icon {
12
+ margin-bottom: 16px;
13
+ display: flex;
14
+ align-items: center;
15
+ justify-content: center;
16
+ }
17
+
18
+ .ald-result-title {
19
+ color: var(--colors-gray-900, #171717);
20
+ text-align: center;
21
+ font-size: 16px;
22
+ font-style: normal;
23
+ font-weight: 500;
24
+ line-height: 24px;
25
+ }
26
+
27
+ .ald-result-subtitle {
28
+ color: var(--colors-gray-700, #858585);
29
+ text-align: center;
30
+ font-size: 13px;
31
+ font-style: normal;
32
+ font-weight: 400;
33
+ line-height: 20px;
34
+ }
35
+
36
+ .ald-result-extra {
37
+ margin-top: 24px;
38
+ display: flex;
39
+ justify-content: center;
40
+ align-items: center;
41
+ gap: 12px;
42
+ align-self: stretch;
43
+ }
44
+
45
+ .ald-result-content {
46
+ margin-top: 24px;
47
+ }
48
+ }
49
+
50
+ .ald-result-horizontal {
51
+ display: flex;
52
+ align-items: center;
53
+ gap: 32px;
54
+
55
+ .ald-result-left {
56
+ width: 50%;
57
+
58
+ .ald-result-title {
59
+ color: #171717;
60
+ font-size: 48px;
61
+ font-weight: 600;
62
+ line-height: 56px;
63
+ margin-bottom: 24px;
64
+ }
65
+
66
+ .ald-result-subtitle {
67
+ color: var(--colors-gray-700, #858585);
68
+ font-size: 16px;
69
+ font-style: normal;
70
+ font-weight: 400;
71
+ line-height: 24px;
72
+ }
73
+
74
+ .ald-result-extra {
75
+ margin-top: 36px;
76
+ }
77
+ }
78
+
79
+ .ald-result-right {
80
+ width: 50%;
81
+ display: flex;
82
+ align-items: center;
83
+ justify-content: center;
84
+
85
+ .ald-result-icon {
86
+ width: 100%;
87
+ display: flex;
88
+ align-items: center;
89
+ justify-content: center;
90
+ margin: 0;
91
+ }
92
+
93
+ .ald-result-image-horizontal {
94
+ width: 100%;
95
+ height: 100%;
96
+ object-fit: contain;
97
+ }
98
+ }
99
+ }
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ import { ResultDirectionType } from './index';
3
+ declare const Unauthorized: React.FC<{
4
+ direction?: ResultDirectionType;
5
+ }>;
6
+ export default Unauthorized;