@elliemae/ds-form-toggle 3.18.0-next.0 → 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.
@@ -31,11 +31,11 @@ interface StyledTextT {
31
31
  interface SetLabelWidthT {
32
32
  size: DSControlledToggleT.ToggleSize;
33
33
  }
34
- export declare const StyledContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledContainerT, never>;
35
- export declare const StyledLabel: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & StyledLabelT, never>;
36
- export declare const StyledVisibleContent: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & StyledVisibleContentT, never>;
37
- export declare const StyledCircle: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & StyledCircleT, never>;
38
- export declare const StyledText: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & StyledTextT, never>;
39
- export declare const StyledButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button").DSButtonT.Props>, import("@elliemae/ds-system").Theme, object, never>;
40
- export declare const SetLabelWidth: import("styled-components").StyledComponent<keyof JSX.IntrinsicElements, import("@elliemae/ds-system").Theme, Record<string, unknown> & SetLabelWidthT, never>;
34
+ export declare const StyledContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledContainerT & import("@elliemae/ds-system").OwnerInterface, never>;
35
+ export declare const StyledLabel: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledLabelT & import("@elliemae/ds-system").OwnerInterface, never>;
36
+ export declare const StyledVisibleContent: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledVisibleContentT & import("@elliemae/ds-system").OwnerInterface, never>;
37
+ export declare const StyledCircle: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledCircleT & import("@elliemae/ds-system").OwnerInterface, never>;
38
+ export declare const StyledText: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledTextT & import("@elliemae/ds-system").OwnerInterface, never>;
39
+ export declare const StyledButton: import("styled-components").StyledComponent<import("react").ComponentType<import("@elliemae/ds-button").DSButtonT.Props>, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface, never>;
40
+ export declare const SetLabelWidth: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, SetLabelWidthT & import("@elliemae/ds-system").OwnerInterface, never>;
41
41
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-form-toggle",
3
- "version": "3.18.0-next.0",
3
+ "version": "3.18.0-next.2",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Controlled Form Toggle",
6
6
  "files": [
@@ -35,12 +35,12 @@
35
35
  "indent": 4
36
36
  },
37
37
  "dependencies": {
38
- "@elliemae/ds-button": "3.18.0-next.0",
39
- "@elliemae/ds-props-helpers": "3.18.0-next.0",
40
- "@elliemae/ds-system": "3.18.0-next.0",
41
- "@elliemae/ds-tooltip": "3.18.0-next.0",
42
38
  "styled-components": "~5.3.9",
43
- "uid": "~2.0.1"
39
+ "uid": "~2.0.1",
40
+ "@elliemae/ds-button": "3.18.0-next.2",
41
+ "@elliemae/ds-props-helpers": "3.18.0-next.2",
42
+ "@elliemae/ds-system": "3.18.0-next.2",
43
+ "@elliemae/ds-tooltip": "3.18.0-next.2"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@elliemae/pui-theme": "~2.7.0",
@@ -54,7 +54,7 @@
54
54
  "@elliemae/pui-theme": "~2.7.0",
55
55
  "react": "^17.0.2",
56
56
  "react-dom": "^17.0.2",
57
- "styled-components": "~5.3.6",
57
+ "styled-components": "~5.3.9",
58
58
  "styled-system": "^5.1.5"
59
59
  },
60
60
  "publishConfig": {
@@ -70,6 +70,6 @@
70
70
  "build": "cross-env NODE_ENV=production node ../../scripts/build/build.mjs",
71
71
  "dev:build": "pnpm --filter {.}... build",
72
72
  "dev:install": "pnpm --filter {.}... i --no-lockfile && pnpm run dev:build",
73
- "checkDeps": "npx -yes ../ds-codemods check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
73
+ "checkDeps": "npm exec ../ds-codemods -- check-missing-packages --projectFolderPath=\"./\" --ignorePackagesGlobPattern=\"\" --ignoreFilesGlobPattern=\"**/test-ables/*,**/tests/*\""
74
74
  }
75
75
  }