@speakapbv/dough-component-library 9.27.0 → 9.27.1

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.
@@ -8,6 +8,7 @@ export interface InputWrapperProps {
8
8
  width?: string;
9
9
  borderless?: boolean;
10
10
  filled?: boolean;
11
+ active?: boolean;
11
12
  disabled?: boolean;
12
13
  startElement?: ReactNode;
13
14
  endElement?: ReactNode;
package/dist/index.es.js CHANGED
@@ -1696,6 +1696,7 @@ var InputWrapper = function (props) {
1696
1696
  React.createElement("span", { onClick: props.onClick, className: cn("dough-input-element", "dough-color-input-border", "dough-text-input", "with-fields", {
1697
1697
  "dough-input-wrapper-clickable": props.onClick,
1698
1698
  filled: props.filled,
1699
+ active: props.active,
1699
1700
  "validation-error": props.validationResult &&
1700
1701
  !props.validationResult.valid,
1701
1702
  }) },
package/dist/index.js CHANGED
@@ -1681,6 +1681,7 @@ var InputWrapper = function (props) {
1681
1681
  React__default.createElement("span", { onClick: props.onClick, className: cn("dough-input-element", "dough-color-input-border", "dough-text-input", "with-fields", {
1682
1682
  "dough-input-wrapper-clickable": props.onClick,
1683
1683
  filled: props.filled,
1684
+ active: props.active,
1684
1685
  "validation-error": props.validationResult &&
1685
1686
  !props.validationResult.valid,
1686
1687
  }) },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speakapbv/dough-component-library",
3
- "version": "9.27.0",
3
+ "version": "9.27.1",
4
4
  "description": "DOUGH: Speakap React Component Library",
5
5
  "author": "Speakap",
6
6
  "license": "MIT",