@softwareone/spi-sv5-library 1.8.0 → 1.8.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/dist/index.d.ts +1 -3
- package/dist/index.js +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ import Avatar from './Avatar/Avatar.svelte';
|
|
|
3
3
|
import Breadcrumbs from './Breadcrumbs/Breadcrumbs.svelte';
|
|
4
4
|
import Button from './Button/Button.svelte';
|
|
5
5
|
import Card from './Card/Card.svelte';
|
|
6
|
-
import ChatBot from './ChatBot/ChatBot.svelte';
|
|
7
6
|
import Chips from './Chips/Chips.svelte';
|
|
8
7
|
import DeleteConfirmationModal from './DeleteConfirmation/DeleteConfirmation.svelte';
|
|
9
8
|
import ErrorPage from './ErrorPage/ErrorPage.svelte';
|
|
@@ -46,7 +45,6 @@ import { validateSchema } from './Form/FormController/helper.js';
|
|
|
46
45
|
import { createZodString } from './Form/FormController/zod-validations.js';
|
|
47
46
|
import { getSubMenuItemsFromMenu } from './Menu/MenuState.svelte';
|
|
48
47
|
import type { BreadcrumbsNameMap } from './Breadcrumbs/breadcrumbsState.svelte.js';
|
|
49
|
-
import type { Chat, ChatBotReplyMessage, ChatBotMessage } from './ChatBot/chatbotState.svelte';
|
|
50
48
|
import type { FormError, FormContext } from './Form/FormController/types.js';
|
|
51
49
|
import type { HighlightPanelColumn } from './HighlightPanel/highlightPanelState.svelte.js';
|
|
52
50
|
import type { HomeItem } from './Menu/MenuState.svelte.js';
|
|
@@ -60,4 +58,4 @@ import type { Toast } from './Toast/toastState.svelte';
|
|
|
60
58
|
import type { WaffleItem } from './Waffle/waffleState.svelte.js';
|
|
61
59
|
import type { AttachFileFormConfig, FileValidationCallback } from './Form/AttachFile/attachFile.svelte.js';
|
|
62
60
|
import type { NotificationProps } from './Notification/notificationState.svelte.js';
|
|
63
|
-
export { Accordion, Avatar, Breadcrumbs, Button, Card,
|
|
61
|
+
export { Accordion, Avatar, Breadcrumbs, Button, Card, Chips, DeleteConfirmationModal, ErrorPage, Footer, Form, Header, HeaderAccount, HeaderLoader, HeaderLogo, HighlightPanel, Home, Input, Link, Menu, Modal, Notification, Processing, ProgressPage, ProgressWizard, Search, Select, Sidebar, Spinner, Switcher, Tabs, TextArea, Toaster, Toggle, Tooltip, Waffle, AttachFile, addBreadcrumbsNameMap, addToast, getProgressWizardContext, setProgressWizardStepsContext, setStepValidity, setFormContext, getFormContext, validateSchema, createZodString, getSubMenuItemsFromMenu, ChipType, ColumnType, ImageType, type BreadcrumbsNameMap, type HighlightPanelColumn, type HomeItem, type MainMenu, type MenuItem, type ModalProps, type ProgressWizardStep, type SelectOption, type SwitcherOption, type Tab, type Toast, type WaffleItem, type FormError, type FormContext, type SubMenuItem, type AttachFileFormConfig, type FileValidationCallback, type NotificationProps };
|
package/dist/index.js
CHANGED
|
@@ -4,7 +4,6 @@ import Avatar from './Avatar/Avatar.svelte';
|
|
|
4
4
|
import Breadcrumbs from './Breadcrumbs/Breadcrumbs.svelte';
|
|
5
5
|
import Button from './Button/Button.svelte';
|
|
6
6
|
import Card from './Card/Card.svelte';
|
|
7
|
-
import ChatBot from './ChatBot/ChatBot.svelte';
|
|
8
7
|
import Chips from './Chips/Chips.svelte';
|
|
9
8
|
import DeleteConfirmationModal from './DeleteConfirmation/DeleteConfirmation.svelte';
|
|
10
9
|
import ErrorPage from './ErrorPage/ErrorPage.svelte';
|
|
@@ -49,7 +48,7 @@ import { createZodString } from './Form/FormController/zod-validations.js';
|
|
|
49
48
|
import { getSubMenuItemsFromMenu } from './Menu/MenuState.svelte';
|
|
50
49
|
export {
|
|
51
50
|
// Components
|
|
52
|
-
Accordion, Avatar, Breadcrumbs, Button, Card,
|
|
51
|
+
Accordion, Avatar, Breadcrumbs, Button, Card, Chips, DeleteConfirmationModal, ErrorPage, Footer, Form, Header, HeaderAccount, HeaderLoader, HeaderLogo, HighlightPanel, Home, Input, Link, Menu, Modal, Notification, Processing, ProgressPage, ProgressWizard, Search, Select, Sidebar, Spinner, Switcher, Tabs, TextArea, Toaster, Toggle, Tooltip, Waffle, AttachFile,
|
|
53
52
|
// Functions and helpers
|
|
54
53
|
addBreadcrumbsNameMap, addToast, getProgressWizardContext, setProgressWizardStepsContext, setStepValidity, setFormContext, getFormContext, validateSchema, createZodString, getSubMenuItemsFromMenu,
|
|
55
54
|
// Enums
|