diff --git a/.storybook/helpers/params.ts b/.storybook/helpers/params.ts index 9c6338d..f89221d 100644 --- a/.storybook/helpers/params.ts +++ b/.storybook/helpers/params.ts @@ -72,8 +72,6 @@ export function renderArgsV2(props: any) { } } - console.log(args) - // args[prop.name].control = parseControl(prop, false) // args[prop.name].type.name = parseControl(prop, false).type // if (Array.isArray(prop.type)) { diff --git a/package.json b/package.json index ee278b6..3b83310 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kodama-ui", - "version": "0.33.5", + "version": "0.35.3", "description": "Kodama UI is a Vue 3 component library that provides a set of components & funcionality to build your application.", "homepage": "https://50l3r.github.io/kodama-ui", "keywords": [ diff --git a/src/components/data-display/k-table/k-table.props.ts b/src/components/data-display/k-table/k-table.props.ts index 92df4c3..e65669c 100644 --- a/src/components/data-display/k-table/k-table.props.ts +++ b/src/components/data-display/k-table/k-table.props.ts @@ -75,5 +75,9 @@ export default { show404: { type: Boolean, default: true + }, + disabledRows: { + type: Array as () => any[], + default: () => [] } } diff --git a/src/components/data-display/k-table/k-table.vue b/src/components/data-display/k-table/k-table.vue index 93e6beb..e2c1587 100644 --- a/src/components/data-display/k-table/k-table.vue +++ b/src/components/data-display/k-table/k-table.vue @@ -225,17 +225,12 @@