loon-bulma-react 2024.1.4 → 2024.1.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/dist/index.cjs +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +41 -42
- package/styles/_all.scss +63 -1
- package/styles/hero.scss +87 -46
package/dist/index.d.cts
CHANGED
|
@@ -1278,10 +1278,10 @@ declare const Modal: {
|
|
|
1278
1278
|
* @returns modal head
|
|
1279
1279
|
* @example <Modal.Head>Optional Modal Head</Modal.Head>
|
|
1280
1280
|
*/
|
|
1281
|
-
Head
|
|
1281
|
+
Head({ children, id }: {
|
|
1282
1282
|
id?: string | undefined;
|
|
1283
1283
|
children: React$1.ReactNode;
|
|
1284
|
-
})
|
|
1284
|
+
}): JSX.Element;
|
|
1285
1285
|
/**
|
|
1286
1286
|
* Een scrollende body voor de modal
|
|
1287
1287
|
* @param props
|
package/dist/index.d.ts
CHANGED
|
@@ -1278,10 +1278,10 @@ declare const Modal: {
|
|
|
1278
1278
|
* @returns modal head
|
|
1279
1279
|
* @example <Modal.Head>Optional Modal Head</Modal.Head>
|
|
1280
1280
|
*/
|
|
1281
|
-
Head
|
|
1281
|
+
Head({ children, id }: {
|
|
1282
1282
|
id?: string | undefined;
|
|
1283
1283
|
children: React$1.ReactNode;
|
|
1284
|
-
})
|
|
1284
|
+
}): JSX.Element;
|
|
1285
1285
|
/**
|
|
1286
1286
|
* Een scrollende body voor de modal
|
|
1287
1287
|
* @param props
|