@weni/unnnic-system 3.2.5-alpha.0 → 3.2.5
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/CHANGELOG.md +31 -0
- package/dist/components/Button/Button.vue.d.ts.map +1 -1
- package/dist/components/Button/types.d.ts +1 -1
- package/dist/components/Button/types.d.ts.map +1 -1
- package/dist/components/Chip/Chip.vue.d.ts +8 -0
- package/dist/components/Chip/Chip.vue.d.ts.map +1 -0
- package/dist/components/Chip/types.d.ts +9 -0
- package/dist/components/Chip/types.d.ts.map +1 -0
- package/dist/components/DatePicker/DatePicker.vue.d.ts +2 -2
- package/dist/components/Disclaimer/types.d.ts +1 -1
- package/dist/components/Disclaimer/types.d.ts.map +1 -1
- package/dist/components/DropArea/DropArea.vue.d.ts +0 -2
- package/dist/components/DropArea/DropArea.vue.d.ts.map +1 -1
- package/dist/components/FormElement/FormElement.vue.d.ts +1 -1
- package/dist/components/Icon/types.d.ts +2 -1
- package/dist/components/Icon/types.d.ts.map +1 -1
- package/dist/components/Icon.vue.d.ts +2 -1
- package/dist/components/Icon.vue.d.ts.map +1 -1
- package/dist/components/InputDatePicker/InputDatePicker.vue.d.ts +3 -3
- package/dist/components/ModalDialog/ModalDialog.vue.d.ts +1 -1
- package/dist/components/ModalDialog/ModalDialog.vue.d.ts.map +1 -1
- package/dist/components/ModalUpload/ModalUpload.vue.d.ts +0 -6
- package/dist/components/UploadArea/UploadArea.vue.d.ts +0 -6
- package/dist/components/index.d.ts +24 -54
- package/dist/components/index.d.ts.map +1 -1
- package/dist/{es-e4a6e990.mjs → es-a07e7553.mjs} +1 -1
- package/dist/{index-de083a7a.mjs → index-93aafec9.mjs} +7413 -7525
- package/dist/{pt-br-229e5ab3.mjs → pt-br-a81c613f.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +116 -118
- package/dist/unnnic.umd.js +41 -42
- package/package.json +2 -2
- package/src/assets/scss/scheme-colors.scss +132 -0
- package/src/assets/scss/unnnic.scss +2 -0
- package/src/components/Button/Button.vue +109 -58
- package/src/components/Button/types.ts +1 -0
- package/src/components/Card/Card.vue +12 -21
- package/src/components/Chip/Chip.vue +124 -0
- package/src/components/Chip/__tests__/Chip.spec.js +164 -0
- package/src/components/Chip/types.ts +8 -0
- package/src/components/Disclaimer/types.ts +1 -1
- package/src/components/DropArea/DropArea.vue +2 -26
- package/src/components/Icon/types.ts +4 -88
- package/src/components/Icon.vue +3 -91
- package/src/components/ModalDialog/ModalDialog.vue +29 -27
- package/src/components/ModalDialog/__tests__/__snapshots__/ModalDialog.spec.js.snap +1 -1
- package/src/components/TableNext/__test__/__snapshots__/TableNext.spec.js.snap +2 -2
- package/src/components/TableNext/__test__/__snapshots__/TablePagination.spec.js.snap +2 -2
- package/src/components/index.ts +7 -12
- package/src/stories/Button.stories.js +10 -1
- package/src/stories/Chip.stories.js +173 -0
- package/src/types/scheme-colors.d.ts +102 -0
- package/dist/components/TemplatePreview/TemplatePreview.vue.d.ts +0 -9
- package/dist/components/TemplatePreview/TemplatePreview.vue.d.ts.map +0 -1
- package/dist/components/TemplatePreview/TemplatePreviewModal.vue.d.ts +0 -15
- package/dist/components/TemplatePreview/TemplatePreviewModal.vue.d.ts.map +0 -1
- package/src/assets/img/previews/doc-preview.png +0 -0
- package/src/assets/img/previews/image-preview.png +0 -0
- package/src/assets/img/previews/video-preview.png +0 -0
- package/src/components/TemplatePreview/TemplatePreview.vue +0 -249
- package/src/components/TemplatePreview/TemplatePreviewModal.vue +0 -51
- package/src/components/TemplatePreview/types.d.ts +0 -16
- package/src/stories/TemplatePreview.stories.js +0 -94
- package/src/stories/TemplatePreviewModal.stories.js +0 -110
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,37 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
# 3.2.5 (2025-09-19)
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Chip Component**: New simplified compact element component for selection and filtering:
|
|
13
|
+
- **Core Features**: Support for text, count badges, and automatic icon handling
|
|
14
|
+
- **Selection States**: Built-in `isSelected` state with automatic styling (teal background when selected)
|
|
15
|
+
- **Type System**: Support for `single` and `multiple` types with context-appropriate icons
|
|
16
|
+
- **Smart Icons**: Automatic add/close icons for multiple type based on selection state
|
|
17
|
+
- **Smart Border Logic**: Automatic border application for unselected state only
|
|
18
|
+
- **Click Interaction**: Built-in click event handling with optional `isClickable` styling (cursor pointer)
|
|
19
|
+
- **TypeScript Support**: Full TypeScript integration with streamlined type definitions (`ChipProps`)
|
|
20
|
+
- **Storybook Documentation**: Complete documentation with interactive examples
|
|
21
|
+
- **Comprehensive Testing**: 15 focused unit tests covering all functionality and interaction patterns
|
|
22
|
+
|
|
23
|
+
- **Global Scheme Colors System**: Centralized color scheme management to eliminate code duplication:
|
|
24
|
+
- **New File**: `src/assets/scss/scheme-colors.scss` with all color scheme definitions
|
|
25
|
+
- **New Tokens**: Added `bg-base`, `bg-soft`, and complete `teal-*` color scale (teal-50 to teal-950) support
|
|
26
|
+
- **Utility Functions**: Added `generate-scheme-classes()` mixin and `get-scheme-color()` function for easier component development
|
|
27
|
+
- **Legacy Compatibility**: Automatic mapping of legacy color names to new color system
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- **Color System Refactoring**: Migrated Chip, Icon, and Card components to use global `$unnnic-scheme-colors` instead of local definitions
|
|
32
|
+
- **TypeScript Types Centralization**: Moved `SchemeColor` type to global `src/types/scheme-colors.d.ts` for better maintainability
|
|
33
|
+
- **Import Optimization**: Updated component imports to use centralized type definitions from `@/types/scheme-colors`
|
|
34
|
+
|
|
35
|
+
### Removed
|
|
36
|
+
|
|
37
|
+
- **Code Duplication**: Eliminated ~136 lines of duplicate `$scheme-colors` definitions across components
|
|
38
|
+
|
|
8
39
|
# 3.2.4 (2025-09-15)
|
|
9
40
|
|
|
10
41
|
### Added
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Button.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Button.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Button/Button.vue"],"names":[],"mappings":"AAsEA;AAqaA,OAAO,KAAK,EAAE,WAAW,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAOnE,YAAY,EAAE,WAAW,EAAE,UAAU,EAAE,UAAU,EAAE,CAAC;AA8GpD,iBAAS,cAAc;WAoJT,OAAO,IAA6B;;yBAXpB,GAAG;;;;EAgBhC;AAcD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;2FAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export type ButtonSize = 'small' | 'large' | 'extra-large';
|
|
2
|
-
export type ButtonType = 'primary' | 'secondary' | 'tertiary' | 'warning' | 'attention';
|
|
2
|
+
export type ButtonType = 'primary' | 'secondary' | 'tertiary' | 'alternative' | 'warning' | 'attention';
|
|
3
3
|
export interface ButtonProps {
|
|
4
4
|
size?: ButtonSize;
|
|
5
5
|
text?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Button/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,OAAO,GAAG,aAAa,CAAC;AAE3D,MAAM,MAAM,UAAU,GAClB,SAAS,GACT,WAAW,GACX,UAAU,GACV,SAAS,GACT,WAAW,CAAC;AAEhB,MAAM,WAAW,WAAW;IAC1B,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Button/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,UAAU,GAAG,OAAO,GAAG,OAAO,GAAG,aAAa,CAAC;AAE3D,MAAM,MAAM,UAAU,GAClB,SAAS,GACT,WAAW,GACX,UAAU,GACV,aAAa,GACb,SAAS,GACT,WAAW,CAAC;AAEhB,MAAM,WAAW,WAAW;IAC1B,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ChipProps } from './types';
|
|
2
|
+
declare const _default: import('vue').DefineComponent<ChipProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3
|
+
click: (event: Event) => any;
|
|
4
|
+
}, string, import('vue').PublicProps, Readonly<ChipProps> & Readonly<{
|
|
5
|
+
onClick?: ((event: Event) => any) | undefined;
|
|
6
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
|
|
7
|
+
export default _default;
|
|
8
|
+
//# sourceMappingURL=Chip.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Chip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Chip/Chip.vue"],"names":[],"mappings":"AAwBA;AA+HA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;;;;;;AAsHzC,wBAQG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Chip/types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,SAAS;IACxB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,QAAQ,GAAG,UAAU,CAAC;IAC5B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;CAClC"}
|
|
@@ -75,8 +75,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
75
75
|
}, {
|
|
76
76
|
openMonths(): string[];
|
|
77
77
|
value(): {
|
|
78
|
-
startDate:
|
|
79
|
-
endDate:
|
|
78
|
+
startDate: any;
|
|
79
|
+
endDate: any;
|
|
80
80
|
};
|
|
81
81
|
i18nLocale(): string;
|
|
82
82
|
monthsLocale(): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Disclaimer/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Disclaimer/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAEzD,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,WAAW,CAAC;CACzB"}
|
|
@@ -5,7 +5,6 @@ type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
|
5
5
|
});
|
|
6
6
|
declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
7
7
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
8
|
-
disabled: boolean;
|
|
9
8
|
subtitle: string;
|
|
10
9
|
acceptMultiple: boolean;
|
|
11
10
|
supportedFormats: string;
|
|
@@ -14,7 +13,6 @@ declare const __VLS_component: import('vue').DefineComponent<{}, {
|
|
|
14
13
|
maximumUploads: number;
|
|
15
14
|
maxFileSize?: number | undefined;
|
|
16
15
|
$props: {
|
|
17
|
-
readonly disabled?: boolean | undefined;
|
|
18
16
|
readonly subtitle?: string | undefined;
|
|
19
17
|
readonly acceptMultiple?: boolean | undefined;
|
|
20
18
|
readonly supportedFormats?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DropArea.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DropArea/DropArea.vue"],"names":[],"mappings":"AAgEA;
|
|
1
|
+
{"version":3,"file":"DropArea.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DropArea/DropArea.vue"],"names":[],"mappings":"AAgEA;wBAisBqB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;;6BAEtE,CAAC,EAAE,CAAC;;;AAbjC;;;;;;;;;;;;;;;;;;;;;gBAUG"}
|
|
@@ -52,7 +52,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
52
52
|
clickable: boolean;
|
|
53
53
|
size: import('../Icon/types').IconSize;
|
|
54
54
|
lineHeight: import('../Icon/types').LineHeight | null;
|
|
55
|
-
scheme: import('
|
|
55
|
+
scheme: import('../../types/scheme-colors').SchemeColor;
|
|
56
56
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
57
57
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
58
58
|
export default _default;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
import { SchemeColor } from '../../types/scheme-colors';
|
|
2
|
+
export type { SchemeColor };
|
|
2
3
|
export type IconSize = 'nano' | 'xs' | 'sm' | 'ant' | 'md' | 'lg' | 'xl' | 'avatar-lg' | 'avatar-md' | 'avatar-sm' | 'avatar-xs' | 'avatar-nano';
|
|
3
4
|
export type LineHeight = 'sm' | 'md' | 'lg';
|
|
4
5
|
export interface IconProps {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Icon/types.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/Icon/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAGzD,YAAY,EAAE,WAAW,EAAE,CAAC;AAE5B,MAAM,MAAM,QAAQ,GAChB,MAAM,GACN,IAAI,GACJ,IAAI,GACJ,KAAK,GACL,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,WAAW,GACX,WAAW,GACX,WAAW,GACX,WAAW,GACX,aAAa,CAAC;AAElB,MAAM,MAAM,UAAU,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,CAAC;AAE5C,MAAM,WAAW,SAAS;IACxB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,UAAU,CAAC,EAAE,UAAU,GAAG,IAAI,CAAC;IAC/B,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { IconProps, IconSize, LineHeight
|
|
1
|
+
import { IconProps, IconSize, LineHeight } from './Icon/types';
|
|
2
|
+
import { SchemeColor } from '../types/scheme-colors';
|
|
2
3
|
export type { IconProps, IconSize, LineHeight, SchemeColor };
|
|
3
4
|
declare const _default: import('vue').DefineComponent<IconProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4
5
|
click: (event: Event) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../src/components/Icon.vue"],"names":[],"mappings":"AAqCA;
|
|
1
|
+
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../src/components/Icon.vue"],"names":[],"mappings":"AAqCA;AAmNA,OAAO,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AACpE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAMzD,YAAY,EAAE,SAAS,EAAE,QAAQ,EAAE,UAAU,EAAE,WAAW,EAAE,CAAC;;;;;;;;;;;;;;;;;;AAkJ7D,wBAQG"}
|
|
@@ -72,7 +72,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
72
72
|
showCalendarFilter: boolean;
|
|
73
73
|
overwrittenValue: string;
|
|
74
74
|
}, {
|
|
75
|
-
filterText():
|
|
75
|
+
filterText(): any;
|
|
76
76
|
initialStartDate(): string | null;
|
|
77
77
|
initialEndDate(): string | null;
|
|
78
78
|
}, {
|
|
@@ -606,8 +606,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
606
606
|
}, {
|
|
607
607
|
openMonths(): string[];
|
|
608
608
|
value(): {
|
|
609
|
-
startDate:
|
|
610
|
-
endDate:
|
|
609
|
+
startDate: any;
|
|
610
|
+
endDate: any;
|
|
611
611
|
};
|
|
612
612
|
i18nLocale(): string;
|
|
613
613
|
monthsLocale(): any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModalDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ModalDialog/ModalDialog.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ModalDialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/ModalDialog/ModalDialog.vue"],"names":[],"mappings":"AAkGA;"}
|
|
@@ -237,7 +237,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
237
237
|
UnnnicDropArea: {
|
|
238
238
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
239
239
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
240
|
-
disabled: boolean;
|
|
241
240
|
subtitle: string;
|
|
242
241
|
acceptMultiple: boolean;
|
|
243
242
|
supportedFormats: string;
|
|
@@ -246,7 +245,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
246
245
|
maximumUploads: number;
|
|
247
246
|
maxFileSize?: number | undefined;
|
|
248
247
|
$props: {
|
|
249
|
-
readonly disabled?: boolean | undefined;
|
|
250
248
|
readonly subtitle?: string | undefined;
|
|
251
249
|
readonly acceptMultiple?: boolean | undefined;
|
|
252
250
|
readonly supportedFormats?: string | undefined;
|
|
@@ -267,7 +265,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
267
265
|
Defaults: {};
|
|
268
266
|
}, Readonly<{}> & Readonly<{}>, {
|
|
269
267
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
270
|
-
disabled: boolean;
|
|
271
268
|
subtitle: string;
|
|
272
269
|
acceptMultiple: boolean;
|
|
273
270
|
supportedFormats: string;
|
|
@@ -276,7 +273,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
276
273
|
maximumUploads: number;
|
|
277
274
|
maxFileSize?: number | undefined;
|
|
278
275
|
$props: {
|
|
279
|
-
readonly disabled?: boolean | undefined;
|
|
280
276
|
readonly subtitle?: string | undefined;
|
|
281
277
|
readonly acceptMultiple?: boolean | undefined;
|
|
282
278
|
readonly supportedFormats?: string | undefined;
|
|
@@ -291,7 +287,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
291
287
|
__isSuspense?: never;
|
|
292
288
|
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
293
289
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
294
|
-
disabled: boolean;
|
|
295
290
|
subtitle: string;
|
|
296
291
|
acceptMultiple: boolean;
|
|
297
292
|
supportedFormats: string;
|
|
@@ -300,7 +295,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
300
295
|
maximumUploads: number;
|
|
301
296
|
maxFileSize?: number | undefined;
|
|
302
297
|
$props: {
|
|
303
|
-
readonly disabled?: boolean | undefined;
|
|
304
298
|
readonly subtitle?: string | undefined;
|
|
305
299
|
readonly acceptMultiple?: boolean | undefined;
|
|
306
300
|
readonly supportedFormats?: string | undefined;
|
|
@@ -114,7 +114,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
114
114
|
UnnnicDropArea: {
|
|
115
115
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
116
116
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
117
|
-
disabled: boolean;
|
|
118
117
|
subtitle: string;
|
|
119
118
|
acceptMultiple: boolean;
|
|
120
119
|
supportedFormats: string;
|
|
@@ -123,7 +122,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
123
122
|
maximumUploads: number;
|
|
124
123
|
maxFileSize?: number | undefined;
|
|
125
124
|
$props: {
|
|
126
|
-
readonly disabled?: boolean | undefined;
|
|
127
125
|
readonly subtitle?: string | undefined;
|
|
128
126
|
readonly acceptMultiple?: boolean | undefined;
|
|
129
127
|
readonly supportedFormats?: string | undefined;
|
|
@@ -144,7 +142,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
144
142
|
Defaults: {};
|
|
145
143
|
}, Readonly<{}> & Readonly<{}>, {
|
|
146
144
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
147
|
-
disabled: boolean;
|
|
148
145
|
subtitle: string;
|
|
149
146
|
acceptMultiple: boolean;
|
|
150
147
|
supportedFormats: string;
|
|
@@ -153,7 +150,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
153
150
|
maximumUploads: number;
|
|
154
151
|
maxFileSize?: number | undefined;
|
|
155
152
|
$props: {
|
|
156
|
-
readonly disabled?: boolean | undefined;
|
|
157
153
|
readonly subtitle?: string | undefined;
|
|
158
154
|
readonly acceptMultiple?: boolean | undefined;
|
|
159
155
|
readonly supportedFormats?: string | undefined;
|
|
@@ -168,7 +164,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
168
164
|
__isSuspense?: never;
|
|
169
165
|
} & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
170
166
|
$emit: (event: "update:currentFiles" | "fileChange" | "unsupportedFormat" | "exceededTheMaximumFileSizeLimit", ...args: any[]) => void;
|
|
171
|
-
disabled: boolean;
|
|
172
167
|
subtitle: string;
|
|
173
168
|
acceptMultiple: boolean;
|
|
174
169
|
supportedFormats: string;
|
|
@@ -177,7 +172,6 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
177
172
|
maximumUploads: number;
|
|
178
173
|
maxFileSize?: number | undefined;
|
|
179
174
|
$props: {
|
|
180
|
-
readonly disabled?: boolean | undefined;
|
|
181
175
|
readonly subtitle?: string | undefined;
|
|
182
176
|
readonly acceptMultiple?: boolean | undefined;
|
|
183
177
|
readonly supportedFormats?: string | undefined;
|