@utahdts/utah-design-system 3.0.1 → 3.0.2

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.
@@ -36,6 +36,9 @@ utility classes, atomic css
36
36
  position: absolute;
37
37
  width: 1px;
38
38
  }
39
+ .hidden {
40
+ display: none;
41
+ }
39
42
 
40
43
  /* alignment */
41
44
  .text-left { text-align: left; }
package/dist/index.d.ts CHANGED
@@ -1268,11 +1268,11 @@ declare module "@utahdts/utah-design-system" {
1268
1268
  isVertical: boolean;
1269
1269
  navigateNext: () => void;
1270
1270
  navigatePrevious: () => void;
1271
- registerTab: (tab: React.RefObject<HTMLButtonElement> | null) => void;
1271
+ registerTab: (tab: React.RefObject<HTMLButtonElement | null> | null) => void;
1272
1272
  selectedTabId: string;
1273
1273
  setSelectedTabId: (tabId: string) => void;
1274
1274
  tabGroupId: string;
1275
- unRegisterTab: (tab: React.RefObject<HTMLButtonElement> | null | null) => void;
1275
+ unRegisterTab: (tab: React.RefObject<HTMLButtonElement | null> | null) => void;
1276
1276
  };
1277
1277
  export type UtahDesignSystemContextBannerWithId = {
1278
1278
  className?: string | undefined;
package/dist/style.css CHANGED
@@ -5498,6 +5498,9 @@ utility classes, atomic css
5498
5498
  position: absolute;
5499
5499
  width: 1px;
5500
5500
  }
5501
+ .utah-design-system .hidden {
5502
+ display: none;
5503
+ }
5501
5504
  .utah-design-system .text-left {
5502
5505
  text-align: left;
5503
5506
  }