bt-core-app 1.4.511 → 1.4.513
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/bt-core-app.js +5913 -5842
- package/dist/index.d.ts +7 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -456,7 +456,7 @@ declare interface CreateStoreBuilderOptions {
|
|
|
456
456
|
builderQuery?: (params: any) => string;
|
|
457
457
|
/**overrides the default */
|
|
458
458
|
buildUrl?: (path: PathOptions) => string;
|
|
459
|
-
dates
|
|
459
|
+
dates: BTDates;
|
|
460
460
|
demo?: BTDemo;
|
|
461
461
|
/**ideally required. For determining store mode */
|
|
462
462
|
navigation?: BTNavigation;
|
|
@@ -1421,6 +1421,10 @@ declare interface UseBladeOptions {
|
|
|
1421
1421
|
variant?: BladeVariant;
|
|
1422
1422
|
}
|
|
1423
1423
|
|
|
1424
|
+
export declare function useColorizer(): {
|
|
1425
|
+
getColor: () => string;
|
|
1426
|
+
};
|
|
1427
|
+
|
|
1424
1428
|
export declare function useCosmetics(): BTCosmetics;
|
|
1425
1429
|
|
|
1426
1430
|
export declare interface UseCosmeticsOptions<T extends BaseCosmeticTheme> {
|
|
@@ -2039,7 +2043,7 @@ export declare interface UseStoreOptions {
|
|
|
2039
2043
|
builderQuery?: (params: any) => string;
|
|
2040
2044
|
/**overrides the default */
|
|
2041
2045
|
buildUrl?: (path: PathOptions) => string;
|
|
2042
|
-
dates
|
|
2046
|
+
dates: BTDates;
|
|
2043
2047
|
demo?: BTDemo;
|
|
2044
2048
|
/**custom override for getting the key to store */
|
|
2045
2049
|
getStorageKey?: (dOptions: GetStorageKeyOptions) => string;
|
|
@@ -2076,7 +2080,7 @@ declare interface UseWholeLastUpdateStoreOptions {
|
|
|
2076
2080
|
api?: BTApi;
|
|
2077
2081
|
/**ideally required. For setting unique local storage keys */
|
|
2078
2082
|
auth?: BTAuth;
|
|
2079
|
-
dates
|
|
2083
|
+
dates: BTDates;
|
|
2080
2084
|
demo?: BTDemo;
|
|
2081
2085
|
/**custom override for getting the key to store */
|
|
2082
2086
|
getStorageKey?: (dOptions: GetStorageKeyOptions) => string;
|
package/package.json
CHANGED