New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More →

@evidence-dev/components

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evidence-dev/components - npm Package Compare versions

Comparing version

to
1.6.0

# @evidence-dev/components
## 1.6.0
### Minor Changes
- 141dc5b: Improved DataTable component
## 1.5.0

@@ -4,0 +10,0 @@

{
"name": "@evidence-dev/components",
"version": "1.5.0",
"version": "1.6.0",
"type": "module",

@@ -100,2 +100,3 @@ "dependencies": {

"./ui/Sidebar.svelte": "./ui/Sidebar.svelte",
"./ui/SortIcon.svelte": "./ui/SortIcon.svelte",
"./ui/TelemetryOptOut/TelemetrySettingsPanel.svelte": "./ui/TelemetryOptOut/TelemetrySettingsPanel.svelte",

@@ -112,2 +113,3 @@ "./ui/VersionControl/VersionControlPanel.svelte": "./ui/VersionControl/VersionControlPanel.svelte",

"./viz/Chart.svelte": "./viz/Chart.svelte",
"./viz/Column.svelte": "./viz/Column.svelte",
"./viz/DataTable.svelte": "./viz/DataTable.svelte",

@@ -125,2 +127,3 @@ "./viz/ECharts.svelte": "./viz/ECharts.svelte",

"./viz/ScatterPlot.svelte": "./viz/ScatterPlot.svelte",
"./viz/SearchBar.svelte": "./viz/SearchBar.svelte",
"./viz/Value.svelte": "./viz/Value.svelte",

@@ -127,0 +130,0 @@ "./viz/context": "./viz/context.js"

@@ -8,2 +8,3 @@ /** @typedef {typeof __propDef.props} DownloadDataProps */

queryID: any;
display: any;
text?: string;

@@ -26,2 +27,3 @@ downloadData?: (data: any) => void;

queryID: any;
display: any;
text?: string;

@@ -28,0 +30,0 @@ downloadData?: (data: any) => void;

@@ -5,14 +5,18 @@ /** @typedef {typeof __propDef.props} DataTableProps */

export default class DataTable extends SvelteComponentTyped<{
data?: any;
queryID?: any;
data: any;
headerColor: any;
search?: boolean;
rows?: number;
marginTop?: string;
marginBottom?: string;
paddingBottom?: string;
rowNumbers?: string;
rowLines?: string;
hovering?: boolean;
rowNumbers?: boolean;
sortable?: boolean;
downloadable?: boolean;
rowShading?: boolean;
rowLines?: boolean;
headerFontColor?: string;
formatColumnTitles?: boolean;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}, {
default: {};
}> {
}

@@ -25,11 +29,13 @@ export type DataTableProps = typeof __propDef.props;

props: {
data?: any;
queryID?: any;
data: any;
headerColor: any;
search?: boolean;
rows?: number;
marginTop?: string;
marginBottom?: string;
paddingBottom?: string;
rowNumbers?: string;
rowLines?: string;
hovering?: boolean;
rowNumbers?: boolean;
sortable?: boolean;
downloadable?: boolean;
rowShading?: boolean;
rowLines?: boolean;
headerFontColor?: string;
formatColumnTitles?: boolean;
};

@@ -39,4 +45,6 @@ events: {

};
slots: {};
slots: {
default: {};
};
};
export {};

@@ -6,5 +6,5 @@ /** @typedef {typeof __propDef.props} ValueProps */

data?: any;
placeholder?: any;
row?: number;
column?: any;
placeholder?: any;
}, {

@@ -21,5 +21,5 @@ [evt: string]: CustomEvent<any>;

data?: any;
placeholder?: any;
row?: number;
column?: any;
placeholder?: any;
};

@@ -26,0 +26,0 @@ events: {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet