ouisys-component-library 2.0.4 → 2.0.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.
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import e from"classnames";import
|
|
1
|
+
import e from"classnames";import i from"react";import{s as t}from"./style-inject.es-1f59c1d0.js";var a="ZipFolderCreative-module_zip-folder-creative__Jtt2n",l="ZipFolderCreative-module_zip-folder-creative-content__RqMzS";t(".ZipFolderCreative-module_zip-folder-creative__Jtt2n{align-items:center;border:1px solid #e0e0e0;display:flex;flex-direction:column;gap:16px;justify-content:center}.ZipFolderCreative-module_zip-folder-creative-image__3UFL6{background-color:#f0f0f0;height:100%;height:200px;width:100%;width:200px}.ZipFolderCreative-module_zip-folder-creative-content__RqMzS{align-items:center;display:flex;flex-direction:column;gap:16px;justify-content:center}\n/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIlppcEZvbGRlckNyZWF0aXZlLm1vZHVsZS5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLHFEQUdFLGtCQUFtQixDQUduQix3QkFBeUIsQ0FMekIsWUFBYSxDQUNiLHFCQUFzQixDQUd0QixRQUFTLENBRFQsc0JBR0YsQ0FFQSwyREFLRSx3QkFBeUIsQ0FIekIsV0FBWSxDQUNaLFlBQWEsQ0FGYixVQUFXLENBR1gsV0FFRixDQUVBLDZEQUdFLGtCQUFtQixDQUZuQixZQUFhLENBQ2IscUJBQXNCLENBR3RCLFFBQVMsQ0FEVCxzQkFFRiIsImZpbGUiOiJaaXBGb2xkZXJDcmVhdGl2ZS5tb2R1bGUuc2NzcyIsInNvdXJjZXNDb250ZW50IjpbIi56aXAtZm9sZGVyLWNyZWF0aXZlIHtcbiAgZGlzcGxheTogZmxleDtcbiAgZmxleC1kaXJlY3Rpb246IGNvbHVtbjtcbiAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIGdhcDogMTZweDtcbiAgYm9yZGVyOiAxcHggc29saWQgI2UwZTBlMDtcbn1cblxuLnppcC1mb2xkZXItY3JlYXRpdmUtaW1hZ2Uge1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiAxMDAlO1xuICBoZWlnaHQ6IDIwMHB4O1xuICB3aWR0aDogMjAwcHg7XG4gIGJhY2tncm91bmQtY29sb3I6ICNmMGYwZjA7XG59XG5cbi56aXAtZm9sZGVyLWNyZWF0aXZlLWNvbnRlbnQge1xuICBkaXNwbGF5OiBmbGV4O1xuICBmbGV4LWRpcmVjdGlvbjogY29sdW1uO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjtcbiAgZ2FwOiAxNnB4O1xufSJdfQ== */");var c=function(t){t.headline;var c=t.name,r=void 0===c?"DWtJ-0LPq-evGA-OjbP-ZM9o":c,n=t.expiration,o=void 0===n?"5 minutes":n,d=t.className,m=void 0===d?"":d,p=t.dataQaId,b=void 0===p?"zip-folder-creative":p;return t.tracker,i.createElement("div",{className:e(a,"zip-folder-creative",m),"data-qa-id":b},i.createElement("div",{className:e(l,"zip-folder-creative-image")},i.createElement(i.Fragment,null)),i.createElement("div",{className:e(l,"zip-folder-creative-content")},i.createElement("p",null,"Name: ",r),i.createElement("p",null,"Expiration: ",o)))};export{c as ZipFolderCreative};
|
|
2
2
|
//# sourceMappingURL=ZipFolderCreative.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ZipFolderCreative.js","sources":["../src/Creative/ZipFolderCreative/ZipFolderCreative.tsx"],"sourcesContent":["import cn from 'classnames';\nimport React from 'react';\nimport styles from './ZipFolderCreative.module.scss';\nimport { interfaceFeatures
|
|
1
|
+
{"version":3,"file":"ZipFolderCreative.js","sources":["../src/Creative/ZipFolderCreative/ZipFolderCreative.tsx"],"sourcesContent":["import cn from 'classnames';\nimport React from 'react';\nimport styles from './ZipFolderCreative.module.scss';\nimport { interfaceFeatures } from './ZipFolderCreative.types';\n\nexport const ZipFolderCreative = ({\n headline = 'Your Download is ready',\n name = 'DWtJ-0LPq-evGA-OjbP-ZM9o',\n expiration = '5 minutes',\n className = '',\n dataQaId = 'zip-folder-creative',\n tracker\n}: interfaceFeatures) => (\n <div className={cn(styles.zipFolderCreative, 'zip-folder-creative', className)} data-qa-id={dataQaId}>\n <div className={cn(styles.zipFolderCreativeContent, 'zip-folder-creative-image')}>\n <></>\n </div>\n <div className={cn(styles.zipFolderCreativeContent, 'zip-folder-creative-content')}>\n <p>Name: {name}</p>\n <p>Expiration: {expiration}</p>\n </div>\n </div>\n);\n"],"names":["ZipFolderCreative","_a","headline","_c","name","_d","expiration","_e","className","_f","dataQaId","tracker","React","createElement","cn","styles","Fragment"],"mappings":"ivDAKO,IAAMA,EAAoB,SAACC,GAChCA,EAAAC,SAAA,IACAC,EAAAF,EAAAG,KAAAA,aAAO,2BAA0BD,EACjCE,EAAAJ,EAAAK,WAAAA,OAAU,IAAAD,EAAG,YAAWA,EACxBE,EAAcN,EAAAO,UAAdA,OAAS,IAAAD,EAAG,GAAEA,EACdE,EAAgCR,EAAAS,SAAhCA,OAAW,IAAAD,EAAA,sBAAqBA,EAET,OADhBR,EAAAU,QAEPC,EAAAC,cAAA,MAAA,CAAKL,UAAWM,EAAGC,EAA0B,sBAAuBP,gBAAwBE,GAC1FE,EAAKC,cAAA,MAAA,CAAAL,UAAWM,EAAGC,EAAiC,8BAClDH,EAAAC,cAAAD,EAAAI,SAAA,OAEFJ,EAAKC,cAAA,MAAA,CAAAL,UAAWM,EAAGC,EAAiC,gCAClDH,EAAAC,cAAA,IAAA,cAAUT,GACVQ,EAAAC,cAAA,IAAA,oBAAgBP,IAPG"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { interfaceFeatures } from './ZipFolderCreative.types.js';
|
|
2
2
|
|
|
3
|
-
declare const ZipFolderCreative: ({ headline,
|
|
3
|
+
declare const ZipFolderCreative: ({ headline, name, expiration, className, dataQaId, tracker }: interfaceFeatures) => JSX.Element;
|
|
4
4
|
|
|
5
5
|
export { ZipFolderCreative };
|