@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 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g id="Layer_1-2"><rect width="16" height="16" style="fill:#8f63fc; stroke-width:0px;"/><path d="m5.77,6.57c-.59-.51-1.35-.79-2.14-.79h-.63v.79h.63c.68,0,1.31.26,1.78.74.47.48.73,1.12.73,1.8v4.04h.79v-4.04c0-.89-.34-1.73-.96-2.36-.06-.07-.13-.13-.2-.19" style="stroke-width:0px;"/><path d="m13,2.84H3v.79h.63c.94,0,1.84.23,2.63.68.39.22.75.48,1.08.79.05.04.09.09.14.14.17.17.33.35.47.54.19.25.36.51.5.79.4.78.62,1.64.62,2.55v4.04h.79v-4.04c0-.89-.18-1.76-.53-2.55h3.67v-.79h-4.09c-.15-.23-.31-.46-.49-.68h4.58v-.79h-5.36c-.3-.26-.63-.48-.97-.68h6.33v-.79Z" style="stroke-width:0px;"/><path d="m7.07,5.78s-.04-.04-.06-.06c-.23-.23-.48-.44-.74-.61-.72-.48-1.56-.76-2.45-.79-.06,0-.13,0-.19,0h0s-.63,0-.63,0v.79h.8c.74.03,1.45.27,2.05.68.21.14.41.31.59.49.09.09.18.19.27.3.58.71.9,1.6.9,2.55v4.04h.79v-4.04c0-.92-.25-1.79-.72-2.55-.17-.28-.38-.55-.61-.79" style="stroke-width:0px;"/></g></svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@telicent-oss/ds",
|
|
3
|
+
"description": "A component library for creating Telicent apps.",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/telicent-oss/telicent-ds.git"
|
|
8
|
+
},
|
|
9
|
+
"type": "module",
|
|
10
|
+
"version": "0.0.1",
|
|
11
|
+
"private": false,
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@emotion/react": "^11.10.6",
|
|
14
|
+
"@emotion/styled": "^11.10.6",
|
|
15
|
+
"@fortawesome/fontawesome-svg-core": "^6.5.1",
|
|
16
|
+
"@fortawesome/free-regular-svg-icons": "^6.5.1",
|
|
17
|
+
"@fortawesome/free-solid-svg-icons": "^6.5.1",
|
|
18
|
+
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
19
|
+
"@mui/material": "^5.15.10",
|
|
20
|
+
"@tanstack/react-query": "^5.18.0",
|
|
21
|
+
"@telicent-oss/ontologyservice": "^0.0.1",
|
|
22
|
+
"classnames": "^2.3.1",
|
|
23
|
+
"d3": "^7.8.2",
|
|
24
|
+
"lodash": "^4.17.21",
|
|
25
|
+
"maplibre-gl": "^4.0.0",
|
|
26
|
+
"react": "^18.2.0",
|
|
27
|
+
"react-dom": "^18.2.0",
|
|
28
|
+
"react-map-gl": "7.1.0",
|
|
29
|
+
"typescript": "*",
|
|
30
|
+
"zod": "^3.21.4"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"lint": "eslint --resolve-plugins-relative-to src",
|
|
34
|
+
"clean": "rimraf dist storybook-static",
|
|
35
|
+
"start": "vite",
|
|
36
|
+
"build": "vite build",
|
|
37
|
+
"preview": "vite preview",
|
|
38
|
+
"test": "react-scripts test",
|
|
39
|
+
"eject": "react-scripts eject",
|
|
40
|
+
"storybook": "yarn prestart && storybook dev -p 6006",
|
|
41
|
+
"build-storybook": "storybook build",
|
|
42
|
+
"storybook-docs": "storybook dev --docs --no-manager-cache",
|
|
43
|
+
"build-storybook-docs": "storybook build --docs",
|
|
44
|
+
"test:ci": "yarn test --ci --json --outputFile=\"results.json\" --watchAll=false",
|
|
45
|
+
"chromatic": "chromatic --exit-zero-on-changes",
|
|
46
|
+
"css": "npx tailwindcss -i ./src/index.css -o ./src/main.css",
|
|
47
|
+
"prestart": "yarn run css",
|
|
48
|
+
"prebuild": "yarn clean"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"@tanstack/react-query": "^5.18.0",
|
|
52
|
+
"@telicent-oss/ontologyservice": "^0.0.1",
|
|
53
|
+
"react": "^18.2.0",
|
|
54
|
+
"react-dom": "^18.2.0"
|
|
55
|
+
},
|
|
56
|
+
"browserslist": {
|
|
57
|
+
"production": [
|
|
58
|
+
">0.2%",
|
|
59
|
+
"not dead",
|
|
60
|
+
"not op_mini all"
|
|
61
|
+
],
|
|
62
|
+
"development": [
|
|
63
|
+
"last 1 chrome version",
|
|
64
|
+
"last 1 firefox version",
|
|
65
|
+
"last 1 safari version"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@babel/core": "^7.20.12",
|
|
70
|
+
"@commitlint/cli": "^17.1.2",
|
|
71
|
+
"@commitlint/config-conventional": "^17.1.0",
|
|
72
|
+
"@storybook/addon-a11y": "^7.6.7",
|
|
73
|
+
"@storybook/addon-actions": "^7.6.7",
|
|
74
|
+
"@storybook/addon-docs": "^7.6.7",
|
|
75
|
+
"@storybook/addon-essentials": "^7.6.7",
|
|
76
|
+
"@storybook/addon-links": "^7.6.7",
|
|
77
|
+
"@storybook/blocks": "^7.6.7",
|
|
78
|
+
"@storybook/react": "^7.6.7",
|
|
79
|
+
"@storybook/react-vite": "^7.6.7",
|
|
80
|
+
"@testing-library/dom": "^9.2.0",
|
|
81
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
82
|
+
"@testing-library/react": "^14.0.0",
|
|
83
|
+
"@testing-library/user-event": "^14.4.3",
|
|
84
|
+
"@types/d3": "^7.4.3",
|
|
85
|
+
"@types/jest": "^29.5.0",
|
|
86
|
+
"@types/node": "^18.15.11",
|
|
87
|
+
"@types/react": "^18.0.32",
|
|
88
|
+
"@types/react-dom": "^18.0.11",
|
|
89
|
+
"@typescript-eslint/eslint-plugin": "^6.1.0",
|
|
90
|
+
"@typescript-eslint/parser": "^5.57.0",
|
|
91
|
+
"@vitejs/plugin-react": "^4.2.0",
|
|
92
|
+
"autoprefixer": "^10.4.13",
|
|
93
|
+
"babel-loader": "^9.1.2",
|
|
94
|
+
"chromatic": "^6.15.0",
|
|
95
|
+
"commitizen": "^4.2.5",
|
|
96
|
+
"cross-env": "^7.0.3",
|
|
97
|
+
"cssnano": "^5.0.14",
|
|
98
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
99
|
+
"eslint": "^8.0.1",
|
|
100
|
+
"eslint-config-airbnb": "^19.0.4",
|
|
101
|
+
"eslint-config-airbnb-typescript": "^17.0.0",
|
|
102
|
+
"eslint-config-prettier": "^8.8.0",
|
|
103
|
+
"eslint-config-react-app": "^7.0.1",
|
|
104
|
+
"eslint-config-standard-with-typescript": "^38.0.0",
|
|
105
|
+
"eslint-plugin-import": "^2.25.2",
|
|
106
|
+
"eslint-plugin-jest-dom": "^4.0.3",
|
|
107
|
+
"eslint-plugin-jsx-a11y": "^6.6.1",
|
|
108
|
+
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
|
|
109
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
110
|
+
"eslint-plugin-promise": "^6.0.0",
|
|
111
|
+
"eslint-plugin-react": "^7.33.2",
|
|
112
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
113
|
+
"eslint-plugin-storybook": "^0.6.15",
|
|
114
|
+
"eslint-plugin-testing-library": "^6.0.0",
|
|
115
|
+
"husky": "^8.0.3",
|
|
116
|
+
"postcss": "^8.4.29",
|
|
117
|
+
"postcss-cli": "^10.1.0",
|
|
118
|
+
"postcss-import": "^15.1.0",
|
|
119
|
+
"react-scripts": "^5.0.0",
|
|
120
|
+
"release-please": "^15.6.0",
|
|
121
|
+
"remark-gfm": "^3.0.1",
|
|
122
|
+
"rollup": "^4.5.0",
|
|
123
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
124
|
+
"storybook": "7.6.7",
|
|
125
|
+
"storybook-addon-themes": "^6.1.0",
|
|
126
|
+
"storybook-dark-mode": "^3.0.3",
|
|
127
|
+
"tailwindcss": "^3.4.1",
|
|
128
|
+
"typescript-plugin-css-modules": "^5.0.1",
|
|
129
|
+
"vite": "^5.0.2",
|
|
130
|
+
"vite-plugin-dts": "^3.6.3"
|
|
131
|
+
},
|
|
132
|
+
"publishConfig": {
|
|
133
|
+
"registry": "https://www.npmjs.com/"
|
|
134
|
+
},
|
|
135
|
+
"files": [
|
|
136
|
+
"dist"
|
|
137
|
+
],
|
|
138
|
+
"main": "./dist/ds.umd.cjs",
|
|
139
|
+
"module": "./dist/ds.js",
|
|
140
|
+
"types": "./dist/export.d.ts",
|
|
141
|
+
"exports": {
|
|
142
|
+
".": {
|
|
143
|
+
"import": "./dist/ds.js",
|
|
144
|
+
"require": "./dist/ds.umd.cjs"
|
|
145
|
+
},
|
|
146
|
+
"./dist/style.css": {
|
|
147
|
+
"import": "./dist/style.css",
|
|
148
|
+
"require": "./dist/style.css",
|
|
149
|
+
"style": "./dist/style.css"
|
|
150
|
+
},
|
|
151
|
+
"./dist/fontawesome.css": {
|
|
152
|
+
"import": "./dist/fontawesome.css",
|
|
153
|
+
"require": "./dist/fontawesome.css",
|
|
154
|
+
"style": "./dist/fontawesome.css"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"jest": {
|
|
158
|
+
"moduleNameMapper": {
|
|
159
|
+
"^d3$": "<rootDir>/node_modules/d3/dist/d3.min.js"
|
|
160
|
+
},
|
|
161
|
+
"transformIgnorePatterns": [
|
|
162
|
+
"node_modules\\/(?!(@telicent-oss/ontologyservice))"
|
|
163
|
+
]
|
|
164
|
+
},
|
|
165
|
+
"config": {
|
|
166
|
+
"commitizen": {
|
|
167
|
+
"path": "./node_modules/cz-conventional-changelog"
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|