@akad/design-system 1.0.0-alpha.4 → 1.0.0-alpha.5

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.
@@ -75,10 +75,6 @@ export interface ButtonFullSizeProps {
75
75
  type: BooleanConstructor;
76
76
  default: boolean;
77
77
  }
78
- export interface ButtonTrackIdProps {
79
- type: StringConstructor;
80
- default: string;
81
- }
82
78
  export interface ButtonTrackLabelProps {
83
79
  type: StringConstructor;
84
80
  default: string;
@@ -98,7 +94,6 @@ export interface ButtonConfig {
98
94
  id: ButtonIdProps;
99
95
  testId: ButtonTestIdProps;
100
96
  fullSize: ButtonFullSizeProps;
101
- trackId: ButtonTrackIdProps;
102
97
  trackLabel: ButtonTrackLabelProps;
103
98
  };
104
99
  }
@@ -15,11 +15,10 @@ export interface DsButtonProps extends HTMLAttributes<HTMLButtonElement> {
15
15
  iconFill?: boolean;
16
16
  iconPosition?: string;
17
17
  fullSize?: boolean;
18
- trackId?: string;
19
18
  trackLabel?: string;
20
19
  }
21
20
  declare const DsButton: {
22
- ({ children, className, onClick, size, disabled, icon, id, testId, elevation, variant, color, iconFill, iconPosition, fullSize, trackId, trackLabel, }: DsButtonProps): import("react/jsx-runtime").JSX.Element;
21
+ ({ children, className, onClick, size, disabled, icon, id, testId, elevation, variant, color, iconFill, iconPosition, fullSize, trackLabel, }: DsButtonProps): import("react/jsx-runtime").JSX.Element;
23
22
  propTypes: {
24
23
  color: PropTypes.Requireable<import('./Button.config').ButtonColor>;
25
24
  variant: PropTypes.Requireable<import('./Button.config').ButtonVariant>;
@@ -31,7 +30,6 @@ declare const DsButton: {
31
30
  testId: PropTypes.Requireable<string>;
32
31
  id: PropTypes.Requireable<string>;
33
32
  fullSize: PropTypes.Requireable<boolean>;
34
- trackId: PropTypes.Requireable<string>;
35
33
  trackLabel: PropTypes.Requireable<string>;
36
34
  };
37
35
  displayName: string;
@@ -67,10 +67,6 @@ export interface CardTestIdProps {
67
67
  type: StringConstructor;
68
68
  default: string;
69
69
  }
70
- export interface CardTrackIdProps {
71
- type: StringConstructor;
72
- default: string;
73
- }
74
70
  export interface CardTrackLabelProps {
75
71
  type: StringConstructor;
76
72
  default: string;
@@ -84,7 +80,6 @@ export interface CardConfig {
84
80
  elevation: CardElevationProps;
85
81
  id: CardIdProps;
86
82
  testId: CardTestIdProps;
87
- trackId: CardTrackIdProps;
88
83
  trackLabel: CardTrackLabelProps;
89
84
  };
90
85
  }
@@ -8,18 +8,16 @@ export interface DsCardProps {
8
8
  elevation?: number;
9
9
  backgroundColor?: string;
10
10
  borderColor?: string;
11
- trackId?: string;
12
11
  trackLabel?: string;
13
12
  }
14
13
  declare const DsCard: {
15
- ({ id, testId, children, className, elevation, backgroundColor, borderColor, trackId, trackLabel, }: DsCardProps): import("react/jsx-runtime").JSX.Element;
14
+ ({ id, testId, children, className, elevation, backgroundColor, borderColor, trackLabel, }: DsCardProps): import("react/jsx-runtime").JSX.Element;
16
15
  propTypes: {
17
16
  id: PropTypes.Requireable<string>;
18
17
  testId: PropTypes.Requireable<string>;
19
18
  backgroundColor: PropTypes.Requireable<import('./Card.config').CardColor>;
20
19
  borderColor: PropTypes.Requireable<import('./Card.config').CardColor>;
21
20
  elevation: PropTypes.Requireable<import('./Card.config').CardElevation>;
22
- trackId: PropTypes.Requireable<string>;
23
21
  trackLabel: PropTypes.Requireable<string>;
24
22
  };
25
23
  displayName: string;