@designcrowd/library.brand-page 5.6.3 → 5.6.4-fluid-2

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.
Files changed (50) hide show
  1. package/lib/src/brand-page/components/banner-section/BannerSection.mixin.js +5 -0
  2. package/lib/src/brand-page/components/payment/__fixtures__/request-payment.d.ts +3 -0
  3. package/lib/src/brand-page/components/payment/__fixtures__/support-me.d.ts +3 -0
  4. package/lib/src/brand-page/models/brand-page-context.model.d.ts +3 -0
  5. package/lib/src/brand-page/utils/migration/migration-03.d.ts +5 -0
  6. package/lib/src/brand-page/utils/migration/migration-03.js +28 -0
  7. package/lib/src/brand-page/utils/migration.util.js +5 -0
  8. package/lib/src/brand-page-maker/components/brand-page-maker/BrandPageMaker.mixin.js +1 -1
  9. package/lib/src/brand-page-maker/components/brand-page-maker/BrandPageMaker.stories.js +37 -2
  10. package/lib/src/brand-page-maker/components/brandpage-maker-page/BrandPageMakerPage.mixin.d.ts +1 -0
  11. package/lib/src/brand-page-maker/components/brandpage-maker-page/BrandPageMakerPage.mixin.js +11 -0
  12. package/lib/src/brand-page-maker/components/template-preview/TemplatePreview.mixin.js +3 -0
  13. package/lib/src/brand-page-maker/convertors/text-size-value.convertor.js +3 -3
  14. package/lib/src/brand-page-maker/utils/text.util.d.ts +2 -2
  15. package/lib/src/brand-page-maker/utils/text.util.js +3 -3
  16. package/lib/src/clients/user-media-client.d.ts +1 -2
  17. package/lib/src/clients/user-media-client.js +5 -19
  18. package/lib/src/css/library.brand-page-brandCrowd.min.css +19 -47
  19. package/lib/src/css/library.brand-page-brandPage.min.css +19 -47
  20. package/lib/src/css/library.brand-page-designCom.min.css +19 -47
  21. package/lib/src/css/library.brand-page-preview.min.css +19 -47
  22. package/lib/src/index.mjs +11068 -11101
  23. package/lib/src/shared/my-uploads/MyMedia.mixin.d.ts +0 -4
  24. package/lib/src/shared/my-uploads/MyMedia.mixin.js +5 -24
  25. package/lib/src/shared/my-uploads/MyUploads.mixin.js +1 -1
  26. package/lib/src/shared/my-uploads/models.d.ts +0 -1
  27. package/package.json +1 -1
  28. package/src/brand-page/components/banner-section/BannerSection.mixin.ts +5 -0
  29. package/src/brand-page/components/page/Page.vue +5 -1
  30. package/src/brand-page/components/text-wrapper/TextWrapper.vue +156 -12
  31. package/src/brand-page/models/brand-page-context.model.ts +3 -0
  32. package/src/brand-page/utils/__snapshots__/migration.util.test.ts.snap +26 -26
  33. package/src/brand-page/utils/migration/migration-03.ts +40 -0
  34. package/src/brand-page/utils/migration.util.ts +5 -0
  35. package/src/brand-page-maker/components/brand-page-maker/BrandPageMaker.mixin.ts +1 -1
  36. package/src/brand-page-maker/components/brand-page-maker/BrandPageMaker.stories.ts +43 -3
  37. package/src/brand-page-maker/components/brandpage-maker-page/BrandPageMakerPage.mixin.ts +13 -0
  38. package/src/brand-page-maker/components/template-preview/TemplatePreview.mixin.ts +3 -0
  39. package/src/brand-page-maker/convertors/text-size-value.convertor.ts +3 -3
  40. package/src/brand-page-maker/stores/brandpage-maker/brandpage-maker-store.test.ts +12 -3
  41. package/src/brand-page-maker/utils/text.util.ts +3 -3
  42. package/src/clients/user-media-client.ts +15 -32
  43. package/src/shared/my-uploads/MyMedia.mixin.ts +8 -36
  44. package/src/shared/my-uploads/MyMedia.vue +10 -9
  45. package/src/shared/my-uploads/MyUploads.mixin.ts +0 -1
  46. package/src/shared/my-uploads/models.ts +0 -1
  47. package/lib/src/brand-page/components/text-wrapper/TextWrapper.mixin.d.ts +0 -44
  48. package/lib/src/brand-page/components/text-wrapper/TextWrapper.mixin.js +0 -38
  49. package/src/brand-page/components/text-wrapper/TextWrapper.mixin.ts +0 -41
  50. package/src/shared/my-uploads/MyMediaSelectionItem.vue +0 -137
