@synerise/ds-action-area 1.0.48 → 1.0.50

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,14 @@
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
+ ## [1.0.50](https://github.com/Synerise/synerise-design/compare/@synerise/ds-action-area@1.0.49...@synerise/ds-action-area@1.0.50) (2026-04-10)
7
+
8
+ **Note:** Version bump only for package @synerise/ds-action-area
9
+
10
+ ## [1.0.49](https://github.com/Synerise/synerise-design/compare/@synerise/ds-action-area@1.0.48...@synerise/ds-action-area@1.0.49) (2026-04-01)
11
+
12
+ **Note:** Version bump only for package @synerise/ds-action-area
13
+
6
14
  ## [1.0.48](https://github.com/Synerise/synerise-design/compare/@synerise/ds-action-area@1.0.47...@synerise/ds-action-area@1.0.48) (2026-03-24)
7
15
 
8
16
  **Note:** Version bump only for package @synerise/ds-action-area
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synerise/ds-action-area",
3
- "version": "1.0.48",
3
+ "version": "1.0.50",
4
4
  "description": "ActionArea UI Component for the Synerise Design System",
5
5
  "license": "ISC",
6
6
  "repository": "Synerise/synerise-design",
@@ -17,10 +17,7 @@
17
17
  },
18
18
  "scripts": {
19
19
  "build": "vite build",
20
- "build:css": "node ../../../scripts/style/less.js",
21
- "build:js": "babel --delete-dir-on-start --root-mode upward src --out-dir dist --extensions '.js,.ts,.tsx'",
22
20
  "build:watch": "vite build --watch",
23
- "defs": "tsc --declaration --outDir dist/ --emitDeclarationOnly",
24
21
  "pack:ci": "pnpm pack --pack-destination ../../storybook/storybook-static/static",
25
22
  "prepublish": "pnpm run build",
26
23
  "test": "vitest run",
@@ -35,8 +32,8 @@
35
32
  ],
36
33
  "types": "dist/index.d.ts",
37
34
  "dependencies": {
38
- "@synerise/ds-button": "^1.5.18",
39
- "@synerise/ds-typography": "^1.1.13",
35
+ "@synerise/ds-button": "^1.5.20",
36
+ "@synerise/ds-typography": "^1.1.15",
40
37
  "classnames": "^2.5.1"
41
38
  },
42
39
  "peerDependencies": {
@@ -45,5 +42,5 @@
45
42
  "styled-components": "^5.3.3",
46
43
  "vitest": "4"
47
44
  },
48
- "gitHead": "e4ecca8944fc9b41c1b9d59c8bcad5e5e2013225"
45
+ "gitHead": "ce3c6d75efe8573a2b274853636f959b75a6cd32"
49
46
  }
@@ -1 +0,0 @@
1
- export {};
@@ -1,49 +0,0 @@
1
- import { jsx } from "react/jsx-runtime";
2
- import figma from "@figma/code-connect";
3
- import ActionArea from "./ActionArea.js";
4
- const FIGMA_URL = "https://www.figma.com/design/fsSZONXpVvtrDsCgtu01Jb/Synerise-Design-System?node-id=1302:19040&m=dev";
5
- const baseProps = {
6
- label: figma.boolean("Show Header", {
7
- true: figma.string("✏️Header Text"),
8
- false: void 0
9
- }),
10
- description: figma.boolean("Show description", {
11
- true: figma.string("✏️Description Text"),
12
- false: void 0
13
- })
14
- };
15
- figma.connect(ActionArea, FIGMA_URL, {
16
- variant: {
17
- State: "Default"
18
- },
19
- props: baseProps,
20
- example: ({
21
- label,
22
- description
23
- }) => /* @__PURE__ */ jsx(ActionArea, { label, description, action: () => {
24
- }, actionLabel: "Select template" })
25
- });
26
- figma.connect(ActionArea, FIGMA_URL, {
27
- variant: {
28
- State: "Disabled"
29
- },
30
- props: baseProps,
31
- example: ({
32
- label,
33
- description
34
- }) => /* @__PURE__ */ jsx(ActionArea, { label, description, action: () => {
35
- }, actionLabel: "Select template", buttonProps: {
36
- disabled: true
37
- } })
38
- });
39
- figma.connect(ActionArea, FIGMA_URL, {
40
- variant: {
41
- State: "Error"
42
- },
43
- props: baseProps,
44
- example: ({
45
- label,
46
- description
47
- }) => /* @__PURE__ */ jsx(ActionArea, { label, description, action: () => {
48
- }, actionLabel: "Select template", isError: true, errorText: "Error message" })
49
- });