@elliemae/ds-form-layout-blocks 3.18.0-next.1 → 3.18.0-next.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,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
interface DSFormLayoutBlockItemStyledMessageT {
|
|
3
2
|
hasError?: boolean;
|
|
4
3
|
leftLabel?: boolean;
|
|
@@ -21,10 +20,10 @@ interface DSFormLayoutBlockItemStyledMarkT {
|
|
|
21
20
|
interface DSFormLayoutBlockItemStyledCharCounterT {
|
|
22
21
|
hasError?: boolean;
|
|
23
22
|
}
|
|
24
|
-
export declare const StyledContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, DSFormLayoutBlockItemStyledContainerT, never>;
|
|
25
|
-
export declare const StyledLabel: import("styled-components").StyledComponent<
|
|
26
|
-
export declare const StyledMessage: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, DSFormLayoutBlockItemStyledMessageT, never>;
|
|
27
|
-
export declare const StyledMark: import("styled-components").StyledComponent<
|
|
28
|
-
export declare const ScreenReaderOnly: import("styled-components").StyledComponent<
|
|
29
|
-
export declare const StyledCharCount: import("styled-components").StyledComponent<
|
|
23
|
+
export declare const StyledContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, DSFormLayoutBlockItemStyledContainerT & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
24
|
+
export declare const StyledLabel: import("styled-components").StyledComponent<"label", import("@elliemae/ds-system").Theme, DSFormLayoutBlockItemStyledLabelT & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
25
|
+
export declare const StyledMessage: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, DSFormLayoutBlockItemStyledMessageT & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
26
|
+
export declare const StyledMark: import("styled-components").StyledComponent<"span", import("@elliemae/ds-system").Theme, DSFormLayoutBlockItemStyledMarkT & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
27
|
+
export declare const ScreenReaderOnly: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
28
|
+
export declare const StyledCharCount: import("styled-components").StyledComponent<"span", import("@elliemae/ds-system").Theme, DSFormLayoutBlockItemStyledCharCounterT & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
30
29
|
export {};
|
|
@@ -2,5 +2,5 @@ type DirectionsT = 'horizontal' | 'vertical';
|
|
|
2
2
|
interface DSControlledCheckboxGroupStyledContainerT {
|
|
3
3
|
direction: DirectionsT;
|
|
4
4
|
}
|
|
5
|
-
export declare const StyledContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, DSControlledCheckboxGroupStyledContainerT, never>;
|
|
5
|
+
export declare const StyledContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, DSControlledCheckboxGroupStyledContainerT & import("@elliemae/ds-system").OwnerInterface, never>;
|
|
6
6
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-form-layout-blocks",
|
|
3
|
-
"version": "3.18.0-next.
|
|
3
|
+
"version": "3.18.0-next.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Form Layout",
|
|
6
6
|
"files": [
|
|
@@ -76,25 +76,25 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"uid": "~2.0.1",
|
|
79
|
-
"@elliemae/ds-grid": "3.18.0-next.
|
|
80
|
-
"@elliemae/ds-
|
|
81
|
-
"@elliemae/ds-
|
|
82
|
-
"@elliemae/ds-
|
|
83
|
-
"@elliemae/ds-
|
|
79
|
+
"@elliemae/ds-grid": "3.18.0-next.2",
|
|
80
|
+
"@elliemae/ds-props-helpers": "3.18.0-next.2",
|
|
81
|
+
"@elliemae/ds-icons": "3.18.0-next.2",
|
|
82
|
+
"@elliemae/ds-system": "3.18.0-next.2",
|
|
83
|
+
"@elliemae/ds-utilities": "3.18.0-next.2"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@testing-library/jest-dom": "~5.16.5",
|
|
87
87
|
"@testing-library/react": "~12.1.3",
|
|
88
88
|
"jest-axe": "^7.0.1",
|
|
89
89
|
"styled-components": "~5.3.9",
|
|
90
|
-
"@elliemae/ds-form-
|
|
91
|
-
"@elliemae/ds-form-
|
|
92
|
-
"@elliemae/ds-form-radio": "3.18.0-next.
|
|
90
|
+
"@elliemae/ds-form-checkbox": "3.18.0-next.2",
|
|
91
|
+
"@elliemae/ds-form-input-text": "3.18.0-next.2",
|
|
92
|
+
"@elliemae/ds-form-radio": "3.18.0-next.2"
|
|
93
93
|
},
|
|
94
94
|
"peerDependencies": {
|
|
95
95
|
"react": "~17.0.2",
|
|
96
96
|
"react-dom": "^17.0.2",
|
|
97
|
-
"styled-components": "~5.3.
|
|
97
|
+
"styled-components": "~5.3.9"
|
|
98
98
|
},
|
|
99
99
|
"publishConfig": {
|
|
100
100
|
"access": "public",
|
|
@@ -110,6 +110,6 @@
|
|
|
110
110
|
"build": "cross-env NODE_ENV=production node ../../scripts/build/build.mjs",
|
|
111
111
|
"dev:build": "pnpm --filter {.}... build",
|
|
112
112
|
"dev:install": "pnpm --filter {.}... i --no-lockfile && pnpm run dev:build",
|
|
113
|
-
"checkDeps": "
|
|
113
|
+
"checkDeps": "npm exec ../ds-codemods -- check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
|
|
114
114
|
}
|
|
115
115
|
}
|