ngx-sfc-common 0.0.11 → 0.0.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.
@@ -1,4 +1,5 @@
1
1
  export declare enum CheckmarkType {
2
2
  Square = "square",
3
- Rounded = "rounded"
3
+ Rounded = "rounded",
4
+ Circle = "circle"
4
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-sfc-common",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "description": "Angular common(shared) library for SFC project",
5
5
  "keywords": [
6
6
  "Street Football Club",
@@ -23,6 +23,25 @@
23
23
  }
24
24
  }
25
25
 
26
+ @mixin center() {
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: center;
30
+ text-align: center;
31
+ }
32
+
33
+ @mixin center-wrap() {
34
+ @include center;
35
+
36
+ flex-wrap: wrap;
37
+ }
38
+
39
+ @mixin not-first-not-last {
40
+ &:not(:first-child, :last-child) {
41
+ @content;
42
+ }
43
+ }
44
+
26
45
  @mixin scroll {
27
46
  ::ng-deep ::-webkit-scrollbar {
28
47
  @include square-size(0.375em);