@nexxtmove/ui 0.1.56 → 0.1.57
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 +10 -0
- package/dist/index.js +979 -948
- package/dist/nuxt.js +29 -27
- package/package.json +1 -1
- package/src/components/Skeleton/Skeleton.vue +7 -0
- package/src/components/SkeletonPropertyCard/SkeletonPropertyCard.vue +35 -0
- package/src/components.json +2 -0
- package/src/index.ts +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -1096,6 +1096,16 @@ declare interface NexxtPropertyCardProps {
|
|
|
1096
1096
|
|
|
1097
1097
|
export declare const NexxtPropertyListing: DefineComponent<Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1098
1098
|
|
|
1099
|
+
export declare const NexxtSkeleton: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1100
|
+
|
|
1101
|
+
export declare const NexxtSkeletonPropertyCard: DefineComponent<NexxtSkeletonPropertyCardProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtSkeletonPropertyCardProps> & Readonly<{}>, {
|
|
1102
|
+
ariaLabel: string;
|
|
1103
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1104
|
+
|
|
1105
|
+
declare interface NexxtSkeletonPropertyCardProps {
|
|
1106
|
+
ariaLabel?: string;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1099
1109
|
export declare const NexxtSocialIcons: DefineComponent<NexxtSocialIconsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NexxtSocialIconsProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLUListElement>;
|
|
1100
1110
|
|
|
1101
1111
|
declare interface NexxtSocialIconsProps {
|