dga-ui-react 1.9.0 → 1.9.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/dist/index.d.ts CHANGED
@@ -711,9 +711,10 @@ interface DGA_CircularProgressBarProps extends Omit<React.HTMLAttributes<HTMLDiv
711
711
  declare const CircularProgressBar: React.FC<DGA_CircularProgressBarProps>;
712
712
 
713
713
  type Variant = "default" | "darker" | "lighter";
714
- declare const TagInput: <T>({ label, placeholder, className, size, variant, error, onChange, value, options, getOptionLabel, disabled, multiple, tagProps, searchable, }: {
714
+ declare const TagInput: <T>({ label, placeholder, className, size, variant, error, onChange, value, options, getOptionLabel, disabled, multiple, tagProps, searchable, searchInputPlaceholder, }: {
715
715
  label?: React.ReactNode;
716
716
  placeholder?: React.ReactNode;
717
+ searchInputPlaceholder?: string;
717
718
  className?: string;
718
719
  size?: "large" | "medium";
719
720
  variant?: Variant;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dga-ui-react",
3
- "version": "1.9.0",
3
+ "version": "1.9.2",
4
4
  "description": "DGA ui library",
5
5
  "author": "Ashraf Ainia",
6
6
  "license": "MIT",
@@ -10,7 +10,7 @@
10
10
  "scripts": {
11
11
  "test": "jest",
12
12
  "build": "rm -rf dist && rm -rf charts && rm -rf Metric && rollup -c --bundleConfigAsCjs && cp src/components/charts/package.json charts/package.json && cp src/components/Metric/package.json Metric/package.json",
13
- "release": "npm login && npm run build && npm publish",
13
+ "release": "npm run build && npm login && npm publish",
14
14
  "storybook": "storybook dev -p 6006",
15
15
  "dev": "storybook dev -p 6006"
16
16
  },