@lemonadejs/calendar 5.2.1 → 5.8.0
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.d.ts +1 -1
- package/dist/index.js +633 -3430
- package/dist/style.css +3 -4
- package/package.json +4 -3
package/dist/style.css
CHANGED
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
padding: 4px;
|
|
70
70
|
background-color: transparent;
|
|
71
71
|
font-weight: bold;
|
|
72
|
+
color: var(--lm-font-color);
|
|
72
73
|
}
|
|
73
74
|
|
|
74
75
|
.lm-calendar-navigation {
|
|
@@ -78,7 +79,7 @@
|
|
|
78
79
|
}
|
|
79
80
|
|
|
80
81
|
.lm-calendar-navigation i:hover {
|
|
81
|
-
background-color: var(--lm-background-color-
|
|
82
|
+
background-color: var(--lm-background-color-highlight, #ebebeb);
|
|
82
83
|
color: #000;
|
|
83
84
|
}
|
|
84
85
|
|
|
@@ -243,8 +244,6 @@
|
|
|
243
244
|
}
|
|
244
245
|
|
|
245
246
|
.lm-calendar-footer input {
|
|
246
|
-
border: transparent;
|
|
247
|
-
padding: 8px;
|
|
248
247
|
width: 100%;
|
|
249
248
|
cursor: pointer;
|
|
250
249
|
background-color: var(--lm-border-color-light, #e9e9e9);
|
|
@@ -325,7 +324,7 @@
|
|
|
325
324
|
}
|
|
326
325
|
|
|
327
326
|
.lm-ripple:hover {
|
|
328
|
-
background: var(--lm-background-color-
|
|
327
|
+
background: var(--lm-background-color-highlight, #ebebeb) radial-gradient(circle, transparent 1%, var(--lm-background-color-highlight, #ebebeb) 1%) center/15000%;
|
|
329
328
|
}
|
|
330
329
|
|
|
331
330
|
.lm-ripple:active {
|
package/package.json
CHANGED
|
@@ -14,10 +14,11 @@
|
|
|
14
14
|
"javascript plugins"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"lemonadejs": "^5.2
|
|
18
|
-
"@lemonadejs/modal": "^5.
|
|
17
|
+
"lemonadejs": "^5.3.2",
|
|
18
|
+
"@lemonadejs/modal": "^5.8.0",
|
|
19
|
+
"@jsuites/utils": "^6.0.1"
|
|
19
20
|
},
|
|
20
21
|
"main": "dist/index.js",
|
|
21
22
|
"types": "dist/index.d.ts",
|
|
22
|
-
"version": "5.
|
|
23
|
+
"version": "5.8.0"
|
|
23
24
|
}
|