ngx-mq 1.8.0 → 1.8.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.
- package/README.md +21 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -165,7 +165,7 @@ These functions return standard Angular `Provider` instances that can be injecte
|
|
|
165
165
|
| `provideBreakpoints()` | `bps: MqBreakpoints` | Registers a custom set of breakpoints. |
|
|
166
166
|
| `provideTailwindBreakpoints()` | none | Registers the default Tailwind CSS breakpoints. |
|
|
167
167
|
| `provideBootstrapBreakpoints()` | none | Registers the default Bootstrap breakpoints. |
|
|
168
|
-
| `provideMaterialBreakpoints()` | none | Registers the default Material 2 breakpoints.
|
|
168
|
+
| `provideMaterialBreakpoints()` | none | Registers the default Material 2 breakpoints. |
|
|
169
169
|
| `provideBreakpointEpsilon()` | `epsilon: number` | Sets the epsilon threshold used when comparing breakpoint values. |
|
|
170
170
|
| `provideSsrValue()` | `value: boolean` | Defines the static signal value used during SSR, since media queries are not available on the server. Defaults to `false`. |
|
|
171
171
|
|
|
@@ -192,6 +192,26 @@ export type DisplayModeOption =
|
|
|
192
192
|
| 'picture-in-picture';
|
|
193
193
|
```
|
|
194
194
|
|
|
195
|
+
## Sponsors
|
|
196
|
+
|
|
197
|
+
<table>
|
|
198
|
+
<tr>
|
|
199
|
+
<td width="240" align="center">
|
|
200
|
+
<p>
|
|
201
|
+
<img
|
|
202
|
+
src="https://raw.githubusercontent.com/getsentry/sentry/7b65f0f23d7eb5ccc035b12776bf5d8f3d9f8965/static/images/logo-sentry.svg"
|
|
203
|
+
width="120"
|
|
204
|
+
alt="Sentry Logo" />
|
|
205
|
+
</p>
|
|
206
|
+
<p>
|
|
207
|
+
<a href="https://sentry.io" target="_blank"><strong>Sentry</strong></a>
|
|
208
|
+
<br />
|
|
209
|
+
Error tracking and performance monitoring.
|
|
210
|
+
</p>
|
|
211
|
+
</td>
|
|
212
|
+
</tr>
|
|
213
|
+
</table>
|
|
214
|
+
|
|
195
215
|
## Contributing
|
|
196
216
|
|
|
197
217
|
[CONTRIBUTING.md](https://github.com/martsinlabs/ngx-mq/blob/main/CONTRIBUTING.md)
|