@elliemae/ds-form-layout-blocks 3.60.0-next.45 → 3.60.0-next.47

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.
@@ -46,6 +46,7 @@ const StyledContainer = (0, import_ds_system.styled)("div", {
46
46
  margin-top: ${({ theme }) => theme.space.xxs};
47
47
  & div:not([role='checkbox']) {
48
48
  padding: 0;
49
+ margin-bottom: ${({ theme }) => theme.space.xxs};
49
50
  }
50
51
  & div:not(:last-child) {
51
52
  margin-right: ${({ theme, direction }) => direction === "horizontal" ? theme.space.s : "0"};
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/form-layout-checkbox-group/styles.tsx", "../../../../../../scripts/build/transpile/react-shim.js"],
4
- "sourcesContent": ["import { styled, xStyledCommonProps } from '@elliemae/ds-system';\nimport {\n DSFormLayoutCheckboxGroupName,\n FORM_LAYOUT_CHECKBOX_GROUP_SLOTS,\n} from './DSFormLayoutCheckboxGroupDefinitions.js';\n\ntype DirectionsT = 'horizontal' | 'vertical';\n\ninterface DSControlledCheckboxGroupStyledContainerT {\n direction: DirectionsT;\n}\n\nexport const StyledContainer = styled('div', {\n name: DSFormLayoutCheckboxGroupName,\n slot: FORM_LAYOUT_CHECKBOX_GROUP_SLOTS.ROOT,\n})<DSControlledCheckboxGroupStyledContainerT>`\n display: inline-flex;\n flex-wrap: wrap;\n flex-direction: ${({ direction }) => (direction === 'horizontal' ? 'row' : 'column')};\n margin-left: ${({ theme }) => theme.space.xs};\n margin-right: ${({ theme }) => theme.space.xs};\n margin-top: ${({ theme }) => theme.space.xxs};\n & div:not([role='checkbox']) {\n padding: 0;\n }\n & div:not(:last-child) {\n margin-right: ${({ theme, direction }) => (direction === 'horizontal' ? theme.space.s : '0')};\n }\n ${xStyledCommonProps}\n`;\n", "import * as React from 'react';\nexport { React };\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,uBAA2C;AAC3C,kDAGO;AAQA,MAAM,sBAAkB,yBAAO,OAAO;AAAA,EAC3C,MAAM;AAAA,EACN,MAAM,6EAAiC;AACzC,CAAC;AAAA;AAAA;AAAA,oBAGmB,CAAC,EAAE,UAAU,MAAO,cAAc,eAAe,QAAQ,QAAS;AAAA,iBACrE,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,EAAE;AAAA,kBAC5B,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,EAAE;AAAA,gBAC/B,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,GAAG;AAAA;AAAA;AAAA;AAAA;AAAA,oBAK1B,CAAC,EAAE,OAAO,UAAU,MAAO,cAAc,eAAe,MAAM,MAAM,IAAI,GAAI;AAAA;AAAA,IAE5F,mCAAkB;AAAA;",
4
+ "sourcesContent": ["import { styled, xStyledCommonProps } from '@elliemae/ds-system';\nimport {\n DSFormLayoutCheckboxGroupName,\n FORM_LAYOUT_CHECKBOX_GROUP_SLOTS,\n} from './DSFormLayoutCheckboxGroupDefinitions.js';\n\ntype DirectionsT = 'horizontal' | 'vertical';\n\ninterface DSControlledCheckboxGroupStyledContainerT {\n direction: DirectionsT;\n}\n\nexport const StyledContainer = styled('div', {\n name: DSFormLayoutCheckboxGroupName,\n slot: FORM_LAYOUT_CHECKBOX_GROUP_SLOTS.ROOT,\n})<DSControlledCheckboxGroupStyledContainerT>`\n display: inline-flex;\n flex-wrap: wrap;\n flex-direction: ${({ direction }) => (direction === 'horizontal' ? 'row' : 'column')};\n margin-left: ${({ theme }) => theme.space.xs};\n margin-right: ${({ theme }) => theme.space.xs};\n margin-top: ${({ theme }) => theme.space.xxs};\n & div:not([role='checkbox']) {\n padding: 0;\n margin-bottom: ${({ theme }) => theme.space.xxs};\n }\n & div:not(:last-child) {\n margin-right: ${({ theme, direction }) => (direction === 'horizontal' ? theme.space.s : '0')};\n }\n ${xStyledCommonProps}\n`;\n", "import * as React from 'react';\nexport { React };\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;ACAA,YAAuB;ADAvB,uBAA2C;AAC3C,kDAGO;AAQA,MAAM,sBAAkB,yBAAO,OAAO;AAAA,EAC3C,MAAM;AAAA,EACN,MAAM,6EAAiC;AACzC,CAAC;AAAA;AAAA;AAAA,oBAGmB,CAAC,EAAE,UAAU,MAAO,cAAc,eAAe,QAAQ,QAAS;AAAA,iBACrE,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,EAAE;AAAA,kBAC5B,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,EAAE;AAAA,gBAC/B,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,GAAG;AAAA;AAAA;AAAA,qBAGzB,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,GAAG;AAAA;AAAA;AAAA,oBAG/B,CAAC,EAAE,OAAO,UAAU,MAAO,cAAc,eAAe,MAAM,MAAM,IAAI,GAAI;AAAA;AAAA,IAE5F,mCAAkB;AAAA;",
6
6
  "names": []
7
7
  }
@@ -16,6 +16,7 @@ const StyledContainer = styled("div", {
16
16
  margin-top: ${({ theme }) => theme.space.xxs};
17
17
  & div:not([role='checkbox']) {
18
18
  padding: 0;
19
+ margin-bottom: ${({ theme }) => theme.space.xxs};
19
20
  }
20
21
  & div:not(:last-child) {
21
22
  margin-right: ${({ theme, direction }) => direction === "horizontal" ? theme.space.s : "0"};
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../../scripts/build/transpile/react-shim.js", "../../../src/form-layout-checkbox-group/styles.tsx"],
4
- "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { styled, xStyledCommonProps } from '@elliemae/ds-system';\nimport {\n DSFormLayoutCheckboxGroupName,\n FORM_LAYOUT_CHECKBOX_GROUP_SLOTS,\n} from './DSFormLayoutCheckboxGroupDefinitions.js';\n\ntype DirectionsT = 'horizontal' | 'vertical';\n\ninterface DSControlledCheckboxGroupStyledContainerT {\n direction: DirectionsT;\n}\n\nexport const StyledContainer = styled('div', {\n name: DSFormLayoutCheckboxGroupName,\n slot: FORM_LAYOUT_CHECKBOX_GROUP_SLOTS.ROOT,\n})<DSControlledCheckboxGroupStyledContainerT>`\n display: inline-flex;\n flex-wrap: wrap;\n flex-direction: ${({ direction }) => (direction === 'horizontal' ? 'row' : 'column')};\n margin-left: ${({ theme }) => theme.space.xs};\n margin-right: ${({ theme }) => theme.space.xs};\n margin-top: ${({ theme }) => theme.space.xxs};\n & div:not([role='checkbox']) {\n padding: 0;\n }\n & div:not(:last-child) {\n margin-right: ${({ theme, direction }) => (direction === 'horizontal' ? theme.space.s : '0')};\n }\n ${xStyledCommonProps}\n`;\n"],
5
- "mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,QAAQ,0BAA0B;AAC3C;AAAA,EACE;AAAA,EACA;AAAA,OACK;AAQA,MAAM,kBAAkB,OAAO,OAAO;AAAA,EAC3C,MAAM;AAAA,EACN,MAAM,iCAAiC;AACzC,CAAC;AAAA;AAAA;AAAA,oBAGmB,CAAC,EAAE,UAAU,MAAO,cAAc,eAAe,QAAQ,QAAS;AAAA,iBACrE,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,EAAE;AAAA,kBAC5B,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,EAAE;AAAA,gBAC/B,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,GAAG;AAAA;AAAA;AAAA;AAAA;AAAA,oBAK1B,CAAC,EAAE,OAAO,UAAU,MAAO,cAAc,eAAe,MAAM,MAAM,IAAI,GAAI;AAAA;AAAA,IAE5F,kBAAkB;AAAA;",
4
+ "sourcesContent": ["import * as React from 'react';\nexport { React };\n", "import { styled, xStyledCommonProps } from '@elliemae/ds-system';\nimport {\n DSFormLayoutCheckboxGroupName,\n FORM_LAYOUT_CHECKBOX_GROUP_SLOTS,\n} from './DSFormLayoutCheckboxGroupDefinitions.js';\n\ntype DirectionsT = 'horizontal' | 'vertical';\n\ninterface DSControlledCheckboxGroupStyledContainerT {\n direction: DirectionsT;\n}\n\nexport const StyledContainer = styled('div', {\n name: DSFormLayoutCheckboxGroupName,\n slot: FORM_LAYOUT_CHECKBOX_GROUP_SLOTS.ROOT,\n})<DSControlledCheckboxGroupStyledContainerT>`\n display: inline-flex;\n flex-wrap: wrap;\n flex-direction: ${({ direction }) => (direction === 'horizontal' ? 'row' : 'column')};\n margin-left: ${({ theme }) => theme.space.xs};\n margin-right: ${({ theme }) => theme.space.xs};\n margin-top: ${({ theme }) => theme.space.xxs};\n & div:not([role='checkbox']) {\n padding: 0;\n margin-bottom: ${({ theme }) => theme.space.xxs};\n }\n & div:not(:last-child) {\n margin-right: ${({ theme, direction }) => (direction === 'horizontal' ? theme.space.s : '0')};\n }\n ${xStyledCommonProps}\n`;\n"],
5
+ "mappings": "AAAA,YAAY,WAAW;ACAvB,SAAS,QAAQ,0BAA0B;AAC3C;AAAA,EACE;AAAA,EACA;AAAA,OACK;AAQA,MAAM,kBAAkB,OAAO,OAAO;AAAA,EAC3C,MAAM;AAAA,EACN,MAAM,iCAAiC;AACzC,CAAC;AAAA;AAAA;AAAA,oBAGmB,CAAC,EAAE,UAAU,MAAO,cAAc,eAAe,QAAQ,QAAS;AAAA,iBACrE,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,EAAE;AAAA,kBAC5B,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,EAAE;AAAA,gBAC/B,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,GAAG;AAAA;AAAA;AAAA,qBAGzB,CAAC,EAAE,MAAM,MAAM,MAAM,MAAM,GAAG;AAAA;AAAA;AAAA,oBAG/B,CAAC,EAAE,OAAO,UAAU,MAAO,cAAc,eAAe,MAAM,MAAM,IAAI,GAAI;AAAA;AAAA,IAE5F,kBAAkB;AAAA;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-form-layout-blocks",
3
- "version": "3.60.0-next.45",
3
+ "version": "3.60.0-next.47",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Form Layout",
6
6
  "files": [
@@ -37,21 +37,21 @@
37
37
  },
38
38
  "dependencies": {
39
39
  "uid": "^2.0.2",
40
- "@elliemae/ds-grid": "3.60.0-next.45",
41
- "@elliemae/ds-props-helpers": "3.60.0-next.45",
42
- "@elliemae/ds-icons": "3.60.0-next.45",
43
- "@elliemae/ds-typescript-helpers": "3.60.0-next.45",
44
- "@elliemae/ds-system": "3.60.0-next.45"
40
+ "@elliemae/ds-grid": "3.60.0-next.47",
41
+ "@elliemae/ds-icons": "3.60.0-next.47",
42
+ "@elliemae/ds-props-helpers": "3.60.0-next.47",
43
+ "@elliemae/ds-system": "3.60.0-next.47",
44
+ "@elliemae/ds-typescript-helpers": "3.60.0-next.47"
45
45
  },
46
46
  "devDependencies": {
47
47
  "jest": "^30.0.0",
48
48
  "styled-components": "~5.3.9",
49
- "@elliemae/ds-form-checkbox": "3.60.0-next.45",
50
- "@elliemae/ds-form-input-text": "3.60.0-next.45",
51
- "@elliemae/ds-monorepo-devops": "3.60.0-next.45",
52
- "@elliemae/ds-test-utils": "3.60.0-next.45",
53
- "@elliemae/ds-form-input-textarea": "3.60.0-next.45",
54
- "@elliemae/ds-form-radio": "3.60.0-next.45"
49
+ "@elliemae/ds-form-checkbox": "3.60.0-next.47",
50
+ "@elliemae/ds-form-input-textarea": "3.60.0-next.47",
51
+ "@elliemae/ds-form-input-text": "3.60.0-next.47",
52
+ "@elliemae/ds-monorepo-devops": "3.60.0-next.47",
53
+ "@elliemae/ds-test-utils": "3.60.0-next.47",
54
+ "@elliemae/ds-form-radio": "3.60.0-next.47"
55
55
  },
56
56
  "peerDependencies": {
57
57
  "react": "^18.3.1",