@firestitch/list 18.0.54 → 18.0.55

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firestitch/list",
3
- "version": "18.0.54",
3
+ "version": "18.0.55",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Firestitch/ngx-list"
package/styles.scss DELETED
@@ -1,99 +0,0 @@
1
-
2
- @mixin core() {
3
- ::ng-deep {
4
- .fs-list-table {
5
- border-spacing: 0;
6
- display: table;
7
- width: 100%;
8
- border-collapse: collapse;
9
-
10
- thead {
11
- display: table-header-group;
12
-
13
- th {
14
- color: #999;
15
- padding: 8px;
16
- font-weight: normal;
17
- color: rgba(143, 143, 143, 1);
18
- font-size: 85%;
19
- text-align: left;
20
- }
21
- }
22
-
23
- tbody {
24
- display: table-row-group;
25
- position: relative;
26
- }
27
-
28
- tbody,
29
- thead,
30
- tfoot{
31
- tr{
32
- display: table-row;
33
-
34
- td {
35
- display: table-cell;
36
- padding: 8px;
37
- vertical-align: middle;
38
- outline: none;
39
- text-align: left;
40
- }
41
- }
42
- }
43
-
44
- tfoot td {
45
- padding: 8px;
46
- }
47
-
48
- &.style-card {
49
- tbody {
50
- tr {
51
- &:not(.fs-list-row-group-footer):not(.fs-list-row-group) {
52
- clip-path: xywh(0 3px 100% calc(100% - 6px) round 10px);
53
- }
54
-
55
- td {
56
- border: none !important;
57
- background-color: #fafafa;
58
- padding: 8px 16px;
59
- }
60
- }
61
- }
62
- }
63
- }
64
-
65
- .fs-list-table.style-line,
66
- .fs-list-table:not(.style-card):not(.style-basic) {
67
- tbody {
68
- td {
69
- box-sizing: border-box;
70
- border-top: 1px solid #e7e7e7;
71
- }
72
-
73
- tr:first-child td {
74
- border-color: #c4c4c4;
75
- }
76
-
77
- tr:last-child td {
78
- border-bottom: 1px solid #c4c4c4;
79
- }
80
- }
81
-
82
- .fs-list-container {
83
- &.has-dragging {
84
- thead {
85
- th {
86
- border-color: #e7e7e7;
87
- }
88
- }
89
-
90
- tbody {
91
- tr:nth-child(2) td {
92
- border-top: none;
93
- }
94
- }
95
- }
96
- }
97
- }
98
- }
99
- }