-
Notifications
You must be signed in to change notification settings - Fork 1
Widget load improvements #479
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
6a59ee1
fbfe8fe
ebb4c02
4a575b2
ddd68f6
274c80b
0fd76b3
4b50160
4981c8e
5298f88
d99a9a0
7fecfd4
f7300cf
5f85807
e874f83
54621f7
ff1e714
516546e
bfdc903
70f0ee6
be30188
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,7 +1,7 @@ | ||||||
| { | ||||||
| "name": "@saasquatch/mint-components", | ||||||
| "title": "Mint Components", | ||||||
| "version": "2.1.0", | ||||||
| "version": "2.1.1-1", | ||||||
| "description": "A minimal design library with components for referral and loyalty experiences. Built with Shoelace components by Saasquatch.", | ||||||
| "icon": "https://res.cloudinary.com/saasquatch/image/upload/v1652219900/squatch-assets/For_Mint.svg", | ||||||
| "raisins": "docs/raisins.json", | ||||||
|
|
@@ -36,7 +36,7 @@ | |||||
| "postinstall": "patch-package" | ||||||
| }, | ||||||
| "devDependencies": { | ||||||
| "@formatjs/intl": "1.8.4", | ||||||
| "@formatjs/intl": "^3.1.8", | ||||||
|
||||||
| "@formatjs/intl": "^3.1.8", | |
| "@formatjs/intl": "1.8.4", |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -20,6 +20,13 @@ export class FormMessage { | |||||
| * @uiName Alert type | ||||||
| */ | ||||||
| @Prop() type: string; | ||||||
|
|
||||||
| /** | ||||||
| * Loading state for the alert. | ||||||
| * | ||||||
| * @uiName Loading | ||||||
| */ | ||||||
| @Prop() loading: boolean = false; | ||||||
|
||||||
| @Prop() loading: boolean = false; | |
| @Prop() loading?: boolean = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Setting
hydratedFlag: nullin bedrock-components explicitly disables the hydration flag feature. For consistency across the monorepo and to ensure similar widget load behavior, consider whether bedrock-components should also use the same hydratedFlag configuration as mint-components, or document why they differ.