@ebertjendustries/cstestwrapper 1.0.6 → 1.0.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/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -10,8 +10,8 @@ import React from 'react';
|
|
|
10
10
|
/**
|
|
11
11
|
* Implemented by the application importing the library to provide their own Localiser implementation used for testing.
|
|
12
12
|
*/
|
|
13
|
-
|
|
14
|
-
getLocaliser(namespace: LocalisationNamespace): Localiser;
|
|
13
|
+
declare abstract class TestLocalisation {
|
|
14
|
+
abstract getLocaliser(namespace: LocalisationNamespace): Localiser;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
declare class AbstractSelectTesting<SelectWrapperType extends DropdownHostComponentWrapper> extends AbstractComponentTesting<SelectWrapperType, FieldSpec> {
|
|
@@ -568,4 +568,4 @@ declare class ViewTestWrapperProps<T> {
|
|
|
568
568
|
}
|
|
569
569
|
declare function ViewTestWrapper<T>(props: ViewTestWrapperProps<T>): react_jsx_runtime.JSX.Element;
|
|
570
570
|
|
|
571
|
-
export { AbstractComponentTesting, AbstractInputTesting, AbstractSelectTesting, AbstractViewTesting, AlertTesting, BoxTesting, ButtonDropdownTesting, ButtonTesting, CSVNoItemsViewTesting, CSVPriceInputViewTesting, CSVSearchFilterViewTesting, CSVTextPromptModalViewTesting, CardsTesting, CheckboxTesting, CollectionPreferencesSetting, CollectionPreferencesTesting, DatePickerTesting, FlashbarTesting, FormTesting, HeaderTesting, IconTesting, LinkTesting, MockBrowserAPIs, MockRestClient, MockServerBuilder, ModalTesting, MultiselectTesting, NumberInputTesting, PaginationTesting, ProgressBarTesting, RatingTesting, SegmentedControlTesting, SelectTesting, StatusIndicatorTesting, StringInputTesting, TableTesting, TabsTesting,
|
|
571
|
+
export { AbstractComponentTesting, AbstractInputTesting, AbstractSelectTesting, AbstractViewTesting, AlertTesting, BoxTesting, ButtonDropdownTesting, ButtonTesting, CSVNoItemsViewTesting, CSVPriceInputViewTesting, CSVSearchFilterViewTesting, CSVTextPromptModalViewTesting, CardsTesting, CheckboxTesting, CollectionPreferencesSetting, CollectionPreferencesTesting, DatePickerTesting, FlashbarTesting, FormTesting, HeaderTesting, IconTesting, LinkTesting, MockBrowserAPIs, MockRestClient, MockServerBuilder, ModalTesting, MultiselectTesting, NumberInputTesting, PaginationTesting, ProgressBarTesting, RatingTesting, SegmentedControlTesting, SelectTesting, StatusIndicatorTesting, StringInputTesting, TableTesting, TabsTesting, TestLocalisation, TestingFactory, TextContentTesting, TextFilterTesting, TextareaTesting, ToggleTesting, ViewTestWrapper, WizardTesting, setupRestClientMock };
|
package/dist/index.d.ts
CHANGED
|
@@ -10,8 +10,8 @@ import React from 'react';
|
|
|
10
10
|
/**
|
|
11
11
|
* Implemented by the application importing the library to provide their own Localiser implementation used for testing.
|
|
12
12
|
*/
|
|
13
|
-
|
|
14
|
-
getLocaliser(namespace: LocalisationNamespace): Localiser;
|
|
13
|
+
declare abstract class TestLocalisation {
|
|
14
|
+
abstract getLocaliser(namespace: LocalisationNamespace): Localiser;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
declare class AbstractSelectTesting<SelectWrapperType extends DropdownHostComponentWrapper> extends AbstractComponentTesting<SelectWrapperType, FieldSpec> {
|
|
@@ -568,4 +568,4 @@ declare class ViewTestWrapperProps<T> {
|
|
|
568
568
|
}
|
|
569
569
|
declare function ViewTestWrapper<T>(props: ViewTestWrapperProps<T>): react_jsx_runtime.JSX.Element;
|
|
570
570
|
|
|
571
|
-
export { AbstractComponentTesting, AbstractInputTesting, AbstractSelectTesting, AbstractViewTesting, AlertTesting, BoxTesting, ButtonDropdownTesting, ButtonTesting, CSVNoItemsViewTesting, CSVPriceInputViewTesting, CSVSearchFilterViewTesting, CSVTextPromptModalViewTesting, CardsTesting, CheckboxTesting, CollectionPreferencesSetting, CollectionPreferencesTesting, DatePickerTesting, FlashbarTesting, FormTesting, HeaderTesting, IconTesting, LinkTesting, MockBrowserAPIs, MockRestClient, MockServerBuilder, ModalTesting, MultiselectTesting, NumberInputTesting, PaginationTesting, ProgressBarTesting, RatingTesting, SegmentedControlTesting, SelectTesting, StatusIndicatorTesting, StringInputTesting, TableTesting, TabsTesting,
|
|
571
|
+
export { AbstractComponentTesting, AbstractInputTesting, AbstractSelectTesting, AbstractViewTesting, AlertTesting, BoxTesting, ButtonDropdownTesting, ButtonTesting, CSVNoItemsViewTesting, CSVPriceInputViewTesting, CSVSearchFilterViewTesting, CSVTextPromptModalViewTesting, CardsTesting, CheckboxTesting, CollectionPreferencesSetting, CollectionPreferencesTesting, DatePickerTesting, FlashbarTesting, FormTesting, HeaderTesting, IconTesting, LinkTesting, MockBrowserAPIs, MockRestClient, MockServerBuilder, ModalTesting, MultiselectTesting, NumberInputTesting, PaginationTesting, ProgressBarTesting, RatingTesting, SegmentedControlTesting, SelectTesting, StatusIndicatorTesting, StringInputTesting, TableTesting, TabsTesting, TestLocalisation, TestingFactory, TextContentTesting, TextFilterTesting, TextareaTesting, ToggleTesting, ViewTestWrapper, WizardTesting, setupRestClientMock };
|