cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
R58395
Advocate II
Advocate II

Unable to update shared component libraries in power app

I created a shared component library and imported it into my power app. I then go back and update the component library and publish it, and when I go back into my power app, I don't see any "Review" button to update the component library...  I try clicking on the refresh button beside the insert tab and it says: "there are no component libraries to be updated."

 

https://matthewdevaney.com/make-a-power-apps-component-library-to-share-and-reuse-components/

 

How can I get my component libraries to be updated?

42 REPLIES 42

@R58395 

I'm not sure what else to offer as a suggestion at this point except perhaps putting in a ticket with support.

I am able to update a component in any of my libraries and then in the app that uses them, it see the changes immediately.  So, at least I know there is not a problem with that process.

 

The only factor that I know that I set on all component libraries as soon as I make them is to turn on the Enhanced component properties option.  I doubt that it makes any difference to what you are seeing, but I thought I would mention it.

 

To completely test and to demonstrate steps, I :

  1. created a new library in the components library tab (called it NewLibrary)
  2. made no other changes
  3. saved the library
  4. created a new app
  5. clicked plus to insert and clicked on Get more components
  6. clicked on the NewLibrary Select All, then Import
  7. Clicked on Checked for updates - none found
  8. Went back to component library and added a label to Component1
  9. File->Save->Publish
  10. Returned to test app
  11. Clicked Check for Updates - and it showed it had an update

If you follow the EXACT steps above, you are saying that you do NOT get the same result in step 11?

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
R58395
Advocate II
Advocate II

I tried creating a new power app and component just like in your steps, but it was the same result, no update available.......

@R58395 

I'm not sure what else to suggest then except putting in a ticket for it.  There must be something wrong in your environment or something else causing this issue.  Again I'll mention, component libraries are still experimental, but without the ability to update components in your app based on changes in your library, I'd say the experiment is kind of worthless.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

Hi R58395,

 

I have the same problem here. I work with component libraries almost every day and always get the update pop-up after republishing a library, but now it seems to have stopped working somewhere during the afternoon. I suspect this is a bug on the PowerApps side.

 

... you are not alone! 🙂

 

Marc

R58395
Advocate II
Advocate II

YES perfect, so its not just me! Thanks for your moral support... Hopefully this gets fixed soon. @RandyHayes did you try your steps before today? Maybe it broke post afternoon?

R58395
Advocate II
Advocate II

@FPI-Marc  just a side question here, but I'm new to implementing themes across multiple power apps. Want to achieve like an "edit once, update across all power apps" kind of model for theming. My options would be like to set global variables in each power app like shown here
https://docs.microsoft.com/en-us/power-platform/guidance/coe/theming-components#apps

or to make a shared component for each input element I may want to theme.

 

I want to minimize effort of updating all power apps to get any updates to the central theme. The first option, I believe if a change is needed, I would need to update the color in each power app still. For the 2nd option I would need to accept the component update change for each power app. Both seems to have manual effort, but perhaps the 2nd option can be automated with an api in the future...

 

Do you generally deal with this problem and if so, which option do you think is better for a company to manage?

@R58395 

I did try the steps I outlined at the time that I responded.  So, it's not a today thing (at least not in my environment/region).

 

As for the styling...I would personally (and have) centralize around data instead of in the app.  Essentially having an app style list in SharePoint for example, that has all the information necessary for styling the apps. Then, in the OnStart of the apps, a statement to load the data into a global variable that can then be utilized in the stylistic properties of the controls.  

It is a pain to have to set the controls initially, but the process is essentially to create one of each type of control that you will use - button, label, etc. on a separate screen and set all the stylistic properties to be based on values in the global style variable set on start.  THEN, every time you want to add a new control of, let's say a label, go to that screen and copy and then paste it into your app screen.  This way all the formulas are already done on the control.  It's annoying, but there is not much else you can do.

 

You could try to establish components, but this is problematic because components will not let you access data and they will not access anything in the hosting app.  

 

The advantage of the data-based styles is that, if you need to change them, you do so in the data record and all the apps will reflect it.  If you do it in a component, you will have to edit each app in order to get it to reflect the changes and then republish.   I usually lean toward not editing apps as much as possible.

 

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!
R58395
Advocate II
Advocate II

@RandyHayes Thanks for this info, I was wondering about loading styles from like a list or json file. I looked up how to read data from a power app coming from a SP Online list or file and load it into global variables but couldn't find any such documentation. One solution involved using a power automate to retrieve data which sounds too complex. Do you have any code snippets I can insert into the formula bar to get this data?

R58395
Advocate II
Advocate II

I figured it out. I made a list called Styles and used this formula

 

Concurrent(

    Set(PrimaryColor, ColorValue(LookUp(Styles, Title = "PrimaryColor", Value))),

    Set(SecondaryColor, ColorValue(LookUp(Styles, Title = "PrimaryColor", Value)))

);




"Value" is the field name in the list that has the hex color. ColorValue just parses the text into a hex color data format.

@R58395 

It really sort of depends on what you want to style.  If you only have a handful of different aspects of your apps to style, then you can create a list with simple columns in it that hold values for properties of your apps.

For example, the screen fill color.  Let's stick with that one.  

My approach would be  - I would keep a Title column with the name of the App in it if you want to have more control over each app, but if you want it to just be "global" to all apps, you can ignore that logic and just put a title of "Global".  Then I would create a column in the list called ScreenFill.  In that column you could have a value such as "LightBlue" for the color name.  

Now, in your app, in the OnStart, you could then get that record from the datasource:

   Set(glbAppStyles, LookUp(yourStyleList, Title="Global"))

 

Now, in the Screen fill property of your screens, you would put.  ColorValue(glbAppStyles.ScreenFill)

 

This would set the screen fill to LightBlue, as set in the list.  

 

The same concept goes for all the properties you want to store.  So, if you wanted to set the font sizes for certain controls, you could have something like "LabelSize" in your list and set it to a value.  Then for label size properties, the formula would be: glbAppStyles.LabelSize.

There comes a point where you might find it too many columns to deal with.  In that case, I move to storing them all as JSON data in a single column.

In fact, I typically do this because, in addition to creating a "Standard" style, we usually offer the user the ability to pick their own theme or colors, in which case, we store their preferences in a list in a single column with the JSON of it.

But, that last bit is a bit more complex to write about in a forum post (and converting JSON to records is not a simple process).  I have a video on the bench (way behind on videos) that demonstrates styling an app this way as well as allowing users to store preferences like that.  I just need to finish that sucker up.

 

The concept is pretty much the same.  And ultimately, the real struggle is the fact that you cannot "default" properties of new controls, nor can you "Paste formats" in PowerApps.  So, you have to do that method of styling a control first, then never use insert again...only copy and paste of the one you styled.

 

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (923)