@zeedhi/teknisa-components-vuetify 1.56.0 → 1.57.0
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/LICENSE +21 -21
- package/README.md +7 -7
- package/dist/tek-components-vuetify.esm.js +1682 -209
- package/dist/tek-components-vuetify.umd.js +1693 -220
- package/jest.config.js +31 -31
- package/package.json +2 -2
- package/rollup.scss.config.js +13 -13
- package/tsconfig.eslint.json +8 -8
- package/types/components/crud/TekCrudButton.d.ts +1 -1
- package/types/components/tek-grid/TekGrid.d.ts +1 -1
- package/types/components/tek-iterable-carousel/TekIterableCarousel.d.ts +1 -1
- package/types/components/tek-tree-grid/TekTreeGrid.d.ts +1 -1
- package/types/components/tek-user-info/TekUserInfoList.d.ts +1 -1
- package/dist/tek-style.css +0 -5812
- package/types/components/tek-ag-grid/RenderedIcons.d.ts +0 -6
- package/types/components/tek-ag-grid/TekAgGrid.d.ts +0 -30
- package/types/components/tek-ag-grid/tek-ag-grid-components/index.d.ts +0 -6
- package/types/components/tek-ag-grid/tek-ag-grid-components/tek-ag-grid-cell-editor/TekAgGridCellEditor.d.ts +0 -15
- package/types/components/tek-ag-grid/tek-ag-grid-components/tek-ag-grid-cell-editor/interfaces.d.ts +0 -14
- package/types/components/tek-ag-grid/tek-ag-grid-components/tek-ag-grid-cell-renderer/TekAgGridCellRenderer.d.ts +0 -11
- package/types/components/tek-ag-grid/tek-ag-grid-components/tek-ag-grid-cell-renderer/interfaces.d.ts +0 -13
- package/types/components/tek-ag-grid/tek-ag-grid-components/tek-ag-grid-date/TekAgGridDate.d.ts +0 -21
- package/types/components/tek-ag-grid/tek-ag-grid-components/tek-ag-grid-date/interfaces.d.ts +0 -14
- package/types/components/tek-ag-grid/tek-ag-grid-components/tek-ag-grid-select-editor/TekAgGridSelectEditor.d.ts +0 -13
- package/types/components/tek-ag-grid/tek-ag-grid-components/tek-ag-grid-select-editor/interfaces.d.ts +0 -10
- package/types/components/tek-ag-grid/tek-ag-grid-components/tek-ag-grid-select-renderer/TekAgGridSelectRenderer.d.ts +0 -9
- package/types/components/tek-ag-grid/tek-ag-grid-components/tek-ag-grid-select-renderer/interfaces.d.ts +0 -8
- package/types/components/tek-grid/RenderedIcons.d.ts +0 -6
- package/types/components/tek-grid/tek-grid-components/index.d.ts +0 -6
- package/types/components/tek-grid/tek-grid-components/tek-grid-cell-editor/TekGridCellEditor.d.ts +0 -15
- package/types/components/tek-grid/tek-grid-components/tek-grid-cell-editor/interfaces.d.ts +0 -14
- package/types/components/tek-grid/tek-grid-components/tek-grid-cell-renderer/TekGridCellRenderer.d.ts +0 -11
- package/types/components/tek-grid/tek-grid-components/tek-grid-cell-renderer/interfaces.d.ts +0 -13
- package/types/components/tek-grid/tek-grid-components/tek-grid-date/TekGridDate.d.ts +0 -21
- package/types/components/tek-grid/tek-grid-components/tek-grid-date/interfaces.d.ts +0 -14
- package/types/components/tek-grid/tek-grid-components/tek-grid-select-editor/TekGridSelectEditor.d.ts +0 -13
- package/types/components/tek-grid/tek-grid-components/tek-grid-select-editor/interfaces.d.ts +0 -10
- package/types/components/tek-grid/tek-grid-components/tek-grid-select-renderer/TekGridSelectRenderer.d.ts +0 -9
- package/types/components/tek-grid/tek-grid-components/tek-grid-select-renderer/interfaces.d.ts +0 -8
- package/types/components/tek-login/TekLogin.d.ts +0 -15
package/jest.config.js
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
moduleFileExtensions: [
|
|
3
|
-
'js',
|
|
4
|
-
'jsx',
|
|
5
|
-
'json',
|
|
6
|
-
'vue',
|
|
7
|
-
'ts',
|
|
8
|
-
'tsx'
|
|
9
|
-
],
|
|
10
|
-
transform: {
|
|
11
|
-
'^.+\\.vue$': 'vue-jest',
|
|
12
|
-
'^.+\\.tsx?$': 'ts-jest'
|
|
13
|
-
},
|
|
14
|
-
transformIgnorePatterns: [
|
|
15
|
-
'/node_modules/'
|
|
16
|
-
],
|
|
17
|
-
moduleNameMapper: {
|
|
18
|
-
'^@/(.*)$': '<rootDir>/src/$1'
|
|
19
|
-
},
|
|
20
|
-
snapshotSerializers: [
|
|
21
|
-
'jest-serializer-vue'
|
|
22
|
-
],
|
|
23
|
-
testMatch: [
|
|
24
|
-
'**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)'
|
|
25
|
-
],
|
|
26
|
-
testURL: 'http://localhost/',
|
|
27
|
-
watchPlugins: [
|
|
28
|
-
'jest-watch-typeahead/filename',
|
|
29
|
-
'jest-watch-typeahead/testname'
|
|
30
|
-
]
|
|
31
|
-
}
|
|
1
|
+
module.exports = {
|
|
2
|
+
moduleFileExtensions: [
|
|
3
|
+
'js',
|
|
4
|
+
'jsx',
|
|
5
|
+
'json',
|
|
6
|
+
'vue',
|
|
7
|
+
'ts',
|
|
8
|
+
'tsx'
|
|
9
|
+
],
|
|
10
|
+
transform: {
|
|
11
|
+
'^.+\\.vue$': 'vue-jest',
|
|
12
|
+
'^.+\\.tsx?$': 'ts-jest'
|
|
13
|
+
},
|
|
14
|
+
transformIgnorePatterns: [
|
|
15
|
+
'/node_modules/'
|
|
16
|
+
],
|
|
17
|
+
moduleNameMapper: {
|
|
18
|
+
'^@/(.*)$': '<rootDir>/src/$1'
|
|
19
|
+
},
|
|
20
|
+
snapshotSerializers: [
|
|
21
|
+
'jest-serializer-vue'
|
|
22
|
+
],
|
|
23
|
+
testMatch: [
|
|
24
|
+
'**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)'
|
|
25
|
+
],
|
|
26
|
+
testURL: 'http://localhost/',
|
|
27
|
+
watchPlugins: [
|
|
28
|
+
'jest-watch-typeahead/filename',
|
|
29
|
+
'jest-watch-typeahead/testname'
|
|
30
|
+
]
|
|
31
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeedhi/teknisa-components-vuetify",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.57.0",
|
|
4
4
|
"description": "Teknisa Components based on Vuetify",
|
|
5
5
|
"author": "Zeedhi <zeedhi@teknisa.com>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"vue": "^2.6.12",
|
|
42
42
|
"vuetify": "^2.4.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "a72c1959586960398d728e691a4dd80982296361"
|
|
45
45
|
}
|
package/rollup.scss.config.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import scss from 'rollup-plugin-scss';
|
|
2
|
-
|
|
3
|
-
export default {
|
|
4
|
-
input: './src/styles/index.scss',
|
|
5
|
-
output: {
|
|
6
|
-
format: 'esm',
|
|
7
|
-
},
|
|
8
|
-
plugins: [
|
|
9
|
-
scss({
|
|
10
|
-
output: 'dist/tek-style.css',
|
|
11
|
-
}),
|
|
12
|
-
],
|
|
13
|
-
};
|
|
1
|
+
import scss from 'rollup-plugin-scss';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
input: './src/styles/index.scss',
|
|
5
|
+
output: {
|
|
6
|
+
format: 'esm',
|
|
7
|
+
},
|
|
8
|
+
plugins: [
|
|
9
|
+
scss({
|
|
10
|
+
output: 'dist/tek-style.css',
|
|
11
|
+
}),
|
|
12
|
+
],
|
|
13
|
+
};
|
package/tsconfig.eslint.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
// extend your base config so you don't have to redefine your compilerOptions
|
|
3
|
-
"extends": "./tsconfig.json",
|
|
4
|
-
"include": [
|
|
5
|
-
"./src/**/*.ts",
|
|
6
|
-
"./tests/**/*.ts",
|
|
7
|
-
],
|
|
8
|
-
"exclude": ["node_modules"]
|
|
1
|
+
{
|
|
2
|
+
// extend your base config so you don't have to redefine your compilerOptions
|
|
3
|
+
"extends": "./tsconfig.json",
|
|
4
|
+
"include": [
|
|
5
|
+
"./src/**/*.ts",
|
|
6
|
+
"./tests/**/*.ts",
|
|
7
|
+
],
|
|
8
|
+
"exclude": ["node_modules"]
|
|
9
9
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { CrudButton } from '@zeedhi/teknisa-components-common';
|
|
2
|
-
declare const ZdButton: import("vue").VueConstructor<import("vue-property-decorator").Vue
|
|
2
|
+
declare const ZdButton: import("vue").VueConstructor<import("vue-property-decorator").Vue>;
|
|
3
3
|
/**
|
|
4
4
|
* TekCrudButton component
|
|
5
5
|
*/
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { TekGrid as TekGridClass, TekGridColumn, ITekGridExportConfig, IDynamicFilterItem, ITekGridGroupHeader } from '@zeedhi/teknisa-components-common';
|
|
3
3
|
import { IComponentRender, Select } from '@zeedhi/common';
|
|
4
4
|
import { IDictionary, IEventParam } from '@zeedhi/core';
|
|
5
|
-
declare const ZdGridEditable: import("vue").VueConstructor<import("vue-property-decorator").Vue
|
|
5
|
+
declare const ZdGridEditable: import("vue").VueConstructor<import("vue-property-decorator").Vue>;
|
|
6
6
|
/**
|
|
7
7
|
* TekGrid component
|
|
8
8
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IterableCarousel, IIterableComponentRender } from '@zeedhi/teknisa-components-common';
|
|
2
|
-
declare const ZdCarousel: import("vue").VueConstructor<import("vue-property-decorator").Vue
|
|
2
|
+
declare const ZdCarousel: import("vue").VueConstructor<import("vue-property-decorator").Vue>;
|
|
3
3
|
/**
|
|
4
4
|
* TekIterableCarousel component
|
|
5
5
|
*/
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { TekTreeGrid as TekTreeGridClass, TekGridColumn, ITekGridExportConfig, IDynamicFilterItem } from '@zeedhi/teknisa-components-common';
|
|
3
3
|
import { IComponentRender, Select } from '@zeedhi/common';
|
|
4
4
|
import { IDictionary, IEventParam } from '@zeedhi/core';
|
|
5
|
-
declare const ZdTreeGridEditable: import("vue").VueConstructor<import("vue-property-decorator").Vue
|
|
5
|
+
declare const ZdTreeGridEditable: import("vue").VueConstructor<import("vue-property-decorator").Vue>;
|
|
6
6
|
/**
|
|
7
7
|
* TekGrid component
|
|
8
8
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TekUserInfoList as TekUserInfoListClass } from '@zeedhi/teknisa-components-common';
|
|
2
|
-
declare const ZdList: import("vue").VueConstructor<import("vue-property-decorator").Vue
|
|
2
|
+
declare const ZdList: import("vue").VueConstructor<import("vue-property-decorator").Vue>;
|
|
3
3
|
export default class TekUserInfoList extends ZdList {
|
|
4
4
|
instance: TekUserInfoListClass;
|
|
5
5
|
instanceType: typeof TekUserInfoListClass;
|