@elliemae/ds-swipe-card 3.60.0-next.6 → 3.60.0-next.60
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/cjs/DSSwipeCard.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/DSSwipeCard.tsx", "../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["import React from 'react';\nimport { describe, useOwnerProps } from '@elliemae/ds-props-helpers';\nimport { uid } from 'uid';\nimport { useSwipeCard } from './config/useSwipeCard.js';\nimport { DSSwipeCardName } from './constants/index.js';\nimport { type DSSwipeCardT, DSSwipeCardPropTypesSchema } from './react-desc-prop-types.js';\nimport { StyledScrollContainer, StyledSlide, StyledWrapper } from './styled.js';\n\nconst DSSwipeCard = <T extends DSSwipeCardT.CustomInterface>(props: DSSwipeCardT.Props<T>) => {\n const {\n propsWithDefault,\n xstyledProps,\n instanceUid,\n isFirstRender,\n onTouchStart,\n onTouchMove,\n onTouchEnd,\n globalAttributes,\n } = useSwipeCard(props);\n\n const { wrap, ...restGlobalAttributes } = globalAttributes;\n const { disabled, animationDuration, enableTouch, CardRender, slidesProps, enableAnimation } = propsWithDefault;\n const ownerPropsConfig = useOwnerProps(propsWithDefault);\n const [renderKey, setRenderKey] = React.useState(`render-key-${uid(5)}`);\n const handleAnimationStart = React.useCallback(() => {\n // we change the key to force RENDERING of slides, to avoid wrong calculations of width/height on virtualization\n requestAnimationFrame(() => setRenderKey(`render-key-${uid(5)}`));\n }, [setRenderKey]);\n return (\n <StyledWrapper {...ownerPropsConfig} {...xstyledProps} {...restGlobalAttributes}>\n <StyledScrollContainer\n $disabled={disabled}\n $enableTouch={enableTouch}\n onTouchStart={onTouchStart}\n onTouchMove={onTouchMove}\n onTouchEnd={onTouchEnd}\n {...ownerPropsConfig}\n >\n {slidesProps.map((slide, i) => (\n <StyledSlide\n // we can use the i as a key BECAUSE WE ALSO ADD THE ${instanceUid}\n // the eslint rule is to avoid repeated keys in the VDOM, but we are not repeating it thanks to UID\n // eslint-disable-next-line react/no-array-index-key\n key={`slide-${instanceUid}-${i}`}\n {...ownerPropsConfig}\n $animationDuration={animationDuration}\n $isFirstRender={isFirstRender}\n $enableAnimation={enableAnimation}\n $isActive={i === propsWithDefault.activeSlide}\n aria-hidden={i !== propsWithDefault.activeSlide}\n onAnimationStart={isFirstRender ? undefined : handleAnimationStart}\n >\n <CardRender\n key={`slide-${instanceUid}-${i
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADoDX;AApDZ,mBAAkB;AAClB,8BAAwC;AACxC,iBAAoB;AACpB,0BAA6B;AAC7B,uBAAgC;AAChC,mCAA8D;AAC9D,oBAAkE;AAElE,MAAM,cAAc,CAAyC,UAAiC;AAC5F,QAAM;AAAA,IACJ;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,QAAI,kCAAa,KAAK;AAEtB,QAAM,EAAE,MAAM,GAAG,qBAAqB,IAAI;AAC1C,QAAM,EAAE,UAAU,mBAAmB,aAAa,YAAY,aAAa,gBAAgB,IAAI;AAC/F,QAAM,uBAAmB,uCAAc,gBAAgB;AACvD,QAAM,CAAC,WAAW,YAAY,IAAI,aAAAA,QAAM,SAAS,kBAAc,gBAAI,CAAC,CAAC,EAAE;AACvE,QAAM,uBAAuB,aAAAA,QAAM,YAAY,MAAM;AAEnD,0BAAsB,MAAM,aAAa,kBAAc,gBAAI,CAAC,CAAC,EAAE,CAAC;AAAA,EAClE,GAAG,CAAC,YAAY,CAAC;AACjB,SACE,4CAAC,+BAAe,GAAG,kBAAmB,GAAG,cAAe,GAAG,sBACzD;AAAA,IAAC;AAAA;AAAA,MACC,WAAW;AAAA,MACX,cAAc;AAAA,MACd;AAAA,MACA;AAAA,MACA;AAAA,MACC,GAAG;AAAA,MAEH,sBAAY,IAAI,CAAC,OAAO,MACvB;AAAA,QAAC;AAAA;AAAA,UAKE,GAAG;AAAA,UACJ,oBAAoB;AAAA,UACpB,gBAAgB;AAAA,UAChB,kBAAkB;AAAA,UAClB,WAAW,MAAM,iBAAiB;AAAA,UAClC,eAAa,MAAM,iBAAiB;AAAA,UACpC,kBAAkB,gBAAgB,SAAY;AAAA,UAE9C;AAAA,YAAC;AAAA;AAAA,
|
|
4
|
+
"sourcesContent": ["import React from 'react';\nimport { describe, useOwnerProps } from '@elliemae/ds-props-helpers';\nimport { uid } from 'uid';\nimport { useSwipeCard } from './config/useSwipeCard.js';\nimport { DSSwipeCardName } from './constants/index.js';\nimport { type DSSwipeCardT, DSSwipeCardPropTypesSchema } from './react-desc-prop-types.js';\nimport { StyledScrollContainer, StyledSlide, StyledWrapper } from './styled.js';\n\nconst DSSwipeCard = <T extends DSSwipeCardT.CustomInterface>(props: DSSwipeCardT.Props<T>) => {\n const {\n propsWithDefault,\n xstyledProps,\n instanceUid,\n isFirstRender,\n onTouchStart,\n onTouchMove,\n onTouchEnd,\n globalAttributes,\n } = useSwipeCard(props);\n\n const { wrap, ...restGlobalAttributes } = globalAttributes;\n const { disabled, animationDuration, enableTouch, CardRender, slidesProps, enableAnimation } = propsWithDefault;\n const ownerPropsConfig = useOwnerProps(propsWithDefault);\n const [renderKey, setRenderKey] = React.useState(`render-key-${uid(5)}`);\n const handleAnimationStart = React.useCallback(() => {\n // we change the key to force RENDERING of slides, to avoid wrong calculations of width/height on virtualization\n requestAnimationFrame(() => setRenderKey(`render-key-${uid(5)}`));\n }, [setRenderKey]);\n return (\n <StyledWrapper {...ownerPropsConfig} {...xstyledProps} {...restGlobalAttributes}>\n <StyledScrollContainer\n $disabled={disabled}\n $enableTouch={enableTouch}\n onTouchStart={onTouchStart}\n onTouchMove={onTouchMove}\n onTouchEnd={onTouchEnd}\n {...ownerPropsConfig}\n >\n {slidesProps.map((slide, i) => (\n <StyledSlide\n // we can use the i as a key BECAUSE WE ALSO ADD THE ${instanceUid}\n // the eslint rule is to avoid repeated keys in the VDOM, but we are not repeating it thanks to UID\n // eslint-disable-next-line react/no-array-index-key\n key={`slide-${instanceUid}-${i}`}\n {...ownerPropsConfig}\n $animationDuration={animationDuration}\n $isFirstRender={isFirstRender}\n $enableAnimation={enableAnimation}\n $isActive={i === propsWithDefault.activeSlide}\n aria-hidden={i !== propsWithDefault.activeSlide}\n onAnimationStart={isFirstRender ? undefined : handleAnimationStart}\n >\n <CardRender\n // eslint-disable-next-line react/no-array-index-key\n key={`slide-render-${instanceUid}-${i}`}\n dsIndex={i}\n {...slide}\n renderKey={renderKey}\n />\n </StyledSlide>\n ))}\n </StyledScrollContainer>\n </StyledWrapper>\n );\n};\n\nDSSwipeCard.displayName = DSSwipeCardName;\nconst DSSwipeCardWithSchema = describe(DSSwipeCard);\nDSSwipeCardWithSchema.propTypes = DSSwipeCardPropTypesSchema;\n\nexport { DSSwipeCard, DSSwipeCardWithSchema };\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADoDX;AApDZ,mBAAkB;AAClB,8BAAwC;AACxC,iBAAoB;AACpB,0BAA6B;AAC7B,uBAAgC;AAChC,mCAA8D;AAC9D,oBAAkE;AAElE,MAAM,cAAc,CAAyC,UAAiC;AAC5F,QAAM;AAAA,IACJ;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,QAAI,kCAAa,KAAK;AAEtB,QAAM,EAAE,MAAM,GAAG,qBAAqB,IAAI;AAC1C,QAAM,EAAE,UAAU,mBAAmB,aAAa,YAAY,aAAa,gBAAgB,IAAI;AAC/F,QAAM,uBAAmB,uCAAc,gBAAgB;AACvD,QAAM,CAAC,WAAW,YAAY,IAAI,aAAAA,QAAM,SAAS,kBAAc,gBAAI,CAAC,CAAC,EAAE;AACvE,QAAM,uBAAuB,aAAAA,QAAM,YAAY,MAAM;AAEnD,0BAAsB,MAAM,aAAa,kBAAc,gBAAI,CAAC,CAAC,EAAE,CAAC;AAAA,EAClE,GAAG,CAAC,YAAY,CAAC;AACjB,SACE,4CAAC,+BAAe,GAAG,kBAAmB,GAAG,cAAe,GAAG,sBACzD;AAAA,IAAC;AAAA;AAAA,MACC,WAAW;AAAA,MACX,cAAc;AAAA,MACd;AAAA,MACA;AAAA,MACA;AAAA,MACC,GAAG;AAAA,MAEH,sBAAY,IAAI,CAAC,OAAO,MACvB;AAAA,QAAC;AAAA;AAAA,UAKE,GAAG;AAAA,UACJ,oBAAoB;AAAA,UACpB,gBAAgB;AAAA,UAChB,kBAAkB;AAAA,UAClB,WAAW,MAAM,iBAAiB;AAAA,UAClC,eAAa,MAAM,iBAAiB;AAAA,UACpC,kBAAkB,gBAAgB,SAAY;AAAA,UAE9C;AAAA,YAAC;AAAA;AAAA,cAGC,SAAS;AAAA,cACR,GAAG;AAAA,cACJ;AAAA;AAAA,YAHK,gBAAgB,WAAW,IAAI,CAAC;AAAA,UAIvC;AAAA;AAAA,QAfK,SAAS,WAAW,IAAI,CAAC;AAAA,MAgBhC,CACD;AAAA;AAAA,EACH,GACF;AAEJ;AAEA,YAAY,cAAc;AAC1B,MAAM,4BAAwB,kCAAS,WAAW;AAClD,sBAAsB,YAAY;",
|
|
6
6
|
"names": ["React"]
|
|
7
7
|
}
|
package/dist/esm/DSSwipeCard.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/DSSwipeCard.tsx"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { describe, useOwnerProps } from '@elliemae/ds-props-helpers';\nimport { uid } from 'uid';\nimport { useSwipeCard } from './config/useSwipeCard.js';\nimport { DSSwipeCardName } from './constants/index.js';\nimport { type DSSwipeCardT, DSSwipeCardPropTypesSchema } from './react-desc-prop-types.js';\nimport { StyledScrollContainer, StyledSlide, StyledWrapper } from './styled.js';\n\nconst DSSwipeCard = <T extends DSSwipeCardT.CustomInterface>(props: DSSwipeCardT.Props<T>) => {\n const {\n propsWithDefault,\n xstyledProps,\n instanceUid,\n isFirstRender,\n onTouchStart,\n onTouchMove,\n onTouchEnd,\n globalAttributes,\n } = useSwipeCard(props);\n\n const { wrap, ...restGlobalAttributes } = globalAttributes;\n const { disabled, animationDuration, enableTouch, CardRender, slidesProps, enableAnimation } = propsWithDefault;\n const ownerPropsConfig = useOwnerProps(propsWithDefault);\n const [renderKey, setRenderKey] = React.useState(`render-key-${uid(5)}`);\n const handleAnimationStart = React.useCallback(() => {\n // we change the key to force RENDERING of slides, to avoid wrong calculations of width/height on virtualization\n requestAnimationFrame(() => setRenderKey(`render-key-${uid(5)}`));\n }, [setRenderKey]);\n return (\n <StyledWrapper {...ownerPropsConfig} {...xstyledProps} {...restGlobalAttributes}>\n <StyledScrollContainer\n $disabled={disabled}\n $enableTouch={enableTouch}\n onTouchStart={onTouchStart}\n onTouchMove={onTouchMove}\n onTouchEnd={onTouchEnd}\n {...ownerPropsConfig}\n >\n {slidesProps.map((slide, i) => (\n <StyledSlide\n // we can use the i as a key BECAUSE WE ALSO ADD THE ${instanceUid}\n // the eslint rule is to avoid repeated keys in the VDOM, but we are not repeating it thanks to UID\n // eslint-disable-next-line react/no-array-index-key\n key={`slide-${instanceUid}-${i}`}\n {...ownerPropsConfig}\n $animationDuration={animationDuration}\n $isFirstRender={isFirstRender}\n $enableAnimation={enableAnimation}\n $isActive={i === propsWithDefault.activeSlide}\n aria-hidden={i !== propsWithDefault.activeSlide}\n onAnimationStart={isFirstRender ? undefined : handleAnimationStart}\n >\n <CardRender\n key={`slide-${instanceUid}-${i
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;ACoDX;AApDZ,OAAOA,YAAW;AAClB,SAAS,UAAU,qBAAqB;AACxC,SAAS,WAAW;AACpB,SAAS,oBAAoB;AAC7B,SAAS,uBAAuB;AAChC,SAA4B,kCAAkC;AAC9D,SAAS,uBAAuB,aAAa,qBAAqB;AAElE,MAAM,cAAc,CAAyC,UAAiC;AAC5F,QAAM;AAAA,IACJ;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,IAAI,aAAa,KAAK;AAEtB,QAAM,EAAE,MAAM,GAAG,qBAAqB,IAAI;AAC1C,QAAM,EAAE,UAAU,mBAAmB,aAAa,YAAY,aAAa,gBAAgB,IAAI;AAC/F,QAAM,mBAAmB,cAAc,gBAAgB;AACvD,QAAM,CAAC,WAAW,YAAY,IAAIA,OAAM,SAAS,cAAc,IAAI,CAAC,CAAC,EAAE;AACvE,QAAM,uBAAuBA,OAAM,YAAY,MAAM;AAEnD,0BAAsB,MAAM,aAAa,cAAc,IAAI,CAAC,CAAC,EAAE,CAAC;AAAA,EAClE,GAAG,CAAC,YAAY,CAAC;AACjB,SACE,oBAAC,iBAAe,GAAG,kBAAmB,GAAG,cAAe,GAAG,sBACzD;AAAA,IAAC;AAAA;AAAA,MACC,WAAW;AAAA,MACX,cAAc;AAAA,MACd;AAAA,MACA;AAAA,MACA;AAAA,MACC,GAAG;AAAA,MAEH,sBAAY,IAAI,CAAC,OAAO,MACvB;AAAA,QAAC;AAAA;AAAA,UAKE,GAAG;AAAA,UACJ,oBAAoB;AAAA,UACpB,gBAAgB;AAAA,UAChB,kBAAkB;AAAA,UAClB,WAAW,MAAM,iBAAiB;AAAA,UAClC,eAAa,MAAM,iBAAiB;AAAA,UACpC,kBAAkB,gBAAgB,SAAY;AAAA,UAE9C;AAAA,YAAC;AAAA;AAAA,
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import React from 'react';\nimport { describe, useOwnerProps } from '@elliemae/ds-props-helpers';\nimport { uid } from 'uid';\nimport { useSwipeCard } from './config/useSwipeCard.js';\nimport { DSSwipeCardName } from './constants/index.js';\nimport { type DSSwipeCardT, DSSwipeCardPropTypesSchema } from './react-desc-prop-types.js';\nimport { StyledScrollContainer, StyledSlide, StyledWrapper } from './styled.js';\n\nconst DSSwipeCard = <T extends DSSwipeCardT.CustomInterface>(props: DSSwipeCardT.Props<T>) => {\n const {\n propsWithDefault,\n xstyledProps,\n instanceUid,\n isFirstRender,\n onTouchStart,\n onTouchMove,\n onTouchEnd,\n globalAttributes,\n } = useSwipeCard(props);\n\n const { wrap, ...restGlobalAttributes } = globalAttributes;\n const { disabled, animationDuration, enableTouch, CardRender, slidesProps, enableAnimation } = propsWithDefault;\n const ownerPropsConfig = useOwnerProps(propsWithDefault);\n const [renderKey, setRenderKey] = React.useState(`render-key-${uid(5)}`);\n const handleAnimationStart = React.useCallback(() => {\n // we change the key to force RENDERING of slides, to avoid wrong calculations of width/height on virtualization\n requestAnimationFrame(() => setRenderKey(`render-key-${uid(5)}`));\n }, [setRenderKey]);\n return (\n <StyledWrapper {...ownerPropsConfig} {...xstyledProps} {...restGlobalAttributes}>\n <StyledScrollContainer\n $disabled={disabled}\n $enableTouch={enableTouch}\n onTouchStart={onTouchStart}\n onTouchMove={onTouchMove}\n onTouchEnd={onTouchEnd}\n {...ownerPropsConfig}\n >\n {slidesProps.map((slide, i) => (\n <StyledSlide\n // we can use the i as a key BECAUSE WE ALSO ADD THE ${instanceUid}\n // the eslint rule is to avoid repeated keys in the VDOM, but we are not repeating it thanks to UID\n // eslint-disable-next-line react/no-array-index-key\n key={`slide-${instanceUid}-${i}`}\n {...ownerPropsConfig}\n $animationDuration={animationDuration}\n $isFirstRender={isFirstRender}\n $enableAnimation={enableAnimation}\n $isActive={i === propsWithDefault.activeSlide}\n aria-hidden={i !== propsWithDefault.activeSlide}\n onAnimationStart={isFirstRender ? undefined : handleAnimationStart}\n >\n <CardRender\n // eslint-disable-next-line react/no-array-index-key\n key={`slide-render-${instanceUid}-${i}`}\n dsIndex={i}\n {...slide}\n renderKey={renderKey}\n />\n </StyledSlide>\n ))}\n </StyledScrollContainer>\n </StyledWrapper>\n );\n};\n\nDSSwipeCard.displayName = DSSwipeCardName;\nconst DSSwipeCardWithSchema = describe(DSSwipeCard);\nDSSwipeCardWithSchema.propTypes = DSSwipeCardPropTypesSchema;\n\nexport { DSSwipeCard, DSSwipeCardWithSchema };\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACoDX;AApDZ,OAAOA,YAAW;AAClB,SAAS,UAAU,qBAAqB;AACxC,SAAS,WAAW;AACpB,SAAS,oBAAoB;AAC7B,SAAS,uBAAuB;AAChC,SAA4B,kCAAkC;AAC9D,SAAS,uBAAuB,aAAa,qBAAqB;AAElE,MAAM,cAAc,CAAyC,UAAiC;AAC5F,QAAM;AAAA,IACJ;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,IAAI,aAAa,KAAK;AAEtB,QAAM,EAAE,MAAM,GAAG,qBAAqB,IAAI;AAC1C,QAAM,EAAE,UAAU,mBAAmB,aAAa,YAAY,aAAa,gBAAgB,IAAI;AAC/F,QAAM,mBAAmB,cAAc,gBAAgB;AACvD,QAAM,CAAC,WAAW,YAAY,IAAIA,OAAM,SAAS,cAAc,IAAI,CAAC,CAAC,EAAE;AACvE,QAAM,uBAAuBA,OAAM,YAAY,MAAM;AAEnD,0BAAsB,MAAM,aAAa,cAAc,IAAI,CAAC,CAAC,EAAE,CAAC;AAAA,EAClE,GAAG,CAAC,YAAY,CAAC;AACjB,SACE,oBAAC,iBAAe,GAAG,kBAAmB,GAAG,cAAe,GAAG,sBACzD;AAAA,IAAC;AAAA;AAAA,MACC,WAAW;AAAA,MACX,cAAc;AAAA,MACd;AAAA,MACA;AAAA,MACA;AAAA,MACC,GAAG;AAAA,MAEH,sBAAY,IAAI,CAAC,OAAO,MACvB;AAAA,QAAC;AAAA;AAAA,UAKE,GAAG;AAAA,UACJ,oBAAoB;AAAA,UACpB,gBAAgB;AAAA,UAChB,kBAAkB;AAAA,UAClB,WAAW,MAAM,iBAAiB;AAAA,UAClC,eAAa,MAAM,iBAAiB;AAAA,UACpC,kBAAkB,gBAAgB,SAAY;AAAA,UAE9C;AAAA,YAAC;AAAA;AAAA,cAGC,SAAS;AAAA,cACR,GAAG;AAAA,cACJ;AAAA;AAAA,YAHK,gBAAgB,WAAW,IAAI,CAAC;AAAA,UAIvC;AAAA;AAAA,QAfK,SAAS,WAAW,IAAI,CAAC;AAAA,MAgBhC,CACD;AAAA;AAAA,EACH,GACF;AAEJ;AAEA,YAAY,cAAc;AAC1B,MAAM,wBAAwB,SAAS,WAAW;AAClD,sBAAsB,YAAY;",
|
|
6
6
|
"names": ["React"]
|
|
7
7
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-swipe-card",
|
|
3
|
-
"version": "3.60.0-next.
|
|
3
|
+
"version": "3.60.0-next.60",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Swipe Card",
|
|
6
6
|
"files": [
|
|
@@ -35,40 +35,38 @@
|
|
|
35
35
|
"reportFile": "tests.xml",
|
|
36
36
|
"indent": 4
|
|
37
37
|
},
|
|
38
|
-
"scripts": {
|
|
39
|
-
"dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch",
|
|
40
|
-
"test": "pui-cli test --passWithNoTests --coverage=\"false\"",
|
|
41
|
-
"lint": "node ../../../scripts/lint.mjs --fix",
|
|
42
|
-
"lint:strict": "node ../../../scripts/lint-strict.mjs",
|
|
43
|
-
"dts": "node ../../../scripts/dts.mjs",
|
|
44
|
-
"build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
|
|
45
|
-
"checkDeps": "npx -yes ../../util/ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
46
|
-
},
|
|
47
38
|
"dependencies": {
|
|
48
|
-
"
|
|
49
|
-
"@elliemae/ds-props-helpers": "3.60.0-next.
|
|
50
|
-
"@elliemae/ds-
|
|
51
|
-
"
|
|
39
|
+
"uid": "^2.0.2",
|
|
40
|
+
"@elliemae/ds-props-helpers": "3.60.0-next.60",
|
|
41
|
+
"@elliemae/ds-grid": "3.60.0-next.60",
|
|
42
|
+
"@elliemae/ds-system": "3.60.0-next.60"
|
|
52
43
|
},
|
|
53
44
|
"devDependencies": {
|
|
54
|
-
"@elliemae/
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"@elliemae/
|
|
58
|
-
"
|
|
59
|
-
"styled-components": "catalog:"
|
|
45
|
+
"@elliemae/pui-theme": "~2.13.0",
|
|
46
|
+
"jest": "^30.0.0",
|
|
47
|
+
"styled-components": "~5.3.9",
|
|
48
|
+
"@elliemae/ds-typescript-helpers": "3.60.0-next.60",
|
|
49
|
+
"@elliemae/ds-monorepo-devops": "3.60.0-next.60"
|
|
60
50
|
},
|
|
61
51
|
"peerDependencies": {
|
|
62
|
-
"@testing-library/jest-dom": "
|
|
63
|
-
"@testing-library/react": "
|
|
64
|
-
"@testing-library/user-event": "
|
|
65
|
-
"react": "
|
|
66
|
-
"react-dom": "
|
|
67
|
-
"styled-components": "
|
|
52
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
53
|
+
"@testing-library/react": "^16.0.1",
|
|
54
|
+
"@testing-library/user-event": "~14.6.1",
|
|
55
|
+
"react": "^18.3.1",
|
|
56
|
+
"react-dom": "^18.3.1",
|
|
57
|
+
"styled-components": "~5.3.9"
|
|
68
58
|
},
|
|
69
59
|
"publishConfig": {
|
|
70
60
|
"access": "public",
|
|
71
61
|
"typeSafety": true
|
|
72
62
|
},
|
|
73
|
-
"
|
|
74
|
-
|
|
63
|
+
"scripts": {
|
|
64
|
+
"dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch",
|
|
65
|
+
"test": "ds-monorepo-devops test --passWithNoTests --coverage=\"false\"",
|
|
66
|
+
"lint": "node ../../../scripts/lint.mjs --fix",
|
|
67
|
+
"lint:strict": "node ../../../scripts/lint-strict.mjs",
|
|
68
|
+
"dts": "node ../../../scripts/dts.mjs",
|
|
69
|
+
"build": "cross-env NODE_ENV=production node ../../../scripts/build/build.mjs",
|
|
70
|
+
"checkDeps": "npx -yes ../../util/ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
71
|
+
}
|
|
72
|
+
}
|