@@ -35,6 +35,11 @@ export default defineComponent({
35
35
  window.addEventListener('resize', this.onResize);
36
36
  });
37
37
  },
38
+ unmounted() {
39
+ if (typeof window !== undefined) {
40
+ window.removeEventListener(`resize`, this.onResize);
41
+ }
42
+ },
38
43
  computed: {
39
44
  displayAlignClass() {
40
45
  switch (this.viewModel.displayStyle) {
@@ -19,5 +19,8 @@ export declare const context: {
19
19
  isBrandPageOrIsBrandContact: boolean;
20
20
  isBrandSite: boolean;
21
21
  isBrandContact: boolean;
22
+ options?: {
23
+ disableNavigationSideMenu: boolean;
24
+ } | undefined;
22
25
  };
23
26
  export declare const viewModel: RequestPaymentViewModel;
@@ -19,5 +19,8 @@ export declare const context: {
19
19
  isBrandPageOrIsBrandContact: boolean;
20
20
  isBrandSite: boolean;
21
21
  isBrandContact: boolean;
22
+ options?: {
23
+ disableNavigationSideMenu: boolean;
24
+ } | undefined;
22
25
  };
23
26
  export declare const viewModel: SupportMeViewModel;
@@ -38,4 +38,7 @@ export interface BrandPageContext {
38
38
  isBrandPageOrIsBrandContact: boolean;
39
39
  isBrandSite: boolean;
40
40
  isBrandContact: boolean;
41
+ options?: {
42
+ disableNavigationSideMenu: boolean;
43
+ };
41
44
  }
@@ -0,0 +1,5 @@
1
+ import { type BrandPageModel, type LogoImageModel } from '../..';
2
+ export declare const migration03: (brandPageModel: BrandPageModel, options: {
3
+ logoImage?: LogoImageModel;
4
+ isUserDraft: boolean;
5
+ }) => BrandPageModel;
@@ -0,0 +1,28 @@
1
+ import {} from '../..';
2
+ const handleRecursiveFontSizeMigration = (object) => {
3
+ if (!object) {
4
+ return;
5
+ }
6
+ if (object['fontSize']) {
7
+ // Handle conversion here
8
+ object['fontSize'] = object['fontSize'].replace('rem', 'em');
9
+ }
10
+ Object.keys(object).forEach((k) => {
11
+ if (typeof object[k] === 'object' && !Array.isArray(object[k])) {
12
+ handleRecursiveFontSizeMigration(object[k]);
13
+ }
14
+ });
15
+ };
16
+ export const migration03 = (brandPageModel, options) => {
17
+ handleRecursiveFontSizeMigration(brandPageModel.pageHeaderDesktop);
18
+ handleRecursiveFontSizeMigration(brandPageModel.pageHeaderMobile);
19
+ handleRecursiveFontSizeMigration(brandPageModel.pageFooterDesktop);
20
+ handleRecursiveFontSizeMigration(brandPageModel.pageFooterMobile);
21
+ handleRecursiveFontSizeMigration(brandPageModel.styles);
22
+ brandPageModel.pages.forEach((page) => {
23
+ page.contents.forEach((content) => {
24
+ handleRecursiveFontSizeMigration(content);
25
+ });
26
+ });
27
+ return brandPageModel;
28
+ };
@@ -1,6 +1,7 @@
1
1
  import {} from '../models';
2
2
  import { migration01 } from './migration/migration-01';
3
3
  import { migration02 } from './migration/migration-02';
4
+ import { migration03 } from './migration/migration-03';
4
5
  const MIGRATION_TABLE = [
5
6
  {
6
7
  version: 1,
@@ -10,6 +11,10 @@ const MIGRATION_TABLE = [
10
11
  version: 2,
11
12
  migrateFn: migration02,
12
13
  },
14
+ {
15
+ version: 3,
16
+ migrateFn: migration03,
17
+ },
13
18
  ];
14
19
  export const GetLatestModelVersion = () => Math.max(...MIGRATION_TABLE.map((x) => x.version));
15
20
  export const migrateBrandPageModel = (brandPageModel, options) => {
@@ -100,7 +100,7 @@ export default defineComponent({
100
100
  ? JSON.parse(this.viewModel.shopConfigData)
101
101
  : null;
102
102
  if (!this.containerStore.baseFabricRenderUrl) {
103
- throw new Error('base fabric render url is undefined');
103
+ // throw new Error('base fabric render url is undefined');
104
104
  }
105
105
  FabricRenderClient.setInstance({
106
106
  baseUrl: this.containerStore.baseFabricRenderUrl,
@@ -138,7 +138,42 @@ export const SampleBanner = () => {
138
138
  const pinia = setupStoryPinia();
139
139
  const brandPageMakerStore = useBrandPageMakerStore();
140
140
  const bannerContent = createInitialBannerSectionContent();
141
- bannerContent.description = 'Lorem ipsum dolor sit amet';
141
+ bannerContent.title = 'LAUNCHING SOON';
142
+ bannerContent.description = 'This Is Going To Be Epic';
143
+ bannerContent.buttonText = 'CONTACT US';
144
+ bannerContent.titleStyle.textStyleType = undefined;
145
+ bannerContent.titleStyle.fontSize = '6.25em';
146
+ bannerContent.titleStyle.fontFamily = 'Ubuntu';
147
+ bannerContent.titleStyle.lineHeight = '1';
148
+ bannerContent.titleStyle.textAlign = 'left';
149
+ bannerContent.displayStyle = 'left-aligned';
150
+ bannerContent.descriptionStyle.textStyleType = undefined;
151
+ bannerContent.descriptionStyle.fontFamily = 'Work Sans';
152
+ bannerContent.descriptionStyle.fontSize = '2.6875em';
153
+ bannerContent.descriptionStyle.textAlign = 'left';
154
+ bannerContent.buttonTextStyle.textStyleType = undefined;
155
+ bannerContent.buttonTextStyle.fontFamily = 'Ubuntu';
156
+ bannerContent.buttonTextStyle.fontSize = '1.5em';
157
+ bannerContent.buttonTextStyle.textAlign = 'left';
158
+ console.log('bannerContent', bannerContent);
159
+ const bannerContent2 = createInitialBannerSectionContent();
160
+ bannerContent2.title = 'LAUNCHING SOON';
161
+ bannerContent2.description = 'This Is Going To Be Epic2';
162
+ bannerContent2.buttonText = 'CONTACT US';
163
+ bannerContent2.titleStyle.textStyleType = undefined;
164
+ bannerContent2.titleStyle.fontSize = '6.25em';
165
+ bannerContent2.titleStyle.fontFamily = 'Ubuntu';
166
+ bannerContent2.titleStyle.lineHeight = '1';
167
+ bannerContent2.titleStyle.textAlign = 'left';
168
+ bannerContent2.displayStyle = 'left-aligned';
169
+ bannerContent2.descriptionStyle.textStyleType = undefined;
170
+ bannerContent2.descriptionStyle.fontFamily = 'Work Sans';
171
+ bannerContent2.descriptionStyle.fontSize = '2.6875em';
172
+ bannerContent2.descriptionStyle.textAlign = 'left';
173
+ bannerContent2.buttonTextStyle.textStyleType = undefined;
174
+ bannerContent2.buttonTextStyle.fontFamily = 'Ubuntu';
175
+ bannerContent2.buttonTextStyle.fontSize = '1.5em';
176
+ bannerContent2.buttonTextStyle.textAlign = 'left';
142
177
  brandPageMakerStore.setViewport({
143
178
  viewport: VIEWPORTS.desktop,
144
179
  });
@@ -155,7 +190,7 @@ export const SampleBanner = () => {
155
190
  {
156
191
  title: 'Home',
157
192
  slug: 'home',
158
- contents: [bannerContent],
193
+ contents: [bannerContent, bannerContent2],
159
194
  },
160
195
  ],
161
196
  brandPageType: BRAND_PAGE_TYPES.brandSite,
@@ -834,6 +834,7 @@ declare const _default: import("vue").DefineComponent<{}, {
834
834
  isDraggableEnabled(): boolean;
835
835
  isItemSelected(): (itemIdx: any) => boolean;
836
836
  }, {
837
+ dispatchViewPortChangeEvent(): void;
837
838
  onDraggingStart(): void;
838
839
  onDraggingEnd(ev: any): void;
839
840
  onOverlayClick(item: ContentViewModel): void;
@@ -73,7 +73,13 @@ export default defineComponent({
73
73
  };
74
74
  },
75
75
  },
76
+ mounted() {
77
+ this.dispatchViewPortChangeEvent();
78
+ },
76
79
  watch: {
80
+ viewport() {
81
+ this.dispatchViewPortChangeEvent();
82
+ },
77
83
  selectedItemId(itemId) {
78
84
  this.scrollToContentItemByItemId(itemId);
79
85
  },
@@ -93,6 +99,11 @@ export default defineComponent({
93
99
  },
94
100
  },
95
101
  methods: {
102
+ dispatchViewPortChangeEvent() {
103
+ window.dispatchEvent(new CustomEvent('editor:viewport', {
104
+ detail: { viewport: this.viewport },
105
+ }));
106
+ },
96
107
  onDraggingStart() {
97
108
  this.isDraggingContent = true;
98
109
  // Unable to set selected item id here because it will cause the draggable to be stuck
@@ -96,6 +96,9 @@ export default defineComponent({
96
96
  this.viewModel?.brandPageType === BRAND_PAGE_TYPES.brandContact,
97
97
  isBrandSite: this.viewModel?.brandPageType === BRAND_PAGE_TYPES.brandSite,
98
98
  isBrandContact: this.viewModel?.brandPageType === BRAND_PAGE_TYPES.brandContact,
99
+ options: {
100
+ disableNavigationSideMenu: true,
101
+ },
99
102
  };
100
103
  },
101
104
  previewViewport() {
@@ -1,13 +1,13 @@
1
1
  import { DEFAULT_FONT_SIZE } from '../../brand-page/constants/';
2
- import { pxToRem, remToPx } from '../utils/text.util';
2
+ import { pxToEm, emToPx } from '../utils/text.util';
3
3
  export const textSizeValueConvertor = {
4
4
  convertBackToMultipleValues: false,
5
5
  convert(value) {
6
- return (value.fontSize ? remToPx(value.fontSize) : DEFAULT_FONT_SIZE).toString();
6
+ return (value.fontSize ? emToPx(value.fontSize) : DEFAULT_FONT_SIZE).toString();
7
7
  },
8
8
  convertBack(valuePx) {
9
9
  return {
10
- fontSize: pxToRem(valuePx),
10
+ fontSize: pxToEm(valuePx),
11
11
  };
12
12
  },
13
13
  };
@@ -1,2 +1,2 @@
1
- export declare const pxToRem: (px: string) => string;
2
- export declare const remToPx: (rem: string) => string;
1
+ export declare const pxToEm: (px: string) => string;
2
+ export declare const emToPx: (rem: string) => string;
@@ -1,8 +1,8 @@
1
- export const pxToRem = (px) => {
1
+ export const pxToEm = (px) => {
2
2
  const value = parseFloat(px) / 16;
3
- return `${value}rem`;
3
+ return `${value}em`;
4
4
  };
5
- export const remToPx = (rem) => {
5
+ export const emToPx = (rem) => {
6
6
  const value = parseFloat(rem) * 16;
7
7
  return `${value}`;
8
8
  };
@@ -6,12 +6,11 @@ export declare class UserMediaClient {
6
6
  policyData: PolicyData | null;
7
7
  constructor(endpoints: Endpoints);
8
8
  getPolicyDataAsync(isPublic: boolean): Promise<PolicyData | null>;
9
- insertUserMediaAsync(mediaToken: string, name: string, type: string, isPublic: boolean, relatedAssetToken: string | undefined, mediaType: string, hasTriggeredProcessing: boolean): Promise<UserMediaItem | undefined>;
9
+ insertUserMediaAsync(mediaToken: string, name: string, type: string, isPublic: boolean, relatedAssetToken: string | undefined, mediaType: string): Promise<UserMediaItem | undefined>;
10
10
  uploadAndInsertMediaByUrlAsync(imageUrl: string, relatedAssetToken: string): Promise<string | undefined>;
11
11
  addPolicyToFormDataAndFile(file: MediaFile, formData: FormData): void;
12
12
  uploadUserMedia(file: MediaFile): Promise<void>;
13
13
  getUserMediaAsync(extensions: string[], isPublic: boolean, mediaType: string): Promise<UserMediaItem[] | undefined>;
14
- getUserMediaByTokenAsync(mediaToken: string): Promise<UserMediaItem | undefined>;
15
14
  deleteUserMediaByUserMediaToken(userMediaToken: string): Promise<boolean>;
16
15
  }
17
16
  export declare const getInstance: (endpoints: Endpoints) => UserMediaClient;
@@ -12,7 +12,7 @@ export class UserMediaClient {
12
12
  return this.policyData;
13
13
  }
14
14
  try {
15
- const response = await axios.get(`${this.endpoints.userPolicyDataEndpoint}?isPublic=${isPublic}&isUpload=true`);
15
+ const response = await axios.get(`${this.endpoints.userPolicyDataEndpoint}?isPublic=${isPublic}`);
16
16
  if (response.status !== 200) {
17
17
  if (process.env.NODE_ENV !== 'production') {
18
18
  console.error(`getUserPolicy got response status '${response.status}'`);
@@ -29,12 +29,9 @@ export class UserMediaClient {
29
29
  }
30
30
  return this.policyData;
31
31
  }
32
- async insertUserMediaAsync(mediaToken, name, type, isPublic, relatedAssetToken, mediaType, hasTriggeredProcessing) {
32
+ async insertUserMediaAsync(mediaToken, name, type, isPublic, relatedAssetToken, mediaType) {
33
33
  try {
34
- const reqUrl = hasTriggeredProcessing
35
- ? `${this.endpoints.createUserMediaEndpoint}/${mediaToken}?hasTriggeredProcessing=${hasTriggeredProcessing}`
36
- : `${this.endpoints.createUserMediaEndpoint}/${mediaToken}`;
37
- const response = await axios.put(reqUrl, {
34
+ const response = await axios.put(`${this.endpoints.createUserMediaEndpoint}/${mediaToken}`, {
38
35
  mediaToken,
39
36
  mimeType: type,
40
37
  name,
@@ -70,7 +67,7 @@ export class UserMediaClient {
70
67
  console.error(e);
71
68
  }
72
69
  }
73
- const newMedia = await this.insertUserMediaAsync(file.mediaToken, file.name, file.type, true, relatedAssetToken, file.mediaType, false);
70
+ const newMedia = await this.insertUserMediaAsync(file.mediaToken, file.name, file.type, true, relatedAssetToken, file.mediaType);
74
71
  return newMedia?.url;
75
72
  }
76
73
  addPolicyToFormDataAndFile(file, formData) {
@@ -79,7 +76,7 @@ export class UserMediaClient {
79
76
  }
80
77
  const mediaToken = uuidV4();
81
78
  file.mediaToken = mediaToken;
82
- const key = `${this.policyData.keyPrefix}${file.mediaToken}`;
79
+ const key = `${this.policyData.keyPrefix}${file.mediaToken}${getExtensionFromMimeType(file.type)}`;
83
80
  file.key = key;
84
81
  formData.append('key', key);
85
82
  formData.append('acl', this.policyData.acl);
@@ -113,17 +110,6 @@ export class UserMediaClient {
113
110
  }
114
111
  }
115
112
  }
116
- async getUserMediaByTokenAsync(mediaToken) {
117
- try {
118
- const response = await axios.get(`${this.endpoints.getAllUserMediaEndpoint}/${mediaToken}?isPublic=true`);
119
- return response.data;
120
- }
121
- catch (e) {
122
- if (process.env.NODE_ENV !== 'production') {
123
- console.error(e);
124
- }
125
- }
126
- }
127
113
  async deleteUserMediaByUserMediaToken(userMediaToken) {
128
114
  try {
129
115
  const result = await axios.delete(`${this.endpoints.deleteUserMediaEndpoint}/${userMediaToken}`);
@@ -7219,14 +7219,14 @@ body {
7219
7219
  line-height: 1.5;
7220
7220
  }
7221
7221
 
7222
- .brand-page-root[data-v-91e1b070] {
7222
+ .brand-page-root[data-v-2e004a3c] {
7223
7223
  height: 100%;
7224
7224
  }
7225
- .sortable[data-v-91e1b070] {
7225
+ .sortable[data-v-2e004a3c] {
7226
7226
  outline-color: #F7768C;
7227
7227
  outline-width: 0.2rem;
7228
7228
  }
7229
- .brand-page[data-v-91e1b070] {
7229
+ .brand-page[data-v-2e004a3c] {
7230
7230
  -webkit-box-sizing: border-box;
7231
7231
  box-sizing: border-box;
7232
7232
  display: -webkit-box;
@@ -7238,7 +7238,7 @@ body {
7238
7238
  -ms-flex-direction: column;
7239
7239
  flex-direction: column;
7240
7240
  }
7241
- .brand-page__inner--default[data-v-91e1b070] {
7241
+ .brand-page__inner--default[data-v-2e004a3c] {
7242
7242
  position: relative;
7243
7243
  z-index: 10;
7244
7244
  display: -webkit-box;
@@ -7250,16 +7250,16 @@ body {
7250
7250
  -ms-flex-direction: column;
7251
7251
  flex-direction: column;
7252
7252
  }
7253
- .brand-page__inner--desktop[data-v-91e1b070] {
7253
+ .brand-page__inner--desktop[data-v-2e004a3c] {
7254
7254
  min-height: 100vh;
7255
7255
  }
7256
- .brand-site__header[data-v-91e1b070] {
7256
+ .brand-site__header[data-v-2e004a3c] {
7257
7257
  container-type: inline-size;
7258
7258
  }
7259
- .brand-page__header[data-v-91e1b070] {
7259
+ .brand-page__header[data-v-2e004a3c] {
7260
7260
  padding-top: var(--page-padding);
7261
7261
  }
7262
- .brand-page__content--default[data-v-91e1b070] {
7262
+ .brand-page__content--default[data-v-2e004a3c] {
7263
7263
  margin-left: auto;
7264
7264
  margin-right: auto;
7265
7265
  margin-bottom: 2.5rem;
@@ -7276,7 +7276,7 @@ body {
7276
7276
  flex-direction: column;
7277
7277
  max-width: var(--page-max-width);
7278
7278
  }
7279
- .brand-page__content--desktop[data-v-91e1b070] {
7279
+ .brand-page__content--desktop[data-v-2e004a3c] {
7280
7280
  margin-left: auto;
7281
7281
  margin-right: auto;
7282
7282
  display: -webkit-box;
@@ -7292,15 +7292,15 @@ body {
7292
7292
  flex-direction: column;
7293
7293
  max-width: 100%;
7294
7294
  }
7295
- .brand-page__content--inner[data-v-91e1b070] {
7295
+ .brand-page__content--inner[data-v-2e004a3c] {
7296
7296
  padding-left: var(--page-padding);
7297
7297
  padding-right: var(--page-padding);
7298
7298
  }
7299
- .brand-page__content--inner--brandsite[data-v-91e1b070] {
7299
+ .brand-page__content--inner--brandsite[data-v-2e004a3c] {
7300
7300
  max-width: var(--brandsite-max-width);
7301
7301
  margin: 0 auto;
7302
7302
  }
7303
- .brand-page__content--outline-selected[data-v-91e1b070] {
7303
+ .brand-page__content--outline-selected[data-v-2e004a3c] {
7304
7304
  position: relative;
7305
7305
  z-index: 10;
7306
7306
  outline-color: #F7768C;
@@ -7308,20 +7308,20 @@ body {
7308
7308
  outline-style: dashed;
7309
7309
  outline-offset: -0.25rem;
7310
7310
  }
7311
- .brand-page__content--outline-footer-selected[data-v-91e1b070] {
7311
+ .brand-page__content--outline-footer-selected[data-v-2e004a3c] {
7312
7312
  outline-color: #f7768c;
7313
7313
  outline-width: 0.2rem;
7314
7314
  outline-style: dashed;
7315
7315
  outline-offset: -0.25rem;
7316
7316
  }
7317
7317
  @media (max-width: 640px) {
7318
- .brand-page__content--inner--full-width[data-v-91e1b070] {
7318
+ .brand-page__content--inner--full-width[data-v-2e004a3c] {
7319
7319
  padding-left: 0;
7320
7320
  padding-right: 0;
7321
7321
  }
7322
7322
  }
7323
7323
  @media (min-width: 640px) {
7324
- .brand-page__content--inner--full-width[data-v-91e1b070] {
7324
+ .brand-page__content--inner--full-width[data-v-2e004a3c] {
7325
7325
  padding-left: var(--page-padding);
7326
7326
  padding-right: var(--page-padding);
7327
7327
  }
@@ -7930,39 +7930,11 @@ body {
7930
7930
  border-bottom: 6px solid #be2626;
7931
7931
  }
7932
7932
 
7933
- .c-media-btn__img[data-v-144c5c39] {
7934
- border-radius: 0.375rem;
7935
- -o-object-fit: cover;
7936
- object-fit: cover;
7937
- -webkit-transition-property: -webkit-box-shadow;
7938
- transition-property: -webkit-box-shadow;
7939
- transition-property: box-shadow;
7940
- transition-property: box-shadow, -webkit-box-shadow;
7941
- -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
7942
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
7943
- -webkit-transition-duration: 200ms;
7944
- transition-duration: 200ms;
7945
- -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
7946
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
7947
- width: 100%;
7948
- height: 100%;
7949
- }
7950
- .c-media-btn__img[data-v-144c5c39]:hover {
7951
- -webkit-box-shadow: 0 0 0 3px rgb(0, 151, 215);
7952
- box-shadow: 0 0 0 3px rgb(0, 151, 215);
7953
- }
7954
- .tw-w-full[data-v-144c5c39] {
7955
- width: 100%;
7956
- }
7957
- .tw-h-full[data-v-144c5c39] {
7958
- height: 100%;
7959
- }
7960
-
7961
- .c-media-btn[data-v-4e32152a] {
7933
+ .c-media-btn[data-v-d2f038c3] {
7962
7934
  width: 100%;
7963
7935
  aspect-ratio: 1.2;
7964
7936
  }
7965
- .c-media-btn__img[data-v-4e32152a] {
7937
+ .c-media-btn__img[data-v-d2f038c3] {
7966
7938
  height: 100%;
7967
7939
  width: 100%;
7968
7940
  border-radius: 0.375rem;
@@ -7979,11 +7951,11 @@ body {
7979
7951
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
7980
7952
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
7981
7953
  }
7982
- .c-media-btn:hover .c-media-btn__img[data-v-4e32152a] {
7954
+ .c-media-btn:hover .c-media-btn__img[data-v-d2f038c3] {
7983
7955
  -webkit-box-shadow: 0 0 0 3px rgb(0, 151, 215);
7984
7956
  box-shadow: 0 0 0 3px rgb(0, 151, 215);
7985
7957
  }
7986
- .tw-bottom-15[data-v-4e32152a] {
7958
+ .tw-bottom-15[data-v-d2f038c3] {
7987
7959
  bottom: 15px;
7988
7960
  }
7989
7961
 
@@ -7547,14 +7547,14 @@ body {
7547
7547
  line-height: 1.5;
7548
7548
  }
7549
7549
 
7550
- .brand-page-root[data-v-91e1b070] {
7550
+ .brand-page-root[data-v-2e004a3c] {
7551
7551
  height: 100%;
7552
7552
  }
7553
- .sortable[data-v-91e1b070] {
7553
+ .sortable[data-v-2e004a3c] {
7554
7554
  outline-color: #F7768C;
7555
7555
  outline-width: 0.2rem;
7556
7556
  }
7557
- .brand-page[data-v-91e1b070] {
7557
+ .brand-page[data-v-2e004a3c] {
7558
7558
  -webkit-box-sizing: border-box;
7559
7559
  box-sizing: border-box;
7560
7560
  display: -webkit-box;
@@ -7566,7 +7566,7 @@ body {
7566
7566
  -ms-flex-direction: column;
7567
7567
  flex-direction: column;
7568
7568
  }
7569
- .brand-page__inner--default[data-v-91e1b070] {
7569
+ .brand-page__inner--default[data-v-2e004a3c] {
7570
7570
  position: relative;
7571
7571
  z-index: 10;
7572
7572
  display: -webkit-box;
@@ -7578,16 +7578,16 @@ body {
7578
7578
  -ms-flex-direction: column;
7579
7579
  flex-direction: column;
7580
7580
  }
7581
- .brand-page__inner--desktop[data-v-91e1b070] {
7581
+ .brand-page__inner--desktop[data-v-2e004a3c] {
7582
7582
  min-height: 100vh;
7583
7583
  }
7584
- .brand-site__header[data-v-91e1b070] {
7584
+ .brand-site__header[data-v-2e004a3c] {
7585
7585
  container-type: inline-size;
7586
7586
  }
7587
- .brand-page__header[data-v-91e1b070] {
7587
+ .brand-page__header[data-v-2e004a3c] {
7588
7588
  padding-top: var(--page-padding);
7589
7589
  }
7590
- .brand-page__content--default[data-v-91e1b070] {
7590
+ .brand-page__content--default[data-v-2e004a3c] {
7591
7591
  margin-left: auto;
7592
7592
  margin-right: auto;
7593
7593
  margin-bottom: 2.5rem;
@@ -7604,7 +7604,7 @@ body {
7604
7604
  flex-direction: column;
7605
7605
  max-width: var(--page-max-width);
7606
7606
  }
7607
- .brand-page__content--desktop[data-v-91e1b070] {
7607
+ .brand-page__content--desktop[data-v-2e004a3c] {
7608
7608
  margin-left: auto;
7609
7609
  margin-right: auto;
7610
7610
  display: -webkit-box;
@@ -7620,15 +7620,15 @@ body {
7620
7620
  flex-direction: column;
7621
7621
  max-width: 100%;
7622
7622
  }
7623
- .brand-page__content--inner[data-v-91e1b070] {
7623
+ .brand-page__content--inner[data-v-2e004a3c] {
7624
7624
  padding-left: var(--page-padding);
7625
7625
  padding-right: var(--page-padding);
7626
7626
  }
7627
- .brand-page__content--inner--brandsite[data-v-91e1b070] {
7627
+ .brand-page__content--inner--brandsite[data-v-2e004a3c] {
7628
7628
  max-width: var(--brandsite-max-width);
7629
7629
  margin: 0 auto;
7630
7630
  }
7631
- .brand-page__content--outline-selected[data-v-91e1b070] {
7631
+ .brand-page__content--outline-selected[data-v-2e004a3c] {
7632
7632
  position: relative;
7633
7633
  z-index: 10;
7634
7634
  outline-color: #F7768C;
@@ -7636,20 +7636,20 @@ body {
7636
7636
  outline-style: dashed;
7637
7637
  outline-offset: -0.25rem;
7638
7638
  }
7639
- .brand-page__content--outline-footer-selected[data-v-91e1b070] {
7639
+ .brand-page__content--outline-footer-selected[data-v-2e004a3c] {
7640
7640
  outline-color: #f7768c;
7641
7641
  outline-width: 0.2rem;
7642
7642
  outline-style: dashed;
7643
7643
  outline-offset: -0.25rem;
7644
7644
  }
7645
7645
  @media (max-width: 640px) {
7646
- .brand-page__content--inner--full-width[data-v-91e1b070] {
7646
+ .brand-page__content--inner--full-width[data-v-2e004a3c] {
7647
7647
  padding-left: 0;
7648
7648
  padding-right: 0;
7649
7649
  }
7650
7650
  }
7651
7651
  @media (min-width: 640px) {
7652
- .brand-page__content--inner--full-width[data-v-91e1b070] {
7652
+ .brand-page__content--inner--full-width[data-v-2e004a3c] {
7653
7653
  padding-left: var(--page-padding);
7654
7654
  padding-right: var(--page-padding);
7655
7655
  }
@@ -8258,39 +8258,11 @@ body {
8258
8258
  border-bottom: 6px solid #be2626;
8259
8259
  }
8260
8260
 
8261
- .c-media-btn__img[data-v-144c5c39] {
8262
- border-radius: 0.375rem;
8263
- -o-object-fit: cover;
8264
- object-fit: cover;
8265
- -webkit-transition-property: -webkit-box-shadow;
8266
- transition-property: -webkit-box-shadow;
8267
- transition-property: box-shadow;
8268
- transition-property: box-shadow, -webkit-box-shadow;
8269
- -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
8270
- transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
8271
- -webkit-transition-duration: 200ms;
8272
- transition-duration: 200ms;
8273
- -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
8274
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
8275
- width: 100%;
8276
- height: 100%;
8277
- }
8278
- .c-media-btn__img[data-v-144c5c39]:hover {
8279
- -webkit-box-shadow: 0 0 0 3px rgb(0, 151, 215);
8280
- box-shadow: 0 0 0 3px rgb(0, 151, 215);
8281
- }
8282
- .tw-w-full[data-v-144c5c39] {
8283
- width: 100%;
8284
- }
8285
- .tw-h-full[data-v-144c5c39] {
8286
- height: 100%;
8287
- }
8288
-
8289
- .c-media-btn[data-v-4e32152a] {
8261
+ .c-media-btn[data-v-d2f038c3] {
8290
8262
  width: 100%;
8291
8263
  aspect-ratio: 1.2;
8292
8264
  }
8293
- .c-media-btn__img[data-v-4e32152a] {
8265
+ .c-media-btn__img[data-v-d2f038c3] {
8294
8266
  height: 100%;
8295
8267
  width: 100%;
8296
8268
  border-radius: 0.375rem;
@@ -8307,11 +8279,11 @@ body {
8307
8279
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
8308
8280
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
8309
8281
  }
8310
- .c-media-btn:hover .c-media-btn__img[data-v-4e32152a] {
8282
+ .c-media-btn:hover .c-media-btn__img[data-v-d2f038c3] {
8311
8283
  -webkit-box-shadow: 0 0 0 3px rgb(0, 151, 215);
8312
8284
  box-shadow: 0 0 0 3px rgb(0, 151, 215);
8313
8285
  }
8314
- .tw-bottom-15[data-v-4e32152a] {
8286
+ .tw-bottom-15[data-v-d2f038c3] {
8315
8287
  bottom: 15px;
8316
8288
  }
8317
8289