@weni/unnnic-system 3.28.2-alpha.1 → 3.28.2-alpha.2
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 +20 -0
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +190 -181
- package/dist/unnnic.umd.js +2 -2
- package/package.json +1 -1
- package/src/components/Disclaimer/Disclaimer.vue +10 -8
- package/src/components/IconLoading/IconLoading.vue +6 -1
- package/src/stories/Disclaimer.stories.js +16 -0
- package/src/stories/IconLoading.stories.js +6 -0
package/dist/index.d.ts
CHANGED
|
@@ -9176,6 +9176,7 @@ description: string;
|
|
|
9176
9176
|
iconColor: SchemeColor_2;
|
|
9177
9177
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
9178
9178
|
$slots: {
|
|
9179
|
+
icon?(_: {}): any;
|
|
9179
9180
|
description?(_: {}): any;
|
|
9180
9181
|
};
|
|
9181
9182
|
});
|
|
@@ -9212,6 +9213,7 @@ description: string;
|
|
|
9212
9213
|
iconColor: SchemeColor_2;
|
|
9213
9214
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
9214
9215
|
$slots: {
|
|
9216
|
+
icon?(_: {}): any;
|
|
9215
9217
|
description?(_: {}): any;
|
|
9216
9218
|
};
|
|
9217
9219
|
});
|
|
@@ -10357,6 +10359,10 @@ size: {
|
|
|
10357
10359
|
type: StringConstructor;
|
|
10358
10360
|
default: string;
|
|
10359
10361
|
};
|
|
10362
|
+
strokeWidth: {
|
|
10363
|
+
type: NumberConstructor;
|
|
10364
|
+
default: number;
|
|
10365
|
+
};
|
|
10360
10366
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
10361
10367
|
scheme: {
|
|
10362
10368
|
type: StringConstructor;
|
|
@@ -10366,9 +10372,14 @@ size: {
|
|
|
10366
10372
|
type: StringConstructor;
|
|
10367
10373
|
default: string;
|
|
10368
10374
|
};
|
|
10375
|
+
strokeWidth: {
|
|
10376
|
+
type: NumberConstructor;
|
|
10377
|
+
default: number;
|
|
10378
|
+
};
|
|
10369
10379
|
}>> & Readonly<{}>, {
|
|
10370
10380
|
size: string;
|
|
10371
10381
|
scheme: string;
|
|
10382
|
+
strokeWidth: number;
|
|
10372
10383
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
10373
10384
|
|
|
10374
10385
|
export declare const unnnicIconLoading: DefineComponent<ExtractPropTypes< {
|
|
@@ -10380,6 +10391,10 @@ size: {
|
|
|
10380
10391
|
type: StringConstructor;
|
|
10381
10392
|
default: string;
|
|
10382
10393
|
};
|
|
10394
|
+
strokeWidth: {
|
|
10395
|
+
type: NumberConstructor;
|
|
10396
|
+
default: number;
|
|
10397
|
+
};
|
|
10383
10398
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
10384
10399
|
scheme: {
|
|
10385
10400
|
type: StringConstructor;
|
|
@@ -10389,9 +10404,14 @@ size: {
|
|
|
10389
10404
|
type: StringConstructor;
|
|
10390
10405
|
default: string;
|
|
10391
10406
|
};
|
|
10407
|
+
strokeWidth: {
|
|
10408
|
+
type: NumberConstructor;
|
|
10409
|
+
default: number;
|
|
10410
|
+
};
|
|
10392
10411
|
}>> & Readonly<{}>, {
|
|
10393
10412
|
size: string;
|
|
10394
10413
|
scheme: string;
|
|
10414
|
+
strokeWidth: number;
|
|
10395
10415
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
10396
10416
|
|
|
10397
10417
|
export declare const UnnnicIconSvg: DefineComponent<IconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|