@sproutsocial/seeds-react-input 1.1.0 → 1.3.0
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/esm/index.js +23 -5423
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.mts +8 -1
- package/dist/index.d.ts +8 -1
- package/dist/index.js +49 -5420
- package/dist/index.js.map +1 -1
- package/package.json +8 -6
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import { TypeStyledComponentsCommonProps, TypeSystemCommonProps } from '@sproutsocial/seeds-react-system-props';
|
|
4
|
+
import * as styled_components from 'styled-components';
|
|
4
5
|
|
|
5
6
|
interface TypeBaseInputProps {
|
|
6
7
|
/** ID of the form element, should match the "for" value of the associated label */
|
|
@@ -100,4 +101,10 @@ declare class Input extends React.Component<TypeInputProps, TypeState> {
|
|
|
100
101
|
render(): react_jsx_runtime.JSX.Element;
|
|
101
102
|
}
|
|
102
103
|
|
|
103
|
-
|
|
104
|
+
declare const Accessory: styled_components.StyledComponent<"div", any, {
|
|
105
|
+
before?: boolean;
|
|
106
|
+
after?: boolean;
|
|
107
|
+
isClearButton?: boolean;
|
|
108
|
+
}, never>;
|
|
109
|
+
|
|
110
|
+
export { Accessory, Input, type TypeInputContainerProps, type TypeInputProps, Input as default };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React from 'react';
|
|
3
3
|
import { TypeStyledComponentsCommonProps, TypeSystemCommonProps } from '@sproutsocial/seeds-react-system-props';
|
|
4
|
+
import * as styled_components from 'styled-components';
|
|
4
5
|
|
|
5
6
|
interface TypeBaseInputProps {
|
|
6
7
|
/** ID of the form element, should match the "for" value of the associated label */
|
|
@@ -100,4 +101,10 @@ declare class Input extends React.Component<TypeInputProps, TypeState> {
|
|
|
100
101
|
render(): react_jsx_runtime.JSX.Element;
|
|
101
102
|
}
|
|
102
103
|
|
|
103
|
-
|
|
104
|
+
declare const Accessory: styled_components.StyledComponent<"div", any, {
|
|
105
|
+
before?: boolean;
|
|
106
|
+
after?: boolean;
|
|
107
|
+
isClearButton?: boolean;
|
|
108
|
+
}, never>;
|
|
109
|
+
|
|
110
|
+
export { Accessory, Input, type TypeInputContainerProps, type TypeInputProps, Input as default };
|