@telicent-oss/ds 0.0.1
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/LICENSE +201 -0
- package/README.md +135 -0
- package/dist/assets/fonts/figtree/figtree-black.woff2 +0 -0
- package/dist/assets/fonts/figtree/figtree-bold.woff2 +0 -0
- package/dist/assets/fonts/figtree/figtree-extrabold.woff2 +0 -0
- package/dist/assets/fonts/figtree/figtree-light.woff2 +0 -0
- package/dist/assets/fonts/figtree/figtree-medium.woff2 +0 -0
- package/dist/assets/fonts/figtree/figtree-regular.woff2 +0 -0
- package/dist/assets/fonts/figtree/figtree-semibold.woff2 +0 -0
- package/dist/assets/fonts/fontawesome/css/all.min.css +9 -0
- package/dist/assets/fonts/fontawesome/css/svg-with-js.min.css +6 -0
- package/dist/assets/fonts/fontawesome/webfonts/fa-brands-400.ttf +0 -0
- package/dist/assets/fonts/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
- package/dist/assets/fonts/fontawesome/webfonts/fa-regular-400.ttf +0 -0
- package/dist/assets/fonts/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
- package/dist/assets/fonts/fontawesome/webfonts/fa-solid-900.ttf +0 -0
- package/dist/assets/fonts/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
- package/dist/assets/fonts/fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
- package/dist/assets/fonts/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
- package/dist/assets/fonts/remixicon/index.html +156 -0
- package/dist/assets/fonts/remixicon/remixicon.css +8640 -0
- package/dist/assets/fonts/remixicon/remixicon.eot +0 -0
- package/dist/assets/fonts/remixicon/remixicon.glyph.json +1 -0
- package/dist/assets/fonts/remixicon/remixicon.less +2898 -0
- package/dist/assets/fonts/remixicon/remixicon.module.less +2880 -0
- package/dist/assets/fonts/remixicon/remixicon.scss +5729 -0
- package/dist/assets/fonts/remixicon/remixicon.styl +2867 -0
- package/dist/assets/fonts/remixicon/remixicon.svg +8572 -0
- package/dist/assets/fonts/remixicon/remixicon.symbol.svg +11 -0
- package/dist/assets/fonts/remixicon/remixicon.ttf +0 -0
- package/dist/assets/fonts/remixicon/remixicon.woff +0 -0
- package/dist/assets/fonts/remixicon/remixicon.woff2 +0 -0
- package/dist/assets/fonts/remixicon/symbol.html +20104 -0
- package/dist/assets/fonts/remixicon/unicode.html +175 -0
- package/dist/assets/fonts/space-grotesk/space-grotesk-regular.woff2 +0 -0
- package/dist/ds.js +41259 -0
- package/dist/ds.umd.cjs +1047 -0
- package/dist/export.d.ts +1 -0
- package/dist/fontawesome.css +2 -0
- package/dist/src/components/AppSwitch/AppSwitch.d.ts +15 -0
- package/dist/src/components/AppSwitch/AppSwitch.stories.d.ts +15 -0
- package/dist/src/components/AppSwitch/AppSwitch.test.d.ts +1 -0
- package/dist/src/components/AppSwitch/appsArray.d.ts +8 -0
- package/dist/src/components/AppSwitch/styleLookup.d.ts +7 -0
- package/dist/src/components/DependenciesTable/DependenciesTable.d.ts +9 -0
- package/dist/src/components/DependenciesTable/DependenciesTable.stories.d.ts +6 -0
- package/dist/src/components/DependenciesTable/DependenciesTable.test.d.ts +1 -0
- package/dist/src/components/License/License.d.ts +25 -0
- package/dist/src/components/License/License.stories.d.ts +8 -0
- package/dist/src/components/License/License.test.d.ts +1 -0
- package/dist/src/components/OntologyClassMarker/OntologyClassMarker.d.ts +16 -0
- package/dist/src/components/OntologyClassMarker/OntologyClassMarker.stories.d.ts +18 -0
- package/dist/src/components/OntologyHierarchy/OntologyHierarchy.d.ts +22 -0
- package/dist/src/components/OntologyHierarchy/OntologyHierarchy.stories.d.ts +25 -0
- package/dist/src/components/OntologyHierarchy/OntologyHierarchyDisplay.d.ts +4 -0
- package/dist/src/components/OntologyHierarchy/OntologyHierarchyDisplay.test.d.ts +1 -0
- package/dist/src/components/OntologyHierarchy/OntologyHierarchyFunctions.d.ts +20 -0
- package/dist/src/components/OntologyHierarchy/OntologyHierarchyFunctions.test.d.ts +1 -0
- package/dist/src/components/OntologyHierarchy/data/hierarchy.d.ts +3 -0
- package/dist/src/components/SearchAutocomplete/SearchAutocomplete.d.ts +59 -0
- package/dist/src/components/SearchAutocomplete/SearchAutocomplete.stories.d.ts +48 -0
- package/dist/src/components/SearchAutocomplete/custom-options.d.ts +5 -0
- package/dist/src/components/SearchAutocompleteDialog/RecentSearches.d.ts +7 -0
- package/dist/src/components/SearchAutocompleteDialog/SearchAutocompleteDialog.d.ts +14 -0
- package/dist/src/components/SearchAutocompleteDialog/SearchAutocompleteDialog.stories.d.ts +78 -0
- package/dist/src/components/SearchAutocompleteDialog/SearchResults.d.ts +8 -0
- package/dist/src/components/SearchAutocompleteDialog/index.d.ts +3 -0
- package/dist/src/components/SearchAutocompleteDialog/sample-results.d.ts +6 -0
- package/dist/src/components/TeliAutocomplete/TeliAutocomplete.d.ts +24 -0
- package/dist/src/components/TeliAutocomplete/TeliAutocomplete.stories.d.ts +16 -0
- package/dist/src/components/TeliAutocomplete/stories/AsyncOnLoad.d.ts +3 -0
- package/dist/src/components/TeliAutocomplete/stories/ComboBox.d.ts +3 -0
- package/dist/src/components/TeliAutocomplete/stories/ComboBoxOptions.d.ts +3 -0
- package/dist/src/components/TeliAutocomplete/stories/Controlled.d.ts +3 -0
- package/dist/src/components/TeliAutocomplete/stories/CustomRenderOptions.d.ts +3 -0
- package/dist/src/components/TeliAutocomplete/stories/FreeSolo.d.ts +3 -0
- package/dist/src/components/TeliAutocomplete/stories/MultipleValues.d.ts +3 -0
- package/dist/src/components/TeliAutocomplete/stories/countries.d.ts +12 -0
- package/dist/src/components/TeliAutocomplete/stories/index.d.ts +7 -0
- package/dist/src/components/TeliAutocomplete/stories/options.d.ts +4 -0
- package/dist/src/components/TeliAutocomplete/stories/top100movies.d.ts +5 -0
- package/dist/src/components/TeliAvatar/TeliUserAvatar.d.ts +23 -0
- package/dist/src/components/TeliAvatar/TeliUserAvatar.stories.d.ts +17 -0
- package/dist/src/components/TeliBrand/TeliBrand.d.ts +27 -0
- package/dist/src/components/TeliBrand/TeliBrand.stories.d.ts +11 -0
- package/dist/src/components/TeliBrand/TeliBrand.test.d.ts +1 -0
- package/dist/src/components/TeliButton/TeliButton.d.ts +16 -0
- package/dist/src/components/TeliButton/TeliButton.stories.d.ts +23 -0
- package/dist/src/components/TeliButton/TeliButtonBase.d.ts +36 -0
- package/dist/src/components/TeliButton/stories/ButtonWithIcons.d.ts +3 -0
- package/dist/src/components/TeliButton/stories/ButtonWithTooltips.d.ts +3 -0
- package/dist/src/components/TeliButton/stories/DangerButtons.d.ts +3 -0
- package/dist/src/components/TeliButton/stories/IconButtons.d.ts +3 -0
- package/dist/src/components/TeliButton/stories/LinkButtons.d.ts +3 -0
- package/dist/src/components/TeliButton/stories/PrimaryButtons.d.ts +3 -0
- package/dist/src/components/TeliButton/stories/SecondaryButtons.d.ts +3 -0
- package/dist/src/components/TeliButton/stories/Sizes.d.ts +3 -0
- package/dist/src/components/TeliButton/stories/TertiaryButtons.d.ts +3 -0
- package/dist/src/components/TeliButton/stories/index.d.ts +9 -0
- package/dist/src/components/TeliCheckbox/TeliCheckbox.d.ts +13 -0
- package/dist/src/components/TeliCheckbox/TeliCheckbox.stories.d.ts +10 -0
- package/dist/src/components/TeliChip/TeliChip.d.ts +10 -0
- package/dist/src/components/TeliChip/TeliChip.stories.d.ts +16 -0
- package/dist/src/components/TeliChip/stories/BasicChips.d.ts +3 -0
- package/dist/src/components/TeliChip/stories/ChipsExample.d.ts +3 -0
- package/dist/src/components/TeliChip/stories/ClickableChips.d.ts +3 -0
- package/dist/src/components/TeliChip/stories/ClickableLinkChips.d.ts +3 -0
- package/dist/src/components/TeliChip/stories/ColorChips.d.ts +3 -0
- package/dist/src/components/TeliChip/stories/DeleteableChips.d.ts +3 -0
- package/dist/src/components/TeliChip/stories/IconChips.d.ts +3 -0
- package/dist/src/components/TeliChip/stories/SizeChips.d.ts +3 -0
- package/dist/src/components/TeliChip/stories/index.d.ts +8 -0
- package/dist/src/components/TeliDialog/TeliDialog.d.ts +15 -0
- package/dist/src/components/TeliDialog/TeliDialog.stories.d.ts +8 -0
- package/dist/src/components/TeliHeader/TeliHeader.d.ts +11 -0
- package/dist/src/components/TeliHeader/TeliHeader.stories.d.ts +8 -0
- package/dist/src/components/TeliHeader/TeliStandardLayoutHeader.d.ts +25 -0
- package/dist/src/components/TeliHeader/TeliStandardLayoutHeader.stories.d.ts +10 -0
- package/dist/src/components/TeliIcons/AllIcons.d.ts +2 -0
- package/dist/src/components/TeliIcons/AllIcons.stories.d.ts +6 -0
- package/dist/src/components/TeliIcons/ClockRotateLeft.d.ts +4 -0
- package/dist/src/components/TeliIcons/ClockRotateLeft.stories.d.ts +6 -0
- package/dist/src/components/TeliIcons/Icon.d.ts +13 -0
- package/dist/src/components/TeliIcons/TeliAddIcon.d.ts +4 -0
- package/dist/src/components/TeliIcons/TeliAddIcon.stories.d.ts +6 -0
- package/dist/src/components/TeliIcons/TeliCloseIcon.d.ts +4 -0
- package/dist/src/components/TeliIcons/TeliCloseIcon.stories.d.ts +6 -0
- package/dist/src/components/TeliIcons/TeliDeleteIcon.d.ts +4 -0
- package/dist/src/components/TeliIcons/TeliDeleteIcon.stories.d.ts +6 -0
- package/dist/src/components/TeliIcons/TeliEditIcon.d.ts +4 -0
- package/dist/src/components/TeliIcons/TeliEditIcon.stories.d.ts +6 -0
- package/dist/src/components/TeliIcons/TeliSearchIcon.d.ts +4 -0
- package/dist/src/components/TeliIcons/TeliSearchIcon.stories.d.ts +6 -0
- package/dist/src/components/TeliIcons/TeliSortIcon.stories.d.ts +7 -0
- package/dist/src/components/TeliIcons/TeliSortIcons.d.ts +5 -0
- package/dist/src/components/TeliIcons/index.d.ts +7 -0
- package/dist/src/components/TeliList/TeliList.d.ts +29 -0
- package/dist/src/components/TeliList/TeliList.stories.d.ts +8 -0
- package/dist/src/components/TeliMenu/BasicMenuContents.d.ts +14 -0
- package/dist/src/components/TeliMenu/TeliBasicMenu.d.ts +87 -0
- package/dist/src/components/TeliMenu/TeliBasicMenu.stories.d.ts +17 -0
- package/dist/src/components/TeliMenu/TeliMenu.d.ts +6 -0
- package/dist/src/components/TeliMenu/TeliMenu.stories.d.ts +9 -0
- package/dist/src/components/TeliMenu/stories/BasicMenu.d.ts +3 -0
- package/dist/src/components/TeliMenu/stories/ControlledBasicMenu.d.ts +3 -0
- package/dist/src/components/TeliMenu/stories/CustomMenuItems.d.ts +3 -0
- package/dist/src/components/TeliMenu/stories/PositionedMenu.d.ts +3 -0
- package/dist/src/components/TeliMenu/stories/SimpleMenu.d.ts +2 -0
- package/dist/src/components/TeliMenu/stories/WithIcon.d.ts +3 -0
- package/dist/src/components/TeliMenu/stories/index.d.ts +5 -0
- package/dist/src/components/TeliMenu/stories/menu-items.d.ts +10 -0
- package/dist/src/components/TeliSelect/TeliSelect.d.ts +129 -0
- package/dist/src/components/TeliSelect/TeliSelect.stories.d.ts +43 -0
- package/dist/src/components/TeliSelect/stories/BasicSelect.d.ts +3 -0
- package/dist/src/components/TeliSelect/stories/LabelsAndHelperText.d.ts +3 -0
- package/dist/src/components/TeliSelect/stories/MultiSelect.d.ts +3 -0
- package/dist/src/components/TeliSelect/stories/OtherStates.d.ts +3 -0
- package/dist/src/components/TeliSelect/stories/index.d.ts +4 -0
- package/dist/src/components/TeliSelect/stories/top-30-movies.d.ts +5 -0
- package/dist/src/components/TeliSpinner/TeliSpinner.d.ts +4 -0
- package/dist/src/components/TeliSpinner/TeliSpinner.stories.d.ts +9 -0
- package/dist/src/components/TeliSwitch/TeliSwitch.d.ts +74 -0
- package/dist/src/components/TeliSwitch/TeliSwitch.stories.d.ts +9 -0
- package/dist/src/components/TeliSwitch/stories/BasicSwitches.d.ts +3 -0
- package/dist/src/components/TeliSwitch/stories/ControlledSwitches.d.ts +3 -0
- package/dist/src/components/TeliSwitch/stories/LabelPlacement.d.ts +3 -0
- package/dist/src/components/TeliSwitch/stories/LabelledSwitches.d.ts +3 -0
- package/dist/src/components/TeliSwitch/stories/Sizes.d.ts +3 -0
- package/dist/src/components/TeliSwitch/stories/index.d.ts +5 -0
- package/dist/src/components/TeliTable/TeliBasicTable.d.ts +48 -0
- package/dist/src/components/TeliTable/TeliBasicTable.stories.d.ts +16 -0
- package/dist/src/components/TeliTable/TeliTable.d.ts +20 -0
- package/dist/src/components/TeliTable/TeliTable.stories.d.ts +19 -0
- package/dist/src/components/TeliTable/TeliTableBody.d.ts +6 -0
- package/dist/src/components/TeliTable/TeliTableBody.stories.d.ts +15 -0
- package/dist/src/components/TeliTable/TeliTableCell.d.ts +12 -0
- package/dist/src/components/TeliTable/TeliTableCell.stories.d.ts +8 -0
- package/dist/src/components/TeliTable/TeliTableContainer.d.ts +16 -0
- package/dist/src/components/TeliTable/TeliTableContainer.stories.d.ts +8 -0
- package/dist/src/components/TeliTable/TeliTableHead.d.ts +6 -0
- package/dist/src/components/TeliTable/TeliTableHead.stories.d.ts +15 -0
- package/dist/src/components/TeliTable/TeliTableRow.d.ts +13 -0
- package/dist/src/components/TeliTable/TeliTableRow.stories.d.ts +15 -0
- package/dist/src/components/TeliTable/index.d.ts +7 -0
- package/dist/src/components/TeliTable/stories/BasicTable.d.ts +3 -0
- package/dist/src/components/TeliTable/stories/Caption.d.ts +3 -0
- package/dist/src/components/TeliTable/stories/CustomColumns.d.ts +3 -0
- package/dist/src/components/TeliTable/stories/DenseTable.d.ts +3 -0
- package/dist/src/components/TeliTable/stories/StickyHeader.d.ts +3 -0
- package/dist/src/components/TeliTable/stories/TableExample.d.ts +3 -0
- package/dist/src/components/TeliTable/stories/index.d.ts +6 -0
- package/dist/src/components/TeliTable/stories/table-data.d.ts +4 -0
- package/dist/src/components/TeliTable/table-utils.d.ts +12 -0
- package/dist/src/components/TeliTabs/ExampleTeliTabs.stories.d.ts +8 -0
- package/dist/src/components/TeliTabs/TeliTab.d.ts +8 -0
- package/dist/src/components/TeliTabs/TeliTabPanel.d.ts +8 -0
- package/dist/src/components/TeliTabs/TeliTabs.d.ts +11 -0
- package/dist/src/components/TeliTabs/index.d.ts +3 -0
- package/dist/src/components/TeliTextField/TeliInput.d.ts +8 -0
- package/dist/src/components/TeliTextField/TeliTextField.d.ts +9 -0
- package/dist/src/components/TeliTextField/TeliTextField.stories.d.ts +10 -0
- package/dist/src/components/TeliTextField/TeliTextFieldProps.d.ts +74 -0
- package/dist/src/components/TeliTextField/stories/Adornments.d.ts +3 -0
- package/dist/src/components/TeliTextField/stories/Controlled.d.ts +3 -0
- package/dist/src/components/TeliTextField/stories/FormProps.d.ts +3 -0
- package/dist/src/components/TeliTextField/stories/Multiline.d.ts +3 -0
- package/dist/src/components/TeliTextField/stories/Validation.d.ts +3 -0
- package/dist/src/components/TeliTextField/stories/index.d.ts +5 -0
- package/dist/src/components/TeliToolbar/TeliToolbar.d.ts +19 -0
- package/dist/src/components/TeliToolbar/TeliToolbar.stories.d.ts +292 -0
- package/dist/src/components/TeliToolbar/stories/GroupedActions.d.ts +3 -0
- package/dist/src/components/TeliToolbar/stories/HorizontalAndVerticalToolbars.d.ts +3 -0
- package/dist/src/components/TeliToolbar/stories/PositionedToolbars.d.ts +3 -0
- package/dist/src/components/TeliToolbar/stories/index.d.ts +3 -0
- package/dist/src/components/TeliTypeIcon/TeliTypeIcon.d.ts +27 -0
- package/dist/src/components/TeliTypeIcon/TeliTypeIcon.stories.d.ts +48 -0
- package/dist/src/components/TeliTypeIcon/type-icon-utils.d.ts +10 -0
- package/dist/src/components/TeliTypeahead/TeliTypeahead.d.ts +9 -0
- package/dist/src/components/TeliTypeahead/TeliTypeahead.stories.d.ts +348 -0
- package/dist/src/components/TeliTypeahead/stories/FreeSolo.d.ts +3 -0
- package/dist/src/components/TeliTypeahead/stories/MultiSelect.d.ts +3 -0
- package/dist/src/components/TeliTypeahead/stories/index.d.ts +2 -0
- package/dist/src/components/TeliTypeahead/stories/utils.d.ts +10 -0
- package/dist/src/components/TeliUserProfile/TeliUserProfile.d.ts +9 -0
- package/dist/src/components/TeliUserProfile/TeliUserProfile.stories.d.ts +16 -0
- package/dist/src/components/TeliUserProfile/TeliUserProfileButton.d.ts +15 -0
- package/dist/src/components/TeliUserProfile/TeliUserProfileMenu.d.ts +17 -0
- package/dist/src/components/index.d.ts +30 -0
- package/dist/src/contexts/OntologyStyles.d.ts +48 -0
- package/dist/src/contexts/context-utils.d.ts +4 -0
- package/dist/src/export.d.ts +7 -0
- package/dist/src/hooks/query-utils.d.ts +5 -0
- package/dist/src/hooks/useDebounce.d.ts +2 -0
- package/dist/src/hooks/useTeliTheme.d.ts +10 -0
- package/dist/src/hooks/useTheme.d.ts +7 -0
- package/dist/src/hooks/useTypeahead.d.ts +2 -0
- package/dist/src/layouts/TeliBasicLayout/TeliBasicLayout.d.ts +6 -0
- package/dist/src/layouts/TeliBasicLayout/TeliBasicLayout.stories.d.ts +10 -0
- package/dist/src/layouts/TeliStandardLayout/TeliStandardLayout.d.ts +7 -0
- package/dist/src/layouts/TeliStandardLayout/TeliStandardLayout.stories.d.ts +8 -0
- package/dist/src/providers/LayoutProviders/DSProviders.d.ts +8 -0
- package/dist/src/providers/LayoutProviders/LayoutProviders.d.ts +5 -0
- package/dist/src/providers/LayoutProviders/index.d.ts +2 -0
- package/dist/src/providers/TeliStyledEngineProvider/TeliStyledEngineProvider.d.ts +6 -0
- package/dist/src/providers/TeliThemeProvider/TeliThemeProvider.d.ts +10 -0
- package/dist/src/providers/TeliThemeProvider/TeliThemeProvider.test.d.ts +1 -0
- package/dist/src/providers/TeliThemeProvider/components.d.ts +3 -0
- package/dist/src/providers/TeliThemeProvider/palette.d.ts +4 -0
- package/dist/src/providers/TeliThemeProvider/typography.d.ts +3 -0
- package/dist/src/providers/index.d.ts +3 -0
- package/dist/src/setupTests.d.ts +0 -0
- package/dist/src/stories/Branding/Favicons.d.ts +3 -0
- package/dist/src/stories/Branding/Figtree.d.ts +3 -0
- package/dist/src/stories/Branding/SpaceGrotesk.d.ts +3 -0
- package/dist/src/test-utils.d.ts +58 -0
- package/dist/src/types/layout.d.ts +11 -0
- package/dist/style.css +1 -0
- package/dist/telicent-favicon.svg +1 -0
- package/package.json +170 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
type TeliThemeProviderProps = {
|
|
3
|
+
children?: React.ReactNode;
|
|
4
|
+
};
|
|
5
|
+
/**
|
|
6
|
+
* The ThemeProvider component is responsible for providing the theme to all it's children.
|
|
7
|
+
* This component should be imported in index.jsx|tsx, if the standard layout component is not being used.
|
|
8
|
+
*/
|
|
9
|
+
declare const TeliThemeProvider: React.FC<TeliThemeProviderProps>;
|
|
10
|
+
export default TeliThemeProvider;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
File without changes
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const setup: (jsx: JSX.Element) => {
|
|
3
|
+
container: HTMLElement;
|
|
4
|
+
baseElement: HTMLElement;
|
|
5
|
+
debug: (baseElement?: Element | DocumentFragment | (Element | DocumentFragment)[] | undefined, maxLength?: number | undefined, options?: import("pretty-format").PrettyFormatOptions | undefined) => void;
|
|
6
|
+
rerender: (ui: import("react").ReactNode) => void;
|
|
7
|
+
unmount: () => void;
|
|
8
|
+
asFragment: () => DocumentFragment;
|
|
9
|
+
getByLabelText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined) => HTMLElement;
|
|
10
|
+
getAllByLabelText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined) => HTMLElement[];
|
|
11
|
+
queryByLabelText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined) => HTMLElement | null;
|
|
12
|
+
queryAllByLabelText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined) => HTMLElement[];
|
|
13
|
+
findByLabelText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
14
|
+
findAllByLabelText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
15
|
+
getByPlaceholderText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement;
|
|
16
|
+
getAllByPlaceholderText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement[];
|
|
17
|
+
queryByPlaceholderText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement | null;
|
|
18
|
+
queryAllByPlaceholderText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement[];
|
|
19
|
+
findByPlaceholderText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
20
|
+
findAllByPlaceholderText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
21
|
+
getByText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined) => HTMLElement;
|
|
22
|
+
getAllByText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined) => HTMLElement[];
|
|
23
|
+
queryByText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined) => HTMLElement | null;
|
|
24
|
+
queryAllByText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined) => HTMLElement[];
|
|
25
|
+
findByText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
26
|
+
findAllByText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").SelectorMatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
27
|
+
getByAltText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement;
|
|
28
|
+
getAllByAltText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement[];
|
|
29
|
+
queryByAltText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement | null;
|
|
30
|
+
queryAllByAltText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement[];
|
|
31
|
+
findByAltText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
32
|
+
findAllByAltText: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
33
|
+
getByTitle: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement;
|
|
34
|
+
getAllByTitle: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement[];
|
|
35
|
+
queryByTitle: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement | null;
|
|
36
|
+
queryAllByTitle: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement[];
|
|
37
|
+
findByTitle: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
38
|
+
findAllByTitle: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
39
|
+
getByDisplayValue: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement;
|
|
40
|
+
getAllByDisplayValue: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement[];
|
|
41
|
+
queryByDisplayValue: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement | null;
|
|
42
|
+
queryAllByDisplayValue: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement[];
|
|
43
|
+
findByDisplayValue: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
44
|
+
findAllByDisplayValue: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
45
|
+
getByRole: (role: import("@testing-library/react").ByRoleMatcher, options?: import("@testing-library/react").ByRoleOptions | undefined) => HTMLElement;
|
|
46
|
+
getAllByRole: (role: import("@testing-library/react").ByRoleMatcher, options?: import("@testing-library/react").ByRoleOptions | undefined) => HTMLElement[];
|
|
47
|
+
queryByRole: (role: import("@testing-library/react").ByRoleMatcher, options?: import("@testing-library/react").ByRoleOptions | undefined) => HTMLElement | null;
|
|
48
|
+
queryAllByRole: (role: import("@testing-library/react").ByRoleMatcher, options?: import("@testing-library/react").ByRoleOptions | undefined) => HTMLElement[];
|
|
49
|
+
findByRole: (role: import("@testing-library/react").ByRoleMatcher, options?: import("@testing-library/react").ByRoleOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
50
|
+
findAllByRole: (role: import("@testing-library/react").ByRoleMatcher, options?: import("@testing-library/react").ByRoleOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
51
|
+
getByTestId: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement;
|
|
52
|
+
getAllByTestId: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement[];
|
|
53
|
+
queryByTestId: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement | null;
|
|
54
|
+
queryAllByTestId: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined) => HTMLElement[];
|
|
55
|
+
findByTestId: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement>;
|
|
56
|
+
findAllByTestId: (id: import("@testing-library/react").Matcher, options?: import("@testing-library/react").MatcherOptions | undefined, waitForElementOptions?: import("@testing-library/react").waitForOptions | undefined) => Promise<HTMLElement[]>;
|
|
57
|
+
user: import("@testing-library/user-event").UserEvent;
|
|
58
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface StandardLayoutProps {
|
|
2
|
+
/**
|
|
3
|
+
* The telicent application name
|
|
4
|
+
*/
|
|
5
|
+
appName: string;
|
|
6
|
+
/**
|
|
7
|
+
* Has the application moved into its second phase of testing and is ready for external use by customers or clients?
|
|
8
|
+
* @default false
|
|
9
|
+
*/
|
|
10
|
+
beta?: boolean;
|
|
11
|
+
}
|