react-store-input 0.2.5 → 0.2.6

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/dist/index.d.mts CHANGED
@@ -4,7 +4,7 @@ export { StoreInputProps, useStoreInput } from './use_store_input.mjs';
4
4
  export { Input, Select, StoreComponentPropsWithStore, StoreInputWithNameComponentProps, Textarea, useStoreComponent } from './use_store_component.mjs';
5
5
  export { FormStore, useFormStore } from './use_form_store.mjs';
6
6
  export { TextEditor, TextEditorProps } from './text_editor.mjs';
7
- import 'gw-store';
7
+ export * from 'gw-store';
8
8
  import 'react';
9
9
  import 'react/jsx-runtime';
10
10
  import './create_render.mjs';
package/dist/index.d.ts CHANGED
@@ -4,7 +4,7 @@ export { StoreInputProps, useStoreInput } from './use_store_input.js';
4
4
  export { Input, Select, StoreComponentPropsWithStore, StoreInputWithNameComponentProps, Textarea, useStoreComponent } from './use_store_component.js';
5
5
  export { FormStore, useFormStore } from './use_form_store.js';
6
6
  export { TextEditor, TextEditorProps } from './text_editor.js';
7
- import 'gw-store';
7
+ export * from 'gw-store';
8
8
  import 'react';
9
9
  import 'react/jsx-runtime';
10
10
  import './create_render.js';
package/dist/index.js CHANGED
@@ -15,6 +15,7 @@ var __copyProps = (to, from, except, desc) => {
15
15
  }
16
16
  return to;
17
17
  };
18
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
18
19
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
20
 
20
21
  // src/index.tsx
@@ -363,6 +364,9 @@ function useFormStore(initialState) {
363
364
  ...storeComponent
364
365
  };
365
366
  }
367
+
368
+ // src/index.tsx
369
+ __reExport(index_exports, require("gw-store"), module.exports);
366
370
  // Annotate the CommonJS export names for ESM import in node:
367
371
  0 && (module.exports = {
368
372
  Input,
@@ -373,5 +377,6 @@ function useFormStore(initialState) {
373
377
  useStoreComponent,
374
378
  useStoreController,
375
379
  useStoreInput,
376
- useStoreInputWithName
380
+ useStoreInputWithName,
381
+ ...require("gw-store")
377
382
  });
package/dist/index.mjs CHANGED
@@ -331,6 +331,9 @@ function useFormStore(initialState) {
331
331
  ...storeComponent
332
332
  };
333
333
  }
334
+
335
+ // src/index.tsx
336
+ export * from "gw-store";
334
337
  export {
335
338
  Input,
336
339
  Select,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-store-input",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "types": "./dist/index.d.ts",
5
5
  "main": "./dist/index.mjs",
6
6
  "module": "./dist/index.js",