@invopop/popui 0.0.77-beta5 → 0.0.77-beta7
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 +7 -1
- package/dist/index.js +11 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,8 @@ import BaseCounter from './BaseCounter.svelte';
|
|
|
5
5
|
import BaseDropdown from './BaseDropdown.svelte';
|
|
6
6
|
import BaseFlag from './BaseFlag.svelte';
|
|
7
7
|
import BaseTable from './BaseTable.svelte';
|
|
8
|
+
import BaseTableActions from './BaseTableActions.svelte';
|
|
9
|
+
import BaseTableHeaderContent from './BaseTableHeaderContent.svelte';
|
|
8
10
|
import Breadcrumbs from './Breadcrumbs.svelte';
|
|
9
11
|
import ButtonFile from './ButtonFile.svelte';
|
|
10
12
|
import CardCheckbox from './CardCheckbox.svelte';
|
|
@@ -42,6 +44,7 @@ import SectionLayout from './SectionLayout.svelte';
|
|
|
42
44
|
import SeparatorHorizontal from './SeparatorHorizontal.svelte';
|
|
43
45
|
import ShortcutWrapper from './ShortcutWrapper.svelte';
|
|
44
46
|
import StatusLabel from './StatusLabel.svelte';
|
|
47
|
+
import StepIconList from './StepIconList.svelte';
|
|
45
48
|
import { Table } from './table';
|
|
46
49
|
import { TableBody } from './table';
|
|
47
50
|
import { TableCaption } from './table';
|
|
@@ -59,9 +62,12 @@ import TagSearch from './TagSearch.svelte';
|
|
|
59
62
|
import TagStatus from './TagStatus.svelte';
|
|
60
63
|
import TitleMain from './TitleMain.svelte';
|
|
61
64
|
import TitleSection from './TitleSection.svelte';
|
|
65
|
+
import { Tooltip } from './tooltip';
|
|
66
|
+
import { TooltipContent } from './tooltip';
|
|
67
|
+
import { TooltipTrigger } from './tooltip';
|
|
62
68
|
import UuidCopy from './UuidCopy.svelte';
|
|
63
69
|
import twTheme from './tw.theme.js';
|
|
64
70
|
import { resolveIcon } from './helpers.js';
|
|
65
71
|
import { getCountryName } from './helpers.js';
|
|
66
72
|
import { getStatusType } from './helpers.js';
|
|
67
|
-
export { AlertDialog, BaseButton, BaseCard, BaseCounter, BaseDropdown, BaseFlag, BaseTable, Breadcrumbs, ButtonFile, CardCheckbox, CardRelation, CompanySelector, CounterWorkflow, DataListItem, DatePicker, DrawerContext, DrawerContextItem, DropdownSelect, EmptyStateIcon, EmptyStateIllustration, FeedEvents, FeedIconEvent, FeedIconStatus, FeedItem, FeedItemDetail, FeedViewer, GlobalSearch, InputCheckbox, InputError, InputLabel, InputRadio, InputSearch, InputSelect, InputText, InputTextarea, InputToggle, MenuItem, MenuItemCollapsible, ProfileAvatar, ProfileSelector, SectionLayout, SeparatorHorizontal, ShortcutWrapper, StatusLabel, Table, TableBody, TableCaption, TableFooter, TableHeader, TableRow, TableHead, TableCell, Tabs, TabsContent, TabsList, TabsTrigger, TagBeta, TagSearch, TagStatus, TitleMain, TitleSection, UuidCopy, twTheme, resolveIcon, getCountryName, getStatusType };
|
|
73
|
+
export { AlertDialog, BaseButton, BaseCard, BaseCounter, BaseDropdown, BaseFlag, BaseTable, BaseTableActions, BaseTableHeaderContent, Breadcrumbs, ButtonFile, CardCheckbox, CardRelation, CompanySelector, CounterWorkflow, DataListItem, DatePicker, DrawerContext, DrawerContextItem, DropdownSelect, EmptyStateIcon, EmptyStateIllustration, FeedEvents, FeedIconEvent, FeedIconStatus, FeedItem, FeedItemDetail, FeedViewer, GlobalSearch, InputCheckbox, InputError, InputLabel, InputRadio, InputSearch, InputSelect, InputText, InputTextarea, InputToggle, MenuItem, MenuItemCollapsible, ProfileAvatar, ProfileSelector, SectionLayout, SeparatorHorizontal, ShortcutWrapper, StatusLabel, StepIconList, Table, TableBody, TableCaption, TableFooter, TableHeader, TableRow, TableHead, TableCell, Tabs, TabsContent, TabsList, TabsTrigger, TagBeta, TagSearch, TagStatus, TitleMain, TitleSection, Tooltip, TooltipContent, TooltipTrigger, UuidCopy, twTheme, resolveIcon, getCountryName, getStatusType };
|
package/dist/index.js
CHANGED
|
@@ -5,6 +5,8 @@ import BaseCounter from './BaseCounter.svelte'
|
|
|
5
5
|
import BaseDropdown from './BaseDropdown.svelte'
|
|
6
6
|
import BaseFlag from './BaseFlag.svelte'
|
|
7
7
|
import BaseTable from './BaseTable.svelte'
|
|
8
|
+
import BaseTableActions from './BaseTableActions.svelte'
|
|
9
|
+
import BaseTableHeaderContent from './BaseTableHeaderContent.svelte'
|
|
8
10
|
import Breadcrumbs from './Breadcrumbs.svelte'
|
|
9
11
|
import ButtonFile from './ButtonFile.svelte'
|
|
10
12
|
import CardCheckbox from './CardCheckbox.svelte'
|
|
@@ -42,6 +44,7 @@ import SectionLayout from './SectionLayout.svelte'
|
|
|
42
44
|
import SeparatorHorizontal from './SeparatorHorizontal.svelte'
|
|
43
45
|
import ShortcutWrapper from './ShortcutWrapper.svelte'
|
|
44
46
|
import StatusLabel from './StatusLabel.svelte'
|
|
47
|
+
import StepIconList from './StepIconList.svelte'
|
|
45
48
|
import {
|
|
46
49
|
Table,
|
|
47
50
|
TableHeader,
|
|
@@ -58,6 +61,8 @@ import TagSearch from './TagSearch.svelte'
|
|
|
58
61
|
import TagStatus from './TagStatus.svelte'
|
|
59
62
|
import TitleMain from './TitleMain.svelte'
|
|
60
63
|
import TitleSection from './TitleSection.svelte'
|
|
64
|
+
import { Tooltip, TooltipContent, TooltipTrigger } from './tooltip'
|
|
65
|
+
|
|
61
66
|
import UuidCopy from './UuidCopy.svelte'
|
|
62
67
|
import twTheme from './tw.theme.js'
|
|
63
68
|
import { resolveIcon, getCountryName, getStatusType } from './helpers.js'
|
|
@@ -70,6 +75,8 @@ export {
|
|
|
70
75
|
BaseDropdown,
|
|
71
76
|
BaseFlag,
|
|
72
77
|
BaseTable,
|
|
78
|
+
BaseTableActions,
|
|
79
|
+
BaseTableHeaderContent,
|
|
73
80
|
Breadcrumbs,
|
|
74
81
|
ButtonFile,
|
|
75
82
|
CardCheckbox,
|
|
@@ -107,6 +114,7 @@ export {
|
|
|
107
114
|
SeparatorHorizontal,
|
|
108
115
|
ShortcutWrapper,
|
|
109
116
|
StatusLabel,
|
|
117
|
+
StepIconList,
|
|
110
118
|
Table,
|
|
111
119
|
TableBody,
|
|
112
120
|
TableCaption,
|
|
@@ -124,6 +132,9 @@ export {
|
|
|
124
132
|
TagStatus,
|
|
125
133
|
TitleMain,
|
|
126
134
|
TitleSection,
|
|
135
|
+
Tooltip,
|
|
136
|
+
TooltipContent,
|
|
137
|
+
TooltipTrigger,
|
|
127
138
|
UuidCopy,
|
|
128
139
|
twTheme,
|
|
129
140
|
resolveIcon,
|