@paperless/angular 0.1.0-alpha.311 → 0.1.0-alpha.313

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.
@@ -0,0 +1,2 @@
1
+ export declare const FADE_IN: import("@angular/animations").AnimationTriggerMetadata;
2
+ export declare const FADE_OUT: import("@angular/animations").AnimationTriggerMetadata;
@@ -1 +1,2 @@
1
+ export * from './fade';
1
2
  export * from './slide';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paperless/angular",
3
- "version": "0.1.0-alpha.311",
3
+ "version": "0.1.0-alpha.313",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^13.3.0 || ^14.0.0 || ^15.0.0",
6
6
  "@angular/common": "^13.3.0 || ^14.0.0 || ^15.0.0",
package/paperless.css CHANGED
@@ -155,6 +155,10 @@
155
155
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important
156
156
  }
157
157
 
158
+ .ease-out {
159
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important
160
+ }
161
+
158
162
  @media (min-width: 40rem) {
159
163
  .tablet\:w-1\/12 {
160
164
  width: 8.333333% !important
package/public-api.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './lib/animations';
1
2
  export * from './lib/base';
2
3
  export * from './lib/directives';
3
4
  export * from './lib/modules';