@digigov/react-experimental 2.0.0-rc.0 → 2.0.0-rc.2

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/index.js CHANGED
@@ -35,4 +35,15 @@ Object.keys(_OptionButtonSteps).forEach(function (key) {
35
35
  return _OptionButtonSteps[key];
36
36
  }
37
37
  });
38
+ });
39
+ var _Kitchensink = require("@digigov/react-experimental/Kitchensink");
40
+ Object.keys(_Kitchensink).forEach(function (key) {
41
+ if (key === "default" || key === "__esModule") return;
42
+ if (key in exports && exports[key] === _Kitchensink[key]) return;
43
+ Object.defineProperty(exports, key, {
44
+ enumerable: true,
45
+ get: function get() {
46
+ return _Kitchensink[key];
47
+ }
48
+ });
38
49
  });
package/index.js CHANGED
@@ -1,8 +1,9 @@
1
- /** @license Digigov v2.0.0-rc.0
1
+ /** @license Digigov v2.0.0-rc.2
2
2
  *
3
3
  * This source code is licensed under the BSD-2-Clause license found in the
4
4
  * LICENSE file in the root directory of this source tree.
5
5
  */
6
6
  export * from '@digigov/react-experimental/FloatingButton';
7
7
  export * from '@digigov/react-experimental/OptionButtonBase';
8
- export * from '@digigov/react-experimental/OptionButtonSteps';
8
+ export * from '@digigov/react-experimental/OptionButtonSteps';
9
+ export * from '@digigov/react-experimental/Kitchensink';
@@ -14,5 +14,6 @@ export * from "@digigov/ui/form/TextInput/__stories__/WithHint";
14
14
  export * from "@digigov/ui/form/TextInput/__stories__/AskingForNumbers";
15
15
  export * from "@digigov/ui/form/TextInput/__stories__/WithErrorMessage";
16
16
  export * from "@digigov/ui/form/TextInput/__stories__/DisabledInput";
17
+ export * from "@digigov/ui/form/TextInput/__stories__/DisabledInputWithValue";
17
18
  export * from "@digigov/ui/form/TextInput/__stories__/Dense";
18
19
  import TextInput from '@digigov/ui/form/TextInput';
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ export declare const DisabledInputWithValue: () => JSX.Element;
3
+ export default DisabledInputWithValue;
@@ -168,6 +168,7 @@ declare const _default: {
168
168
  '@digigov/ui/typography': {};
169
169
  '@digigov/ui/typography/NormalText': {};
170
170
  '@digigov/ui/typography/Paragraph': {};
171
+ '@digigov/ui/typography/Typography': {};
171
172
  '@digigov/ui/utils/Base': {};
172
173
  '@digigov/ui/utils/hooks/useDebounce': {};
173
174
  '@digigov/ui/utils/hooks/useKeypress': {};
@@ -0,0 +1,3 @@
1
+ import Typography from '@digigov/react-core/Typography';
2
+ export * from '@digigov/react-core/Typography';
3
+ export default Typography;
@@ -3,3 +3,4 @@ export * from '@digigov/ui/typography/HeadingCaption';
3
3
  export * from '@digigov/ui/typography/Paragraph';
4
4
  export * from '@digigov/ui/typography/NormalText';
5
5
  export * from '@digigov/ui/typography/Hint';
6
+ export * from '@digigov/ui/typography/Typography';
@@ -1,3 +1,4 @@
1
1
  export * from '@digigov/react-experimental/FloatingButton';
2
2
  export * from '@digigov/react-experimental/OptionButtonBase';
3
3
  export * from '@digigov/react-experimental/OptionButtonSteps';
4
+ export * from '@digigov/react-experimental/Kitchensink';
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@digigov/react-experimental",
3
- "version": "2.0.0-rc.0",
3
+ "version": "2.0.0-rc.2",
4
4
  "description": "@digigov react experimental components",
5
5
  "author": "GRNET Developers <devs@lists.grnet.gr>",
6
6
  "license": "BSD-2-Clause",
7
7
  "main": "./cjs/index.js",
8
8
  "module": "./index.js",
9
9
  "peerDependencies": {
10
- "@digigov/css": "1.3.0-rc.0",
11
- "@digigov/react-icons": "2.0.0-rc.0",
12
- "@digigov/ui": "2.0.0-rc.0",
13
- "@digigov/react-core": "2.0.0-rc.0",
10
+ "@digigov/css": "2.0.0-rc.2",
11
+ "@digigov/react-icons": "2.0.0-rc.2",
12
+ "@digigov/ui": "2.0.0-rc.2",
13
+ "@digigov/react-core": "2.0.0-rc.2",
14
14
  "clsx": "1.1.1",
15
15
  "react": "^16.8.0 || ^17.0.0",
16
16
  "react-dom": "^16.8.0 || ^17.0.0"
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from '@digigov/react-experimental/FloatingButton';
2
2
  export * from '@digigov/react-experimental/OptionButtonBase';
3
3
  export * from '@digigov/react-experimental/OptionButtonSteps';
4
+ export * from '@digigov/react-experimental/Kitchensink';