@mezo-org/mezo-clay 0.1.0-dev.35 → 0.1.0-dev.37

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.
@@ -0,0 +1,9 @@
1
+ import * as React from "react";
2
+ declare const CheckSquareLine: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
3
+ children?: React.ReactNode;
4
+ size?: import('baseui/icon').Size;
5
+ color?: import('baseui/icon').Color;
6
+ title?: string | null;
7
+ overrides?: import('baseui/icon').IconOverrides;
8
+ } & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
9
+ export default CheckSquareLine;
@@ -41,3 +41,6 @@ export * from './trophy';
41
41
  export { Upload04 } from './upload';
42
42
  export * from './user';
43
43
  export { Wallet03, Wallet04 } from './wallet';
44
+ export { default as CheckSquareLine } from './check-square';
45
+ export { default as Waves } from './waves';
46
+ export { Lock03Line } from './lock';
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ export declare const Lock03Line: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
3
+ children?: React.ReactNode;
4
+ size?: import('baseui/icon').Size;
5
+ color?: import('baseui/icon').Color;
6
+ title?: string | null;
7
+ overrides?: import('baseui/icon').IconOverrides;
8
+ } & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,9 @@
1
+ import * as React from "react";
2
+ declare const Waves: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
3
+ children?: React.ReactNode;
4
+ size?: import('baseui/icon').Size;
5
+ color?: import('baseui/icon').Color;
6
+ title?: string | null;
7
+ overrides?: import('baseui/icon').IconOverrides;
8
+ } & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
9
+ export default Waves;
@@ -1,2 +1,2 @@
1
1
  import { SegmentedProgressBarProps } from './types';
2
- export declare function SegmentedProgressBar({ value, min, max, blockWidth, blockHeight, blockGap, blockRadius, colors, labelProps, ...restProps }: SegmentedProgressBarProps): import("react/jsx-runtime").JSX.Element;
2
+ export declare function SegmentedProgressBar({ value, min, max, blockWidth, blockHeight, blockGap, blockRadius, colors, labelProps, overrides, ...restProps }: SegmentedProgressBarProps): import("react/jsx-runtime").JSX.Element;
@@ -1,6 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { BlockProps } from 'baseui/block';
3
3
  import { Theme } from 'baseui';
4
+ import { Override } from 'baseui/helpers/overrides';
4
5
  import { ParagraphSmall } from '../typography';
5
6
  export interface SegmentedProgressBarColors {
6
7
  /** Color for inactive/empty blocks (theme color key) */
@@ -12,7 +13,7 @@ export interface SegmentedProgressBarColors {
12
13
  /** Color for blocks when over 100% (theme color key) */
13
14
  warning?: keyof Theme["colors"];
14
15
  }
15
- export interface SegmentedProgressBarProps extends BlockProps {
16
+ export interface SegmentedProgressBarProps extends Omit<BlockProps, "overrides"> {
16
17
  /** Current value */
17
18
  value: number;
18
19
  /** Minimum value (default: 0) */
@@ -31,4 +32,22 @@ export interface SegmentedProgressBarProps extends BlockProps {
31
32
  colors?: SegmentedProgressBarColors;
32
33
  /** Props to pass to all value labels (min, middle, max) */
33
34
  labelProps?: React.ComponentProps<typeof ParagraphSmall>;
35
+ /** Style/prop overrides for internal elements */
36
+ overrides?: SegmentedProgressBarOverrides;
34
37
  }
38
+ export type SegmentedProgressBarOverrides = {
39
+ /** Outer wrapper container */
40
+ Root?: Override;
41
+ /** Flex row that contains the segments */
42
+ SegmentsContainer?: Override;
43
+ /** Individual segment block */
44
+ Segment?: Override;
45
+ /** Container row for the labels */
46
+ LabelsContainer?: Override;
47
+ /** Min label */
48
+ MinLabel?: Override;
49
+ /** Mid label */
50
+ MidLabel?: Override;
51
+ /** Max label */
52
+ MaxLabel?: Override;
53
+ };