@bind-ts/bind-core 0.0.1 → 0.0.3
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/esm/BindApi.d.ts +1 -1
- package/package.json +9 -1
- package/src/BindApi.ts +1 -1
package/dist/esm/BindApi.d.ts
CHANGED
|
@@ -30,7 +30,7 @@ export interface BindOptions<TValues extends readonly string[]> {
|
|
|
30
30
|
* A class representing the Bind API. It handles the logic and interactions
|
|
31
31
|
* with exclusive selection state (like tabs, accordions, multi-step forms).
|
|
32
32
|
*
|
|
33
|
-
* This is framework-agnostic - use with a framework adapter like `@bind/react`.
|
|
33
|
+
* This is framework-agnostic - use with a framework adapter like `@bind-ts/react`.
|
|
34
34
|
*/
|
|
35
35
|
export declare class BindApi<TValues extends readonly string[]> {
|
|
36
36
|
/**
|
package/package.json
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bind-ts/bind-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Type-safe, framework-agnostic state management for compound components",
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/a-is4-adam/bind-ts.git",
|
|
10
|
+
"directory": "packages/bind-core"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/a-is4-adam/bind-ts/issues"
|
|
14
|
+
},
|
|
7
15
|
"type": "module",
|
|
8
16
|
"types": "dist/esm/index.d.ts",
|
|
9
17
|
"main": "dist/cjs/index.cjs",
|
package/src/BindApi.ts
CHANGED
|
@@ -31,7 +31,7 @@ export interface BindOptions<TValues extends readonly string[]> {
|
|
|
31
31
|
* A class representing the Bind API. It handles the logic and interactions
|
|
32
32
|
* with exclusive selection state (like tabs, accordions, multi-step forms).
|
|
33
33
|
*
|
|
34
|
-
* This is framework-agnostic - use with a framework adapter like `@bind/react`.
|
|
34
|
+
* This is framework-agnostic - use with a framework adapter like `@bind-ts/react`.
|
|
35
35
|
*/
|
|
36
36
|
export class BindApi<TValues extends readonly string[]> {
|
|
37
37
|
/**
|