@blockquote-web-components/blockquote-controller-xstate 1.0.0 → 1.0.1

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/README.md CHANGED
@@ -14,7 +14,7 @@ This controller allows you to subscribe to an XState actor, updating a specified
14
14
 
15
15
  ### Demo
16
16
 
17
- [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/oscarmarina/XstateController)
17
+ [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/oscarmarina/blockquote-web-components/tree/main/packages/controllers/blockquote-controller-xstate)
18
18
 
19
19
  [![Stately.ai](https://img.shields.io/badge/Stately.ai-black.svg)](https://stately.ai/registry/editor/154a7a42-9338-4cc0-8c0c-131c859d8349)
20
20
 
@@ -97,7 +97,7 @@ export const counterMachine = createMachine(
97
97
 
98
98
  ```javascript
99
99
  import { html, LitElement } from 'lit';
100
- import { BlockquoteControllerXstate } from './BlockquoteControllerXstate.js';
100
+ import { BlockquoteControllerXstate } from '@blockquote-web-components/blockquote-controller-xstate';
101
101
  import { counterMachine } from './counterMachine.js';
102
102
 
103
103
  export class XstateCounter extends LitElement {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockquote-web-components/blockquote-controller-xstate",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "This controller allows you to subscribe to an XState actor, updating a specified reactive property whenever the state machine transitions.",
5
5
  "keywords": [
6
6
  "lit",
@@ -137,11 +137,11 @@
137
137
  },
138
138
  "devDependencies": {
139
139
  "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.7.0",
140
- "@blockquote-web-components/blockquote-base-embedded-webview": "^1.6.1"
140
+ "@blockquote-web-components/blockquote-base-embedded-webview": "^1.6.2"
141
141
  },
142
142
  "publishConfig": {
143
143
  "access": "public"
144
144
  },
145
145
  "customElements": "custom-elements.json",
146
- "gitHead": "e2417c85a1b9179b093333c0dd89f90fdbb4e91b"
146
+ "gitHead": "1e72d38b0abdb0fddc1ccc9412f83485e9f6b5b0"
147
147
  }
@@ -17,7 +17,7 @@ import { createActor } from 'xstate';
17
17
  *
18
18
  * ### Demo
19
19
  *
20
- * [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/oscarmarina/XstateController)
20
+ * [![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/oscarmarina/blockquote-web-components/tree/main/packages/controllers/blockquote-controller-xstate)
21
21
  *
22
22
  * [![Stately.ai](https://img.shields.io/badge/Stately.ai-black.svg)](https://stately.ai/registry/editor/154a7a42-9338-4cc0-8c0c-131c859d8349)
23
23
  *
@@ -100,7 +100,7 @@ import { createActor } from 'xstate';
100
100
  *
101
101
  * ```javascript
102
102
  * import { html, LitElement } from 'lit';
103
- * import { BlockquoteControllerXstate } from './BlockquoteControllerXstate.js';
103
+ * import { BlockquoteControllerXstate } from '@blockquote-web-components/blockquote-controller-xstate';
104
104
  * import { counterMachine } from './counterMachine.js';
105
105
  *
106
106
  * export class XstateCounter extends LitElement {