@synerise/ds-card-select 0.5.28 → 0.5.30

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.5.30](https://github.com/Synerise/synerise-design/compare/@synerise/ds-card-select@0.5.29...@synerise/ds-card-select@0.5.30) (2023-12-13)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **card-select:** fixed vertical alignemtn in group of cards ([406952a](https://github.com/Synerise/synerise-design/commit/406952a26ce2f5ddb32cc7945bf52d54d323134b))
12
+
13
+
14
+
15
+
16
+
17
+ ## [0.5.29](https://github.com/Synerise/synerise-design/compare/@synerise/ds-card-select@0.5.28...@synerise/ds-card-select@0.5.29) (2023-12-11)
18
+
19
+ **Note:** Version bump only for package @synerise/ds-card-select
20
+
21
+
22
+
23
+
24
+
6
25
  ## [0.5.28](https://github.com/Synerise/synerise-design/compare/@synerise/ds-card-select@0.5.27...@synerise/ds-card-select@0.5.28) (2023-10-30)
7
26
 
8
27
  **Note:** Version bump only for package @synerise/ds-card-select
@@ -83,7 +83,7 @@ export var Container = styled.div.withConfig({
83
83
  }, is('error')(_templateObject2 || (_templateObject2 = _taggedTemplateLiteralLoose(["\n &&, &&:hover {\n box-shadow: 0px 0px 0px 2px ", ";\n }\n "])), getVar('red-500')), function (props) {
84
84
  return mapElementsPosition[props.elementsPosition];
85
85
  }, getVar('white'), function (props) {
86
- return props.size === 'small' ? '24px 16px 12px' : '24px';
86
+ return props.size === 'small' ? '16px' : '24px';
87
87
  }, getVar('blue-600'), isNot('pressed') && isNot('value')(_templateObject3 || (_templateObject3 = _taggedTemplateLiteralLoose(["box-shadow: 0px 0px 0px 1px ", ";"])), getVar('grey-300')), is('value')(_templateObject4 || (_templateObject4 = _taggedTemplateLiteralLoose(["\n box-shadow: 0px 0px 0px 2px ", ";\n "])), getVar('blue-600')), is('value') && is('pressed')(_templateObject5 || (_templateObject5 = _taggedTemplateLiteralLoose([" box-shadow: 0px 0px 0px 2px ", ";"])), getVar('blue-600')), is('value') && is('raised')(_templateObject6 || (_templateObject6 = _taggedTemplateLiteralLoose(["\n box-shadow: 0px 0px 0px 2px ", ";\n "])), getVar('blue-600')), is('value') && is('pressed')(_templateObject7 || (_templateObject7 = _taggedTemplateLiteralLoose([" box-shadow: 0px 0px 0px 2px ", ";"])), getVar('blue-600')), Title, Description, IconWrapper, function (props) {
88
88
  return props.elementsPosition;
89
89
  }, Aside, function (props) {
@@ -102,7 +102,7 @@ export var Container = styled.div.withConfig({
102
102
  export var Main = styled.div.withConfig({
103
103
  displayName: "CardSelectstyles__Main",
104
104
  componentId: "tfmgtj-6"
105
- })(["display:flex;flex-direction:column;flex-wrap:wrap;align-items:center;justify-content:center;"]);
105
+ })(["display:flex;flex-direction:column;flex-wrap:wrap;align-items:center;justify-content:flex-start;"]);
106
106
  export var TickIcon = styled.div.withConfig({
107
107
  displayName: "CardSelectstyles__TickIcon",
108
108
  componentId: "tfmgtj-7"
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export { default } from './CardSelect';
2
+ export { default as CardSelectGroup } from './CardSelectGroup/CardSelectGroup';
package/dist/index.js CHANGED
@@ -1 +1,2 @@
1
- export { default } from './CardSelect';
1
+ export { default } from './CardSelect';
2
+ export { default as CardSelectGroup } from './CardSelectGroup/CardSelectGroup';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-card-select",
3
- "version": "0.5.28",
3
+ "version": "0.5.30",
4
4
  "description": "Card-Select UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -18,7 +18,7 @@
18
18
  "scripts": {
19
19
  "build": "npm run build:js && npm run build:css && npm run defs",
20
20
  "build:css": "node ../../../scripts/style/less.js",
21
- "build:js": "babel --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
21
+ "build:js": "babel --delete-dir-on-start --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
22
22
  "build:watch": "npm run build:js -- --watch",
23
23
  "defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
24
24
  "pack:ci": "npm pack --pack-destination ../../portal/storybook-static/static",
@@ -33,7 +33,7 @@
33
33
  ],
34
34
  "types": "dist/index.d.ts",
35
35
  "dependencies": {
36
- "@synerise/ds-icon": "^0.58.7",
36
+ "@synerise/ds-icon": "^0.58.9",
37
37
  "styled-is": "^1.3.0"
38
38
  },
39
39
  "peerDependencies": {
@@ -43,7 +43,7 @@
43
43
  "styled-components": "5.0.1"
44
44
  },
45
45
  "devDependencies": {
46
- "@synerise/ds-utils": "^0.24.21"
46
+ "@synerise/ds-utils": "^0.24.23"
47
47
  },
48
- "gitHead": "854aa713ea3fb1e9348fd351888da807f761a3f4"
48
+ "gitHead": "76edb4723a30c59f1a54f666f66fcd814de0af70"
49
49
  }