@weni/unnnic-system 3.33.1 → 3.34.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/dist/index.d.ts +86 -18
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +367 -347
- package/dist/unnnic.umd.js +10 -10
- package/package.json +1 -1
- package/src/components/Table/Table.vue +6 -1
- package/src/components/ui/table/Table.vue +1 -0
- package/src/components/ui/table/TableCell.vue +26 -4
- package/src/components/ui/table/TableHead.vue +26 -4
- package/src/components/ui/table/TableRow.vue +4 -0
- package/src/stories/Table.stories.js +7 -7
package/dist/index.d.ts
CHANGED
|
@@ -11987,7 +11987,11 @@ class?: HTMLAttributes["class"];
|
|
|
11987
11987
|
export declare const UnnnicTableCell: {
|
|
11988
11988
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
11989
11989
|
class?: HTMLAttributes["class"];
|
|
11990
|
-
|
|
11990
|
+
ellipsis?: boolean;
|
|
11991
|
+
width?: string;
|
|
11992
|
+
}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
11993
|
+
ellipsis: boolean;
|
|
11994
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableCellElement, ComponentProvideOptions, {
|
|
11991
11995
|
P: {};
|
|
11992
11996
|
B: {};
|
|
11993
11997
|
D: {};
|
|
@@ -11996,13 +12000,21 @@ export declare const UnnnicTableCell: {
|
|
|
11996
12000
|
Defaults: {};
|
|
11997
12001
|
}, Readonly<{
|
|
11998
12002
|
class?: HTMLAttributes["class"];
|
|
11999
|
-
|
|
12003
|
+
ellipsis?: boolean;
|
|
12004
|
+
width?: string;
|
|
12005
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {
|
|
12006
|
+
ellipsis: boolean;
|
|
12007
|
+
}>;
|
|
12000
12008
|
__isFragment?: never;
|
|
12001
12009
|
__isTeleport?: never;
|
|
12002
12010
|
__isSuspense?: never;
|
|
12003
12011
|
} & ComponentOptionsBase<Readonly<{
|
|
12004
12012
|
class?: HTMLAttributes["class"];
|
|
12005
|
-
|
|
12013
|
+
ellipsis?: boolean;
|
|
12014
|
+
width?: string;
|
|
12015
|
+
}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
12016
|
+
ellipsis: boolean;
|
|
12017
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
12006
12018
|
$slots: {
|
|
12007
12019
|
default?(_: {}): any;
|
|
12008
12020
|
};
|
|
@@ -12011,7 +12023,11 @@ class?: HTMLAttributes["class"];
|
|
|
12011
12023
|
export declare const unnnicTableCell: {
|
|
12012
12024
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
12013
12025
|
class?: HTMLAttributes["class"];
|
|
12014
|
-
|
|
12026
|
+
ellipsis?: boolean;
|
|
12027
|
+
width?: string;
|
|
12028
|
+
}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
12029
|
+
ellipsis: boolean;
|
|
12030
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableCellElement, ComponentProvideOptions, {
|
|
12015
12031
|
P: {};
|
|
12016
12032
|
B: {};
|
|
12017
12033
|
D: {};
|
|
@@ -12020,13 +12036,21 @@ export declare const unnnicTableCell: {
|
|
|
12020
12036
|
Defaults: {};
|
|
12021
12037
|
}, Readonly<{
|
|
12022
12038
|
class?: HTMLAttributes["class"];
|
|
12023
|
-
|
|
12039
|
+
ellipsis?: boolean;
|
|
12040
|
+
width?: string;
|
|
12041
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {
|
|
12042
|
+
ellipsis: boolean;
|
|
12043
|
+
}>;
|
|
12024
12044
|
__isFragment?: never;
|
|
12025
12045
|
__isTeleport?: never;
|
|
12026
12046
|
__isSuspense?: never;
|
|
12027
12047
|
} & ComponentOptionsBase<Readonly<{
|
|
12028
12048
|
class?: HTMLAttributes["class"];
|
|
12029
|
-
|
|
12049
|
+
ellipsis?: boolean;
|
|
12050
|
+
width?: string;
|
|
12051
|
+
}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
12052
|
+
ellipsis: boolean;
|
|
12053
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
12030
12054
|
$slots: {
|
|
12031
12055
|
default?(_: {}): any;
|
|
12032
12056
|
};
|
|
@@ -12035,7 +12059,11 @@ class?: HTMLAttributes["class"];
|
|
|
12035
12059
|
export declare const UnnnicTableHead: {
|
|
12036
12060
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
12037
12061
|
class?: HTMLAttributes["class"];
|
|
12038
|
-
|
|
12062
|
+
ellipsis?: boolean;
|
|
12063
|
+
width?: string;
|
|
12064
|
+
}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
12065
|
+
ellipsis: boolean;
|
|
12066
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableCellElement, ComponentProvideOptions, {
|
|
12039
12067
|
P: {};
|
|
12040
12068
|
B: {};
|
|
12041
12069
|
D: {};
|
|
@@ -12044,13 +12072,21 @@ export declare const UnnnicTableHead: {
|
|
|
12044
12072
|
Defaults: {};
|
|
12045
12073
|
}, Readonly<{
|
|
12046
12074
|
class?: HTMLAttributes["class"];
|
|
12047
|
-
|
|
12075
|
+
ellipsis?: boolean;
|
|
12076
|
+
width?: string;
|
|
12077
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {
|
|
12078
|
+
ellipsis: boolean;
|
|
12079
|
+
}>;
|
|
12048
12080
|
__isFragment?: never;
|
|
12049
12081
|
__isTeleport?: never;
|
|
12050
12082
|
__isSuspense?: never;
|
|
12051
12083
|
} & ComponentOptionsBase<Readonly<{
|
|
12052
12084
|
class?: HTMLAttributes["class"];
|
|
12053
|
-
|
|
12085
|
+
ellipsis?: boolean;
|
|
12086
|
+
width?: string;
|
|
12087
|
+
}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
12088
|
+
ellipsis: boolean;
|
|
12089
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
12054
12090
|
$slots: {
|
|
12055
12091
|
default?(_: {}): any;
|
|
12056
12092
|
};
|
|
@@ -12059,7 +12095,11 @@ class?: HTMLAttributes["class"];
|
|
|
12059
12095
|
export declare const unnnicTableHead: {
|
|
12060
12096
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
12061
12097
|
class?: HTMLAttributes["class"];
|
|
12062
|
-
|
|
12098
|
+
ellipsis?: boolean;
|
|
12099
|
+
width?: string;
|
|
12100
|
+
}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
12101
|
+
ellipsis: boolean;
|
|
12102
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableCellElement, ComponentProvideOptions, {
|
|
12063
12103
|
P: {};
|
|
12064
12104
|
B: {};
|
|
12065
12105
|
D: {};
|
|
@@ -12068,13 +12108,21 @@ export declare const unnnicTableHead: {
|
|
|
12068
12108
|
Defaults: {};
|
|
12069
12109
|
}, Readonly<{
|
|
12070
12110
|
class?: HTMLAttributes["class"];
|
|
12071
|
-
|
|
12111
|
+
ellipsis?: boolean;
|
|
12112
|
+
width?: string;
|
|
12113
|
+
}> & Readonly<{}>, {}, {}, {}, {}, {
|
|
12114
|
+
ellipsis: boolean;
|
|
12115
|
+
}>;
|
|
12072
12116
|
__isFragment?: never;
|
|
12073
12117
|
__isTeleport?: never;
|
|
12074
12118
|
__isSuspense?: never;
|
|
12075
12119
|
} & ComponentOptionsBase<Readonly<{
|
|
12076
12120
|
class?: HTMLAttributes["class"];
|
|
12077
|
-
|
|
12121
|
+
ellipsis?: boolean;
|
|
12122
|
+
width?: string;
|
|
12123
|
+
}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
12124
|
+
ellipsis: boolean;
|
|
12125
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
12078
12126
|
$slots: {
|
|
12079
12127
|
default?(_: {}): any;
|
|
12080
12128
|
};
|
|
@@ -12146,7 +12194,11 @@ type: ArrayConstructor;
|
|
|
12146
12194
|
UiTableRow: {
|
|
12147
12195
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
12148
12196
|
class?: HTMLAttributes["class"];
|
|
12149
|
-
}> & Readonly<{
|
|
12197
|
+
}> & Readonly<{
|
|
12198
|
+
onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined;
|
|
12199
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
12200
|
+
click: (event: KeyboardEvent | MouseEvent) => any;
|
|
12201
|
+
}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableRowElement, ComponentProvideOptions, {
|
|
12150
12202
|
P: {};
|
|
12151
12203
|
B: {};
|
|
12152
12204
|
D: {};
|
|
@@ -12155,13 +12207,19 @@ M: {};
|
|
|
12155
12207
|
Defaults: {};
|
|
12156
12208
|
}, Readonly<{
|
|
12157
12209
|
class?: HTMLAttributes["class"];
|
|
12158
|
-
}> & Readonly<{
|
|
12210
|
+
}> & Readonly<{
|
|
12211
|
+
onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined;
|
|
12212
|
+
}>, {}, {}, {}, {}, {}>;
|
|
12159
12213
|
__isFragment?: never;
|
|
12160
12214
|
__isTeleport?: never;
|
|
12161
12215
|
__isSuspense?: never;
|
|
12162
12216
|
} & ComponentOptionsBase<Readonly<{
|
|
12163
12217
|
class?: HTMLAttributes["class"];
|
|
12164
|
-
}> & Readonly<{
|
|
12218
|
+
}> & Readonly<{
|
|
12219
|
+
onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined;
|
|
12220
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
12221
|
+
click: (event: KeyboardEvent | MouseEvent) => any;
|
|
12222
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
12165
12223
|
$slots: {
|
|
12166
12224
|
default?(_: {}): any;
|
|
12167
12225
|
};
|
|
@@ -12182,7 +12240,11 @@ type: ArrayConstructor;
|
|
|
12182
12240
|
UiTableRow: {
|
|
12183
12241
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
12184
12242
|
class?: HTMLAttributes["class"];
|
|
12185
|
-
}> & Readonly<{
|
|
12243
|
+
}> & Readonly<{
|
|
12244
|
+
onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined;
|
|
12245
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
12246
|
+
click: (event: KeyboardEvent | MouseEvent) => any;
|
|
12247
|
+
}, PublicProps, {}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLTableRowElement, ComponentProvideOptions, {
|
|
12186
12248
|
P: {};
|
|
12187
12249
|
B: {};
|
|
12188
12250
|
D: {};
|
|
@@ -12191,13 +12253,19 @@ M: {};
|
|
|
12191
12253
|
Defaults: {};
|
|
12192
12254
|
}, Readonly<{
|
|
12193
12255
|
class?: HTMLAttributes["class"];
|
|
12194
|
-
}> & Readonly<{
|
|
12256
|
+
}> & Readonly<{
|
|
12257
|
+
onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined;
|
|
12258
|
+
}>, {}, {}, {}, {}, {}>;
|
|
12195
12259
|
__isFragment?: never;
|
|
12196
12260
|
__isTeleport?: never;
|
|
12197
12261
|
__isSuspense?: never;
|
|
12198
12262
|
} & ComponentOptionsBase<Readonly<{
|
|
12199
12263
|
class?: HTMLAttributes["class"];
|
|
12200
|
-
}> & Readonly<{
|
|
12264
|
+
}> & Readonly<{
|
|
12265
|
+
onClick?: ((event: KeyboardEvent | MouseEvent) => any) | undefined;
|
|
12266
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
12267
|
+
click: (event: KeyboardEvent | MouseEvent) => any;
|
|
12268
|
+
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
12201
12269
|
$slots: {
|
|
12202
12270
|
default?(_: {}): any;
|
|
12203
12271
|
};
|