@kopexa/toggle-row 0.0.2 → 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/package.json +16 -12
- package/src/index.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/toggle-row",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "Toggle row component with label and switch",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"toggle-row",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"author": "Kopexa <hello@kopexa.com>",
|
|
11
11
|
"homepage": "https://kopexa.com",
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
|
-
"main": "
|
|
13
|
+
"main": "dist/index.js",
|
|
14
14
|
"sideEffects": false,
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
@@ -29,20 +29,24 @@
|
|
|
29
29
|
"peerDependencies": {
|
|
30
30
|
"react": ">=19.0.0-rc.0",
|
|
31
31
|
"react-dom": ">=19.0.0-rc.0",
|
|
32
|
-
"@kopexa/theme": "17.22.
|
|
32
|
+
"@kopexa/theme": "17.22.1"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@kopexa/switch": "17.2.
|
|
36
|
-
"@kopexa/react-utils": "17.0.
|
|
37
|
-
"@kopexa/shared-utils": "17.0.
|
|
38
|
-
},
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"clean-package": "2.2.0",
|
|
41
|
-
"react": "^19.2.3",
|
|
42
|
-
"react-dom": "^19.2.3",
|
|
43
|
-
"@kopexa/theme": "17.22.0"
|
|
35
|
+
"@kopexa/switch": "17.2.5",
|
|
36
|
+
"@kopexa/react-utils": "17.0.40",
|
|
37
|
+
"@kopexa/shared-utils": "17.0.40"
|
|
44
38
|
},
|
|
45
39
|
"clean-package": "../../../clean-package.config.json",
|
|
40
|
+
"module": "dist/index.mjs",
|
|
41
|
+
"types": "dist/index.d.ts",
|
|
42
|
+
"exports": {
|
|
43
|
+
".": {
|
|
44
|
+
"types": "./dist/index.d.ts",
|
|
45
|
+
"import": "./dist/index.mjs",
|
|
46
|
+
"require": "./dist/index.js"
|
|
47
|
+
},
|
|
48
|
+
"./package.json": "./package.json"
|
|
49
|
+
},
|
|
46
50
|
"scripts": {
|
|
47
51
|
"build": "tsup src --dts",
|
|
48
52
|
"build:fast": "tsup src",
|
package/src/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ToggleRow, type ToggleRowProps } from "./toggle-row";
|