@dfds-ui/forms 2.0.13-alpha.06f68b27 → 2.0.13-alpha.0fc46629
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/cjs/switch/index.d.ts +2 -1
- package/cjs/switch/index.js +21 -6
- package/package.json +7 -7
- package/switch/index.d.ts +2 -1
- package/switch/index.js +2 -1
package/cjs/switch/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './Switch';
|
|
2
|
+
export * from './SwitchGroup';
|
package/cjs/switch/index.js
CHANGED
|
@@ -3,10 +3,25 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
var _Switch = require("./Switch");
|
|
7
|
+
Object.keys(_Switch).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _Switch[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function get() {
|
|
13
|
+
return _Switch[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
11
16
|
});
|
|
12
|
-
var
|
|
17
|
+
var _SwitchGroup = require("./SwitchGroup");
|
|
18
|
+
Object.keys(_SwitchGroup).forEach(function (key) {
|
|
19
|
+
if (key === "default" || key === "__esModule") return;
|
|
20
|
+
if (key in exports && exports[key] === _SwitchGroup[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function get() {
|
|
24
|
+
return _SwitchGroup[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Form components",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
|
-
"version": "2.0.13-alpha.
|
|
6
|
+
"version": "2.0.13-alpha.0fc46629",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./cjs/index.js",
|
|
9
9
|
"module": "./index.js",
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
"react-select": "^4.0.0"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@dfds-ui/hooks": "2.0.13-alpha.
|
|
21
|
-
"@dfds-ui/icons": "2.0.13-alpha.
|
|
22
|
-
"@dfds-ui/react-components": "2.0.13-alpha.
|
|
23
|
-
"@dfds-ui/theme": "2.0.13-alpha.
|
|
24
|
-
"@dfds-ui/typography": "2.0.13-alpha.
|
|
20
|
+
"@dfds-ui/hooks": "2.0.13-alpha.0fc46629",
|
|
21
|
+
"@dfds-ui/icons": "2.0.13-alpha.0fc46629",
|
|
22
|
+
"@dfds-ui/react-components": "2.0.13-alpha.0fc46629",
|
|
23
|
+
"@dfds-ui/theme": "2.0.13-alpha.0fc46629",
|
|
24
|
+
"@dfds-ui/typography": "2.0.13-alpha.0fc46629"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "0fc4662917c0fdd32a66d819f4ad114cb3b79e84",
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"access": "public"
|
|
29
29
|
}
|
package/switch/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './Switch';
|
|
2
|
+
export * from './SwitchGroup';
|
package/switch/index.js
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './Switch';
|
|
2
|
+
export * from './SwitchGroup';
|