@ironsource/shared-ui 2.1.3-rc.3 → 2.1.3-rc.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/components/skeleton/v4/index.d.ts +2 -2
- package/index.d.ts +4 -4
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import Skeleton from './SkeletonV4.vue';
|
|
1
2
|
declare const SkeletonTypes: () => ({
|
|
2
3
|
new (...args: any[]): {
|
|
3
4
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -90,5 +91,4 @@ declare const SkeletonTypes: () => ({
|
|
|
90
91
|
default?(_: {}): any;
|
|
91
92
|
};
|
|
92
93
|
}))[];
|
|
93
|
-
export {
|
|
94
|
-
export { SkeletonTypes };
|
|
94
|
+
export { SkeletonTypes, Skeleton };
|
package/index.d.ts
CHANGED
|
@@ -1657,7 +1657,7 @@ declare const _default: {
|
|
|
1657
1657
|
destroy: () => boolean;
|
|
1658
1658
|
};
|
|
1659
1659
|
snackbarTypes: readonly ["success", "info", "error"];
|
|
1660
|
-
|
|
1660
|
+
SkeletonTypes: () => ({
|
|
1661
1661
|
new (...args: any[]): {
|
|
1662
1662
|
$: import("vue").ComponentInternalInstance;
|
|
1663
1663
|
$data: {};
|
|
@@ -1748,8 +1748,8 @@ declare const _default: {
|
|
|
1748
1748
|
$slots: {
|
|
1749
1749
|
default?(_: {}): any;
|
|
1750
1750
|
};
|
|
1751
|
-
});
|
|
1752
|
-
|
|
1751
|
+
}))[];
|
|
1752
|
+
Skeleton: {
|
|
1753
1753
|
new (...args: any[]): {
|
|
1754
1754
|
$: import("vue").ComponentInternalInstance;
|
|
1755
1755
|
$data: {};
|
|
@@ -1840,7 +1840,7 @@ declare const _default: {
|
|
|
1840
1840
|
$slots: {
|
|
1841
1841
|
default?(_: {}): any;
|
|
1842
1842
|
};
|
|
1843
|
-
})
|
|
1843
|
+
});
|
|
1844
1844
|
EmptyState: {
|
|
1845
1845
|
new (...args: any[]): {
|
|
1846
1846
|
$: import("vue").ComponentInternalInstance;
|