@animaapp/anima-sdk 0.6.28 → 0.6.30
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 +8 -8
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -519,7 +519,7 @@ export declare type L2CParams = {
|
|
|
519
519
|
input: L2CParamsInput;
|
|
520
520
|
conventions: L2CParamsConvention;
|
|
521
521
|
assetsStorage: L2CParamsAssetsStorage;
|
|
522
|
-
viewports?: Array<
|
|
522
|
+
viewports?: Array<'desktop' | 'tablet' | 'mobile'>;
|
|
523
523
|
};
|
|
524
524
|
|
|
525
525
|
/**
|
|
@@ -531,9 +531,9 @@ export declare type L2CParamsAssetsStorage = L2CParamsBundledAssetsStorage;
|
|
|
531
531
|
* @deprecated This type is deprecated and will be removed soon.
|
|
532
532
|
*/
|
|
533
533
|
export declare type L2CParamsBundledAssetsStorage = {
|
|
534
|
-
type:
|
|
534
|
+
type: 'bundled';
|
|
535
535
|
referencePath?: string;
|
|
536
|
-
importMode?:
|
|
536
|
+
importMode?: 'watermarked' | 'original';
|
|
537
537
|
};
|
|
538
538
|
|
|
539
539
|
/**
|
|
@@ -544,13 +544,13 @@ export declare type L2CParamsConvention = L2CParamsHtmlConvention | L2CParamsRea
|
|
|
544
544
|
/**
|
|
545
545
|
* @deprecated This type is deprecated and will be removed soon.
|
|
546
546
|
*/
|
|
547
|
-
export declare type L2CParamsFramework =
|
|
547
|
+
export declare type L2CParamsFramework = 'html' | 'react';
|
|
548
548
|
|
|
549
549
|
/**
|
|
550
550
|
* @deprecated This type is deprecated and will be removed soon.
|
|
551
551
|
*/
|
|
552
552
|
export declare type L2CParamsHtmlConvention = {
|
|
553
|
-
framework:
|
|
553
|
+
framework: 'html';
|
|
554
554
|
styling: L2CParamsStyling;
|
|
555
555
|
};
|
|
556
556
|
|
|
@@ -562,13 +562,13 @@ export declare type L2CParamsInput = L2CParamsUrlInput;
|
|
|
562
562
|
/**
|
|
563
563
|
* @deprecated This type is deprecated and will be removed soon.
|
|
564
564
|
*/
|
|
565
|
-
export declare type L2CParamsLanguage =
|
|
565
|
+
export declare type L2CParamsLanguage = 'typescript';
|
|
566
566
|
|
|
567
567
|
/**
|
|
568
568
|
* @deprecated This type is deprecated and will be removed soon.
|
|
569
569
|
*/
|
|
570
570
|
export declare type L2CParamsReactConvention = {
|
|
571
|
-
framework:
|
|
571
|
+
framework: 'react';
|
|
572
572
|
language: L2CParamsLanguage;
|
|
573
573
|
styling: L2CParamsStyling;
|
|
574
574
|
enableGeneratePackageLock?: boolean;
|
|
@@ -577,7 +577,7 @@ export declare type L2CParamsReactConvention = {
|
|
|
577
577
|
/**
|
|
578
578
|
* @deprecated This type is deprecated and will be removed soon.
|
|
579
579
|
*/
|
|
580
|
-
export declare type L2CParamsStyling =
|
|
580
|
+
export declare type L2CParamsStyling = 'tailwind' | 'inline-styles';
|
|
581
581
|
|
|
582
582
|
/**
|
|
583
583
|
* @deprecated This type is deprecated and will be removed soon.
|