@functionalcms/svelte-components 2.3.7 → 2.3.9
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 +2 -1
- package/dist/index.js +2 -1
- package/package.json +7 -2
package/dist/index.d.ts
CHANGED
|
@@ -12,4 +12,5 @@ import { pages } from './stores/pages.js';
|
|
|
12
12
|
import { metaDescription, metaKeywords } from './stores/meta.js';
|
|
13
13
|
import { Justify, Placement, Orientation, Position, Sizes, AlignItmes } from './components/Styling.js';
|
|
14
14
|
import { Alert, Avatar, AvatarGroup, Breadcrumb, Button, ButtonGroup, Card, ChoiceInput, Close, Dialog, Disclose, Divider, Drawer, EmptyState, Header, HeaderNav, HeaderNavItem, Icon, IconSvg, Input, InputAddonItem, Loader, Menu, MenuItem, Pagination, Progress, Select, Spinner, Switch, Table, Tabs, Tag, Toast, Toasts } from 'agnostic-svelte';
|
|
15
|
-
|
|
15
|
+
import { Djot } from 'svelte-djot';
|
|
16
|
+
export { FlatMenu, HamburgerMenu, Visiblity, HeaderNavigationItem, Banner, DefaultLayout, Logo, SimpleFooter, Spacer, Well, Justify, Placement, Orientation, AlignItmes, Position, Sizes, title, suffix, pages, metaDescription, metaKeywords, Djot, Alert, Avatar, AvatarGroup, Breadcrumb, Button, ButtonGroup, Card, ChoiceInput, Close, Dialog, Disclose, Divider, Drawer, EmptyState, Header, HeaderNav, HeaderNavItem, Icon, IconSvg, Input, InputAddonItem, Loader, Menu, MenuItem, Pagination, Progress, Select, Spinner, Switch, Table, Tabs, Tag, Toast, Toasts };
|
package/dist/index.js
CHANGED
|
@@ -13,4 +13,5 @@ import { pages } from './stores/pages.js';
|
|
|
13
13
|
import { metaDescription, metaKeywords } from './stores/meta.js';
|
|
14
14
|
import { Justify, Placement, Orientation, Position, Sizes, AlignItmes } from './components/Styling.js';
|
|
15
15
|
import { Alert, Avatar, AvatarGroup, Breadcrumb, Button, ButtonGroup, Card, ChoiceInput, Close, Dialog, Disclose, Divider, Drawer, EmptyState, Header, HeaderNav, HeaderNavItem, Icon, IconSvg, Input, InputAddonItem, Loader, Menu, MenuItem, Pagination, Progress, Select, Spinner, Switch, Table, Tabs, Tag, Toast, Toasts } from 'agnostic-svelte';
|
|
16
|
-
|
|
16
|
+
import { Djot } from 'svelte-djot';
|
|
17
|
+
export { FlatMenu, HamburgerMenu, Visiblity, HeaderNavigationItem, Banner, DefaultLayout, Logo, SimpleFooter, Spacer, Well, Justify, Placement, Orientation, AlignItmes, Position, Sizes, title, suffix, pages, metaDescription, metaKeywords, Djot, Alert, Avatar, AvatarGroup, Breadcrumb, Button, ButtonGroup, Card, ChoiceInput, Close, Dialog, Disclose, Divider, Drawer, EmptyState, Header, HeaderNav, HeaderNavItem, Icon, IconSvg, Input, InputAddonItem, Loader, Menu, MenuItem, Pagination, Progress, Select, Spinner, Switch, Table, Tabs, Tag, Toast, Toasts };
|
package/package.json
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@functionalcms/svelte-components",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.9",
|
|
4
4
|
"watch": {
|
|
5
5
|
"build": {
|
|
6
|
-
"patterns": [
|
|
6
|
+
"patterns": [
|
|
7
|
+
"src"
|
|
8
|
+
],
|
|
7
9
|
"extensions": "ts,svelte",
|
|
8
10
|
"legacyWatch": true
|
|
9
11
|
}
|
|
@@ -53,6 +55,9 @@
|
|
|
53
55
|
"typescript": "^5.3.3",
|
|
54
56
|
"vite": "^5.0.10"
|
|
55
57
|
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"svelte-djot": "^0.1.1"
|
|
60
|
+
},
|
|
56
61
|
"svelte": "./dist/index.js",
|
|
57
62
|
"types": "./dist/index.d.ts",
|
|
58
63
|
"type": "module"
|