dce-reactkit 3.9.6 → 3.9.8

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.
@@ -17,6 +17,7 @@ type Props = {
17
17
  uncheckedVariant?: Variant;
18
18
  small?: boolean;
19
19
  dashed?: boolean;
20
+ useComplexFormatting?: boolean;
20
21
  };
21
22
  declare const CheckboxButton: React.FC<Props>;
22
23
  export default CheckboxButton;
@@ -2,5 +2,5 @@
2
2
  * Universal stylesheet
3
3
  * @author Gabe Abrams
4
4
  */
5
- declare const shared = "\n/* Button with no style */\n.btn-nostyle {\n border: 0 !important;\n background: transparent !important;\n outline: 0 !important;\n font-size: inherit !important;\n color: inherit !important;\n padding: 0 !important;\n margin: 0 !important;\n}\n\n/* Tooltip on Very Top */\n.tooltip {\n z-index: 9000000000 !important;\n}\n";
5
+ declare const shared = "\n/* Button with no style */\n.btn-nostyle {\n border: 0 !important;\n background: transparent !important;\n outline: 0 !important;\n font-size: inherit !important;\n color: inherit !important;\n padding: 0 !important;\n margin: 0 !important;\n}\n\n/* Tooltip on Very Top */\n.tooltip {\n z-index: 9000000000 !important;\n}\n\n/* Tooltip White Text */\n.tooltip .tooltip-inner {\n color: white !important;\n}\n";
6
6
  export default shared;
package/dist/index.d.ts CHANGED
@@ -269,6 +269,7 @@ type Props$h = {
269
269
  uncheckedVariant?: Variant;
270
270
  small?: boolean;
271
271
  dashed?: boolean;
272
+ useComplexFormatting?: boolean;
272
273
  };
273
274
  declare const CheckboxButton: React$1.FC<Props$h>;
274
275
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dce-reactkit",
3
- "version": "3.9.6",
3
+ "version": "3.9.8",
4
4
  "description": "Shared components for Harvard DCE apps",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -18,6 +18,11 @@ const shared = `
18
18
  .tooltip {
19
19
  z-index: 9000000000 !important;
20
20
  }
21
+
22
+ /* Tooltip White Text */
23
+ .tooltip .tooltip-inner {
24
+ color: white !important;
25
+ }
21
26
  `;
22
27
 
23
28
  export default shared;