@entur/form 8.3.2-beta.9 → 8.3.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/BaseFormControl.d.ts +3 -4
- package/dist/Checkbox.d.ts +1 -2
- package/dist/FeedbackText.d.ts +2 -3
- package/dist/Fieldset.d.ts +1 -2
- package/dist/InputGroupLabel.d.ts +1 -2
- package/dist/Radio.d.ts +1 -2
- package/dist/RadioGroup.d.ts +1 -1
- package/dist/RadioGroupContext.d.ts +1 -1
- package/dist/Switch.d.ts +1 -2
- package/dist/TextArea.d.ts +3 -4
- package/dist/TextField.d.ts +4 -5
- package/dist/VariantProvider.d.ts +2 -2
- package/dist/form.cjs.js +1054 -0
- package/dist/form.cjs.js.map +1 -0
- package/dist/form.esm.js +996 -942
- package/dist/form.esm.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/inputPanel/CheckboxPanel.d.ts +1 -1
- package/dist/inputPanel/InputPanelBase.d.ts +1 -2
- package/dist/inputPanel/RadioPanel.d.ts +1 -1
- package/dist/segmented-control/MultipleSegmentedControl.d.ts +1 -2
- package/dist/segmented-control/SegmentedChoice.d.ts +1 -2
- package/dist/segmented-control/SegmentedContext.d.ts +1 -1
- package/dist/segmented-control/SegmentedControl.d.ts +1 -2
- package/dist/styles.css +1406 -1473
- package/package.json +26 -16
- package/dist/form.cjs.development.js +0 -1026
- package/dist/form.cjs.development.js.map +0 -1
- package/dist/form.cjs.production.min.js +0 -2
- package/dist/form.cjs.production.min.js.map +0 -1
- package/dist/index.js +0 -8
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { VariantType } from '
|
|
3
|
-
import { Placement } from '
|
|
4
|
-
import './BaseFormControl.scss';
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { VariantType } from '../../utils';
|
|
3
|
+
import { Placement } from '../../tooltip';
|
|
5
4
|
/** @deprecated use variant="information" instead */
|
|
6
5
|
declare const info = "info";
|
|
7
6
|
/** @deprecated use variant="negative" instead */
|
package/dist/Checkbox.d.ts
CHANGED
package/dist/FeedbackText.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { VariantType } from '
|
|
3
|
-
import './FeedbackText.scss';
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { VariantType } from '../../utils';
|
|
4
3
|
/** @deprecated use variant="information" instead */
|
|
5
4
|
declare const info = "info";
|
|
6
5
|
/** @deprecated use variant="negative" instead */
|
package/dist/Fieldset.d.ts
CHANGED
package/dist/Radio.d.ts
CHANGED
package/dist/RadioGroup.d.ts
CHANGED
package/dist/Switch.d.ts
CHANGED
package/dist/TextArea.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { VariantType } from '
|
|
3
|
-
import '
|
|
4
|
-
import { Placement } from '@entur/tooltip';
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { VariantType } from '../../utils';
|
|
3
|
+
import { Placement } from '../../tooltip';
|
|
5
4
|
/** @deprecated use variant="information" instead */
|
|
6
5
|
declare const info = "info";
|
|
7
6
|
/** @deprecated use variant="negative" instead */
|
package/dist/TextField.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { VariantType } from '
|
|
3
|
-
import '
|
|
4
|
-
import { Placement } from '@entur/tooltip';
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { VariantType } from '../../utils';
|
|
3
|
+
import { Placement } from '../../tooltip';
|
|
5
4
|
/** @deprecated use variant="information" instead */
|
|
6
5
|
declare const info = "info";
|
|
7
6
|
/** @deprecated use variant="negative" instead */
|
|
@@ -87,5 +86,5 @@ export declare const TextField: React.ForwardRefExoticComponent<{
|
|
|
87
86
|
/** Callback for clearable */
|
|
88
87
|
onClear?: () => void;
|
|
89
88
|
ariaAlertOnFeedback?: boolean;
|
|
90
|
-
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "
|
|
89
|
+
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "label" | "size"> & React.RefAttributes<HTMLInputElement>>;
|
|
91
90
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { VariantType } from '
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { VariantType } from '../../utils';
|
|
3
3
|
/** @deprecated use variant="information" instead */
|
|
4
4
|
declare const info = "info";
|
|
5
5
|
/** @deprecated use variant="negative" instead */
|