@rtsee/ngx 0.0.58 → 0.0.59
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/CHANGELOG.md +4 -0
- package/package.json +10 -7
- package/projects/ngx/src/lib/common/interfaces/index.ts +1 -0
- package/projects/ngx/src/lib/common/interfaces/server-errors.ts +5 -0
- package/projects/ngx/src/lib/components/rtsee-auth/auth/auth.component.html +14 -10
- package/projects/ngx/src/lib/components/rtsee-auth/auth/auth.component.ts +17 -1
- package/projects/ngx/src/lib/components/rtsee-auth/forgot-password/forgot-password.component.html +1 -1
- package/projects/ngx/src/lib/components/rtsee-auth/forgot-password/forgot-password.component.ts +10 -2
- package/projects/ngx/src/lib/components/rtsee-auth/reset-password/reset-password.component.ts +6 -2
- package/projects/ngx/src/lib/components/rtsee-auth/services/auth.service.ts +6 -3
- package/projects/ngx/src/lib/components/rtsee-auth/sign-in/sign-in.component.html +67 -29
- package/projects/ngx/src/lib/components/rtsee-auth/sign-in/sign-in.component.ts +94 -22
- package/projects/ngx/src/lib/components/rtsee-auth/sign-up/sign-up.component.html +1 -1
- package/projects/ngx/src/lib/components/rtsee-auth/sign-up/sign-up.component.ts +5 -0
- package/projects/ngx/src/lib/components/rtsee-auth/types/auth-form.type.ts +4 -3
- package/projects/ngx/src/lib/components/rtsee-container/rtsee-container.component.html +25 -29
- package/projects/ngx/src/lib/components/rtsee-container/rtsee-container.component.ts +5 -8
- package/projects/ngx/src/lib/components/rtsee-container/rtsee-nav/rtsee-nav.component.html +25 -0
- package/projects/ngx/src/lib/components/rtsee-container/rtsee-nav/rtsee-nav.component.ts +26 -0
- package/projects/ngx/src/lib/components/rtsee-presentation/presentation/presentation.component.html +18 -17
- package/projects/ngx/src/lib/components/rtsee-presentation/presentation/presentation.component.ts +0 -2
- package/projects/ngx/src/lib/components/rtsee-presentation/slide/slide.component.html +22 -18
- package/projects/ngx/src/lib/components/rtsee-presentation/slide/slide.component.ts +4 -3
- package/projects/ngx/src/lib/ngx.module.ts +14 -6
- package/projects/ngx/src/lib/theme/auth/auth-container.scss +189 -177
- package/projects/ngx/src/lib/theme/auth/index.scss +0 -1
- package/projects/ngx/src/lib/theme/auth/variables.scss +1 -64
- package/projects/ngx/src/lib/theme/common-variables.scss +1 -0
- package/projects/ngx/src/lib/theme/containers/index.scss +2 -2
- package/projects/ngx/src/lib/theme/containers/nav-item.scss +84 -55
- package/projects/ngx/src/lib/theme/containers/nav.scss +86 -0
- package/projects/ngx/src/lib/theme/containers/shell.scss +22 -31
- package/projects/ngx/src/lib/theme/containers/variables.scss +10 -1
- package/projects/ngx/src/lib/theme/forms/common.scss +51 -0
- package/projects/ngx/src/lib/theme/forms/index.scss +1 -0
- package/projects/ngx/src/lib/theme/forms/variables.scss +8 -0
- package/projects/ngx/src/lib/theme/styles.scss +1 -0
- package/tsconfig.json +2 -1
- package/projects/ngx/src/lib/components/rtsee-container/rtsee-bottom-nav/rtsee-bottom-nav.component.html +0 -15
- package/projects/ngx/src/lib/components/rtsee-container/rtsee-bottom-nav/rtsee-bottom-nav.component.ts +0 -20
- package/projects/ngx/src/lib/components/rtsee-container/rtsee-sidenav/rtsee-sidenav.component.html +0 -32
- package/projects/ngx/src/lib/components/rtsee-container/rtsee-sidenav/rtsee-sidenav.component.ts +0 -26
- package/projects/ngx/src/lib/theme/auth/auth.scss +0 -0
- package/projects/ngx/src/lib/theme/containers/bottom-nav.scss +0 -15
- package/projects/ngx/src/lib/theme/containers/sidenav.scss +0 -125
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
@import "./variables";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
.rtsee-sidenav {
|
|
5
|
-
background-color: $sidenav-bg-color;
|
|
6
|
-
height: 100%;
|
|
7
|
-
position: relative;
|
|
8
|
-
border-right: 1px solid $default-border-color;
|
|
9
|
-
|
|
10
|
-
.rtsee-sidenav-toggle {
|
|
11
|
-
position: absolute;
|
|
12
|
-
top: 0;
|
|
13
|
-
right: -$sidenav-toggle-width;
|
|
14
|
-
height: 100%;
|
|
15
|
-
width: $sidenav-toggle-width;
|
|
16
|
-
border-left: 2px solid transparent;
|
|
17
|
-
|
|
18
|
-
.rtsee-sidenav-toggle-button {
|
|
19
|
-
display: flex;
|
|
20
|
-
justify-content: center;
|
|
21
|
-
align-items: center;
|
|
22
|
-
position: absolute;
|
|
23
|
-
top: 66px;
|
|
24
|
-
left: -17px;
|
|
25
|
-
border-radius: 50%;
|
|
26
|
-
border: 1px solid $default-border-color;
|
|
27
|
-
height: 30px;
|
|
28
|
-
width: 30px;
|
|
29
|
-
cursor: pointer;
|
|
30
|
-
color: $primary-blue;
|
|
31
|
-
background-color: $sidenav-bg-color;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.rtsee-sidenav-header {
|
|
36
|
-
overflow: hidden;
|
|
37
|
-
position: relative;
|
|
38
|
-
height: $rts-header-height;
|
|
39
|
-
border-bottom: 1px solid #e8e8e8;
|
|
40
|
-
|
|
41
|
-
.rtsee-site-logo {
|
|
42
|
-
float: left;
|
|
43
|
-
line-height: $rts-header-height;
|
|
44
|
-
height: $rts-header-height;
|
|
45
|
-
width: $sidenav-collapsed-width;
|
|
46
|
-
text-align: center;
|
|
47
|
-
|
|
48
|
-
.rtsee-home-link {
|
|
49
|
-
text-decoration: none;
|
|
50
|
-
color: $nav-font-color;
|
|
51
|
-
|
|
52
|
-
.rtsee-site-logo-wrapper {
|
|
53
|
-
display: inline-block;
|
|
54
|
-
vertical-align: middle;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
img {
|
|
58
|
-
height: $dark-logo-height;
|
|
59
|
-
width: $logo-height;
|
|
60
|
-
vertical-align: middle;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.rtsee-sidenav-toggle {
|
|
68
|
-
position: absolute;
|
|
69
|
-
right: 0;
|
|
70
|
-
top: 0;
|
|
71
|
-
height: 100%;
|
|
72
|
-
width: 70px;
|
|
73
|
-
font-size: 23px;
|
|
74
|
-
text-align: center;
|
|
75
|
-
line-height: $rts-header-height;
|
|
76
|
-
color: $icon-color;
|
|
77
|
-
cursor: pointer;
|
|
78
|
-
|
|
79
|
-
:hover {
|
|
80
|
-
opacity: 0.6;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.rtsee-sidenav-body {
|
|
86
|
-
overflow: auto;
|
|
87
|
-
height: calc(100% - #{$rts-header-height});
|
|
88
|
-
|
|
89
|
-
.rtsee-nav-items {
|
|
90
|
-
list-style-type: none;
|
|
91
|
-
padding: 0;
|
|
92
|
-
margin: 0;
|
|
93
|
-
|
|
94
|
-
.nav-icon-img {
|
|
95
|
-
margin-top: -5px;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
&.rtsee-sidenav-expanded {
|
|
101
|
-
.rtsee-sidenav-body {
|
|
102
|
-
.rtsee-nav-items {
|
|
103
|
-
.rtsee-nav-item {
|
|
104
|
-
padding-left: $nav-icon-block-width;
|
|
105
|
-
|
|
106
|
-
.rtsee-nav-item-name {
|
|
107
|
-
display: block;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.rtsee-nav-item-icon {
|
|
111
|
-
position: absolute;
|
|
112
|
-
height: $nav-item-height;
|
|
113
|
-
width: $nav-icon-block-width;
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.rtsee-sidenav-toggle {
|
|
120
|
-
cursor: w-resize;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
|