@everymatrix/nuts-inbox-widget 1.45.10 → 1.45.13
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/cjs/app-globals-3a1e7e63.js +5 -0
- package/dist/cjs/index-ae4a5047.js +1329 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +15 -0
- package/dist/cjs/nuts-inbox-widget.cjs.js +25 -0
- package/dist/cjs/nuts-inbox-widget_3.cjs.entry.js +40953 -0
- package/dist/collection/api/methods/index.js +144 -0
- package/dist/collection/api/methods/types.js +1 -0
- package/dist/collection/collection-manifest.json +14 -0
- package/dist/collection/components/nuts-inbox-widget/nuts-inbox-widget.css +21 -0
- package/dist/collection/components/nuts-inbox-widget/nuts-inbox-widget.js +505 -0
- package/dist/collection/components/nuts-notification/constants.js +1 -0
- package/dist/collection/components/nuts-notification/nuts-notification.css +167 -0
- package/dist/collection/components/nuts-notification/nuts-notification.js +596 -0
- package/dist/collection/components/nuts-popover/nuts-popover.css +129 -0
- package/dist/collection/components/nuts-popover/nuts-popover.js +383 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/types/nuts-inbox-widget.types.js +39 -0
- package/dist/collection/utils/locale.utils.js +52 -0
- package/dist/collection/utils/utils.js +6 -0
- package/dist/esm/app-globals-0f993ce5.js +3 -0
- package/dist/esm/index-64960aae.js +1301 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +11 -0
- package/dist/esm/nuts-inbox-widget.js +20 -0
- package/dist/esm/nuts-inbox-widget_3.entry.js +40947 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/nuts-inbox-widget/index.esm.js +0 -0
- package/dist/nuts-inbox-widget/nuts-inbox-widget.esm.js +1 -0
- package/dist/nuts-inbox-widget/p-80fb2012.js +2 -0
- package/dist/nuts-inbox-widget/p-a97eb392.entry.js +1 -0
- package/dist/nuts-inbox-widget/p-e1255160.js +1 -0
- package/dist/stencil.config.dev.js +15 -0
- package/dist/stencil.config.js +17 -0
- package/dist/types/Users/raul.vasile/workspace/everymatrix/widgets-monorepo/packages/stencil/nuts-inbox-widget/.stencil/packages/stencil/nuts-inbox-widget/stencil.config.d.ts +2 -0
- package/dist/types/Users/raul.vasile/workspace/everymatrix/widgets-monorepo/packages/stencil/nuts-inbox-widget/.stencil/packages/stencil/nuts-inbox-widget/stencil.config.dev.d.ts +2 -0
- package/dist/types/api/methods/index.d.ts +7 -0
- package/dist/types/api/methods/types.d.ts +66 -0
- package/dist/types/components/nuts-inbox-widget/nuts-inbox-widget.d.ts +91 -0
- package/dist/types/components/nuts-notification/constants.d.ts +1 -0
- package/dist/types/components/nuts-notification/nuts-notification.d.ts +102 -0
- package/dist/types/components/nuts-popover/nuts-popover.d.ts +69 -0
- package/dist/types/components.d.ts +477 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/stencil-public-runtime.d.ts +1674 -0
- package/dist/types/types/nuts-inbox-widget.types.d.ts +97 -0
- package/dist/types/utils/locale.utils.d.ts +2 -0
- package/dist/types/utils/utils.d.ts +1 -0
- package/loader/cdn.js +1 -0
- package/loader/index.cjs.js +1 -0
- package/loader/index.d.ts +24 -0
- package/loader/index.es2017.js +1 -0
- package/loader/index.js +2 -0
- package/loader/package.json +11 -0
- package/package.json +4 -1
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
:host {
|
|
2
|
+
display: block;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
p {
|
|
6
|
+
display: block;
|
|
7
|
+
margin-block-start: 0em;
|
|
8
|
+
margin-block-end: 0em;
|
|
9
|
+
margin-inline-start: 0px;
|
|
10
|
+
margin-inline-end: 0px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.NotificationContainer {
|
|
14
|
+
animation: show 600ms 100ms cubic-bezier(0.38, 0.97, 0.56, 0.76) forwards;
|
|
15
|
+
transform-origin: top center;
|
|
16
|
+
padding: 15px;
|
|
17
|
+
position: relative;
|
|
18
|
+
display: flex;
|
|
19
|
+
line-height: 20px;
|
|
20
|
+
justify-content: space-between;
|
|
21
|
+
align-items: flex-start;
|
|
22
|
+
border-radius: 7px;
|
|
23
|
+
margin: 10px 15px;
|
|
24
|
+
color: var(--emfe-w-color-white, rgb(255, 255, 255));
|
|
25
|
+
background: var(--emfe-w-color-gray-400, rgb(35, 35, 43));
|
|
26
|
+
font-weight: 400;
|
|
27
|
+
font-size: 14px;
|
|
28
|
+
gap: 8px;
|
|
29
|
+
cursor: pointer;
|
|
30
|
+
}
|
|
31
|
+
@keyframes show {
|
|
32
|
+
100% {
|
|
33
|
+
opacity: 1;
|
|
34
|
+
transform: none;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
.NotificationContainer .AvatarContainer {
|
|
38
|
+
margin-right: 10px;
|
|
39
|
+
width: 40px;
|
|
40
|
+
min-width: 40px;
|
|
41
|
+
height: 40px;
|
|
42
|
+
border-radius: 50%;
|
|
43
|
+
display: flex;
|
|
44
|
+
justify-content: center;
|
|
45
|
+
align-items: center;
|
|
46
|
+
font-size: 40px;
|
|
47
|
+
border: 1px solid var(--emfe-w-color-gray-200, rgb(82, 82, 102));
|
|
48
|
+
overflow: hidden;
|
|
49
|
+
}
|
|
50
|
+
.NotificationContainer .AvatarContainer .Avatar {
|
|
51
|
+
box-sizing: border-box;
|
|
52
|
+
position: relative;
|
|
53
|
+
display: flex;
|
|
54
|
+
user-select: none;
|
|
55
|
+
overflow: hidden;
|
|
56
|
+
width: 38px;
|
|
57
|
+
min-width: 38px;
|
|
58
|
+
height: 38px;
|
|
59
|
+
border-radius: 32px;
|
|
60
|
+
text-decoration: none;
|
|
61
|
+
border: 0px;
|
|
62
|
+
background-color: transparent;
|
|
63
|
+
padding: 0px;
|
|
64
|
+
justify-content: center;
|
|
65
|
+
align-items: center;
|
|
66
|
+
}
|
|
67
|
+
.NotificationContainer .AvatarContainer .Avatar .AvatarImage {
|
|
68
|
+
object-fit: cover;
|
|
69
|
+
width: 100%;
|
|
70
|
+
height: 100%;
|
|
71
|
+
display: block;
|
|
72
|
+
}
|
|
73
|
+
.NotificationContainer .AvatarContainer .Avatar svg {
|
|
74
|
+
object-fit: cover;
|
|
75
|
+
display: block;
|
|
76
|
+
}
|
|
77
|
+
.NotificationContainer .ContentContainer {
|
|
78
|
+
display: flex;
|
|
79
|
+
flex-direction: column;
|
|
80
|
+
word-break: break-all;
|
|
81
|
+
}
|
|
82
|
+
.NotificationContainer .RightActionsContainer {
|
|
83
|
+
display: flex;
|
|
84
|
+
flex-direction: column;
|
|
85
|
+
}
|
|
86
|
+
.NotificationContainer .FlipX {
|
|
87
|
+
transform: rotateX(180deg) translate(0, 4px);
|
|
88
|
+
}
|
|
89
|
+
.NotificationContainer .AccordionArrow {
|
|
90
|
+
margin-left: 4px;
|
|
91
|
+
transition-duration: 0.2s;
|
|
92
|
+
transition-property: transform;
|
|
93
|
+
}
|
|
94
|
+
.NotificationContainer .Date {
|
|
95
|
+
min-width: 55px;
|
|
96
|
+
font-size: 12px;
|
|
97
|
+
font-weight: 400;
|
|
98
|
+
opacity: 0.5;
|
|
99
|
+
line-height: 14.4px;
|
|
100
|
+
color: var(--emfe-w-color-gray-200, rgb(82, 82, 102));
|
|
101
|
+
}
|
|
102
|
+
.NotificationContainer .Settings {
|
|
103
|
+
opacity: 0.5;
|
|
104
|
+
display: inline;
|
|
105
|
+
cursor: pointer;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.Unseen::before {
|
|
109
|
+
content: "";
|
|
110
|
+
position: absolute;
|
|
111
|
+
inset: 0px;
|
|
112
|
+
width: 5px;
|
|
113
|
+
border-radius: 7px 0px 0px 7px;
|
|
114
|
+
background: linear-gradient(0deg, var(--emfe-w-color-secondary-20, rgb(255, 81, 47)) 0%, var(--emfe-w-color-secondary, rgb(221, 36, 118)) 100%);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.Unseen:hover .UnseenButton {
|
|
118
|
+
display: none;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.SettingsDropdown {
|
|
122
|
+
z-index: 999;
|
|
123
|
+
position: absolute;
|
|
124
|
+
background: var(--emfe-w-color-gray-400, rgb(41, 41, 51));
|
|
125
|
+
box-shadow: var(--emfe-w-color-gray-20, rgba(0, 0, 0, 0.2)) 0px 5px 20px;
|
|
126
|
+
border-radius: 7px;
|
|
127
|
+
padding: 4px;
|
|
128
|
+
border: none;
|
|
129
|
+
transition-property: opacity;
|
|
130
|
+
transition-duration: 150ms;
|
|
131
|
+
transition-timing-function: ease;
|
|
132
|
+
opacity: 1;
|
|
133
|
+
width: max-content;
|
|
134
|
+
display: flex;
|
|
135
|
+
flex-direction: column;
|
|
136
|
+
right: 50px;
|
|
137
|
+
top: 50px;
|
|
138
|
+
}
|
|
139
|
+
.SettingsDropdown svg {
|
|
140
|
+
margin-right: 10px;
|
|
141
|
+
}
|
|
142
|
+
.SettingsDropdown button {
|
|
143
|
+
font-family: inherit;
|
|
144
|
+
border: 0px;
|
|
145
|
+
background-color: transparent;
|
|
146
|
+
outline: 0px;
|
|
147
|
+
width: 100%;
|
|
148
|
+
text-align: left;
|
|
149
|
+
text-decoration: none;
|
|
150
|
+
box-sizing: border-box;
|
|
151
|
+
padding: 10px 12px;
|
|
152
|
+
cursor: pointer;
|
|
153
|
+
border-radius: 7px;
|
|
154
|
+
display: flex;
|
|
155
|
+
align-items: center;
|
|
156
|
+
color: var(--emfe-w-color-white, rgb(255, 255, 255));
|
|
157
|
+
font-weight: 400;
|
|
158
|
+
font-size: 14px;
|
|
159
|
+
}
|
|
160
|
+
.SettingsDropdown button:hover {
|
|
161
|
+
background: var(--emfe-w-color-gray-300, rgb(61, 61, 77));
|
|
162
|
+
transition: 300ms;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.Wrapper {
|
|
166
|
+
position: relative;
|
|
167
|
+
}
|