@sistent/sistent 0.14.210 → 0.14.212

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/index.d.mts CHANGED
@@ -1243,6 +1243,8 @@ interface Tutorial {
1243
1243
  description: string;
1244
1244
  status?: boolean;
1245
1245
  cardImage: string;
1246
+ type?: string;
1247
+ level?: string;
1246
1248
  };
1247
1249
  }
1248
1250
  interface Props$1 {
@@ -1250,8 +1252,6 @@ interface Props$1 {
1250
1252
  path?: string;
1251
1253
  courseCount: number;
1252
1254
  courseType: string;
1253
- orgId?: string;
1254
- modalContent?: string;
1255
1255
  }
1256
1256
  declare const LearningCard: React__default.FC<Props$1>;
1257
1257
 
@@ -1275,8 +1275,9 @@ interface CustomDialogProps {
1275
1275
  closeComponent: React.ReactNode;
1276
1276
  maxWidth?: DialogProps['maxWidth'];
1277
1277
  onClose: () => void;
1278
+ 'data-testid'?: string;
1278
1279
  }
1279
- declare function ModalCard({ title, leftHeaderIcon, helpText, helpArea, actions, hideActions, content, closeComponent }: CustomDialogProps): JSX.Element;
1280
+ declare function ModalCard({ title, leftHeaderIcon, helpText, helpArea, actions, hideActions, content, closeComponent, 'data-testid': testId }: CustomDialogProps): JSX.Element;
1280
1281
 
1281
1282
  interface IPopperListener extends PopperProps$1 {
1282
1283
  open: boolean;
@@ -1353,8 +1354,9 @@ interface SearchBarProps$1 {
1353
1354
  onClear?: () => void;
1354
1355
  expanded: boolean;
1355
1356
  setExpanded: (expanded: boolean) => void;
1357
+ 'data-testid'?: string;
1356
1358
  }
1357
- declare function SearchBar({ onSearch, placeholder, onClear, expanded, setExpanded }: SearchBarProps$1): JSX.Element;
1359
+ declare function SearchBar({ onSearch, placeholder, onClear, expanded, setExpanded, 'data-testid': testId }: SearchBarProps$1): JSX.Element;
1358
1360
 
1359
1361
  interface TeamTableProps {
1360
1362
  teams: any;
@@ -1937,6 +1939,7 @@ interface CustomizedStepperPropsI {
1937
1939
  stepLabels: string[];
1938
1940
  children: React__default.ReactNode;
1939
1941
  icons: React__default.ComponentType<IconProps$1>[];
1942
+ 'data-testid'?: string;
1940
1943
  ContentWrapper?: React__default.ComponentType<{
1941
1944
  children: React__default.ReactNode;
1942
1945
  }>;
package/dist/index.d.ts CHANGED
@@ -1243,6 +1243,8 @@ interface Tutorial {
1243
1243
  description: string;
1244
1244
  status?: boolean;
1245
1245
  cardImage: string;
1246
+ type?: string;
1247
+ level?: string;
1246
1248
  };
1247
1249
  }
1248
1250
  interface Props$1 {
@@ -1250,8 +1252,6 @@ interface Props$1 {
1250
1252
  path?: string;
1251
1253
  courseCount: number;
1252
1254
  courseType: string;
1253
- orgId?: string;
1254
- modalContent?: string;
1255
1255
  }
1256
1256
  declare const LearningCard: React__default.FC<Props$1>;
1257
1257
 
@@ -1275,8 +1275,9 @@ interface CustomDialogProps {
1275
1275
  closeComponent: React.ReactNode;
1276
1276
  maxWidth?: DialogProps['maxWidth'];
1277
1277
  onClose: () => void;
1278
+ 'data-testid'?: string;
1278
1279
  }
1279
- declare function ModalCard({ title, leftHeaderIcon, helpText, helpArea, actions, hideActions, content, closeComponent }: CustomDialogProps): JSX.Element;
1280
+ declare function ModalCard({ title, leftHeaderIcon, helpText, helpArea, actions, hideActions, content, closeComponent, 'data-testid': testId }: CustomDialogProps): JSX.Element;
1280
1281
 
1281
1282
  interface IPopperListener extends PopperProps$1 {
1282
1283
  open: boolean;
@@ -1353,8 +1354,9 @@ interface SearchBarProps$1 {
1353
1354
  onClear?: () => void;
1354
1355
  expanded: boolean;
1355
1356
  setExpanded: (expanded: boolean) => void;
1357
+ 'data-testid'?: string;
1356
1358
  }
1357
- declare function SearchBar({ onSearch, placeholder, onClear, expanded, setExpanded }: SearchBarProps$1): JSX.Element;
1359
+ declare function SearchBar({ onSearch, placeholder, onClear, expanded, setExpanded, 'data-testid': testId }: SearchBarProps$1): JSX.Element;
1358
1360
 
1359
1361
  interface TeamTableProps {
1360
1362
  teams: any;
@@ -1937,6 +1939,7 @@ interface CustomizedStepperPropsI {
1937
1939
  stepLabels: string[];
1938
1940
  children: React__default.ReactNode;
1939
1941
  icons: React__default.ComponentType<IconProps$1>[];
1942
+ 'data-testid'?: string;
1940
1943
  ContentWrapper?: React__default.ComponentType<{
1941
1944
  children: React__default.ReactNode;
1942
1945
  }>;