dga-ui-react 1.4.0 → 1.4.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/charts/index.d.ts CHANGED
@@ -25,6 +25,8 @@ type Props = {
25
25
  data: BarChartData;
26
26
  xAxisLabel?: string;
27
27
  yAxisLabel?: string;
28
+ width?: number;
29
+ height?: number;
28
30
  };
29
31
  declare const BarChart: React.FC<Props>;
30
32
 
package/dist/cjs/index.js CHANGED
@@ -2291,6 +2291,7 @@
2291
2291
  .dgaui_radio {
2292
2292
  box-shadow: 0 0 0px 12px #f3f4f6;
2293
2293
  background-color: #f3f4f6;
2294
+ border-color: ${e=>e.$customStyle.backgroundColorActive};
2294
2295
  }
2295
2296
  &:has(input:checked) {
2296
2297
  .dgaui_radioDot {
@@ -2302,6 +2303,7 @@
2302
2303
  &:active {
2303
2304
  .dgaui_radio {
2304
2305
  background-color: #d2d6db;
2306
+ border-color: ${e=>e.$customStyle.backgroundColorActive};
2305
2307
  }
2306
2308
  &:has(input:checked) {
2307
2309
  &:active {
@@ -2385,13 +2387,16 @@
2385
2387
  }
2386
2388
 
2387
2389
  &:has(input:checked) {
2390
+ border-color: ${e=>e.$customStyle.backgroundColor};
2388
2391
  &:hover {
2392
+ border-color: ${e=>e.$customStyle.backgroundColorHovered};
2389
2393
  background-color: #f3f4f6;
2390
2394
  .dgaui_radioDot {
2391
2395
  background-color: ${e=>e.$customStyle.backgroundColorHovered};
2392
2396
  }
2393
2397
  }
2394
2398
  &:active {
2399
+ border-color: ${e=>e.$customStyle.backgroundColorActive};
2395
2400
  background-color: #f3f4f6;
2396
2401
  .dgaui_radioDot {
2397
2402
  background-color: ${e=>e.$customStyle.backgroundColorActive};