@rtsee/ngx 0.0.92 → 0.0.93
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/ngx/fesm2022/rtsee-ngx.mjs +307 -284
- package/dist/ngx/fesm2022/rtsee-ngx.mjs.map +1 -1
- package/dist/ngx/index.d.ts +18 -41
- package/dist/ngx/src/lib/theme/common-components/action-buttons.scss +99 -0
- package/dist/ngx/src/lib/theme/common-components/index.scss +1 -0
- package/dist/ngx/src/lib/theme/presentation/story-details.scss +37 -13
- package/dist/ngx/src/lib/theme/rates/rater.scss +0 -92
- package/package.json +11 -11
package/dist/ngx/index.d.ts
CHANGED
|
@@ -12,10 +12,9 @@ import { IRTSeePaymentProduct, IRTSeePaymentPriceItem, IRTSeeTag, IRTSeeChat, RT
|
|
|
12
12
|
import { RTSeeEventsDashboard, RTSeeDashboardClientSession, RTSeeDashboardEvent, RTSeeDashboardClient } from '@rtsee/events-dashboard';
|
|
13
13
|
import { RTSee, INavigationConfig, IRouteConfig } from '@rtsee/factory';
|
|
14
14
|
import { RTSeePresentation, RTSeeStory, RTSeePresentationSettings, RTSeeStorySlide } from '@rtsee/presentation';
|
|
15
|
-
import { RTSeeTag, RTSeeManageTags, RecursiveSelect, RTSeeTagGroup, RTSeeManageTagGroups, RTSeeEntityConfiguration, RTSeeManageEntityConfigurations, RTSeeEntity, RTSeeManageEntities, RTSeeRater } from '@rtsee/utilities-ui';
|
|
15
|
+
import { RTSeeTag, RTSeeManageTags, RecursiveSelect, RTSeeTagGroup, RTSeeManageTagGroups, RTSeeEntityConfiguration, RTSeeManageEntityConfigurations, RTSeeEntity, RTSeeManageEntities, RTSeeRater, RTSeeForm } from '@rtsee/utilities-ui';
|
|
16
16
|
import * as i44 from '@angular/forms';
|
|
17
17
|
import { FormGroup, FormBuilder, FormControl, FormArray } from '@angular/forms';
|
|
18
|
-
import { RTSeeManageEntities as RTSeeManageEntities$1 } from '@rtsee/utilities-ui/dist/utilities-ui/src/entities/models/manage/RTSeeManageEntities';
|
|
19
18
|
import * as i43 from '@angular/common';
|
|
20
19
|
import { ViewportScroller } from '@angular/common';
|
|
21
20
|
import * as i45 from 'ngx-autosize';
|
|
@@ -253,28 +252,11 @@ declare class EntitiesConfigurationsListComponent {
|
|
|
253
252
|
static ɵcmp: i0.ɵɵComponentDeclaration<EntitiesConfigurationsListComponent, "rtsee-entities-configurations-list", never, { "manageEntityConfigurations": { "alias": "manageEntityConfigurations"; "required": false; }; }, { "onConfigurationClicked": "onConfigurationClicked"; }, never, never, true, never>;
|
|
254
253
|
}
|
|
255
254
|
|
|
256
|
-
|
|
257
|
-
name: string | null;
|
|
258
|
-
description: string | null;
|
|
259
|
-
taggingEnabled: boolean | null;
|
|
260
|
-
commentsEnabled: boolean | null;
|
|
261
|
-
ratingEnabled: boolean | null;
|
|
262
|
-
};
|
|
263
|
-
declare class ManageEntityConfigurationComponent {
|
|
264
|
-
private formBuilder;
|
|
265
|
-
entityConfigurationForm: FormGroup;
|
|
255
|
+
declare class ManageEntityConfigurationComponent implements OnInit {
|
|
266
256
|
manageEntityConfigurations: RTSeeManageEntityConfigurations;
|
|
267
|
-
constructor(formBuilder: FormBuilder);
|
|
268
257
|
ngOnInit(): void;
|
|
269
|
-
submit():
|
|
258
|
+
submit(): void;
|
|
270
259
|
cancel(): void;
|
|
271
|
-
private presetFields;
|
|
272
|
-
private getEntityConfigurationForm;
|
|
273
|
-
get nameField(): FormControl<string>;
|
|
274
|
-
get descriptionField(): FormControl<string>;
|
|
275
|
-
get taggingEnabledField(): FormControl<boolean>;
|
|
276
|
-
get commentsEnabledField(): FormControl<boolean>;
|
|
277
|
-
get ratingEnabledField(): FormControl<boolean>;
|
|
278
260
|
static ɵfac: i0.ɵɵFactoryDeclaration<ManageEntityConfigurationComponent, never>;
|
|
279
261
|
static ɵcmp: i0.ɵɵComponentDeclaration<ManageEntityConfigurationComponent, "rtsee-manage-entity-configuration", never, { "manageEntityConfigurations": { "alias": "manageEntityConfigurations"; "required": false; }; }, {}, never, never, true, never>;
|
|
280
262
|
}
|
|
@@ -290,25 +272,11 @@ declare class EntitiesListComponent {
|
|
|
290
272
|
static ɵcmp: i0.ɵɵComponentDeclaration<EntitiesListComponent, "rtsee-entities-list", never, { "manageEntities": { "alias": "manageEntities"; "required": false; }; }, { "onEntityClicked": "onEntityClicked"; }, never, never, true, never>;
|
|
291
273
|
}
|
|
292
274
|
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
configurationId: string | null;
|
|
296
|
-
imageUrl: string | null;
|
|
297
|
-
};
|
|
298
|
-
declare class ManageEntityComponent {
|
|
299
|
-
private formBuilder;
|
|
300
|
-
entityForm: FormGroup;
|
|
301
|
-
manageEntities: RTSeeManageEntities$1;
|
|
302
|
-
constructor(formBuilder: FormBuilder);
|
|
275
|
+
declare class ManageEntityComponent implements OnInit {
|
|
276
|
+
manageEntities: RTSeeManageEntities;
|
|
303
277
|
ngOnInit(): void;
|
|
304
|
-
submit():
|
|
305
|
-
configurationInputChanged(): void;
|
|
278
|
+
submit(): void;
|
|
306
279
|
cancel(): void;
|
|
307
|
-
private presetFields;
|
|
308
|
-
private getEntityForm;
|
|
309
|
-
get nameField(): FormControl<string>;
|
|
310
|
-
get imageUrlField(): FormControl<string>;
|
|
311
|
-
get configurationIdField(): FormControl<string>;
|
|
312
280
|
static ɵfac: i0.ɵɵFactoryDeclaration<ManageEntityComponent, never>;
|
|
313
281
|
static ɵcmp: i0.ɵɵComponentDeclaration<ManageEntityComponent, "rtsee-manage-entity", never, { "manageEntities": { "alias": "manageEntities"; "required": false; }; }, {}, never, never, true, never>;
|
|
314
282
|
}
|
|
@@ -823,11 +791,20 @@ declare class PresentationHeaderComponent {
|
|
|
823
791
|
static ɵcmp: i0.ɵɵComponentDeclaration<PresentationHeaderComponent, "rtsee-presentation-header", never, { "presentation": { "alias": "presentation"; "required": false; }; }, {}, never, never, true, never>;
|
|
824
792
|
}
|
|
825
793
|
|
|
794
|
+
declare class FormComponent {
|
|
795
|
+
form: RTSeeForm;
|
|
796
|
+
formSubmit: EventEmitter<RTSeeForm<any>>;
|
|
797
|
+
submit(): void;
|
|
798
|
+
onFieldChanged(): void;
|
|
799
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormComponent, never>;
|
|
800
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormComponent, "rtsee-form", never, { "form": { "alias": "form"; "required": false; }; }, { "formSubmit": "formSubmit"; }, never, ["*"], true, never>;
|
|
801
|
+
}
|
|
802
|
+
|
|
826
803
|
declare class RTSeeModule {
|
|
827
804
|
static ɵfac: i0.ɵɵFactoryDeclaration<RTSeeModule, never>;
|
|
828
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RTSeeModule, never, [typeof RTSeeAuthComponent, typeof VendorsComponent, typeof ForgotPasswordComponent, typeof SignInComponent, typeof SignUpComponent, typeof RtseeEventsDashboardSessionComponent, typeof EventThumbnailComponent, typeof ShaveDirective, typeof ContactsMultiselectComponent, typeof ManageChatComponent, typeof CallWidgetComponent, typeof WidgetDirective, typeof RtseeEventsDashboardClientComponent, typeof ResetPasswordComponent, typeof RtseeEventsDashboardClientThumbnailComponent, typeof RtseePeersListComponent, typeof ChatComponent, typeof MessageComponent, typeof MessagesListComponent, typeof ChatThumbnailComponent, typeof ChatInputComponent, typeof RtseeEventsDashboardComponent, typeof MessengerComponent, typeof RTSeeControlsComponent, typeof RTSeeContainerComponent, typeof RTSeeConferenceComponent, typeof RtseePeerComponent, typeof RtseeSoundbarComponent, typeof RtseeSettingsComponent, typeof MessengerHeaderComponent, typeof ChatsListComponent, typeof ProfileComponent, typeof MainMenuComponent, typeof MessageTimeAndStatusComponent, typeof PreloaderComponent, typeof SearchComponent, typeof PresentationComponent, typeof StoryPlayerComponent, typeof SlideComponent, typeof StoryThumbnailComponent, typeof PresentationHeaderComponent, typeof PaymentProductSnippetComponent, typeof i43.CommonModule, typeof i44.ReactiveFormsModule, typeof i45.AutosizeModule, typeof i46.InfiniteScrollModule, typeof i44.FormsModule, typeof i43.NgOptimizedImage, typeof i47.RouterLink, typeof i47.RouterLinkActive, typeof i48.NgxCaptchaModule], [typeof RTSeeConferenceComponent, typeof MessengerComponent, typeof RtseeEventsDashboardComponent, typeof RTSeeContainerComponent, typeof PresentationComponent, typeof RTSeeAuthComponent, typeof PaymentProductSnippetComponent]>;
|
|
805
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RTSeeModule, never, [typeof RTSeeAuthComponent, typeof VendorsComponent, typeof ForgotPasswordComponent, typeof SignInComponent, typeof SignUpComponent, typeof RtseeEventsDashboardSessionComponent, typeof EventThumbnailComponent, typeof ShaveDirective, typeof ContactsMultiselectComponent, typeof ManageChatComponent, typeof CallWidgetComponent, typeof WidgetDirective, typeof RtseeEventsDashboardClientComponent, typeof ResetPasswordComponent, typeof RtseeEventsDashboardClientThumbnailComponent, typeof RtseePeersListComponent, typeof ChatComponent, typeof MessageComponent, typeof MessagesListComponent, typeof ChatThumbnailComponent, typeof ChatInputComponent, typeof RtseeEventsDashboardComponent, typeof MessengerComponent, typeof RTSeeControlsComponent, typeof RTSeeContainerComponent, typeof RTSeeConferenceComponent, typeof RtseePeerComponent, typeof RtseeSoundbarComponent, typeof RtseeSettingsComponent, typeof MessengerHeaderComponent, typeof ChatsListComponent, typeof ProfileComponent, typeof MainMenuComponent, typeof MessageTimeAndStatusComponent, typeof PreloaderComponent, typeof SearchComponent, typeof PresentationComponent, typeof StoryPlayerComponent, typeof SlideComponent, typeof StoryThumbnailComponent, typeof PresentationHeaderComponent, typeof PaymentProductSnippetComponent, typeof i43.CommonModule, typeof i44.ReactiveFormsModule, typeof i45.AutosizeModule, typeof i46.InfiniteScrollModule, typeof i44.FormsModule, typeof i43.NgOptimizedImage, typeof i47.RouterLink, typeof i47.RouterLinkActive, typeof i48.NgxCaptchaModule, typeof FormComponent], [typeof RTSeeConferenceComponent, typeof MessengerComponent, typeof RtseeEventsDashboardComponent, typeof RTSeeContainerComponent, typeof PresentationComponent, typeof RTSeeAuthComponent, typeof PaymentProductSnippetComponent, typeof FormComponent]>;
|
|
829
806
|
static ɵinj: i0.ɵɵInjectorDeclaration<RTSeeModule>;
|
|
830
807
|
}
|
|
831
808
|
|
|
832
|
-
export { EntitiesConfigurationsListComponent, EntitiesListComponent, ManageEntityComponent, ManageEntityConfigurationComponent, MessengerComponent, NgxService, PaymentProductSnippetComponent, PresentationComponent, ProfileComponent, RTSeeAuthComponent, RTSeeConferenceComponent, RTSeeContainerComponent, RTSeeControlsComponent, RTSeeModule, RtseeEntityCommentsComponent, RtseeEntityPreviewComponent, RtseeEntityTagsComponent, RtseeEventsDashboardComponent, RtseePeerComponent, RtseeSettingsComponent, RtseeTagGroupManageComponent, RtseeTagGroupsManageComponent, RtseeTagManageComponent, RtseeTagsAccordionMenuComponent };
|
|
833
|
-
export type { IAccordionItem,
|
|
809
|
+
export { EntitiesConfigurationsListComponent, EntitiesListComponent, FormComponent, ManageEntityComponent, ManageEntityConfigurationComponent, MessengerComponent, NgxService, PaymentProductSnippetComponent, PresentationComponent, ProfileComponent, RTSeeAuthComponent, RTSeeConferenceComponent, RTSeeContainerComponent, RTSeeControlsComponent, RTSeeModule, RtseeEntityCommentsComponent, RtseeEntityPreviewComponent, RtseeEntityTagsComponent, RtseeEventsDashboardComponent, RtseePeerComponent, RtseeSettingsComponent, RtseeTagGroupManageComponent, RtseeTagGroupsManageComponent, RtseeTagManageComponent, RtseeTagsAccordionMenuComponent };
|
|
810
|
+
export type { IAccordionItem, RTSeeTagForm, RTSeeTagGroupForm };
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
@import "../common-variables";
|
|
2
|
+
|
|
3
|
+
.rts-action-button {
|
|
4
|
+
width: 100%;
|
|
5
|
+
|
|
6
|
+
button {
|
|
7
|
+
display: inline-flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
gap: $rts-offset-sm;
|
|
10
|
+
font-weight: 600;
|
|
11
|
+
font-family: inherit;
|
|
12
|
+
border-radius: $rts-default-border-radius;
|
|
13
|
+
padding: ($rts-offset-sm + $rts-offset-xsm) $rts-offset-lg;
|
|
14
|
+
transition:
|
|
15
|
+
transform 0.2s ease,
|
|
16
|
+
box-shadow 0.2s ease,
|
|
17
|
+
filter 0.2s ease;
|
|
18
|
+
border: none;
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
width: 100%;
|
|
21
|
+
justify-content: center;
|
|
22
|
+
|
|
23
|
+
span {
|
|
24
|
+
margin: 0;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.p-button-primary {
|
|
28
|
+
background: linear-gradient(
|
|
29
|
+
135deg,
|
|
30
|
+
$rts-rates-accent-purple 0%,
|
|
31
|
+
$rts-rates-accent-purple-light 100%
|
|
32
|
+
);
|
|
33
|
+
color: $rts-rates-text-primary;
|
|
34
|
+
box-shadow: 0 4px 16px rgba($rts-rates-accent-purple, 0.3);
|
|
35
|
+
|
|
36
|
+
&:hover {
|
|
37
|
+
transform: translateY(-2px);
|
|
38
|
+
box-shadow: 0 6px 20px rgba($rts-rates-accent-purple, 0.45);
|
|
39
|
+
background: linear-gradient(
|
|
40
|
+
135deg,
|
|
41
|
+
$rts-rates-accent-purple 0%,
|
|
42
|
+
$rts-rates-accent-purple-light 100%
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&:active {
|
|
47
|
+
transform: translateY(0);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&.p-button-success {
|
|
52
|
+
background: linear-gradient(
|
|
53
|
+
135deg,
|
|
54
|
+
$rts-rates-success 0%,
|
|
55
|
+
color-mix(in srgb, $rts-rates-success 80%, black) 100%
|
|
56
|
+
);
|
|
57
|
+
color: $rts-rates-text-primary;
|
|
58
|
+
box-shadow: 0 4px 16px rgba($rts-rates-success, 0.3);
|
|
59
|
+
|
|
60
|
+
&:hover {
|
|
61
|
+
transform: translateY(-2px);
|
|
62
|
+
box-shadow: 0 6px 20px rgba($rts-rates-success, 0.45);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
&:active {
|
|
66
|
+
transform: translateY(0);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
&.p-button-danger {
|
|
71
|
+
background: linear-gradient(
|
|
72
|
+
135deg,
|
|
73
|
+
$rts-rates-danger 0%,
|
|
74
|
+
color-mix(in srgb, $rts-rates-danger 80%, black) 100%
|
|
75
|
+
);
|
|
76
|
+
color: $rts-rates-text-primary;
|
|
77
|
+
box-shadow: 0 4px 16px rgba($rts-rates-danger, 0.3);
|
|
78
|
+
|
|
79
|
+
&:hover {
|
|
80
|
+
transform: translateY(-2px);
|
|
81
|
+
box-shadow: 0 6px 20px rgba($rts-rates-danger, 0.45);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
&:active {
|
|
85
|
+
transform: translateY(0);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@media screen and (min-width: $rts-break-sm) {
|
|
91
|
+
width: auto;
|
|
92
|
+
|
|
93
|
+
button {
|
|
94
|
+
width: auto;
|
|
95
|
+
justify-content: flex-start;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
.rtsee-story-details-cover {
|
|
13
13
|
position: relative;
|
|
14
14
|
background-size: cover;
|
|
15
|
-
background-position: center
|
|
15
|
+
background-position: center;
|
|
16
16
|
background-repeat: no-repeat;
|
|
17
17
|
display: flex;
|
|
18
18
|
align-items: flex-end;
|
|
@@ -20,6 +20,40 @@
|
|
|
20
20
|
|
|
21
21
|
// Mobile-first default
|
|
22
22
|
min-height: 320px;
|
|
23
|
+
|
|
24
|
+
.rtsee-story-details-btn-close {
|
|
25
|
+
position: absolute;
|
|
26
|
+
top: 24px;
|
|
27
|
+
right: 24px;
|
|
28
|
+
z-index: 10;
|
|
29
|
+
width: 40px;
|
|
30
|
+
height: 40px;
|
|
31
|
+
border-radius: 50%;
|
|
32
|
+
background: rgba(0, 0, 0, 0.4);
|
|
33
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
34
|
+
backdrop-filter: blur(8px);
|
|
35
|
+
color: #fff;
|
|
36
|
+
display: flex;
|
|
37
|
+
align-items: center;
|
|
38
|
+
justify-content: center;
|
|
39
|
+
cursor: pointer;
|
|
40
|
+
transition:
|
|
41
|
+
transform 0.2s ease,
|
|
42
|
+
background-color 0.2s ease;
|
|
43
|
+
|
|
44
|
+
&:hover {
|
|
45
|
+
transform: scale(1.1);
|
|
46
|
+
background: rgba(0, 0, 0, 0.6);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&:active {
|
|
50
|
+
transform: scale(0.95);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
span {
|
|
54
|
+
font-size: 1.1rem;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
23
57
|
}
|
|
24
58
|
|
|
25
59
|
.rtsee-story-details-cover-overlay {
|
|
@@ -198,7 +232,8 @@
|
|
|
198
232
|
.rtsee-story-details-cover-actions {
|
|
199
233
|
display: flex;
|
|
200
234
|
align-items: stretch;
|
|
201
|
-
margin-top:
|
|
235
|
+
margin-top: -$rts-offset-md;
|
|
236
|
+
padding-bottom: $rts-offset-xl;
|
|
202
237
|
|
|
203
238
|
// Mobile-first default
|
|
204
239
|
flex-direction: column;
|
|
@@ -231,17 +266,6 @@
|
|
|
231
266
|
box-shadow: 0 4px 12px rgba($rts-rates-accent-purple, 0.3);
|
|
232
267
|
}
|
|
233
268
|
}
|
|
234
|
-
|
|
235
|
-
.rtsee-story-details-close ::v-deep .p-button {
|
|
236
|
-
background: rgba(255, 255, 255, 0.06);
|
|
237
|
-
border: 1px solid $rts-rates-border-med;
|
|
238
|
-
color: $rts-rates-text-primary;
|
|
239
|
-
|
|
240
|
-
&:hover {
|
|
241
|
-
background: rgba(255, 255, 255, 0.1);
|
|
242
|
-
border-color: $rts-rates-border-bright;
|
|
243
|
-
}
|
|
244
|
-
}
|
|
245
269
|
}
|
|
246
270
|
|
|
247
271
|
/* ── CONTENT WRAPPER ──────────────────────────────────────── */
|
|
@@ -95,89 +95,6 @@
|
|
|
95
95
|
|
|
96
96
|
// Mobile action stacking
|
|
97
97
|
flex-direction: column;
|
|
98
|
-
|
|
99
|
-
p-button {
|
|
100
|
-
width: 100%;
|
|
101
|
-
|
|
102
|
-
button {
|
|
103
|
-
display: inline-flex;
|
|
104
|
-
align-items: center;
|
|
105
|
-
gap: $rts-offset-sm;
|
|
106
|
-
font-weight: 600;
|
|
107
|
-
font-family: inherit;
|
|
108
|
-
border-radius: $rts-default-border-radius;
|
|
109
|
-
padding: ($rts-offset-sm + $rts-offset-xsm) $rts-offset-lg;
|
|
110
|
-
transition:
|
|
111
|
-
transform 0.2s ease,
|
|
112
|
-
box-shadow 0.2s ease,
|
|
113
|
-
filter 0.2s ease;
|
|
114
|
-
border: none;
|
|
115
|
-
cursor: pointer;
|
|
116
|
-
width: 100%;
|
|
117
|
-
justify-content: center;
|
|
118
|
-
|
|
119
|
-
span {
|
|
120
|
-
margin: 0;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
&.p-button-primary {
|
|
124
|
-
background: linear-gradient(
|
|
125
|
-
135deg,
|
|
126
|
-
$rts-rates-accent-purple 0%,
|
|
127
|
-
$rts-rates-accent-purple-light 100%
|
|
128
|
-
);
|
|
129
|
-
color: $rts-rates-text-primary;
|
|
130
|
-
box-shadow: 0 4px 16px rgba($rts-rates-accent-purple, 0.3);
|
|
131
|
-
|
|
132
|
-
&:hover {
|
|
133
|
-
transform: translateY(-2px);
|
|
134
|
-
box-shadow: 0 6px 20px rgba($rts-rates-accent-purple, 0.45);
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
&:active {
|
|
138
|
-
transform: translateY(0);
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
&.p-button-success {
|
|
143
|
-
background: linear-gradient(
|
|
144
|
-
135deg,
|
|
145
|
-
$rts-rates-success 0%,
|
|
146
|
-
color-mix(in srgb, $rts-rates-success 80%, black) 100%
|
|
147
|
-
);
|
|
148
|
-
color: $rts-rates-text-primary;
|
|
149
|
-
box-shadow: 0 4px 16px rgba($rts-rates-success, 0.3);
|
|
150
|
-
|
|
151
|
-
&:hover {
|
|
152
|
-
transform: translateY(-2px);
|
|
153
|
-
box-shadow: 0 6px 20px rgba($rts-rates-success, 0.45);
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
&:active {
|
|
157
|
-
transform: translateY(0);
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
&.p-button-danger {
|
|
162
|
-
background: linear-gradient(
|
|
163
|
-
135deg,
|
|
164
|
-
$rts-rates-danger 0%,
|
|
165
|
-
color-mix(in srgb, $rts-rates-danger 80%, black) 100%
|
|
166
|
-
);
|
|
167
|
-
color: $rts-rates-text-primary;
|
|
168
|
-
box-shadow: 0 4px 16px rgba($rts-rates-danger, 0.3);
|
|
169
|
-
|
|
170
|
-
&:hover {
|
|
171
|
-
transform: translateY(-2px);
|
|
172
|
-
box-shadow: 0 6px 20px rgba($rts-rates-danger, 0.45);
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
&:active {
|
|
176
|
-
transform: translateY(0);
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
98
|
}
|
|
182
99
|
|
|
183
100
|
// Desktop tablet media overrides
|
|
@@ -187,15 +104,6 @@
|
|
|
187
104
|
.rtsee-rater-actions {
|
|
188
105
|
flex-direction: row;
|
|
189
106
|
justify-content: flex-end;
|
|
190
|
-
|
|
191
|
-
p-button {
|
|
192
|
-
width: auto;
|
|
193
|
-
|
|
194
|
-
button {
|
|
195
|
-
width: auto;
|
|
196
|
-
justify-content: flex-start;
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
107
|
}
|
|
200
108
|
}
|
|
201
109
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.93",
|
|
3
3
|
"name": "@rtsee/ngx",
|
|
4
4
|
"module": "./dist/ngx/fesm2022/rtsee-ngx.mjs",
|
|
5
5
|
"types": "./dist/ngx/index.d.ts",
|
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
"@angular/platform-browser-dynamic": "^20.1.2",
|
|
41
41
|
"@angular/router": "^20.1.2",
|
|
42
42
|
"@primeuix/themes": "^1.2.3",
|
|
43
|
-
"@rtsee/common": "^0.0.
|
|
44
|
-
"@rtsee/conference": "^0.0.
|
|
45
|
-
"@rtsee/core": "^0.0.
|
|
46
|
-
"@rtsee/events-dashboard": "^0.0.
|
|
47
|
-
"@rtsee/factory": "^0.0.
|
|
48
|
-
"@rtsee/messenger": "^0.0.
|
|
49
|
-
"@rtsee/presentation": "^0.0.
|
|
50
|
-
"@rtsee/signaling-client": "^0.0.
|
|
51
|
-
"@rtsee/utilities-ui": "^0.0.
|
|
43
|
+
"@rtsee/common": "^0.0.64",
|
|
44
|
+
"@rtsee/conference": "^0.0.65",
|
|
45
|
+
"@rtsee/core": "^0.0.108",
|
|
46
|
+
"@rtsee/events-dashboard": "^0.0.98",
|
|
47
|
+
"@rtsee/factory": "^0.0.107",
|
|
48
|
+
"@rtsee/messenger": "^0.0.98",
|
|
49
|
+
"@rtsee/presentation": "^0.0.97",
|
|
50
|
+
"@rtsee/signaling-client": "^0.0.111",
|
|
51
|
+
"@rtsee/utilities-ui": "^0.0.29",
|
|
52
52
|
"@stripe/stripe-js": "^8.6.1",
|
|
53
53
|
"@types/node": "~24.0.14",
|
|
54
54
|
"dayjs": "^1.11.9",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"publishConfig": {
|
|
71
71
|
"access": "public"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "08e0e0575808fdf49c61806630fcb87c932f0467"
|
|
74
74
|
}
|