fansunited-management-components 1.54.1-RC1 → 1.54.1-RC2
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/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { default as
|
|
2
|
+
import { default as MiniGamesImagesModel } from '../../models/images/MiniGamesImages';
|
|
3
3
|
|
|
4
4
|
type MiniGamesImagesProps = {
|
|
5
5
|
labels: any;
|
|
6
|
-
defaultValue:
|
|
6
|
+
defaultValue: MiniGamesImagesModel | null;
|
|
7
7
|
onChange: (value: any) => void;
|
|
8
8
|
};
|
|
9
9
|
/**
|
|
10
10
|
* Image pickers for mini-games (main + optional mobile), with collapsible section.
|
|
11
11
|
*
|
|
12
12
|
* @property {object} labels - Custom labels used in the cards.
|
|
13
|
-
* @property {
|
|
13
|
+
* @property {MiniGamesImagesModel | null} defaultValue - Initial images object.
|
|
14
14
|
* @property {(value: any) => void} onChange - Emits updated images object.
|
|
15
15
|
*/
|
|
16
16
|
declare const MiniGamesImages: React.FC<MiniGamesImagesProps>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MiniGamesImages.d.ts","sourceRoot":"","sources":["../../../../src/components/Images/MiniGamesImages.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAExC,OAAO,
|
|
1
|
+
{"version":3,"file":"MiniGamesImages.d.ts","sourceRoot":"","sources":["../../../../src/components/Images/MiniGamesImages.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAExC,OAAO,oBAAoB,MAAM,qCAAqC,CAAC;AAavE,KAAK,oBAAoB,GAAG;IAC3B,MAAM,EAAE,GAAG,CAAC;IACZ,YAAY,EAAE,oBAAoB,GAAG,IAAI,CAAC;IAC1C,QAAQ,EAAE,CAAC,KAAK,EAAE,GAAG,KAAK,IAAI,CAAC;CAC/B,CAAC;AAEF;;;;;;GAMG;AACH,QAAA,MAAM,eAAe,EAAE,KAAK,CAAC,EAAE,CAAC,oBAAoB,CAwCnD,CAAC;AAEF,eAAe,eAAe,CAAC"}
|
|
@@ -316,7 +316,7 @@ export declare const components: {
|
|
|
316
316
|
*/
|
|
317
317
|
readonly MiniGamesImages: import('react').FC<{
|
|
318
318
|
labels: any;
|
|
319
|
-
defaultValue: import('../models/images/
|
|
319
|
+
defaultValue: import('../models/images/MiniGamesImages').default | null;
|
|
320
320
|
onChange: (value: any) => void;
|
|
321
321
|
}>;
|
|
322
322
|
/**
|
|
@@ -218,7 +218,7 @@ declare const ComponentContext: React.Context<{
|
|
|
218
218
|
}>;
|
|
219
219
|
readonly MiniGamesImages: React.FC<{
|
|
220
220
|
labels: any;
|
|
221
|
-
defaultValue: import('../models/images/
|
|
221
|
+
defaultValue: import('../models/images/MiniGamesImages').default | null;
|
|
222
222
|
onChange: (value: any) => void;
|
|
223
223
|
}>;
|
|
224
224
|
readonly AuthRequirement: React.FC<{
|