@elliemae/ds-data-table-multi-select-cell 3.52.1 → 3.53.0-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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/react-desc-prop-types.ts", "../../../../../scripts/build/transpile/react-shim.js"],
|
|
4
|
-
"sourcesContent": ["/* eslint-disable @typescript-eslint/no-empty-interface */\nimport type { XstyledProps, DSPropTypesSchema } from '@elliemae/ds-props-helpers';\nimport { PropTypes, xstyledPropTypes, getPropsPerSlotPropTypes } from '@elliemae/ds-props-helpers';\nimport { type TypescriptHelpersT } from '@elliemae/ds-typescript-helpers';\nimport {
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADEvB,8BAAsE;
|
|
4
|
+
"sourcesContent": ["/* eslint-disable @typescript-eslint/no-empty-interface */\nimport type { XstyledProps, DSPropTypesSchema } from '@elliemae/ds-props-helpers';\nimport { PropTypes, xstyledPropTypes, getPropsPerSlotPropTypes } from '@elliemae/ds-props-helpers';\nimport { type TypescriptHelpersT } from '@elliemae/ds-typescript-helpers';\nimport type { WeakValidationMap } from 'react';\nimport { DSDataTableMultiSelectCellName, DATA_TABLE_MULTI_SELECT_CELL_SLOTS } from './constants/index.js';\n\nexport declare namespace DSDataTableMultiSelectCellT {\n export interface RequiredProps {}\n\n export interface DefaultProps {\n disabled: false;\n checked: 'mixed' | boolean;\n }\n\n export interface OptionalProps\n extends TypescriptHelpersT.PropsForGlobalOnSlots<\n typeof DSDataTableMultiSelectCellName,\n typeof DATA_TABLE_MULTI_SELECT_CELL_SLOTS\n > {\n className?: string;\n onChange?: (newVal: boolean) => void;\n }\n\n export interface Props extends Partial<DefaultProps>, OptionalProps, XstyledProps, RequiredProps {}\n\n export interface InternalProps extends DefaultProps, OptionalProps, XstyledProps, RequiredProps {}\n}\n\nexport const defaultProps: DSDataTableMultiSelectCellT.DefaultProps = {\n checked: false,\n disabled: false,\n};\n\nexport const DSDataTableMultiSelectCellPropTypes: DSPropTypesSchema<DSDataTableMultiSelectCellT.Props> = {\n ...xstyledPropTypes,\n ...getPropsPerSlotPropTypes(DSDataTableMultiSelectCellName, DATA_TABLE_MULTI_SELECT_CELL_SLOTS),\n className: PropTypes.string.description('className for the wrapper'),\n checked: PropTypes.oneOfType([PropTypes.bool, PropTypes.oneOf(['mixed'])]).description(\n 'Whether the checkbox is checked',\n ),\n disabled: PropTypes.bool.description('Whether the checkbox is disabled'),\n onChange: PropTypes.func.description('Callback when the checkbox is toggled'),\n};\n\nexport const DSDataTableMultiSelectCellPropTypesSchema =\n DSDataTableMultiSelectCellPropTypes as unknown as WeakValidationMap<DSDataTableMultiSelectCellT.Props>;\n", "import * as React from 'react';\nexport { React };\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADEvB,8BAAsE;AAGtE,uBAAmF;AAwB5E,MAAM,eAAyD;AAAA,EACpE,SAAS;AAAA,EACT,UAAU;AACZ;AAEO,MAAM,sCAA4F;AAAA,EACvG,GAAG;AAAA,EACH,OAAG,kDAAyB,iDAAgC,mDAAkC;AAAA,EAC9F,WAAW,kCAAU,OAAO,YAAY,2BAA2B;AAAA,EACnE,SAAS,kCAAU,UAAU,CAAC,kCAAU,MAAM,kCAAU,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE;AAAA,IACzE;AAAA,EACF;AAAA,EACA,UAAU,kCAAU,KAAK,YAAY,kCAAkC;AAAA,EACvE,UAAU,kCAAU,KAAK,YAAY,uCAAuC;AAC9E;AAEO,MAAM,4CACX;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../../scripts/build/transpile/react-shim.js", "../../src/react-desc-prop-types.ts"],
|
|
4
|
-
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable @typescript-eslint/no-empty-interface */\nimport type { XstyledProps, DSPropTypesSchema } from '@elliemae/ds-props-helpers';\nimport { PropTypes, xstyledPropTypes, getPropsPerSlotPropTypes } from '@elliemae/ds-props-helpers';\nimport { type TypescriptHelpersT } from '@elliemae/ds-typescript-helpers';\nimport {
|
|
5
|
-
"mappings": "AAAA,YAAY,WAAW;ACEvB,SAAS,WAAW,kBAAkB,gCAAgC;
|
|
4
|
+
"sourcesContent": ["import * as React from 'react';\nexport { React };\n", "/* eslint-disable @typescript-eslint/no-empty-interface */\nimport type { XstyledProps, DSPropTypesSchema } from '@elliemae/ds-props-helpers';\nimport { PropTypes, xstyledPropTypes, getPropsPerSlotPropTypes } from '@elliemae/ds-props-helpers';\nimport { type TypescriptHelpersT } from '@elliemae/ds-typescript-helpers';\nimport type { WeakValidationMap } from 'react';\nimport { DSDataTableMultiSelectCellName, DATA_TABLE_MULTI_SELECT_CELL_SLOTS } from './constants/index.js';\n\nexport declare namespace DSDataTableMultiSelectCellT {\n export interface RequiredProps {}\n\n export interface DefaultProps {\n disabled: false;\n checked: 'mixed' | boolean;\n }\n\n export interface OptionalProps\n extends TypescriptHelpersT.PropsForGlobalOnSlots<\n typeof DSDataTableMultiSelectCellName,\n typeof DATA_TABLE_MULTI_SELECT_CELL_SLOTS\n > {\n className?: string;\n onChange?: (newVal: boolean) => void;\n }\n\n export interface Props extends Partial<DefaultProps>, OptionalProps, XstyledProps, RequiredProps {}\n\n export interface InternalProps extends DefaultProps, OptionalProps, XstyledProps, RequiredProps {}\n}\n\nexport const defaultProps: DSDataTableMultiSelectCellT.DefaultProps = {\n checked: false,\n disabled: false,\n};\n\nexport const DSDataTableMultiSelectCellPropTypes: DSPropTypesSchema<DSDataTableMultiSelectCellT.Props> = {\n ...xstyledPropTypes,\n ...getPropsPerSlotPropTypes(DSDataTableMultiSelectCellName, DATA_TABLE_MULTI_SELECT_CELL_SLOTS),\n className: PropTypes.string.description('className for the wrapper'),\n checked: PropTypes.oneOfType([PropTypes.bool, PropTypes.oneOf(['mixed'])]).description(\n 'Whether the checkbox is checked',\n ),\n disabled: PropTypes.bool.description('Whether the checkbox is disabled'),\n onChange: PropTypes.func.description('Callback when the checkbox is toggled'),\n};\n\nexport const DSDataTableMultiSelectCellPropTypesSchema =\n DSDataTableMultiSelectCellPropTypes as unknown as WeakValidationMap<DSDataTableMultiSelectCellT.Props>;\n"],
|
|
5
|
+
"mappings": "AAAA,YAAY,WAAW;ACEvB,SAAS,WAAW,kBAAkB,gCAAgC;AAGtE,SAAS,gCAAgC,0CAA0C;AAwB5E,MAAM,eAAyD;AAAA,EACpE,SAAS;AAAA,EACT,UAAU;AACZ;AAEO,MAAM,sCAA4F;AAAA,EACvG,GAAG;AAAA,EACH,GAAG,yBAAyB,gCAAgC,kCAAkC;AAAA,EAC9F,WAAW,UAAU,OAAO,YAAY,2BAA2B;AAAA,EACnE,SAAS,UAAU,UAAU,CAAC,UAAU,MAAM,UAAU,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE;AAAA,IACzE;AAAA,EACF;AAAA,EACA,UAAU,UAAU,KAAK,YAAY,kCAAkC;AAAA,EACvE,UAAU,UAAU,KAAK,YAAY,uCAAuC;AAC9E;AAEO,MAAM,4CACX;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -3,4 +3,7 @@ export declare const DATA_TABLE_MULTI_SELECT_CELL_SLOTS: {
|
|
|
3
3
|
readonly ROOT: "root";
|
|
4
4
|
readonly CHECKBOX: "checkbox";
|
|
5
5
|
};
|
|
6
|
-
export declare const DATA_TABLE_MULTI_SELECT_CELL_DATA_TESTID:
|
|
6
|
+
export declare const DATA_TABLE_MULTI_SELECT_CELL_DATA_TESTID: {
|
|
7
|
+
readonly ROOT: "ds-datatablemultiselectcell-root";
|
|
8
|
+
readonly CHECKBOX: "ds-datatablemultiselectcell-checkbox";
|
|
9
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { XstyledProps, DSPropTypesSchema } from '@elliemae/ds-props-helpers';
|
|
2
2
|
import { type TypescriptHelpersT } from '@elliemae/ds-typescript-helpers';
|
|
3
|
-
import { DSDataTableMultiSelectCellName, DATA_TABLE_MULTI_SELECT_CELL_SLOTS } from './constants/index.js';
|
|
4
3
|
import type { WeakValidationMap } from 'react';
|
|
4
|
+
import { DSDataTableMultiSelectCellName, DATA_TABLE_MULTI_SELECT_CELL_SLOTS } from './constants/index.js';
|
|
5
5
|
export declare namespace DSDataTableMultiSelectCellT {
|
|
6
6
|
interface RequiredProps {
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-data-table-multi-select-cell",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.53.0-alpha.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Data Table Multi Select Cell",
|
|
6
6
|
"files": [
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"indent": 4
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@
|
|
40
|
-
"@elliemae/ds-
|
|
41
|
-
"@elliemae/ds-
|
|
42
|
-
"@elliemae/ds-
|
|
43
|
-
"@elliemae/ds-
|
|
44
|
-
"@elliemae/ds-
|
|
45
|
-
"@elliemae/ds-typescript-helpers": "3.52.1"
|
|
39
|
+
"@elliemae/ds-data-table-cell": "3.53.0-alpha.2",
|
|
40
|
+
"@elliemae/ds-form-checkbox": "3.53.0-alpha.2",
|
|
41
|
+
"@elliemae/ds-system": "3.53.0-alpha.2",
|
|
42
|
+
"@elliemae/ds-props-helpers": "3.53.0-alpha.2",
|
|
43
|
+
"@elliemae/ds-grid": "3.53.0-alpha.2",
|
|
44
|
+
"@elliemae/ds-typescript-helpers": "3.53.0-alpha.2"
|
|
46
45
|
},
|
|
47
46
|
"devDependencies": {
|
|
48
|
-
"@elliemae/pui-cli": "9.0.0-next.
|
|
47
|
+
"@elliemae/pui-cli": "9.0.0-next.65",
|
|
49
48
|
"jest": "~29.7.0",
|
|
50
49
|
"styled-components": "~5.3.9",
|
|
51
|
-
"@elliemae/ds-
|
|
50
|
+
"@elliemae/ds-test-utils": "3.53.0-alpha.2",
|
|
51
|
+
"@elliemae/ds-monorepo-devops": "3.53.0-alpha.2"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"@testing-library/jest-dom": "^6.6.3",
|