@albank/vue-ui-kit 2.5.0-preview.232 → 2.5.0-preview.236
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/aeb-ui-kit.cjs +1 -1
- package/dist/aeb-ui-kit.css +1 -1
- package/dist/aeb-ui-kit.js +478 -496
- package/dist/aeb-ui-kit.umd.cjs +1 -1
- package/dist/components/FileAttach/FileAttach.vue.d.ts +17 -61
- package/package.json +1 -1
|
@@ -1,65 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
maxFilesLength: {
|
|
15
|
-
type: NumberConstructor;
|
|
16
|
-
default: number;
|
|
17
|
-
};
|
|
18
|
-
showPassportInput: {
|
|
19
|
-
type: BooleanConstructor;
|
|
20
|
-
default: boolean;
|
|
21
|
-
};
|
|
22
|
-
showDocumentList: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
fileTypeMessage: {
|
|
27
|
-
type: StringConstructor;
|
|
28
|
-
default: string;
|
|
29
|
-
};
|
|
30
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1
|
+
export type ButtonVariantType = 'primary' | 'secondary' | 'outline' | 'tertiary';
|
|
2
|
+
export interface FileAttachProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
layoutMod?: string;
|
|
5
|
+
documentList?: string;
|
|
6
|
+
maxFilesLength?: number;
|
|
7
|
+
showPassportInput?: boolean;
|
|
8
|
+
showDocumentList?: boolean;
|
|
9
|
+
buttonText?: string;
|
|
10
|
+
fileTypeMessage?: string;
|
|
11
|
+
buttonVariant?: ButtonVariantType;
|
|
12
|
+
}
|
|
13
|
+
declare const _default: import('vue').DefineComponent<FileAttachProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
31
14
|
changeListEvent: (...args: any[]) => void;
|
|
32
15
|
maxFilesLengthError: (...args: any[]) => void;
|
|
33
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
34
|
-
title: {
|
|
35
|
-
type: StringConstructor;
|
|
36
|
-
default: string;
|
|
37
|
-
};
|
|
38
|
-
layoutMod: {
|
|
39
|
-
type: StringConstructor;
|
|
40
|
-
default: string;
|
|
41
|
-
};
|
|
42
|
-
documentList: {
|
|
43
|
-
type: StringConstructor;
|
|
44
|
-
default: string;
|
|
45
|
-
};
|
|
46
|
-
maxFilesLength: {
|
|
47
|
-
type: NumberConstructor;
|
|
48
|
-
default: number;
|
|
49
|
-
};
|
|
50
|
-
showPassportInput: {
|
|
51
|
-
type: BooleanConstructor;
|
|
52
|
-
default: boolean;
|
|
53
|
-
};
|
|
54
|
-
showDocumentList: {
|
|
55
|
-
type: BooleanConstructor;
|
|
56
|
-
default: boolean;
|
|
57
|
-
};
|
|
58
|
-
fileTypeMessage: {
|
|
59
|
-
type: StringConstructor;
|
|
60
|
-
default: string;
|
|
61
|
-
};
|
|
62
|
-
}>> & Readonly<{
|
|
16
|
+
}, string, import('vue').PublicProps, Readonly<FileAttachProps> & Readonly<{
|
|
63
17
|
onChangeListEvent?: ((...args: any[]) => any) | undefined;
|
|
64
18
|
onMaxFilesLengthError?: ((...args: any[]) => any) | undefined;
|
|
65
19
|
}>, {
|
|
@@ -69,13 +23,15 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
69
23
|
maxFilesLength: number;
|
|
70
24
|
showPassportInput: boolean;
|
|
71
25
|
showDocumentList: boolean;
|
|
26
|
+
buttonText: string;
|
|
72
27
|
fileTypeMessage: string;
|
|
28
|
+
buttonVariant: ButtonVariantType;
|
|
73
29
|
}, {}, {}, {
|
|
74
30
|
aebDragAndDrop: {
|
|
75
31
|
beforeMount: (el: any, binding: any) => void;
|
|
76
32
|
beforeUnmounted: (el: any, binding: any) => void;
|
|
77
33
|
};
|
|
78
|
-
}, string, import('vue').ComponentProvideOptions,
|
|
34
|
+
}, string, import('vue').ComponentProvideOptions, false, {
|
|
79
35
|
fileInputRef: HTMLInputElement;
|
|
80
36
|
}, HTMLDivElement>;
|
|
81
37
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{ "name": "@albank/vue-ui-kit", "version": "2.5.0-preview.
|
|
1
|
+
{ "name": "@albank/vue-ui-kit", "version": "2.5.0-preview.236", "type": "module", "types": "./dist/main.d.ts", "files": [ "dist" ], "main": "./dist/aeb-ui-kit.umd.cjs", "module": "./dist/aeb-ui-kit.js", "exports": { ".": { "types": "./dist/main.d.ts", "import": "./dist/aeb-ui-kit.js", "require": "./dist/aeb-ui-kit.umd.cjs" }, "./style.css": { "import": "./dist/style.css", "require": "./dist/style.css" } }, "scripts": { "serve": "vite", "build": "vue-tsc --noEmit && vite build", "test": "vitest --coverage", "lint": "npm run lint:scripts && npm run lint:styles", "lint:fix": "npm run lint:scripts:fix && npm run lint:styles:fix", "lint:scripts": "eslint src/ *.{js,jsx,ts,tsx,vue}", "lint:scripts:fix": "eslint src/ *.{js,jsx,ts,tsx,vue} --fix", "lint:styles": "stylelint ./src/**/*.scss", "lint:styles:fix": "stylelint ./src/styles/styles.scss ./src/styles/tokens.scss ./src/styles/variables.scss --fix", "prettier": "prettier src/**/*.{js,ts,vue,mjs,cjs,json}'", "prettier:fix": "prettier src/**/*.{js,ts,vue,mjs,cjs,json}' --write", "build-storybook": "vite build && storybook build", "storybook": "storybook dev -p 6006", "push": "npm publish", "push:beta": "npm publish --tag beta" }, "devDependencies": { "@storybook/addon-actions": "^8.6.4", "@storybook/addon-essentials": "^8.6.4", "@storybook/addon-interactions": "^8.6.4", "@storybook/addon-links": "^8.6.4", "@storybook/manager-api": "^8.6.4", "@storybook/preview-api": "^8.6.4", "@storybook/test": "^8.6.4", "@storybook/theming": "^8.6.4", "@storybook/vue3": "^8.6.4", "@storybook/vue3-vite": "^8.6.4", "@stylistic/eslint-plugin": "^4.2.0", "@types/node": "^22.13.9", "@typescript-eslint/eslint-plugin": "^8.26.0", "@typescript-eslint/parser": "^8.26.0", "@vitejs/plugin-vue": "^5.2.1", "@vitest/coverage-v8": "^3.0.7", "@vue/eslint-config-typescript": "^14.4.0", "@vue/test-utils": "^2.4.6", "code-tag": "^1.2.0", "date-fns": "^4.1.0", "eslint": "^9.21.0", "eslint-config-prettier": "^10.0.2", "eslint-plugin-vue": "^9.33.0", "happy-dom": "^17.2.2", "prettier": "^3.5.3", "prettier-plugin-organize-imports": "^4.1.0", "react": "^19.0.0", "react-dom": "^19.0.0", "sass": "^1.85.1", "storybook": "^8.6.4", "storybook-dark-mode": "^4.0.2", "stylelint": "^16.15.0", "stylelint-config-html": "^1.1.0", "stylelint-config-property-sort-order-smacss": "^10.0.0", "stylelint-config-recommended-scss": "^14.1.0", "typescript": "^5.8.2", "typescript-eslint": "^8.26.0", "vite": "^6.2.0", "vite-plugin-dts": "^4.5.3", "vitest": "^3.0.7", "vitest-sonar-reporter": "^2.0.0", "vue": "^3.5.13", "vue-eslint-parser": "^9.4.3", "vue-imask": "^6.6.3", "vue-tsc": "^2.2.8" } }
|