@homefile/components-v2 1.0.12 → 1.0.13

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.
@@ -4,7 +4,6 @@ import { HomeAssistantButton, HomeAssistantStepper } from '..';
4
4
  import { homeAssistantSteps } from '../../helpers';
5
5
  import { useComponentStyles } from '../../hooks';
6
6
  export const HomeAssistantSteps = ({ currentStep, onStepClick, currentPanel, }) => {
7
- const wrapperZIndex = currentPanel ? undefined : '2';
8
7
  const stepId = `homeAssistantButton-${currentPanel}`;
9
8
  const componentIds = currentPanel
10
9
  ? [
@@ -9,6 +9,7 @@ export default {
9
9
  args: {
10
10
  currentStep: 4,
11
11
  currentForm: homeAssitantStep1FormMock,
12
+ onApplianceClick: action('onApplianceClick'),
12
13
  },
13
14
  decorators: [
14
15
  (Story) => (_jsx(RightPanel, { isOpen: true, onClose: action('onClose'), children: _jsx(Story, {}) })),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homefile/components-v2",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "author": "Homefile",
5
5
  "license": "UNLICENSED",
6
6
  "typings": "dist/index.d.ts",
@@ -9,7 +9,6 @@ export const HomeAssistantSteps = ({
9
9
  onStepClick,
10
10
  currentPanel,
11
11
  }: HomeAssistantStepsI) => {
12
- const wrapperZIndex = currentPanel ? undefined : '2'
13
12
  const stepId = `homeAssistantButton-${currentPanel}`
14
13
  const componentIds = currentPanel
15
14
  ? [
@@ -18,6 +18,7 @@ export default {
18
18
  args: {
19
19
  currentStep: 4,
20
20
  currentForm: homeAssitantStep1FormMock,
21
+ onApplianceClick: action('onApplianceClick'),
21
22
  },
22
23
  decorators: [
23
24
  (Story: any) => (