@malloydata/render 0.0.163-dev240807210504 → 0.0.163-dev240808155642
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/component/render-link.d.ts +2 -0
- package/dist/component/util.d.ts +1 -1
- package/dist/module/index.mjs +12250 -12008
- package/dist/module/index.umd.js +246 -246
- package/dist/register/register.mjs +4014 -3965
- package/dist/register/register.umd.js +198 -198
- package/dist/stories/link-legacy.stories.d.ts +31 -0
- package/dist/stories/link.stories.d.ts +6 -8
- package/dist/webcomponent/malloy-render.mjs +4014 -3965
- package/dist/webcomponent/malloy-render.umd.js +198 -198
- package/package.json +2 -2
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
title: string;
|
|
3
|
+
render: ({ source, view }: {
|
|
4
|
+
source: any;
|
|
5
|
+
view: any;
|
|
6
|
+
}, { globals: { connection } }: {
|
|
7
|
+
globals: {
|
|
8
|
+
connection: any;
|
|
9
|
+
};
|
|
10
|
+
}) => HTMLDivElement;
|
|
11
|
+
argTypes: {};
|
|
12
|
+
};
|
|
13
|
+
export default _default;
|
|
14
|
+
export declare const Link: {
|
|
15
|
+
args: {
|
|
16
|
+
source: string;
|
|
17
|
+
view: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export declare const LinkFromTemplate: {
|
|
21
|
+
args: {
|
|
22
|
+
source: string;
|
|
23
|
+
view: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
export declare const LinkFromKeyColumn: {
|
|
27
|
+
args: {
|
|
28
|
+
source: string;
|
|
29
|
+
view: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
@@ -1,13 +1,11 @@
|
|
|
1
|
+
import './themes.css';
|
|
2
|
+
import '../component/render-webcomponent';
|
|
1
3
|
declare const _default: {
|
|
2
4
|
title: string;
|
|
3
|
-
render: ({
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
globals: {
|
|
8
|
-
connection: any;
|
|
9
|
-
};
|
|
10
|
-
}) => HTMLDivElement;
|
|
5
|
+
render: ({ classes }: {
|
|
6
|
+
classes: any;
|
|
7
|
+
}, context: any) => HTMLDivElement;
|
|
8
|
+
loaders: import("@storybook/types").LoaderFunction<import("@storybook/html/dist/types-43cfeb83").H, import("@storybook/types").Args>[];
|
|
11
9
|
argTypes: {};
|
|
12
10
|
};
|
|
13
11
|
export default _default;
|