@chrryai/chrry 1.5.71 → 1.5.72
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/Store.module.scss +5 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2547 -2494
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1144 -1091
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/Store.module.scss
CHANGED
|
@@ -151,9 +151,13 @@
|
|
|
151
151
|
}
|
|
152
152
|
|
|
153
153
|
.appName {
|
|
154
|
-
font-size: toRem.toRem(
|
|
154
|
+
font-size: toRem.toRem(15);
|
|
155
155
|
font-weight: 600;
|
|
156
156
|
text-align: center;
|
|
157
|
+
display: flex;
|
|
158
|
+
align-items: center;
|
|
159
|
+
gap: toRem.toRem(7.5);
|
|
160
|
+
color: var(--shade-7);
|
|
157
161
|
}
|
|
158
162
|
|
|
159
163
|
.appSubtitle {
|
package/dist/index.d.mts
CHANGED
|
@@ -691,12 +691,14 @@ declare const getHourlyLimit: ({ member, guest, app, }: {
|
|
|
691
691
|
* }
|
|
692
692
|
* ```
|
|
693
693
|
*/
|
|
694
|
-
declare function generateAppMetadata({ app, locale, currentDomain, translations, ...rest }: {
|
|
694
|
+
declare function generateAppMetadata({ app, locale, currentDomain, translations, whiteLabel, ...rest }: {
|
|
695
695
|
app: appWithStore;
|
|
696
696
|
store?: storeWithApps;
|
|
697
697
|
locale?: locale | string;
|
|
698
698
|
currentDomain: string;
|
|
699
699
|
translations: Record<string, any>;
|
|
700
|
+
pathname?: string;
|
|
701
|
+
whiteLabel?: appWithStore;
|
|
700
702
|
}): Metadata;
|
|
701
703
|
|
|
702
704
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -691,12 +691,14 @@ declare const getHourlyLimit: ({ member, guest, app, }: {
|
|
|
691
691
|
* }
|
|
692
692
|
* ```
|
|
693
693
|
*/
|
|
694
|
-
declare function generateAppMetadata({ app, locale, currentDomain, translations, ...rest }: {
|
|
694
|
+
declare function generateAppMetadata({ app, locale, currentDomain, translations, whiteLabel, ...rest }: {
|
|
695
695
|
app: appWithStore;
|
|
696
696
|
store?: storeWithApps;
|
|
697
697
|
locale?: locale | string;
|
|
698
698
|
currentDomain: string;
|
|
699
699
|
translations: Record<string, any>;
|
|
700
|
+
pathname?: string;
|
|
701
|
+
whiteLabel?: appWithStore;
|
|
700
702
|
}): Metadata;
|
|
701
703
|
|
|
702
704
|
/**
|