@secondstaxorg/sscomp 1.8.89 → 1.8.92

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.8.89",
3
+ "version": "1.8.92",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -0,0 +1,2 @@
1
+ export declare const SwitcherContainer: import("styled-components").StyledComponent<"button", any, {}, never>;
2
+ export declare const DropdownContainer: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -0,0 +1,10 @@
1
+ export interface LanguageSwitcherType {
2
+ languages: languagesType[];
3
+ onClick: (a: languagesType) => void;
4
+ initialLanguage: string;
5
+ }
6
+ export declare type languagesType = {
7
+ language: string;
8
+ shortName: string;
9
+ flag?: string;
10
+ };
@@ -6,7 +6,7 @@ export interface RequestsProps {
6
6
  thead: {
7
7
  label: string;
8
8
  dataKey: string;
9
- component: (a: {}) => React.ReactNode;
9
+ component?: (a: {}) => React.ReactNode;
10
10
  }[];
11
11
  /**
12
12
  * &lt;tr&gt;&lt;td&gt; content that should go between the <tbody> tag of the table. **Only this or tbody** below should be used at a time.