rbro-tat-uds 1.0.33 → 1.0.34
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/components/ObjectiveCard/ObjectiveCard.d.ts +3 -1
- package/dist/components/ObjectiveCardSmall/ObjectiveCardSmall.d.ts +12 -0
- package/dist/components/ObjectiveCardSmall/index.d.ts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs.js +102 -73
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +794 -738
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
@@ -1,7 +1,9 @@
|
|
1
1
|
import React, { HTMLAttributes } from "react";
|
2
2
|
export interface ObjectiveCardProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
-
text
|
3
|
+
text?: string;
|
4
4
|
img?: string;
|
5
|
+
textFontSize?: 14 | 16 | 18 | 20 | 24;
|
6
|
+
textFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
|
5
7
|
selected?: boolean;
|
6
8
|
disabled?: boolean;
|
7
9
|
buttonLabel?: string;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import React, { HTMLAttributes } from "react";
|
2
|
+
export interface ObjectiveCardSmallProps extends HTMLAttributes<HTMLDivElement> {
|
3
|
+
text?: string;
|
4
|
+
img?: string;
|
5
|
+
textFontSize?: 14 | 16 | 18 | 20 | 24;
|
6
|
+
textFontWeight?: 200 | 300 | 400 | 500 | 700 | 800;
|
7
|
+
width?: string;
|
8
|
+
selected?: boolean;
|
9
|
+
disabled?: boolean;
|
10
|
+
}
|
11
|
+
declare const ObjectiveCardSmall: React.FC<ObjectiveCardSmallProps>;
|
12
|
+
export default ObjectiveCardSmall;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as ObjectiveCardSmall } from './ObjectiveCardSmall';
|