@nulogy/components 14.1.2 → 14.1.4
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/main.js +928 -517
- package/dist/main.module.js +928 -517
- package/dist/src/BottomSheet/stories/BottomSheet.features.story.d.ts +6 -0
- package/dist/src/DatePickers/shared/types.d.ts +1 -1
- package/dist/src/DatePickers/stories/MonthPicker.story.d.ts +1 -0
- package/dist/src/DatePickers/stories/WeekPicker.story.d.ts +1 -0
- package/dist/src/Type/Typography.story.d.ts +1 -0
- package/package.json +2 -3
- package/dist/src/scripts/generateTheme.d.ts +0 -1
|
@@ -10,5 +10,11 @@ declare const _default: {
|
|
|
10
10
|
};
|
|
11
11
|
export default _default;
|
|
12
12
|
export declare const WithCustomWidths: () => React.JSX.Element;
|
|
13
|
+
export declare const WithAnApplicationFrame: {
|
|
14
|
+
(): React.JSX.Element;
|
|
15
|
+
parameters: {
|
|
16
|
+
layout: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
13
19
|
export declare const DisableCloseOnOverlayClick: () => React.JSX.Element;
|
|
14
20
|
export declare const AdvancedUsage: () => React.JSX.Element;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { InputFieldProps } from "../../Input/InputField";
|
|
3
2
|
import { ReactDatePickerProps } from "react-datepicker";
|
|
3
|
+
import { InputFieldProps } from "../../Input/InputField";
|
|
4
4
|
import { FieldProps } from "../../Form/Field";
|
|
5
5
|
type OmittedFieldProps = "onChange" | "onBlur" | "onFocus";
|
|
6
6
|
export interface DatePickerProps extends Omit<FieldProps, OmittedFieldProps> {
|
|
@@ -8,3 +8,4 @@ export declare const WithPlaceholder: () => React.JSX.Element;
|
|
|
8
8
|
export declare const Disabled: () => React.JSX.Element;
|
|
9
9
|
export declare const WithDefaultValue: () => React.JSX.Element;
|
|
10
10
|
export declare const WithMinMaxDate: () => React.JSX.Element;
|
|
11
|
+
export declare const AdvancedUsage: () => React.JSX.Element;
|
|
@@ -10,3 +10,4 @@ export declare const WithCustomDateFormat: () => React.JSX.Element;
|
|
|
10
10
|
export declare const WithPreselectedDate: () => React.JSX.Element;
|
|
11
11
|
export declare const WithCustomLocale: () => React.JSX.Element;
|
|
12
12
|
export declare const Disabled: () => React.JSX.Element;
|
|
13
|
+
export declare const AdvancedUsage: () => React.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nulogy/components",
|
|
3
|
-
"version": "14.1.
|
|
3
|
+
"version": "14.1.4",
|
|
4
4
|
"description": "Component library for the Nulogy Design System - http://nulogy.design",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"ci": "yarn && yarn build && yarn test && yarn run check",
|
|
11
11
|
"new": "plop",
|
|
12
|
-
"generate:theme": "npx tsx src/scripts/generateTheme.ts && prettier -w src/theme/theme.ts",
|
|
13
12
|
"start": "concurrently \"yarn build:watch\" \"yarn start:storybook\"",
|
|
14
13
|
"start:cypress": "yarn concurrently --kill-others \"yarn start --ci\" \"yarn wait-on http://localhost:9999 && cypress open\"",
|
|
15
14
|
"start:storybook": "start-storybook -p 9999",
|
|
@@ -153,7 +152,7 @@
|
|
|
153
152
|
"dependencies": {
|
|
154
153
|
"@babel/runtime": "^7.9.6",
|
|
155
154
|
"@emotion/is-prop-valid": "^1.3.1",
|
|
156
|
-
"@nulogy/tokens": "^
|
|
155
|
+
"@nulogy/tokens": "^6.1.1",
|
|
157
156
|
"@reach/dialog": "0.17.0",
|
|
158
157
|
"@styled-system/prop-types": "^5.1.4",
|
|
159
158
|
"@styled-system/theme-get": "^5.1.2",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|