feikuai-element-plus-virtual-component 1.0.20 → 1.0.22
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/cascader-panel/index.css +1 -1
- package/dist/cascader-panel/index.vue.d.ts +20 -1
- package/dist/cascader-panel/menu.vue.d.ts +20 -1
- package/dist/cascader-panel/node-content.d.ts +21 -0
- package/dist/cascader-panel/node.vue.d.ts +20 -1
- package/dist/index2.js +482 -513
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
.cascader-virtual-list[data-v-
|
|
1
|
+
.cascader-virtual-list[data-v-b6bdbbab]{height:100%;min-height:204px;max-height:204px}.cascader-virtual-list[data-v-b6bdbbab] .vue-recycle-scroller__item-view{width:100%}
|
|
@@ -1725,7 +1725,26 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1725
1725
|
readonly textColor: string;
|
|
1726
1726
|
}>;
|
|
1727
1727
|
};
|
|
1728
|
-
NodeContent:
|
|
1728
|
+
NodeContent: import('vue').DefineComponent<{}, {
|
|
1729
|
+
ns: {
|
|
1730
|
+
namespace: import('vue').ComputedRef<string>;
|
|
1731
|
+
b: (blockSuffix?: string) => string;
|
|
1732
|
+
e: (element?: string | undefined) => string;
|
|
1733
|
+
m: (modifier?: string | undefined) => string;
|
|
1734
|
+
be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
|
|
1735
|
+
em: (element?: string | undefined, modifier?: string | undefined) => string;
|
|
1736
|
+
bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
|
|
1737
|
+
bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
|
|
1738
|
+
is: {
|
|
1739
|
+
(name: string, state: boolean | undefined): string;
|
|
1740
|
+
(name: string): string;
|
|
1741
|
+
};
|
|
1742
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
1743
|
+
cssVarName: (name: string) => string;
|
|
1744
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
1745
|
+
cssVarBlockName: (name: string) => string;
|
|
1746
|
+
};
|
|
1747
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1729
1748
|
ElIcon: import('element-plus/es/utils/index.mjs').SFCWithInstall<import('vue').DefineComponent<{
|
|
1730
1749
|
readonly size: {
|
|
1731
1750
|
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
@@ -1424,7 +1424,26 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1424
1424
|
readonly textColor: string;
|
|
1425
1425
|
}>;
|
|
1426
1426
|
};
|
|
1427
|
-
NodeContent:
|
|
1427
|
+
NodeContent: import('vue').DefineComponent<{}, {
|
|
1428
|
+
ns: {
|
|
1429
|
+
namespace: import('vue').ComputedRef<string>;
|
|
1430
|
+
b: (blockSuffix?: string) => string;
|
|
1431
|
+
e: (element?: string | undefined) => string;
|
|
1432
|
+
m: (modifier?: string | undefined) => string;
|
|
1433
|
+
be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
|
|
1434
|
+
em: (element?: string | undefined, modifier?: string | undefined) => string;
|
|
1435
|
+
bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
|
|
1436
|
+
bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
|
|
1437
|
+
is: {
|
|
1438
|
+
(name: string, state: boolean | undefined): string;
|
|
1439
|
+
(name: string): string;
|
|
1440
|
+
};
|
|
1441
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
1442
|
+
cssVarName: (name: string) => string;
|
|
1443
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
1444
|
+
cssVarBlockName: (name: string) => string;
|
|
1445
|
+
};
|
|
1446
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
1428
1447
|
ElIcon: import('element-plus/es/utils/index.mjs').SFCWithInstall<import('vue').DefineComponent<{
|
|
1429
1448
|
readonly size: {
|
|
1430
1449
|
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
|
+
ns: {
|
|
3
|
+
namespace: import('vue').ComputedRef<string>;
|
|
4
|
+
b: (blockSuffix?: string) => string;
|
|
5
|
+
e: (element?: string | undefined) => string;
|
|
6
|
+
m: (modifier?: string | undefined) => string;
|
|
7
|
+
be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
|
|
8
|
+
em: (element?: string | undefined, modifier?: string | undefined) => string;
|
|
9
|
+
bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
|
|
10
|
+
bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
|
|
11
|
+
is: {
|
|
12
|
+
(name: string, state: boolean | undefined): string;
|
|
13
|
+
(name: string): string;
|
|
14
|
+
};
|
|
15
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
16
|
+
cssVarName: (name: string) => string;
|
|
17
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
18
|
+
cssVarBlockName: (name: string) => string;
|
|
19
|
+
};
|
|
20
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
21
|
+
export default _default;
|
|
@@ -756,7 +756,26 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
756
756
|
readonly textColor: string;
|
|
757
757
|
}>;
|
|
758
758
|
};
|
|
759
|
-
NodeContent:
|
|
759
|
+
NodeContent: import('vue').DefineComponent<{}, {
|
|
760
|
+
ns: {
|
|
761
|
+
namespace: import('vue').ComputedRef<string>;
|
|
762
|
+
b: (blockSuffix?: string) => string;
|
|
763
|
+
e: (element?: string | undefined) => string;
|
|
764
|
+
m: (modifier?: string | undefined) => string;
|
|
765
|
+
be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
|
|
766
|
+
em: (element?: string | undefined, modifier?: string | undefined) => string;
|
|
767
|
+
bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
|
|
768
|
+
bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
|
|
769
|
+
is: {
|
|
770
|
+
(name: string, state: boolean | undefined): string;
|
|
771
|
+
(name: string): string;
|
|
772
|
+
};
|
|
773
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
774
|
+
cssVarName: (name: string) => string;
|
|
775
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
776
|
+
cssVarBlockName: (name: string) => string;
|
|
777
|
+
};
|
|
778
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
760
779
|
ElIcon: import('element-plus/es/utils/index.mjs').SFCWithInstall<import('vue').DefineComponent<{
|
|
761
780
|
readonly size: {
|
|
762
781
|
readonly type: import('vue').PropType<import('element-plus/es/utils/index.mjs').EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
|