gd-bs 5.9.9 → 6.0.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.
- package/build/bs.js +1 -1
- package/build/components/popover/index.js +3 -1
- package/build/icons/iconTypes.js +1 -1
- package/build/icons/index.js +1 -1
- package/build/icons/svgs/index.d.ts +1 -1
- package/build/icons/svgs/index.js +1 -1
- package/build/icons/svgs/{appWindow.js → window_.js} +3 -3
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.js.LICENSE.txt +4 -4
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +2 -0
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/generateIcons.js +4 -4
- package/package.json +2 -2
- package/pnpm-lock.yaml +5 -5
- package/src/components/popover/index.ts +4 -2
- package/src/components/popover/types.d.ts +2 -0
- package/src/icons/iconTypes.ts +1 -1
- package/src/icons/index.d.ts +1 -1
- package/src/icons/index.ts +1 -1
- package/src/icons/svgs/index.d.ts +1 -1
- package/src/icons/svgs/index.ts +1 -1
- package/src/icons/svgs/window_.d.ts +1 -0
- package/src/icons/svgs/{appWindow.ts → window_.ts} +1 -1
- package/src/icons/svgs/appWindow.d.ts +0 -1
package/dist/gd-bs.d.ts
CHANGED
|
@@ -2456,6 +2456,8 @@ declare module 'gd-bs/components/popover/types' {
|
|
|
2456
2456
|
*/
|
|
2457
2457
|
export interface IPopoverProps extends IBaseProps<IPopover> {
|
|
2458
2458
|
btnProps?: IButtonProps;
|
|
2459
|
+
classNameBody?: string;
|
|
2460
|
+
classNameHeader?: string;
|
|
2459
2461
|
isDismissible?: boolean;
|
|
2460
2462
|
options?: ITippyProps;
|
|
2461
2463
|
placement?: number;
|