tecitheme 0.10.6 → 0.10.7
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/components/Button.svelte.d.ts +2 -2
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
/** @typedef {typeof __propDef.slots} ButtonSlots */
|
|
4
4
|
export default class Button extends SvelteComponent<{
|
|
5
5
|
text?: any;
|
|
6
|
+
fullwidth?: any;
|
|
6
7
|
action?: any;
|
|
7
8
|
url?: any;
|
|
8
9
|
color?: any;
|
|
9
10
|
justify?: any;
|
|
10
|
-
fullwidth?: any;
|
|
11
11
|
}, {
|
|
12
12
|
click: MouseEvent;
|
|
13
13
|
} & {
|
|
@@ -21,11 +21,11 @@ import { SvelteComponent } from "svelte";
|
|
|
21
21
|
declare const __propDef: {
|
|
22
22
|
props: {
|
|
23
23
|
text?: any;
|
|
24
|
+
fullwidth?: any;
|
|
24
25
|
action?: any;
|
|
25
26
|
url?: any;
|
|
26
27
|
color?: any;
|
|
27
28
|
justify?: any;
|
|
28
|
-
fullwidth?: any;
|
|
29
29
|
};
|
|
30
30
|
events: {
|
|
31
31
|
click: MouseEvent;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from "./utils.js";
|
|
|
2
2
|
export { default as getContent } from "./get-content.js";
|
|
3
3
|
export { default as Accordion } from "./components/Accordion.svelte";
|
|
4
4
|
export { default as Banner } from "./components/Banner.svelte";
|
|
5
|
+
export { default as Blocks } from "./layouts/blocks.svelte";
|
|
5
6
|
export { default as Button } from "./components/Button.svelte";
|
|
6
7
|
export { default as Card } from "./components/Card.svelte";
|
|
7
8
|
export { default as CognitoForm } from "./components/CognitoForm.svelte";
|
|
@@ -22,6 +23,7 @@ export { default as MediaFeature } from "./components/MediaFeature.svelte";
|
|
|
22
23
|
export { default as Modal } from "./components/Modal.svelte";
|
|
23
24
|
export { default as NewsGrid } from "./components/NewsGrid.svelte";
|
|
24
25
|
export { default as PageNav } from "./components/PageNav.svelte";
|
|
26
|
+
export { default as PartnersList } from "./components/PartnersList.svelte";
|
|
25
27
|
export { default as PricingTable } from "./components/PricingTable.svelte";
|
|
26
28
|
export { default as SidebarContent } from "./components/SidebarContent.svelte";
|
|
27
29
|
export { default as Stats } from "./components/Stats.svelte";
|
package/dist/index.js
CHANGED
|
@@ -2,6 +2,7 @@ export * from './utils.js';
|
|
|
2
2
|
export { default as getContent } from './get-content.js';
|
|
3
3
|
export { default as Accordion } from './components/Accordion.svelte';
|
|
4
4
|
export { default as Banner } from './components/Banner.svelte';
|
|
5
|
+
export { default as Blocks } from './layouts/blocks.svelte';
|
|
5
6
|
export { default as Button } from './components/Button.svelte';
|
|
6
7
|
export { default as Card } from './components/Card.svelte';
|
|
7
8
|
export { default as CognitoForm } from './components/CognitoForm.svelte';
|
|
@@ -22,6 +23,7 @@ export { default as MediaFeature } from './components/MediaFeature.svelte';
|
|
|
22
23
|
export { default as Modal } from './components/Modal.svelte';
|
|
23
24
|
export { default as NewsGrid } from './components/NewsGrid.svelte';
|
|
24
25
|
export { default as PageNav } from './components/PageNav.svelte';
|
|
26
|
+
export { default as PartnersList} from './components/PartnersList.svelte';
|
|
25
27
|
export { default as PricingTable } from './components/PricingTable.svelte';
|
|
26
28
|
export { default as SidebarContent } from './components/SidebarContent.svelte';
|
|
27
29
|
export { default as Stats } from './components/Stats.svelte';
|