@elliemae/ds-pagination 3.31.4 → 3.31.6

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.
Files changed (2) hide show
  1. package/package.json +12 -12
  2. package/dist/types/index.d.ts +0 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-pagination",
3
- "version": "3.31.4",
3
+ "version": "3.31.6",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Pagination",
6
6
  "files": [
@@ -76,21 +76,21 @@
76
76
  },
77
77
  "dependencies": {
78
78
  "@xstyled/system": "~3.7.3",
79
- "@elliemae/ds-button-v2": "3.31.4",
80
- "@elliemae/ds-circular-progress-indicator": "3.31.4",
81
- "@elliemae/ds-dropdownmenu-v2": "3.31.4",
82
- "@elliemae/ds-grid": "3.31.4",
83
- "@elliemae/ds-system": "3.31.4",
84
- "@elliemae/ds-typography": "3.31.4",
85
- "@elliemae/ds-utilities": "3.31.4",
86
- "@elliemae/ds-icons": "3.31.4",
87
- "@elliemae/ds-props-helpers": "3.31.4"
79
+ "@elliemae/ds-button-v2": "3.31.6",
80
+ "@elliemae/ds-circular-progress-indicator": "3.31.6",
81
+ "@elliemae/ds-dropdownmenu-v2": "3.31.6",
82
+ "@elliemae/ds-grid": "3.31.6",
83
+ "@elliemae/ds-icons": "3.31.6",
84
+ "@elliemae/ds-props-helpers": "3.31.6",
85
+ "@elliemae/ds-system": "3.31.6",
86
+ "@elliemae/ds-typography": "3.31.6",
87
+ "@elliemae/ds-utilities": "3.31.6"
88
88
  },
89
89
  "devDependencies": {
90
90
  "@elliemae/pui-cli": "~9.0.0-next.31",
91
91
  "styled-components": "~5.3.9",
92
92
  "styled-system": "~5.1.5",
93
- "@elliemae/ds-monorepo-devops": "3.31.4"
93
+ "@elliemae/ds-monorepo-devops": "3.31.6"
94
94
  },
95
95
  "peerDependencies": {
96
96
  "lodash": "^4.17.21",
@@ -101,7 +101,7 @@
101
101
  },
102
102
  "publishConfig": {
103
103
  "access": "public",
104
- "typeSafety": true
104
+ "typeSafety": false
105
105
  },
106
106
  "scripts": {
107
107
  "dev": "cross-env NODE_ENV=development node ../../../scripts/build/build.mjs --watch",
@@ -1,17 +0,0 @@
1
- /// <reference types="react" />
2
- declare const DSPaginationSeparatorWithSchema: import("@elliemae/ds-props-helpers/dist/types/propTypes/types.js").DocumentedReactComponent<{
3
- [x: string]: any;
4
- [x: number]: any;
5
- [x: symbol]: any;
6
- } & {
7
- theme?: import("@elliemae/ds-system").Theme | undefined;
8
- } & {
9
- as?: string | import("react").ComponentType<any> | undefined;
10
- forwardedAs?: string | import("react").ComponentType<any> | undefined;
11
- }>;
12
- export { DSPagination, DSPaginationWithSchema } from './Pagination.js';
13
- export { DSPageNextButton, DSPageNextButtonWithSchema, DSPagePrevButton, DSPagePrevButtonWithSchema, DSPaginationContainer, DSPaginationContainerWithSchema, DSPerPageSelector, DSPerPageSelectorWithSchema, DSPaginator, DSPaginatorWithSchema, } from './parts/index.js';
14
- export { DSPaginationSeparator } from './styled.js';
15
- export { DSPaginationSeparatorWithSchema };
16
- export { PAGINATION_DATA_TESTID } from './PaginationDataTestID.js';
17
- export type { DSPaginationT } from './react-desc-prop-types.js';