gd-bs 6.2.5 → 6.2.6
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/components/button/index.js +3 -0
- package/build/components/dropdown/index.js +1 -0
- package/build/components/tooltip/index.js +5 -0
- package/build/icons/generate.js +2 -0
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.js.LICENSE.txt +210 -210
- 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.js.LICENSE.txt +210 -210
- package/dist/gd-bs.min.js +1 -1
- package/generateIcons.js +2 -0
- package/package.json +2 -2
- package/pnpm-lock.yaml +4 -4
- package/src/components/button/index.ts +4 -0
- package/src/components/button/types.d.ts +2 -0
- package/src/components/dropdown/index.ts +1 -0
- package/src/components/tooltip/index.ts +6 -0
- package/src/icons/generate.ts +3 -0
package/dist/gd-bs.d.ts
CHANGED
|
@@ -394,6 +394,7 @@ declare module 'gd-bs/components/button/types' {
|
|
|
394
394
|
badge?: IBadgeProps;
|
|
395
395
|
controls?: string | Array<string>;
|
|
396
396
|
data?: any;
|
|
397
|
+
description?: string;
|
|
397
398
|
dismiss?: string;
|
|
398
399
|
href?: string;
|
|
399
400
|
iconClassName?: string;
|
|
@@ -406,6 +407,7 @@ declare module 'gd-bs/components/button/types' {
|
|
|
406
407
|
isLarge?: boolean;
|
|
407
408
|
isLink?: boolean;
|
|
408
409
|
isSmall?: boolean;
|
|
410
|
+
label?: string;
|
|
409
411
|
onClick?: (button?: IButtonProps, ev?: Event) => void;
|
|
410
412
|
spinnerProps?: ISpinnerProps;
|
|
411
413
|
tabIndex?: number;
|