@makolabs/ripple 0.0.1-dev.12 → 0.0.1-dev.14
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/charts/Chart.svelte +7 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/charts/Chart.svelte
CHANGED
|
@@ -427,6 +427,12 @@
|
|
|
427
427
|
nameGap: 30,
|
|
428
428
|
splitLine: {
|
|
429
429
|
show: grid.vertical || false
|
|
430
|
+
},
|
|
431
|
+
axisLine: {
|
|
432
|
+
show: true,
|
|
433
|
+
lineStyle: {
|
|
434
|
+
color: '#333'
|
|
435
|
+
}
|
|
430
436
|
}
|
|
431
437
|
},
|
|
432
438
|
|
|
@@ -442,7 +448,7 @@
|
|
|
442
448
|
axisLine: {
|
|
443
449
|
show: true,
|
|
444
450
|
lineStyle: {
|
|
445
|
-
color:
|
|
451
|
+
color: '#333'
|
|
446
452
|
}
|
|
447
453
|
},
|
|
448
454
|
axisLabel: {
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { Color, Size } from './variants.js';
|
|
2
|
-
|
|
2
|
+
/*
|
|
3
|
+
All colors and sizes, will be assign via this enum, else it will be considered against the convention
|
|
4
|
+
*/
|
|
3
5
|
export { Color, Size };
|
|
4
6
|
// Helper utilities
|
|
5
7
|
export { tv, cn } from './helper/cls.js';
|