Comparing version 0.0.8 to 0.0.9
@@ -174,3 +174,7 @@ # Docs | ||
- getter-on-edit: Usually, when a getter is used, you will still see the source data when you edit the field. This is to make sure that precision in numbers doesnt get lost. However, sometimes this is not desired e.g. when using date inputs that take only strings of the form yyyy-mm-dd. This prop can be set, to make sure, the getter value is used on edit as well | ||
- class: This class is placed on every td of that column and can be used to style the label and input that is shown in the cell | ||
- options: This is used to render a select field instead of an input field. It takes an array of objects with label and value properties | ||
All other attributes are passed to the input field that is rendered in the cell. This is useful for e.g. adding a placeholder to the input field, steps or other input specific attributes. It can also be used to add data to the input field that is used in the getter or setter function. | ||
You may have missed the filter functionality. This is not by chance. Filters are not realized through some prop magic but have to be invoked manually. This is because filters are mostly too different to allow for a generic approach. | ||
@@ -177,0 +181,0 @@ |
{ | ||
"name": "fuzzy-ui", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"main": "src/index.ts", | ||
@@ -15,29 +15,29 @@ "scripts": { | ||
"dependencies": { | ||
"vue": "^3.2.37" | ||
"vue": "^3.2.39" | ||
}, | ||
"sideEffects": false, | ||
"devDependencies": { | ||
"@iconify-json/carbon": "^1.1.6", | ||
"@iconify-json/heroicons-solid": "^1.1.2", | ||
"@types/node": "^18.0.6", | ||
"@typescript-eslint/eslint-plugin": "^5.30.6", | ||
"@vitejs/plugin-vue": "^3.0.1", | ||
"@vue/eslint-config-typescript": "^11.0.0", | ||
"eslint": "^8.20.0", | ||
"@iconify-json/carbon": "^1.1.8", | ||
"@iconify-json/heroicons-solid": "^1.1.5", | ||
"@types/node": "^18.7.18", | ||
"@typescript-eslint/eslint-plugin": "^5.37.0", | ||
"@vitejs/plugin-vue": "^3.1.0", | ||
"@vue/eslint-config-typescript": "^11.0.1", | ||
"eslint": "^8.23.1", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"eslint-plugin-typescript-sort-keys": "^2.1.0", | ||
"eslint-plugin-vue": "^9.2.0", | ||
"eslint-plugin-vue": "^9.5.1", | ||
"postcss": "^8.4.16", | ||
"postcss-prefix-selector": "^1.16.0", | ||
"prettier": "^2.7.1", | ||
"typescript": "^4.7.4", | ||
"unplugin-icons": "^0.14.7", | ||
"unplugin-vue-components": "^0.21.1", | ||
"vite": "^3.0.2", | ||
"vite-plugin-dts": "^1.3.1", | ||
"vitepress": "^1.0.0-alpha.4", | ||
"vue-tsc": "^0.38.8", | ||
"postcss":"^8.4.14", | ||
"postcss-prefix-selector":"^1.16.0" | ||
"typescript": "^4.8.3", | ||
"unplugin-icons": "^0.14.10", | ||
"unplugin-vue-components": "^0.22.7", | ||
"vite": "^3.1.2", | ||
"vite-plugin-dts": "^1.5.0", | ||
"vitepress": "^1.0.0-alpha.15", | ||
"vue-tsc": "^0.40.13" | ||
}, | ||
"license": "MIT" | ||
} |
@@ -10,2 +10,3 @@ import { ComputedRef, InjectionKey, Ref, Slots, WritableComputedRef } from 'vue' | ||
checkbox?: boolean | ||
class?: string | Array<any> | object | ||
editable?: boolean | ((row: Row) => boolean) | ||
@@ -12,0 +13,0 @@ filterable?: boolean |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
103082
262
Updatedvue@^3.2.39