@secondstaxorg/sscomp 1.1.6 → 1.1.7

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.1.6",
3
+ "version": "1.1.7",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { DateRangePickerProps } from "./type";
3
+ declare const DateRangePicker: React.FC<DateRangePickerProps>;
4
+ export default DateRangePicker;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { DisplayFieldProps } from "./type";
3
+ declare const DisplayField: (props: DisplayFieldProps) => JSX.Element;
4
+ export default DisplayField;
@@ -15,10 +15,11 @@ export { default as ChartMedium } from './ChartMedium/ChartMedium';
15
15
  export { default as ChartSmall } from './ChartSmall/ChartSmall';
16
16
  export { default as CookieConsent } from './CookieConsent/CookieConsent';
17
17
  export { default as CountrySelector } from './CountrySelector/CountrySelector';
18
- export { default as CurrrencyPairs } from './CurrencyPairs/CurrencyPairsTable';
18
+ export { default as CurrencyPairs } from './CurrencyPairs/CurrencyPairsTable';
19
19
  export { default as DatePicker } from './DatePicker/DatePicker';
20
+ export { default as DateRangePicker } from './DateRangePicker/DateRangePicker';
21
+ export { default as DisplayField } from './DisplayField/DisplayField';
20
22
  export { default as DropdownList } from './DropdownList/DropdownList';
21
- export { default as Dropshadows } from './Dropshadows/DropShadows';
22
23
  export { default as ExchangeRates } from './ExchangeRates/ExchangeRates';
23
24
  export { default as Footer } from './Footer/Footer';
24
25
  export { default as Indices } from './Indices/Indices';