@npm-questionpro/wick-ui-lib 0.11.1 → 0.12.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.
Files changed (27) hide show
  1. package/dist/src/base/ui/button.d.ts +1 -1
  2. package/dist/src/base/ui/command.d.ts +8 -8
  3. package/dist/src/components/appHeader/WuAppHeader.d.ts +1 -0
  4. package/dist/src/components/appHeader/ui/WuAppHeaderMenu.d.ts +2 -0
  5. package/dist/src/components/appHeader/ui/WuTruncatedLabel.d.ts +3 -0
  6. package/dist/src/components/formFields/WuInput/WuInput.d.ts +8 -5
  7. package/dist/src/components/formFields/WuTextarea/WuTextarea.d.ts +8 -5
  8. package/dist/src/components/formFields/index.d.ts +0 -3
  9. package/dist/src/components/formGroup/WuFormGroup.d.ts +10 -0
  10. package/dist/src/components/formGroup/WuFormGroup.test.d.ts +1 -0
  11. package/dist/src/components/formGroup/components/WuInputError.d.ts +6 -0
  12. package/dist/src/components/formGroup/components/WuInputHint.d.ts +7 -0
  13. package/dist/src/components/formGroup/components/WuLabel.d.ts +3 -0
  14. package/dist/src/components/formGroup/index.d.ts +5 -0
  15. package/dist/src/components/popover/WuPopover.d.ts +11 -0
  16. package/dist/src/components/popover/WuPopover.test.d.ts +1 -0
  17. package/dist/src/components/popover/index.d.ts +2 -0
  18. package/dist/src/index.d.ts +3 -1
  19. package/dist/style.css +1 -1
  20. package/dist/wick-ui-lib/es/index.js +9284 -9220
  21. package/dist/wick-ui-lib/es/index.js.map +1 -1
  22. package/dist/wick-ui-lib/umd/index.js +10 -10
  23. package/dist/wick-ui-lib/umd/index.js.map +1 -1
  24. package/package.json +1 -1
  25. package/dist/src/components/formFields/ui/WuInputError.d.ts +0 -3
  26. package/dist/src/components/formFields/ui/WuInputHint.d.ts +0 -5
  27. package/dist/src/components/formFields/ui/WuLabel.d.ts +0 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@npm-questionpro/wick-ui-lib",
3
3
  "private": false,
4
- "version": "0.11.1",
4
+ "version": "0.12.0",
5
5
  "description": "A React component library by QuestionPro for building web applications with ease",
6
6
  "type": "module",
7
7
  "main": "./dist/wick-ui-lib/umd/index.js",
@@ -1,3 +0,0 @@
1
- export declare const WuInputError: import('react').ForwardRefExoticComponent<{
2
- msg?: string;
3
- } & import('react').RefAttributes<HTMLParagraphElement>>;
@@ -1,5 +0,0 @@
1
- export type IWuInputHintProps = {
2
- length: number;
3
- maxLength: number;
4
- };
5
- export declare const WuInputHint: import('react').ForwardRefExoticComponent<IWuInputHintProps & import('react').RefAttributes<HTMLParagraphElement>>;
@@ -1,2 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const WuLabel: React.ForwardRefExoticComponent<Omit<Omit<import('@radix-ui/react-label').LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & import('class-variance-authority').VariantProps<(props?: import('class-variance-authority/dist/types').ClassProp | undefined) => string> & React.RefAttributes<HTMLLabelElement>, "ref"> & React.RefAttributes<HTMLLabelElement>>;