@paperless/angular 2.0.1-beta.79 → 2.0.1-beta.80

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.
@@ -3,10 +3,11 @@ import { IconFlipOptions, IconVariant } from '@paperless/core/dist/types/compone
3
3
  import { ToastDirective } from './directives';
4
4
  export declare enum ToastVariants {
5
5
  Success = "positive",
6
- Warning = "unbiased",
6
+ Warning = "biased",
7
7
  Error = "negative",
8
+ Neutral = "neutral",
8
9
  Positive = "positive",
9
- Unbiased = "unbiased",
10
+ Biased = "biased",
10
11
  Negative = "negative"
11
12
  }
12
13
  export declare type ToastActionFunction = (directive?: ToastDirective, data?: any) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/angular",
3
- "version": "2.0.1-beta.79",
3
+ "version": "2.0.1-beta.80",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^13.3.0 || ^14.0.0 || ^15.0.0 || ^17.0.0",
6
6
  "@angular/common": "^13.3.0 || ^14.0.0 || ^15.0.0",
package/paperless.css CHANGED
@@ -1,11 +1,23 @@
1
+ .pointer-events-none {
2
+ pointer-events: none !important
3
+ }
4
+
1
5
  .static {
2
6
  position: static !important
3
7
  }
4
8
 
9
+ .sticky {
10
+ position: sticky !important
11
+ }
12
+
5
13
  .bottom-0 {
6
14
  bottom: 0px !important
7
15
  }
8
16
 
17
+ .bottom-11 {
18
+ bottom: 2.75rem !important
19
+ }
20
+
9
21
  .left-0 {
10
22
  left: 0px !important
11
23
  }
@@ -22,11 +34,24 @@
22
34
  z-index: 0 !important
23
35
  }
24
36
 
37
+ .z-\[3\] {
38
+ z-index: 3 !important
39
+ }
40
+
25
41
  .my-16 {
26
42
  margin-top: 4rem !important;
27
43
  margin-bottom: 4rem !important
28
44
  }
29
45
 
46
+ .my-4 {
47
+ margin-top: 1rem !important;
48
+ margin-bottom: 1rem !important
49
+ }
50
+
51
+ .-mb-5 {
52
+ margin-bottom: -1.25rem !important
53
+ }
54
+
30
55
  .mb-8 {
31
56
  margin-bottom: 2rem !important
32
57
  }
@@ -35,10 +60,18 @@
35
60
  margin-left: auto !important
36
61
  }
37
62
 
63
+ .mt-4 {
64
+ margin-top: 1rem !important
65
+ }
66
+
38
67
  .block {
39
68
  display: block !important
40
69
  }
41
70
 
71
+ .inline-block {
72
+ display: inline-block !important
73
+ }
74
+
42
75
  .inline {
43
76
  display: inline !important
44
77
  }
@@ -111,6 +144,10 @@
111
144
  width: 75% !important
112
145
  }
113
146
 
147
+ .w-auto {
148
+ width: auto !important
149
+ }
150
+
114
151
  .w-full {
115
152
  width: 100% !important
116
153
  }
@@ -127,10 +164,62 @@
127
164
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important
128
165
  }
129
166
 
167
+ @keyframes floatingMenuContainerIn {
168
+ 0% {
169
+ display: none;
170
+ transform: translateY(100%);
171
+ opacity: 0
172
+ }
173
+
174
+ 1% {
175
+ display: flex;
176
+ transform: translateY(100%);
177
+ opacity: 0
178
+ }
179
+
180
+ 100% {
181
+ display: flex;
182
+ transform: translateY(0);
183
+ opacity: 100
184
+ }
185
+ }
186
+
187
+ .animate-floating-menu-container-in {
188
+ animation: forwards floatingMenuContainerIn .5s ease !important
189
+ }
190
+
191
+ @keyframes floatingMenuContainerOut {
192
+ 0% {
193
+ display: flex;
194
+ transform: translateY(0);
195
+ opacity: 100
196
+ }
197
+
198
+ 99% {
199
+ display: flex;
200
+ transform: translateY(100%);
201
+ opacity: 0
202
+ }
203
+
204
+ 100% {
205
+ display: none;
206
+ transform: translateY(100%);
207
+ opacity: 0
208
+ }
209
+ }
210
+
211
+ .animate-floating-menu-container-out {
212
+ animation: forwards floatingMenuContainerOut .5s ease !important
213
+ }
214
+
130
215
  .flex-col {
131
216
  flex-direction: column !important
132
217
  }
133
218
 
219
+ .items-center {
220
+ align-items: center !important
221
+ }
222
+
134
223
  .justify-start {
135
224
  justify-content: flex-start !important
136
225
  }