@effect-app/vue 2.80.3-next.1 → 2.80.3-next.2

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
@@ -1,5 +1,11 @@
1
1
  # @effect-app/vue
2
2
 
3
+ ## 2.80.3-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 1b2a645: $ apparently not allowed
8
+
3
9
  ## 2.80.3-next.1
4
10
 
5
11
  ### Patch Changes
@@ -187,11 +187,11 @@ export class CommanderImpl {
187
187
  const action = this.intl.formatMessage({
188
188
  id: namespace,
189
189
  defaultMessage: id
190
- }, { ...options?.state, $isLabel: false });
190
+ }, { ...options?.state, _isLabel: false });
191
191
  const label = this.intl.formatMessage({
192
192
  id: namespace,
193
193
  defaultMessage: id
194
- }, { ...options?.state, $isLabel: true });
194
+ }, { ...options?.state, _isLabel: true });
195
195
  const context = CommandContext.of({
196
196
  ...makeBaseInfo(id, options),
197
197
  action,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@effect-app/vue",
3
- "version": "2.80.3-next.1",
3
+ "version": "2.80.3-next.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/effect-ts-app/libs/tree/main/packages/vue",
@@ -1196,12 +1196,12 @@ export class CommanderImpl<RT> {
1196
1196
  const action = this.intl.formatMessage({
1197
1197
  id: namespace,
1198
1198
  defaultMessage: id
1199
- }, { ...options?.state, $isLabel: false })
1199
+ }, { ...options?.state, _isLabel: false })
1200
1200
 
1201
1201
  const label = this.intl.formatMessage({
1202
1202
  id: namespace,
1203
1203
  defaultMessage: id
1204
- }, { ...options?.state, $isLabel: true })
1204
+ }, { ...options?.state, _isLabel: true })
1205
1205
 
1206
1206
  const context = CommandContext.of({
1207
1207
  ...makeBaseInfo(id, options),