@mittwald/flow-remote-react-components 0.2.0-alpha.1022 → 0.2.0-alpha.1024

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.
@@ -3,7 +3,7 @@
3
3
  import { Version } from '@mittwald/flow-remote-core';
4
4
 
5
5
  const communicationVersion = Version.v5;
6
- const packageVersion = "0.2.0-alpha.1021";
6
+ const packageVersion = "0.2.0-alpha.1023";
7
7
  const version = communicationVersion;
8
8
 
9
9
  export { communicationVersion, packageVersion, version };
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Backdrop that keeps an `AlphaColor` legible in both themes.
3
+ *
4
+ * `dark`/`light` invert with the theme themselves (`color-palette.*.yml`), so
5
+ * `dark` gets its contrast from the theme-adaptive `neutral` background, while
6
+ * `light` needs the opposite of `neutral` in the current theme.
7
+ * `dark-static`/`light-static` never invert, so they always need the fixed
8
+ * backdrop opposite their own name.
9
+ */
10
+ export declare const alphaColorAccentBoxBackground: (color: string) => string;
11
+ //# sourceMappingURL=alphaColorAccentBoxBackground.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"alphaColorAccentBoxBackground.d.ts","sourceRoot":"","sources":["../../../../src/tests/lib/alphaColorAccentBoxBackground.ts"],"names":[],"mappings":"AAKA;;;;;;;;GAQG;AACH,eAAO,MAAM,6BAA6B,GAAI,OAAO,MAAM,KAAG,MAM7D,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const isDarkVisualTheme: () => boolean;
2
+ //# sourceMappingURL=visualTheme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"visualTheme.d.ts","sourceRoot":"","sources":["../../../../src/tests/lib/visualTheme.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,iBAAiB,QAAO,OACA,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Badge.browser.test.d.ts","sourceRoot":"","sources":["../../../../src/tests/visual/Badge.browser.test.tsx"],"names":[],"mappings":"AAQA,eAAO,MAAM,MAAM,2IAWT,CAAC"}
1
+ {"version":3,"file":"Badge.browser.test.d.ts","sourceRoot":"","sources":["../../../../src/tests/visual/Badge.browser.test.tsx"],"names":[],"mappings":"AASA,eAAO,MAAM,MAAM,2IAWT,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Button.scenarios.d.ts","sourceRoot":"","sources":["../../../../src/tests/visual/Button.scenarios.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAgBlE,eAAO,MAAM,eAAe,EAAE,eAiG7B,CAAC;AAEF,eAAe,eAAe,CAAC"}
1
+ {"version":3,"file":"Button.scenarios.d.ts","sourceRoot":"","sources":["../../../../src/tests/visual/Button.scenarios.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAgBlE,eAAO,MAAM,eAAe,EAAE,eA+F7B,CAAC;AAEF,eAAe,eAAe,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/flow-remote-react-components",
3
- "version": "0.2.0-alpha.1022",
3
+ "version": "0.2.0-alpha.1024",
4
4
  "type": "module",
5
5
  "description": "React components that can be used in a remote environment",
6
6
  "homepage": "https://flow.mittwald.de",
@@ -50,19 +50,19 @@
50
50
  "test:visual:update": "vitest run --project=visual --browser.headless --update --browser.fileParallelism=false"
51
51
  },
52
52
  "dependencies": {
53
- "@mittwald/flow-react-components": "0.2.0-alpha.1022",
54
- "@mittwald/flow-remote-core": "0.2.0-alpha.1022",
55
- "@mittwald/flow-remote-elements": "0.2.0-alpha.1022",
53
+ "@mittwald/flow-react-components": "0.2.0-alpha.1024",
54
+ "@mittwald/flow-remote-core": "0.2.0-alpha.1024",
55
+ "@mittwald/flow-remote-elements": "0.2.0-alpha.1024",
56
56
  "@mittwald/remote-dom-react": "1.2.2-mittwald.10",
57
57
  "@types/react": "^19.2",
58
58
  "react-error-boundary": "^6.1.2"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@internationalized/date": "^3.12.2",
62
- "@mittwald/ext-bridge": "0.2.0-alpha.1022",
63
- "@mittwald/flow-core": "0.2.0-alpha.1022",
64
- "@mittwald/flow-remote-react-renderer": "0.2.0-alpha.1022",
65
- "@mittwald/typescript-config": "0.2.0-alpha.1022",
62
+ "@mittwald/ext-bridge": "0.2.0-alpha.1024",
63
+ "@mittwald/flow-core": "0.2.0-alpha.1024",
64
+ "@mittwald/flow-remote-react-renderer": "0.2.0-alpha.1024",
65
+ "@mittwald/typescript-config": "0.2.0-alpha.1024",
66
66
  "@types/node": "^25.9.3",
67
67
  "@types/react-dom": "^19.2",
68
68
  "@types/semver": "^7.5.8",
@@ -90,7 +90,7 @@
90
90
  },
91
91
  "peerDependencies": {
92
92
  "@internationalized/date": "^3.12.2",
93
- "@mittwald/ext-bridge": "0.2.0-alpha.1022",
93
+ "@mittwald/ext-bridge": "0.2.0-alpha.1024",
94
94
  "react": "^19.2.0",
95
95
  "react-hook-form": "^7.65.0"
96
96
  },
@@ -105,5 +105,5 @@
105
105
  "optional": true
106
106
  }
107
107
  },
108
- "gitHead": "6a929a24a2540a2e0cb4b993a57b8408efc23f8b"
108
+ "gitHead": "7b489fefc14b067ed2df372b96f35863ecaf5fc4"
109
109
  }