@jspreadsheet/pivot 1.0.0 → 1.0.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/dist/index.css +106 -0
- package/package.json +1 -1
package/dist/index.css
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
.jss_pivot_table {
|
|
2
|
+
color: #000 !important;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.jss_pivot_table.is-header {
|
|
6
|
+
background-color: #1E88E5;
|
|
7
|
+
color: #FFF !important;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.jss_pivot_table.is-highlighted-column {
|
|
11
|
+
background-color: #BBDEFB;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.jss_pivot_table.is-highlighted-row {
|
|
15
|
+
background-color: #90CAF9;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.jss_pivot_table.is-last-row {
|
|
19
|
+
border-top: #000 solid 1px;
|
|
20
|
+
border-bottom: #000 solid 1px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.pivot-table-title {
|
|
24
|
+
display: flex;
|
|
25
|
+
justify-content: space-between;
|
|
26
|
+
align-items: center;
|
|
27
|
+
|
|
28
|
+
margin-top: 20px;
|
|
29
|
+
margin-left: 10px;
|
|
30
|
+
margin-right: 15px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.pivot-table-title h3 {
|
|
34
|
+
margin: 0;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.pivot-table-config {
|
|
38
|
+
margin-bottom: 30px;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.pivot-table-config-list {
|
|
42
|
+
min-height: 10px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.pivot-table-card-background {
|
|
46
|
+
padding: 20px;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.pivot-table-card {
|
|
50
|
+
position: relative;
|
|
51
|
+
padding: 15px;
|
|
52
|
+
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
|
|
53
|
+
border-radius: 10px;
|
|
54
|
+
|
|
55
|
+
cursor: grab;
|
|
56
|
+
user-select: none;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.pivot-table-card-close-button {
|
|
60
|
+
background-color: white;
|
|
61
|
+
position: absolute;
|
|
62
|
+
top: 10px;
|
|
63
|
+
right: 10px;
|
|
64
|
+
|
|
65
|
+
cursor: pointer;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.pivot-table-card h3 {
|
|
69
|
+
margin-top: 5px;
|
|
70
|
+
margin-bottom: 15px;
|
|
71
|
+
|
|
72
|
+
pointer-events: none;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.pivot-table-position-marker-card > div {
|
|
76
|
+
background-color: white;
|
|
77
|
+
padding: 15px;
|
|
78
|
+
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
|
|
79
|
+
border-radius: 10px;
|
|
80
|
+
|
|
81
|
+
opacity: 0.6;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.pivot-table-movement-card {
|
|
85
|
+
background-color: white;
|
|
86
|
+
position: fixed;
|
|
87
|
+
margin: 20px;
|
|
88
|
+
padding: 15px;
|
|
89
|
+
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
|
|
90
|
+
border-radius: 10px;
|
|
91
|
+
|
|
92
|
+
pointer-events: none;
|
|
93
|
+
|
|
94
|
+
z-index: 30;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.pivot-table-position-marker-card > div > h3,
|
|
98
|
+
.pivot-table-movement-card h3 {
|
|
99
|
+
margin-top: 0;
|
|
100
|
+
margin-bottom: 0;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.pivot-table-group-cell {
|
|
104
|
+
display: flex;
|
|
105
|
+
align-items: center;
|
|
106
|
+
}
|
package/package.json
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"main": "dist/index.js",
|
|
33
33
|
"types": "dist/index.d.ts",
|
|
34
|
-
"version": "1.0.
|
|
34
|
+
"version": "1.0.1",
|
|
35
35
|
"bugs": "https://github.com/jspreadsheet/pro/issues",
|
|
36
36
|
"homepage": "https://github.com/jspreadsheet/pro",
|
|
37
37
|
"download": "https://github.com/jspreadsheet/pro/archive/master.zip"
|