octane 0.1.18 → 0.1.19

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.
@@ -10,6 +10,7 @@ const DOM_RENDERER = Object.freeze({ id: 'dom', module: 'octane', target: 'dom'
10
10
  const AUTO_RUNTIME_HOOKS = new Set([
11
11
  'use',
12
12
  'useState',
13
+ 'useLinkedState',
13
14
  'useReducer',
14
15
  'useEffect',
15
16
  'useLayoutEffect',
@@ -31,6 +31,7 @@ const UNIVERSAL_RUNTIME_IMPORTS = new Set([
31
31
  'useImperativeHandle',
32
32
  'useInsertionEffect',
33
33
  'useLayoutEffect',
34
+ 'useLinkedState',
34
35
  'useMemo',
35
36
  'useOptimistic',
36
37
  'useReducer',
@@ -657,7 +658,7 @@ function createLexicalAnalysis(ast) {
657
658
  return;
658
659
  }
659
660
  if (node.type === 'TSModuleDeclaration') {
660
- if (node.declare === true || node.global === true) {
661
+ if (node.declare === true || node.kind === 'global') {
661
662
  if (node.id) declarePattern(node.id, null);
662
663
  return;
663
664
  }
@@ -3021,6 +3022,7 @@ function emitComponentAst(shape, state) {
3021
3022
 
3022
3023
  export const UNIVERSAL_COMPILER_RUNTIME_IMPORTS = new Set([
3023
3024
  ...UNIVERSAL_RUNTIME_IMPORTS,
3025
+ '__useLinkedStateWithGetter',
3024
3026
  '__useReducerWithGetter',
3025
3027
  '__useStateWithGetter',
3026
3028
  'hookSlots',
@@ -3386,6 +3388,7 @@ export function lowerUniversalRendererRegionAst(
3386
3388
  Object.fromEntries(
3387
3389
  [
3388
3390
  '__useStateWithGetter',
3391
+ '__useLinkedStateWithGetter',
3389
3392
  '__useReducerWithGetter',
3390
3393
  'useMemo',
3391
3394
  'useBatch',