gd-bs 6.6.58 → 6.6.60
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/jumbotron/index.js +59 -1
- package/build/components/jumbotron/templates.js +1 -1
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +29 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/index.html +3 -1
- package/package.json +1 -1
- package/src/components/jumbotron/index.ts +60 -0
- package/src/components/jumbotron/templates.ts +1 -1
- package/src/components/jumbotron/types.d.ts +29 -1
- package/src/styles/_custom.scss +330 -51
package/dist/gd-bs.d.ts
CHANGED
|
@@ -1657,6 +1657,8 @@ declare module 'gd-bs/components/jumbotron/types' {
|
|
|
1657
1657
|
* ```
|
|
1658
1658
|
*/
|
|
1659
1659
|
export const Jumbotron: (props: IJumbotronProps, template?: string) => IJumbotron;
|
|
1660
|
+
export const JumbotronSize: IJumbotronSize;
|
|
1661
|
+
export const JumbotronTypes: IJumbotronTypes;
|
|
1660
1662
|
|
|
1661
1663
|
import { IBaseProps } from "gd-bs/components/types";
|
|
1662
1664
|
|
|
@@ -1677,12 +1679,38 @@ declare module 'gd-bs/components/jumbotron/types' {
|
|
|
1677
1679
|
/**
|
|
1678
1680
|
* Jumbotron Properties
|
|
1679
1681
|
*/
|
|
1680
|
-
export interface IJumbotronProps<T=Element> extends IBaseProps<IJumbotron> {
|
|
1682
|
+
export interface IJumbotronProps<T = Element> extends IBaseProps<IJumbotron> {
|
|
1681
1683
|
content?: string | T;
|
|
1682
1684
|
isFluid?: boolean;
|
|
1683
1685
|
lead?: string;
|
|
1684
1686
|
onRenderContent?: (el?: HTMLElement) => void;
|
|
1687
|
+
size?: number;
|
|
1685
1688
|
title?: string;
|
|
1689
|
+
type?: number;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
/**
|
|
1693
|
+
* Jumbotron Size
|
|
1694
|
+
*/
|
|
1695
|
+
export type IJumbotronSize = {
|
|
1696
|
+
XSmall: number;
|
|
1697
|
+
Small: number;
|
|
1698
|
+
Medium: number;
|
|
1699
|
+
Large: number;
|
|
1700
|
+
XLarge: number;
|
|
1701
|
+
}
|
|
1702
|
+
/**
|
|
1703
|
+
* Jumbotron Types
|
|
1704
|
+
*/
|
|
1705
|
+
export type IJumbotronTypes = {
|
|
1706
|
+
Danger: number;
|
|
1707
|
+
Dark: number;
|
|
1708
|
+
Info: number;
|
|
1709
|
+
Light: number;
|
|
1710
|
+
Primary: number;
|
|
1711
|
+
Secondary: number;
|
|
1712
|
+
Success: number;
|
|
1713
|
+
Warning: number;
|
|
1686
1714
|
}
|
|
1687
1715
|
}
|
|
1688
1716
|
|