kui-basic 1.1.41 → 1.1.43
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/cjs/index.js +4 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/index.d.ts +17 -16
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -751,22 +751,23 @@ type IconButtonType = (props: IconButtonProps) => React.ReactElement
|
|
|
751
751
|
|
|
752
752
|
declare const IconButton: IconButtonType
|
|
753
753
|
|
|
754
|
-
type PopperPlacements =
|
|
755
|
-
| "right"
|
|
756
|
-
| "left"
|
|
757
|
-
| "topStart"
|
|
758
|
-
| "topMiddle"
|
|
759
|
-
| "topEnd"
|
|
760
|
-
| "bottomStart"
|
|
761
|
-
| "bottomMiddle"
|
|
762
|
-
| "bottomEnd"
|
|
763
|
-
|
|
764
|
-
type PopperBaseProps = {
|
|
765
|
-
open?: boolean
|
|
766
|
-
placement?: PopperPlacements
|
|
767
|
-
withArrow?: boolean
|
|
768
|
-
spacing?: string
|
|
769
|
-
className?: string
|
|
754
|
+
type PopperPlacements =
|
|
755
|
+
| "right"
|
|
756
|
+
| "left"
|
|
757
|
+
| "topStart"
|
|
758
|
+
| "topMiddle"
|
|
759
|
+
| "topEnd"
|
|
760
|
+
| "bottomStart"
|
|
761
|
+
| "bottomMiddle"
|
|
762
|
+
| "bottomEnd"
|
|
763
|
+
|
|
764
|
+
type PopperBaseProps = {
|
|
765
|
+
open?: boolean
|
|
766
|
+
placement?: PopperPlacements
|
|
767
|
+
withArrow?: boolean
|
|
768
|
+
spacing?: string
|
|
769
|
+
className?: string
|
|
770
|
+
popperOffset?: number
|
|
770
771
|
} & React.HTMLAttributes<HTMLDivElement>
|
|
771
772
|
|
|
772
773
|
type PopperProps = {
|