diff --git a/CustomerNotes.md b/CustomerNotes.md
index a3dc391c..68821508 100644
--- a/CustomerNotes.md
+++ b/CustomerNotes.md
@@ -1,5 +1,6 @@
# Crayon
+
As of tonight
Crayon.co/Academy will no longer have a form
Crayon.co/Academy/Activator-Course - Form to course url
@@ -372,8 +373,10 @@ They need more training and enablement They will follow up for Figma files and
# Humly
## Technical People
+
- Tomasz (Tom) - Client and Team Leader
- Bartosz - Full stack developer, 2 years at Humly
+
## Answers to Questions from email
How do we know what courses a candidate has completed? Should we store it ourselves or should we always get it from Northpass? What is the best practice?
- They want to apply some logic to these completions in Northpass
@@ -399,3 +402,45 @@ Status is they are mapping out and deciding what Northpass involvment should be
## Tasks
- [ ] Tom and Bartos:z will start working on this
+
+
+# Omnisend
+
+## Tasks
+- [ ] Wistia Project, what access do they have?
+- [ ] Share button with /app/course within course viewer bright green 52 front
+- [ ] EXpert led categories url not working
+- [ ]
+
+## Notes
+
+Can they embed a video from the Wistia Project video into Omnisend's product?
+
+### Skip Cover Page logic
+
+Is a user enrolled?
+LOGIC: Learner comes in, skip cover for page, start course -> skip cover,
+If not enabled, they should see overview page
+Automation logic, single-activity or 2 activities are not considered a course
+The key is a single video
+
+The logic should be if a single video exists skip cover page
+
+### Video on overview page
+
+Course card, will also enroll person in course/activate them
+Bring in video from Wistia Project
+Get analytics via wistia or google
+
+This is key analytics they need too
+What's new are every month, on average 600 views
+This week so far 51
+It usually lines up with activated learners on Northpass
+There was another link with dashboard, Audrius to check clicks
+
+Fundamentals First Video
+Out of 202 played it out of 220 load
+
+Whats new 95% play rate
+Out of 41 people, 39 played its
+
diff --git a/ErikaInterview.md b/ErikaInterview.md
new file mode 100644
index 00000000..582f856c
--- /dev/null
+++ b/ErikaInterview.md
@@ -0,0 +1,29 @@
+# Interview with Erika
+
+Tough admin, used enablement and creativity to make it work
+Created multiple workspaces for the users for that account
+Client's issue was didn't want to manage multiple accounts, had no bandwidth
+Used teaching to help the customer
+
+Needier customers were district contracts
+Gave her her phone number to client who wanted instant communication
+Setup regular checkins with these accounts
+More frequent communication for larger clients
+Tiered system, small team and each person handled almost 700 accounts
+Just taking the time explain
+
+Being an AM was her most enjoyable, creative time
+Tight knit group
+Constant communication
+
+Project Question:
+Go to learning library, resources first
+See what's available first
+Try to connect with client and asking more questions
+Align with them, is there a temporary fix
+Check in with peers and see if anyone else has faced this issue before
+Is there a bridge to solve this temporarily
+Being honest and aligning with the customer
+Offer to pushback
+
+Catalyst for CS with client
diff --git a/NP_Custom_Templates/customer_templates/.DS_Store b/NP_Custom_Templates/customer_templates/.DS_Store
index ba63ea4f..a984b7d1 100644
Binary files a/NP_Custom_Templates/customer_templates/.DS_Store and b/NP_Custom_Templates/customer_templates/.DS_Store differ
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_catalog_course_card.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_catalog_course_card.html.liquid
new file mode 100644
index 00000000..9b544787
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_catalog_course_card.html.liquid
@@ -0,0 +1,68 @@
+{% assign categories = '' | split: '' %}
+{% for cat in course.categories %}
+ {% assign cat_name = cat.name | split: '!@#$%^&*()' %}
+ {% assign categories = categories | concat: cat_name %}
+{% endfor %}
+{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
+
+{% case course.properties.difficulty %}
+{% when "Beginner" %}
+ {% assign diff = 1 %}
+{% when "Advanced" %}
+ {% assign diff = 2 %}
+{% when "Expert" %}
+ {% assign diff = 3 %}
+{% else %}
+ {% assign diff = 0 %}
+{% endcase %}
+
+{% if course.properties.course_time < 10 %}
+ {% assign time = 1 %}
+{% elsif course.properties.course_time < 30 %}
+ {% assign time = 2 %}
+{% elsif course.properties.course_time < 60 %}
+ {% assign time = 3 %}
+{% elsif course.properties.course_time < 120 %}
+ {% assign time = 4 %}
+{% else %}
+ {% assign time = 5 %}
+{% endif %}
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_catalog_filter.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_catalog_filter.html.liquid
new file mode 100644
index 00000000..32eff5ec
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_catalog_filter.html.liquid
@@ -0,0 +1,164 @@
+{% assign diff_1 = 0 | times: 1 %}
+{% assign diff_2 = 0 | times: 1 %}
+{% assign diff_3 = 0 | times: 1 %}
+
+{% assign time_1 = 0 | times: 1 %}
+{% assign time_2 = 0 | times: 1 %}
+{% assign time_3 = 0 | times: 1 %}
+{% assign time_4 = 0 | times: 1 %}
+{% assign time_5 = 0 | times: 1 %}
+
+{% assign co_categories = '' | split: '' %}
+{% for co in courses.in_catalog %}
+
+ {% for cat in co.categories %}
+ {% assign cat_name = cat.name | split: '!@#$%^&*()' %}
+ {% assign co_categories = co_categories | concat: cat_name %}
+ {% endfor %}
+
+ {% case co.properties.difficulty %}
+ {% when "Beginner" %}
+ {% assign diff_1 = diff_1 | plus: 1 %}
+ {% when "Advanced" %}
+ {% assign diff_2 = diff_2 | plus: 1 %}
+ {% when "Expert" %}
+ {% assign diff_3 = diff_3 | plus: 1 %}
+ {% endcase %}
+
+ {% if co.properties.course_time < 10 %}
+ {% assign time_1 = time_1 | plus: 1 %}
+ {% elsif co.properties.course_time < 30 %}
+ {% assign time_2 = time_2 | plus: 1 %}
+ {% elsif co.properties.course_time < 60 %}
+ {% assign time_3 = time_3 | plus: 1 %}
+ {% elsif co.properties.course_time < 120 %}
+ {% assign time_4 = time_4 | plus: 1 %}
+ {% else %}
+ {% assign time_5 = time_5 | plus: 1 %}
+ {% endif %}
+
+{% endfor %}
+{% assign co_unique_categories = co_categories | uniq | sort %}
+
+
+
+
+
+
+
+ CATEGORY
+
+
+ All
+
+ {% for cat in co_unique_categories %}
+ {% assign number_of_courses = co_categories | split: cat %}
+ {% assign number_of_courses = number_of_courses.size | minus: 1 %}
+
+ {{ cat }} ({{ number_of_courses }})
+
+ {% endfor %}
+
+
+
+
+ DIFFICULTY
+
+
+
+
+ Beginner ({{ diff_1 }})
+
+
+
+
+ Advanced ({{ diff_2 }})
+
+
+
+
+ Expert ({{ diff_3 }})
+
+
+
+
+
+ DURATION
+
+
+
+
+ < 10 mins ({{ time_1 }})
+
+
+
+
+ 10-30 mins ({{ time_2 }})
+
+
+
+
+ 30-60 mins ({{ time_3 }})
+
+
+
+
+ 1-2 hours ({{ time_4 }})
+
+
+
+
+ > 2 hours ({{ time_5 }})
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_catalog_filter_mobile.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_catalog_filter_mobile.html.liquid
new file mode 100644
index 00000000..f4e48ae5
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_catalog_filter_mobile.html.liquid
@@ -0,0 +1,121 @@
+
+
+
+
+
+ CATEGORY
+
+
+ All
+
+ {% for cat in co_unique_categories %}
+ {% assign number_of_courses = co_categories | split: cat %}
+ {% assign number_of_courses = number_of_courses.size | minus: 1 %}
+
+ {{ cat }} ({{ number_of_courses }})
+
+ {% endfor %}
+
+
+
+
+ DIFFICULTY
+
+
+
+
+ Beginner ({{ diff_1 }})
+
+
+
+
+ Advanced ({{ diff_2 }})
+
+
+
+
+ Expert ({{ diff_3 }})
+
+
+
+
+
+ DURATION
+
+
+
+
+ < 10 mins ({{ time_1 }})
+
+
+
+
+ 10-30 mins ({{ time_2 }})
+
+
+
+
+ 30-60 mins ({{ time_3 }})
+
+
+
+
+ 1-2 hours ({{ time_4 }})
+
+
+
+
+ > 2 hours ({{ time_5 }})
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_courses_list_course_card.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_courses_list_course_card.html.liquid
new file mode 100644
index 00000000..15d25c1e
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_courses_list_course_card.html.liquid
@@ -0,0 +1,8 @@
+{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
+
+
+
+
+ {{ course.name }}
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_footer.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_footer.html.liquid
new file mode 100644
index 00000000..6e5108f6
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_footer.html.liquid
@@ -0,0 +1,568 @@
+{% include "footer_join" %}
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_footer_join.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_footer_join.html.liquid
new file mode 100644
index 00000000..b553989e
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_footer_join.html.liquid
@@ -0,0 +1,100 @@
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_head.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_head.html.liquid
new file mode 100644
index 00000000..5a17c29a
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_head.html.liquid
@@ -0,0 +1,39 @@
+{% styles default %}
+{% styles colors %}
+{% styles custom %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_header.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_header.html.liquid
new file mode 100644
index 00000000..15d33585
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_header.html.liquid
@@ -0,0 +1,14 @@
+{% include 'header_desktop' %}
+{% include 'header_mobile' %}
+{% include "messages" %}
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_header_desktop.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_header_desktop.html.liquid
new file mode 100644
index 00000000..de0ddeb8
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_header_desktop.html.liquid
@@ -0,0 +1,353 @@
+
+
+
+
+
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_header_mobile.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_header_mobile.html.liquid
new file mode 100644
index 00000000..e3ef4942
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_header_mobile.html.liquid
@@ -0,0 +1,487 @@
+
+
+
+
+
+
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_homepage_beginning.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_beginning.html.liquid
new file mode 100644
index 00000000..59cd40a3
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_beginning.html.liquid
@@ -0,0 +1,197 @@
+
+
+ BEFORE YOU START
+
+
+ Learn the fundamentals
+
+
+ Whether it's sign-up forms, automation worflows or designing and sending your first email campaign - we got you covered.
+
+
+ Start learning
+
+ {% assign beginner_courses = 0 | times: 1 %}
+
+ {% for course in courses.in_catalog %}
+ {% if course.properties.beginner %}
+ {% include 'homepage_beginning_course_card' with course %}
+ {% assign beginner_courses = beginner_courses | plus: 1 %}
+ {% if beginner_courses == 3 %} {% break %} {% endif %}
+ {% endif %}
+ {% endfor %}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_homepage_beginning_course_card.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_beginning_course_card.html.liquid
new file mode 100644
index 00000000..2527dde2
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_beginning_course_card.html.liquid
@@ -0,0 +1,33 @@
+{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_homepage_courses_list.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_courses_list.html.liquid
new file mode 100644
index 00000000..10616cee
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_courses_list.html.liquid
@@ -0,0 +1,22 @@
+{% assign popular_count = 0 | times: 1 %}
+{% assign latest_count = 0 | times: 1 %}
+
+
+
+ {% for course in courses.in_catalog %}
+ {% if popular_count < 5 %}
+ {% if course.properties.popular %}
+ {% assign property = 'popular' %}
+ {% include 'courses_list_course_card' with course %}
+ {% assign popular_count = popular_count | plus: 1 %}
+ {% endif %}
+ {% endif %}
+ {% if latest_count < 5 %}
+ {% if course.properties.latest_order < 10 %}
+ {% assign property = 'latest' %}
+ {% include 'courses_list_course_card' with course %}
+ {% assign latest_count = latest_count | plus: 1 %}
+ {% endif %}
+ {% endif %}
+ {% endfor %}
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_homepage_latest.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_latest.html.liquid
new file mode 100644
index 00000000..3fac35a2
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_latest.html.liquid
@@ -0,0 +1,24 @@
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_homepage_opinions.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_opinions.html.liquid
new file mode 100644
index 00000000..ae76d413
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_opinions.html.liquid
@@ -0,0 +1,132 @@
+
+
+
+
+
+ ”Keep thriving Omnisend! This Academy is extremely good to learn more about ecommerce”
+
+
+
+
+
+
+
+
+ “Wow! you know how to make a video I'm super impressed with quality content short run time and good visual experience. Thank you!”
+
+
+
+
+
+
+
+
+ “Everything you will ever need to successfully take your business to the next level. Great content!”
+
+
+
+
+
+
+
+
+ “Absolute gold and it is completely free people! 🔥 content”
+
+
+
+
+
+
+
+
+ “Thanks to these guys I was able to increase my sales 3x last year. Omnisend all the way!”
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_homepage_popular.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_popular.html.liquid
new file mode 100644
index 00000000..845c8af0
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_popular.html.liquid
@@ -0,0 +1,18 @@
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_homepage_recommended.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_recommended.html.liquid
new file mode 100644
index 00000000..0ea6095e
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_recommended.html.liquid
@@ -0,0 +1,175 @@
+
+ {% if courses.featured.any? %}
+ {% for course in courses.featured %}
+ {% include 'homepage_recommended_course_card' with course %}
+ {% endfor %}
+ {% endif %}
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_homepage_recommended_course_card.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_recommended_course_card.html.liquid
new file mode 100644
index 00000000..5cac11a5
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_homepage_recommended_course_card.html.liquid
@@ -0,0 +1,38 @@
+{% assign activities_count = 0 %}
+{% for course_section in course.sections %}
+ {% for course_activity in course_section.activities %}
+ {% assign activities_count = activities_count | plus: 1 %}
+ {% endfor %}
+{% endfor %}
+{%comment%}{% capture course_path %}{% route course, id: course.id %}{% endcapture %}{%endcomment%}
+{% capture course_path %}{% route course_viewer, course_id: course.id, learning_path_id: params.learning_path_id %}{% endcapture %}
+{% capture enroll_path %}{% route course_enrollment, code: course.enrollment_code %}{% endcapture %}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/_similar_courses.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/_similar_courses.html.liquid
new file mode 100644
index 00000000..e82ea0a9
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/_similar_courses.html.liquid
@@ -0,0 +1,32 @@
+{% assign similar_count = 0 | plus: 0 %}
+{% assign categories_names = course.categories | map: "name" %}
+{% assign property = "" %}
+
+
+ SIMILAR COURSES
+
+
+ {% for checked_course in courses.in_catalog %}
+ {% if checked_course.id != course.id %}
+ {% for category in checked_course.categories %}
+ {% if categories_names contains category.name %}
+ {% capture course_path %}{% route course, id: checked_course.id %}{% endcapture %}
+
+
+
+ {{ checked_course.name }}
+
+
+ {% assign similar_count = similar_count | plus: 1 %}
+ {% break %}
+ {% endif %}
+ {% endfor %}
+ {% endif %}
+ {% if similar_count == 5 %} {% break %} {% endif %}
+ {% endfor %}
+
+
+ More courses
+
+
+
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/auth_url_email.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/auth_url_email.html.liquid
new file mode 100644
index 00000000..f06fb12e
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/auth_url_email.html.liquid
@@ -0,0 +1,13 @@
+{% form_authenticity_token %}
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/catalog.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/catalog.html.liquid
new file mode 100644
index 00000000..968943b8
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/catalog.html.liquid
@@ -0,0 +1,213 @@
+{% include "header" %}
+{% include "course_version_outdated_alert", courses: courses.in_catalog %}
+
+
+
+
+
+ {% include 'catalog_filter' %}
+
+
+ Filter
+
+
+
+ {% for course in courses.in_catalog %}
+ {% include 'catalog_course_card' with course %}
+ {% endfor %}
+
+
+
+ {% include 'catalog_filter_mobile' %}
+
+
+{% include "footer" %}
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/course.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/course.html.liquid
new file mode 100644
index 00000000..762417aa
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/course.html.liquid
@@ -0,0 +1,389 @@
+{% assign activities_count = 0 %}
+{% for course_section in course.sections %}
+ {% for course_activity in course_section.activities %}
+ {% assign activities_count = activities_count | plus: 1 %}
+ {% endfor %}
+{% endfor %}
+{% capture course_path %}{% route course, id: course.id %}{% endcapture %}
+
+{% if course.enrolled? %}
+ {% assign wrapperClassName = "course-header-left-button" %}
+{% else %}
+ {% assign wrapperClassName = "course-header-left-button enroll-button" %}
+{% endif %}
+
+
+{% include 'header' %}
+{% if course.enrolled? %}
+
+{% else %}
+
+
+
+
+
+ DESCRIPTION
+
+
+ {{ course.full_description }}
+
+
+
+
+ WHAT YOU WILL LEARN
+
+
+ {% for section in course.sections %}
+
+ {{ section.name }}
+
+ {% endfor %}
+
+
+
+ {% if course.instructors.size != 0 %}
+
+ {% assign instructor = course.instructors.first %}
+
+
+
+
+
+
+ THIS COURSE BROUGHT BY
+
+
+
+
+
+ {{ instructor.name }}
+
+
+ {{ instructor.title }}
+
+
+
+
+ {{ instructor.bio }}
+
+
+
+
+
+
+
+ {% endif %}
+
+ {% include 'similar_courses' %}
+
+
+{% endif %}
+{% include 'footer' %}
+
+
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/dashboard.html.liquid
new file mode 100644
index 00000000..9c2c0727
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/dashboard.html.liquid
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/faq.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/faq.html.liquid
new file mode 100644
index 00000000..4c6ebe5a
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/faq.html.liquid
@@ -0,0 +1,70 @@
+{% include "header" %}
+
+
+ Frequently Asked Questions
+
+
+
+ Why do I need to sign up?
+
+
+ When you sign up for Omnisend Academy, you get lifetime access to online education resources to help your ecommerce business make marketing relevant by sending personalized messages to the right person, at the right time, using the right channel.
+
+
+
+
+ Is Omnisend Academy content free?
+
+
+ Yes, all the tutorials, online courses, and webinars are free. To create your free Omnisend account, you'll simply need to sign-up and you're ready to go!
+
+
+
+
+ How is Omnisend Academy different from videos on YouTube or other educational sources?
+
+
+ While we recognize there are many different tools and ways to build a business and market it properly, we believe it’s better to have more voices than fewer. All the educational material offered in Omnisend Academy is produced in-house or approved by Omnisend. That means you don't have to scroll through endless listings of content to find truthful ones. And while we understand that strategies and products are always evolving and changing, we are on top of everything that is going on in the market just to provide you with the latest and greatest guidance from industry experts.
+
+
+
+
+ Who are the instructors?
+
+
+ All courses are taught by experts who work at Omnisend, our partners, or successful entrepreneurs who are seeing growth using Omnisend. We have one of the most experienced and knowledgable people in the industry so that you don't have to verify whether their advice can be trusted or not.
+
+
+
+{% include "footer" %}
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Omnisend/homepage.html.liquid
new file mode 100644
index 00000000..6f4c6b49
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/homepage.html.liquid
@@ -0,0 +1,31 @@
+{% include "header" %}
+{% include "homepage_recommended" %}
+{% include 'homepage_courses_list' %}
+
+
+ {% include 'homepage_latest' %}
+ {% include "homepage_beginning" %}
+
+ {% include 'homepage_opinions' %}
+
+ {% include 'homepage_popular' %}
+
+
+{% include "footer" %}
+
+
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Omnisend/styles.css.liquid b/NP_Custom_Templates/customer_templates/Omnisend/styles.css.liquid
new file mode 100644
index 00000000..ef0b9ef1
--- /dev/null
+++ b/NP_Custom_Templates/customer_templates/Omnisend/styles.css.liquid
@@ -0,0 +1,170 @@
+html {
+ font-size: 16px !important;
+}
+
+@media only screen and (max-width: 1440px) {
+ html {
+ font-size: 14.5px !important;
+ }
+}
+
+@media only screen and (max-width: 900px) {
+ html {
+ font-size: 13px !important;
+ }
+}
+
+body {
+ font-family: Roboto, sans-serif;
+ color: #1E2423;
+ overflow-x: clip;
+}
+
+/* COURSES_LIST */
+
+.courses-list-title {
+ font-weight: 500;
+ font-size: 0.9375rem;
+ line-height: 24px;
+ letter-spacing: 3px;
+ margin-bottom: 20px;
+}
+
+.courses-list {
+ margin: 30px 0;
+}
+.list-course {
+ text-decoration: none;
+}
+.list-course:nth-child(1) {
+ padding-left: 0;
+}
+
+.list-course:nth-child(5) {
+ padding-right: 0;
+}
+.list-course-image {
+ border-radius: 10px;
+ margin-bottom: 15px;
+ width: 100%;
+}
+
+.list-course-name {
+ color: initial;
+ font-family: 'Faktum', sans-serif;
+ font-size: 1.375rem;
+ line-height: 32px;
+ word-wrap: anywhere;
+}
+
+.courses-list-more {
+ text-decoration: none;
+ color: #2F8481;
+ font-weight: 700;
+ margin-top: 30px;
+ display: inline-block;
+}
+
+.courses-list-more:hover {
+ color: #246b69;
+}
+@media only screen and (max-width: 950px) {
+ .courses-list-list {
+ flex-direction: column;
+ }
+ .list-course {
+ margin-bottom: 30px;
+ padding: 0;
+ }
+ .list-course-image {
+ border-radius: 10px;
+ }
+ .courses-list-more {
+ margin-top: 0;
+ }
+}
+
+/* CARDS_COURSE */
+.course-card {
+ margin-bottom: 30px;
+}
+
+.course-card-image-wrapper {
+ display: inline-block;
+ position: relative;
+}
+
+.course-card-image {
+ border-radius: 10px;
+ width: 100%;
+}
+
+.course-card-image-ribbon {
+ text-decoration: none;
+ color: white;
+ background: #2F8481;
+ padding: 3px 5px;
+ position: absolute;
+ top: 10px;
+ right: 0;
+ opacity: 0.9;
+ border-radius: 2px;
+}
+
+.course-card-image-ribbon:hover {
+ color: white;
+}
+
+.course-card-content {
+ text-align: left;
+}
+
+.course-card-content * {
+ text-align: left;
+}
+
+.course-card-content-category {
+ padding: 15px 0 05px 0;
+ font-weight: 500;
+ font-size: 0.9375rem;
+ line-height: 24px;
+ letter-spacing: 3px;
+}
+
+.course-card-content-title {
+ font-family: 'Faktum', sans-serif;
+ font-weight: 800;
+ font-size: 2.125rem;
+ line-height: 46px;
+ text-decoration: none;
+ color: #1E2423;
+ display: inline-block;
+ margin-bottom: 15px;
+}
+
+.course-card-content-title:hover {
+ color: black;
+}
+
+.course-card-content-description {
+ margin-bottom: 15px;
+ font-weight: 300;
+ font-size: 1.125rem;
+ line-height: 32px;
+}
+
+.course-card-button {
+ color: #2F8481;
+ text-decoration: none;
+ font-weight: 700;
+ font-size: 1.125rem;
+ font-family: Roboto, sans-serif;
+}
+
+.course-card-button:hover {
+ color: #246b69;
+}
+
+.course-card-button .fa-angle-right {
+ margin-left: 6px;
+}
\ No newline at end of file
diff --git a/NP_Custom_Templates/customer_templates/Scenario/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Scenario/homepage.html.liquid
index 3fe5b601..7d9e4269 100644
--- a/NP_Custom_Templates/customer_templates/Scenario/homepage.html.liquid
+++ b/NP_Custom_Templates/customer_templates/Scenario/homepage.html.liquid
@@ -26,19 +26,15 @@
{{ homepage.featured_courses_subheadline }}
- {% assign catalog_courses = courses.in_catalog %}
- {% if catalog_courses.any? %}
+ {% assign course_order = courses.in_catalog | where: 'properties', "course_order" %}
+ {{ course_order }}
+ {% if courses.in_catalog.any? %}
- {% for course in catalog_courses %}
- {% if course.properties.course_order == true %}
- {% comment %} {% assign home_courses = catalog_courses | sort: "name" %}
- {% for course in home_courses %}{% endfor %} {% endcomment %}
+ {% for course in course_order %}
{% include "cards_featured_course" with course %}
-
- {% endif %}
- {% endfor %}
+ {% endfor %}
{% else %}
diff --git a/TaskTree/obj/Debug/net6.0/project.razor.json b/TaskTree/obj/Debug/net6.0/project.razor.json
index 5224a92c..70039a44 100644
--- a/TaskTree/obj/Debug/net6.0/project.razor.json
+++ b/TaskTree/obj/Debug/net6.0/project.razor.json
@@ -12,7 +12,7 @@
"ProjectWorkspaceState": {
"TagHelpers": [
{
- "HashCode": -1456140033,
+ "HashCode": -1079171546,
"Kind": "Components.Component",
"Name": "TaskTree.Pages.Accounts",
"AssemblyName": "TaskTree",
@@ -28,7 +28,7 @@
}
},
{
- "HashCode": -1604700676,
+ "HashCode": 371362329,
"Kind": "Components.Component",
"Name": "TaskTree.Pages.Accounts",
"AssemblyName": "TaskTree",
@@ -45,7 +45,7 @@
}
},
{
- "HashCode": 878289724,
+ "HashCode": -1553746569,
"Kind": "Components.Component",
"Name": "TaskTree.Pages.Counter",
"AssemblyName": "TaskTree",
@@ -61,7 +61,7 @@
}
},
{
- "HashCode": 176792705,
+ "HashCode": 720162526,
"Kind": "Components.Component",
"Name": "TaskTree.Pages.Counter",
"AssemblyName": "TaskTree",
@@ -78,7 +78,7 @@
}
},
{
- "HashCode": 470653077,
+ "HashCode": 311356918,
"Kind": "Components.Component",
"Name": "TaskTree.Pages.FetchData",
"AssemblyName": "TaskTree",
@@ -94,7 +94,7 @@
}
},
{
- "HashCode": -1226295197,
+ "HashCode": -688908263,
"Kind": "Components.Component",
"Name": "TaskTree.Pages.FetchData",
"AssemblyName": "TaskTree",
@@ -111,7 +111,7 @@
}
},
{
- "HashCode": -1694883111,
+ "HashCode": 1176290393,
"Kind": "Components.Component",
"Name": "TaskTree.App",
"AssemblyName": "TaskTree",
@@ -127,7 +127,7 @@
}
},
{
- "HashCode": 2011431849,
+ "HashCode": -1667937950,
"Kind": "Components.Component",
"Name": "TaskTree.App",
"AssemblyName": "TaskTree",
@@ -144,7 +144,7 @@
}
},
{
- "HashCode": -266487078,
+ "HashCode": -1619839449,
"Kind": "Components.Component",
"Name": "TaskTree.Shared.SurveyPrompt",
"AssemblyName": "TaskTree",
@@ -170,7 +170,7 @@
}
},
{
- "HashCode": 1516070918,
+ "HashCode": 1755083340,
"Kind": "Components.Component",
"Name": "TaskTree.Shared.SurveyPrompt",
"AssemblyName": "TaskTree",
@@ -197,7 +197,7 @@
}
},
{
- "HashCode": -1462033639,
+ "HashCode": -1256309795,
"Kind": "Components.Component",
"Name": "TaskTree.Shared.MainLayout",
"AssemblyName": "TaskTree",
@@ -225,7 +225,7 @@
}
},
{
- "HashCode": -1800860295,
+ "HashCode": 2022316366,
"Kind": "Components.Component",
"Name": "TaskTree.Shared.MainLayout",
"AssemblyName": "TaskTree",
@@ -254,7 +254,7 @@
}
},
{
- "HashCode": -418628290,
+ "HashCode": 762787291,
"Kind": "Components.ChildContent",
"Name": "TaskTree.Shared.MainLayout.Body",
"AssemblyName": "TaskTree",
@@ -273,7 +273,7 @@
}
},
{
- "HashCode": -562523166,
+ "HashCode": 1534412380,
"Kind": "Components.ChildContent",
"Name": "TaskTree.Shared.MainLayout.Body",
"AssemblyName": "TaskTree",
@@ -293,7 +293,7 @@
}
},
{
- "HashCode": -1164411303,
+ "HashCode": -2014168666,
"Kind": "Components.Component",
"Name": "TaskTree.Shared.NavMenu",
"AssemblyName": "TaskTree",
@@ -309,7 +309,7 @@
}
},
{
- "HashCode": -1932474639,
+ "HashCode": 342435812,
"Kind": "Components.Component",
"Name": "TaskTree.Shared.NavMenu",
"AssemblyName": "TaskTree",
@@ -326,7 +326,7 @@
}
},
{
- "HashCode": 1262783546,
+ "HashCode": 625337315,
"Kind": "Components.Component",
"Name": "Blazorise.BaseElementComponent",
"AssemblyName": "Blazorise",
@@ -589,7 +589,7 @@
}
},
{
- "HashCode": 1940873815,
+ "HashCode": 1978116870,
"Kind": "Components.Component",
"Name": "Blazorise.BaseElementComponent",
"AssemblyName": "Blazorise",
@@ -853,7 +853,7 @@
}
},
{
- "HashCode": -846253508,
+ "HashCode": -955949133,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BaseElementComponent.ChildContent",
"AssemblyName": "Blazorise",
@@ -872,7 +872,7 @@
}
},
{
- "HashCode": 850195064,
+ "HashCode": 135772256,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BaseElementComponent.ChildContent",
"AssemblyName": "Blazorise",
@@ -892,7 +892,7 @@
}
},
{
- "HashCode": 1464448758,
+ "HashCode": 591479745,
"Kind": "Components.Component",
"Name": "Blazorise.Accordion",
"AssemblyName": "Blazorise",
@@ -1155,7 +1155,7 @@
}
},
{
- "HashCode": 156131331,
+ "HashCode": -1877664164,
"Kind": "Components.Component",
"Name": "Blazorise.Accordion",
"AssemblyName": "Blazorise",
@@ -1419,7 +1419,7 @@
}
},
{
- "HashCode": -1134748290,
+ "HashCode": -103484083,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Accordion.ChildContent",
"AssemblyName": "Blazorise",
@@ -1438,7 +1438,7 @@
}
},
{
- "HashCode": -529847539,
+ "HashCode": -1858161664,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Accordion.ChildContent",
"AssemblyName": "Blazorise",
@@ -1458,7 +1458,7 @@
}
},
{
- "HashCode": -2020004872,
+ "HashCode": 1336481175,
"Kind": "Components.Component",
"Name": "Blazorise.Addon",
"AssemblyName": "Blazorise",
@@ -1731,7 +1731,7 @@
}
},
{
- "HashCode": 1884020298,
+ "HashCode": -602437193,
"Kind": "Components.Component",
"Name": "Blazorise.Addon",
"AssemblyName": "Blazorise",
@@ -2005,7 +2005,7 @@
}
},
{
- "HashCode": -2093710221,
+ "HashCode": 1848717697,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Addon.ChildContent",
"AssemblyName": "Blazorise",
@@ -2024,7 +2024,7 @@
}
},
{
- "HashCode": 1325848287,
+ "HashCode": -1456000901,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Addon.ChildContent",
"AssemblyName": "Blazorise",
@@ -2044,7 +2044,7 @@
}
},
{
- "HashCode": 702643411,
+ "HashCode": -1849910954,
"Kind": "Components.Component",
"Name": "Blazorise.AddonLabel",
"AssemblyName": "Blazorise",
@@ -2307,7 +2307,7 @@
}
},
{
- "HashCode": 429180182,
+ "HashCode": -1669785242,
"Kind": "Components.Component",
"Name": "Blazorise.AddonLabel",
"AssemblyName": "Blazorise",
@@ -2571,7 +2571,7 @@
}
},
{
- "HashCode": -837974567,
+ "HashCode": 1700753483,
"Kind": "Components.ChildContent",
"Name": "Blazorise.AddonLabel.ChildContent",
"AssemblyName": "Blazorise",
@@ -2590,7 +2590,7 @@
}
},
{
- "HashCode": 1567634430,
+ "HashCode": 1641539341,
"Kind": "Components.ChildContent",
"Name": "Blazorise.AddonLabel.ChildContent",
"AssemblyName": "Blazorise",
@@ -2610,7 +2610,7 @@
}
},
{
- "HashCode": -541963794,
+ "HashCode": -261158396,
"Kind": "Components.Component",
"Name": "Blazorise.Addons",
"AssemblyName": "Blazorise",
@@ -2891,7 +2891,7 @@
}
},
{
- "HashCode": -438319800,
+ "HashCode": -2104114229,
"Kind": "Components.Component",
"Name": "Blazorise.Addons",
"AssemblyName": "Blazorise",
@@ -3173,7 +3173,7 @@
}
},
{
- "HashCode": -807708230,
+ "HashCode": -725984439,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Addons.ChildContent",
"AssemblyName": "Blazorise",
@@ -3192,7 +3192,7 @@
}
},
{
- "HashCode": -1505406477,
+ "HashCode": -1892091341,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Addons.ChildContent",
"AssemblyName": "Blazorise",
@@ -3212,7 +3212,7 @@
}
},
{
- "HashCode": -878898772,
+ "HashCode": 712325980,
"Kind": "Components.Component",
"Name": "Blazorise.Alert",
"AssemblyName": "Blazorise",
@@ -3512,7 +3512,7 @@
}
},
{
- "HashCode": 520902233,
+ "HashCode": 1745035144,
"Kind": "Components.Component",
"Name": "Blazorise.Alert",
"AssemblyName": "Blazorise",
@@ -3813,7 +3813,7 @@
}
},
{
- "HashCode": -640968588,
+ "HashCode": -1171787707,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Alert.ChildContent",
"AssemblyName": "Blazorise",
@@ -3832,7 +3832,7 @@
}
},
{
- "HashCode": -1149529919,
+ "HashCode": 1345044453,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Alert.ChildContent",
"AssemblyName": "Blazorise",
@@ -3852,7 +3852,7 @@
}
},
{
- "HashCode": 322960483,
+ "HashCode": -1014522528,
"Kind": "Components.Component",
"Name": "Blazorise.AlertDescription",
"AssemblyName": "Blazorise",
@@ -4115,7 +4115,7 @@
}
},
{
- "HashCode": 477588068,
+ "HashCode": -397765510,
"Kind": "Components.Component",
"Name": "Blazorise.AlertDescription",
"AssemblyName": "Blazorise",
@@ -4379,7 +4379,7 @@
}
},
{
- "HashCode": -213266843,
+ "HashCode": -306769317,
"Kind": "Components.ChildContent",
"Name": "Blazorise.AlertDescription.ChildContent",
"AssemblyName": "Blazorise",
@@ -4398,7 +4398,7 @@
}
},
{
- "HashCode": -2089244737,
+ "HashCode": 400891295,
"Kind": "Components.ChildContent",
"Name": "Blazorise.AlertDescription.ChildContent",
"AssemblyName": "Blazorise",
@@ -4418,7 +4418,7 @@
}
},
{
- "HashCode": 1888373573,
+ "HashCode": 1191307212,
"Kind": "Components.Component",
"Name": "Blazorise.AlertMessage",
"AssemblyName": "Blazorise",
@@ -4681,7 +4681,7 @@
}
},
{
- "HashCode": 1384035513,
+ "HashCode": 346366434,
"Kind": "Components.Component",
"Name": "Blazorise.AlertMessage",
"AssemblyName": "Blazorise",
@@ -4945,7 +4945,7 @@
}
},
{
- "HashCode": 166683429,
+ "HashCode": -1653845571,
"Kind": "Components.ChildContent",
"Name": "Blazorise.AlertMessage.ChildContent",
"AssemblyName": "Blazorise",
@@ -4964,7 +4964,7 @@
}
},
{
- "HashCode": -561513698,
+ "HashCode": 1875620955,
"Kind": "Components.ChildContent",
"Name": "Blazorise.AlertMessage.ChildContent",
"AssemblyName": "Blazorise",
@@ -4984,7 +4984,7 @@
}
},
{
- "HashCode": 2116322057,
+ "HashCode": -2107634436,
"Kind": "Components.Component",
"Name": "Blazorise.Badge",
"AssemblyName": "Blazorise",
@@ -5284,7 +5284,7 @@
}
},
{
- "HashCode": 1623169270,
+ "HashCode": 659154151,
"Kind": "Components.Component",
"Name": "Blazorise.Badge",
"AssemblyName": "Blazorise",
@@ -5585,7 +5585,7 @@
}
},
{
- "HashCode": -837621989,
+ "HashCode": -901426673,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Badge.ChildContent",
"AssemblyName": "Blazorise",
@@ -5604,7 +5604,7 @@
}
},
{
- "HashCode": 1490621863,
+ "HashCode": 1834146648,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Badge.ChildContent",
"AssemblyName": "Blazorise",
@@ -5624,7 +5624,7 @@
}
},
{
- "HashCode": -1877871779,
+ "HashCode": -2074276384,
"Kind": "Components.Component",
"Name": "Blazorise.Bar",
"AssemblyName": "Blazorise",
@@ -5966,7 +5966,7 @@
}
},
{
- "HashCode": 849963891,
+ "HashCode": -892275085,
"Kind": "Components.Component",
"Name": "Blazorise.Bar",
"AssemblyName": "Blazorise",
@@ -6309,7 +6309,7 @@
}
},
{
- "HashCode": -422956499,
+ "HashCode": -1279821231,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Bar.ChildContent",
"AssemblyName": "Blazorise",
@@ -6328,7 +6328,7 @@
}
},
{
- "HashCode": 2041305646,
+ "HashCode": -1673080284,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Bar.ChildContent",
"AssemblyName": "Blazorise",
@@ -6348,7 +6348,7 @@
}
},
{
- "HashCode": 609129033,
+ "HashCode": 2101882291,
"Kind": "Components.Component",
"Name": "Blazorise.BarBrand",
"AssemblyName": "Blazorise",
@@ -6611,7 +6611,7 @@
}
},
{
- "HashCode": 937186315,
+ "HashCode": 252956498,
"Kind": "Components.Component",
"Name": "Blazorise.BarBrand",
"AssemblyName": "Blazorise",
@@ -6875,7 +6875,7 @@
}
},
{
- "HashCode": 183696590,
+ "HashCode": 1896489895,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarBrand.ChildContent",
"AssemblyName": "Blazorise",
@@ -6894,7 +6894,7 @@
}
},
{
- "HashCode": -262679868,
+ "HashCode": -1918883611,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarBrand.ChildContent",
"AssemblyName": "Blazorise",
@@ -6914,7 +6914,7 @@
}
},
{
- "HashCode": -1808322872,
+ "HashCode": -579871752,
"Kind": "Components.Component",
"Name": "Blazorise.BarDropdown",
"AssemblyName": "Blazorise",
@@ -7205,7 +7205,7 @@
}
},
{
- "HashCode": 1154806581,
+ "HashCode": 1524373901,
"Kind": "Components.Component",
"Name": "Blazorise.BarDropdown",
"AssemblyName": "Blazorise",
@@ -7497,7 +7497,7 @@
}
},
{
- "HashCode": 702284911,
+ "HashCode": 1344917249,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarDropdown.ChildContent",
"AssemblyName": "Blazorise",
@@ -7516,7 +7516,7 @@
}
},
{
- "HashCode": -1562804446,
+ "HashCode": 856796251,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarDropdown.ChildContent",
"AssemblyName": "Blazorise",
@@ -7536,7 +7536,7 @@
}
},
{
- "HashCode": -1410376540,
+ "HashCode": -462901450,
"Kind": "Components.Component",
"Name": "Blazorise.BarDropdownDivider",
"AssemblyName": "Blazorise",
@@ -7789,7 +7789,7 @@
}
},
{
- "HashCode": 1139822148,
+ "HashCode": -701793637,
"Kind": "Components.Component",
"Name": "Blazorise.BarDropdownDivider",
"AssemblyName": "Blazorise",
@@ -8043,7 +8043,7 @@
}
},
{
- "HashCode": -2115701497,
+ "HashCode": -1844274666,
"Kind": "Components.Component",
"Name": "Blazorise.BarDropdownItem",
"AssemblyName": "Blazorise",
@@ -8362,7 +8362,7 @@
}
},
{
- "HashCode": -1111203583,
+ "HashCode": -1427711262,
"Kind": "Components.Component",
"Name": "Blazorise.BarDropdownItem",
"AssemblyName": "Blazorise",
@@ -8682,7 +8682,7 @@
}
},
{
- "HashCode": -62080265,
+ "HashCode": 729064679,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarDropdownItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -8701,7 +8701,7 @@
}
},
{
- "HashCode": 2052757310,
+ "HashCode": -1196611778,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarDropdownItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -8721,7 +8721,7 @@
}
},
{
- "HashCode": 51084700,
+ "HashCode": -1665265478,
"Kind": "Components.Component",
"Name": "Blazorise.BarDropdownMenu",
"AssemblyName": "Blazorise",
@@ -8984,7 +8984,7 @@
}
},
{
- "HashCode": 1412940750,
+ "HashCode": 424113151,
"Kind": "Components.Component",
"Name": "Blazorise.BarDropdownMenu",
"AssemblyName": "Blazorise",
@@ -9248,7 +9248,7 @@
}
},
{
- "HashCode": 922832921,
+ "HashCode": -1314785892,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarDropdownMenu.ChildContent",
"AssemblyName": "Blazorise",
@@ -9267,7 +9267,7 @@
}
},
{
- "HashCode": 1102294936,
+ "HashCode": -878862662,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarDropdownMenu.ChildContent",
"AssemblyName": "Blazorise",
@@ -9287,7 +9287,7 @@
}
},
{
- "HashCode": -1790162874,
+ "HashCode": -482863337,
"Kind": "Components.Component",
"Name": "Blazorise.BarDropdownToggle",
"AssemblyName": "Blazorise",
@@ -9569,7 +9569,7 @@
}
},
{
- "HashCode": 542196075,
+ "HashCode": 750670246,
"Kind": "Components.Component",
"Name": "Blazorise.BarDropdownToggle",
"AssemblyName": "Blazorise",
@@ -9852,7 +9852,7 @@
}
},
{
- "HashCode": -1312674451,
+ "HashCode": 393448357,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarDropdownToggle.ChildContent",
"AssemblyName": "Blazorise",
@@ -9871,7 +9871,7 @@
}
},
{
- "HashCode": 1714601733,
+ "HashCode": 738654837,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarDropdownToggle.ChildContent",
"AssemblyName": "Blazorise",
@@ -9891,7 +9891,7 @@
}
},
{
- "HashCode": 2017918528,
+ "HashCode": 830154123,
"Kind": "Components.Component",
"Name": "Blazorise.BarEnd",
"AssemblyName": "Blazorise",
@@ -10154,7 +10154,7 @@
}
},
{
- "HashCode": -1175914548,
+ "HashCode": 1148382125,
"Kind": "Components.Component",
"Name": "Blazorise.BarEnd",
"AssemblyName": "Blazorise",
@@ -10418,7 +10418,7 @@
}
},
{
- "HashCode": 906312200,
+ "HashCode": -72540161,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarEnd.ChildContent",
"AssemblyName": "Blazorise",
@@ -10437,7 +10437,7 @@
}
},
{
- "HashCode": 1503511056,
+ "HashCode": -1483216724,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarEnd.ChildContent",
"AssemblyName": "Blazorise",
@@ -10457,7 +10457,7 @@
}
},
{
- "HashCode": 417861714,
+ "HashCode": -1135436409,
"Kind": "Components.Component",
"Name": "Blazorise.BarIcon",
"AssemblyName": "Blazorise",
@@ -10739,7 +10739,7 @@
}
},
{
- "HashCode": 1268182993,
+ "HashCode": 788503534,
"Kind": "Components.Component",
"Name": "Blazorise.BarIcon",
"AssemblyName": "Blazorise",
@@ -11022,7 +11022,7 @@
}
},
{
- "HashCode": 991345117,
+ "HashCode": 1951327935,
"Kind": "Components.Component",
"Name": "Blazorise.BarItem",
"AssemblyName": "Blazorise",
@@ -11303,7 +11303,7 @@
}
},
{
- "HashCode": 1292423802,
+ "HashCode": 1648136291,
"Kind": "Components.Component",
"Name": "Blazorise.BarItem",
"AssemblyName": "Blazorise",
@@ -11585,7 +11585,7 @@
}
},
{
- "HashCode": 932607154,
+ "HashCode": 2120684748,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -11604,7 +11604,7 @@
}
},
{
- "HashCode": -1300518638,
+ "HashCode": 1447985438,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -11624,7 +11624,7 @@
}
},
{
- "HashCode": -74449716,
+ "HashCode": -2147233691,
"Kind": "Components.Component",
"Name": "Blazorise.BarLabel",
"AssemblyName": "Blazorise",
@@ -11887,7 +11887,7 @@
}
},
{
- "HashCode": 333561277,
+ "HashCode": 131554661,
"Kind": "Components.Component",
"Name": "Blazorise.BarLabel",
"AssemblyName": "Blazorise",
@@ -12151,7 +12151,7 @@
}
},
{
- "HashCode": -344173224,
+ "HashCode": -335703817,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarLabel.ChildContent",
"AssemblyName": "Blazorise",
@@ -12170,7 +12170,7 @@
}
},
{
- "HashCode": 587244773,
+ "HashCode": -292738218,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarLabel.ChildContent",
"AssemblyName": "Blazorise",
@@ -12190,7 +12190,7 @@
}
},
{
- "HashCode": 1301145960,
+ "HashCode": -1887763102,
"Kind": "Components.Component",
"Name": "Blazorise.BarLink",
"AssemblyName": "Blazorise",
@@ -12500,7 +12500,7 @@
}
},
{
- "HashCode": -605327109,
+ "HashCode": 613403987,
"Kind": "Components.Component",
"Name": "Blazorise.BarLink",
"AssemblyName": "Blazorise",
@@ -12811,7 +12811,7 @@
}
},
{
- "HashCode": -586887721,
+ "HashCode": -2087722563,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarLink.ChildContent",
"AssemblyName": "Blazorise",
@@ -12830,7 +12830,7 @@
}
},
{
- "HashCode": -255452169,
+ "HashCode": -398443204,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarLink.ChildContent",
"AssemblyName": "Blazorise",
@@ -12850,7 +12850,7 @@
}
},
{
- "HashCode": -1830972082,
+ "HashCode": -1428439158,
"Kind": "Components.Component",
"Name": "Blazorise.BarMenu",
"AssemblyName": "Blazorise",
@@ -13113,7 +13113,7 @@
}
},
{
- "HashCode": -242157024,
+ "HashCode": -227120886,
"Kind": "Components.Component",
"Name": "Blazorise.BarMenu",
"AssemblyName": "Blazorise",
@@ -13377,7 +13377,7 @@
}
},
{
- "HashCode": -261988156,
+ "HashCode": 2073434556,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarMenu.ChildContent",
"AssemblyName": "Blazorise",
@@ -13396,7 +13396,7 @@
}
},
{
- "HashCode": 1741976353,
+ "HashCode": 1542892132,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarMenu.ChildContent",
"AssemblyName": "Blazorise",
@@ -13416,7 +13416,7 @@
}
},
{
- "HashCode": 101775675,
+ "HashCode": -1302810646,
"Kind": "Components.Component",
"Name": "Blazorise.BarStart",
"AssemblyName": "Blazorise",
@@ -13679,7 +13679,7 @@
}
},
{
- "HashCode": -1620646253,
+ "HashCode": 265260309,
"Kind": "Components.Component",
"Name": "Blazorise.BarStart",
"AssemblyName": "Blazorise",
@@ -13943,7 +13943,7 @@
}
},
{
- "HashCode": 1361434658,
+ "HashCode": -213114875,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarStart.ChildContent",
"AssemblyName": "Blazorise",
@@ -13962,7 +13962,7 @@
}
},
{
- "HashCode": -1714007817,
+ "HashCode": -1782979974,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarStart.ChildContent",
"AssemblyName": "Blazorise",
@@ -13982,7 +13982,7 @@
}
},
{
- "HashCode": -879952662,
+ "HashCode": 604595103,
"Kind": "Components.Component",
"Name": "Blazorise.BarToggler",
"AssemblyName": "Blazorise",
@@ -14274,7 +14274,7 @@
}
},
{
- "HashCode": 765713639,
+ "HashCode": 1318025406,
"Kind": "Components.Component",
"Name": "Blazorise.BarToggler",
"AssemblyName": "Blazorise",
@@ -14567,7 +14567,7 @@
}
},
{
- "HashCode": 684850471,
+ "HashCode": 314379013,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarToggler.ChildContent",
"AssemblyName": "Blazorise",
@@ -14586,7 +14586,7 @@
}
},
{
- "HashCode": -1523993070,
+ "HashCode": 1105550374,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BarToggler.ChildContent",
"AssemblyName": "Blazorise",
@@ -14606,7 +14606,7 @@
}
},
{
- "HashCode": -487013128,
+ "HashCode": -1108698499,
"Kind": "Components.Component",
"Name": "Blazorise.Breadcrumb",
"AssemblyName": "Blazorise",
@@ -14879,7 +14879,7 @@
}
},
{
- "HashCode": 598065626,
+ "HashCode": -1702854709,
"Kind": "Components.Component",
"Name": "Blazorise.Breadcrumb",
"AssemblyName": "Blazorise",
@@ -15153,7 +15153,7 @@
}
},
{
- "HashCode": -641205155,
+ "HashCode": -1167116934,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Breadcrumb.ChildContent",
"AssemblyName": "Blazorise",
@@ -15172,7 +15172,7 @@
}
},
{
- "HashCode": 188449798,
+ "HashCode": -1194166125,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Breadcrumb.ChildContent",
"AssemblyName": "Blazorise",
@@ -15192,7 +15192,7 @@
}
},
{
- "HashCode": -42436131,
+ "HashCode": 1991774212,
"Kind": "Components.Component",
"Name": "Blazorise.BreadcrumbItem",
"AssemblyName": "Blazorise",
@@ -15464,7 +15464,7 @@
}
},
{
- "HashCode": -1611277702,
+ "HashCode": -363950827,
"Kind": "Components.Component",
"Name": "Blazorise.BreadcrumbItem",
"AssemblyName": "Blazorise",
@@ -15737,7 +15737,7 @@
}
},
{
- "HashCode": 1186696044,
+ "HashCode": -2093860821,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BreadcrumbItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -15756,7 +15756,7 @@
}
},
{
- "HashCode": 1484593014,
+ "HashCode": 1309312426,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BreadcrumbItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -15776,7 +15776,7 @@
}
},
{
- "HashCode": 3268222,
+ "HashCode": -1320359306,
"Kind": "Components.Component",
"Name": "Blazorise.BreadcrumbLink",
"AssemblyName": "Blazorise",
@@ -16095,7 +16095,7 @@
}
},
{
- "HashCode": 375876576,
+ "HashCode": -914062591,
"Kind": "Components.Component",
"Name": "Blazorise.BreadcrumbLink",
"AssemblyName": "Blazorise",
@@ -16415,7 +16415,7 @@
}
},
{
- "HashCode": 1267203383,
+ "HashCode": -74988206,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BreadcrumbLink.ChildContent",
"AssemblyName": "Blazorise",
@@ -16434,7 +16434,7 @@
}
},
{
- "HashCode": 1480350641,
+ "HashCode": -1459651014,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BreadcrumbLink.ChildContent",
"AssemblyName": "Blazorise",
@@ -16454,7 +16454,7 @@
}
},
{
- "HashCode": -286863619,
+ "HashCode": 1587263861,
"Kind": "Components.Component",
"Name": "Blazorise.Button",
"AssemblyName": "Blazorise",
@@ -16864,7 +16864,7 @@
}
},
{
- "HashCode": 268264212,
+ "HashCode": 552612602,
"Kind": "Components.Component",
"Name": "Blazorise.Button",
"AssemblyName": "Blazorise",
@@ -17275,7 +17275,7 @@
}
},
{
- "HashCode": 542756425,
+ "HashCode": -208286445,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Button.LoadingTemplate",
"AssemblyName": "Blazorise",
@@ -17294,7 +17294,7 @@
}
},
{
- "HashCode": -1833158634,
+ "HashCode": -401175270,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Button.LoadingTemplate",
"AssemblyName": "Blazorise",
@@ -17314,7 +17314,7 @@
}
},
{
- "HashCode": -1504316687,
+ "HashCode": -303836558,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Button.ChildContent",
"AssemblyName": "Blazorise",
@@ -17333,7 +17333,7 @@
}
},
{
- "HashCode": -2097528011,
+ "HashCode": -380607946,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Button.ChildContent",
"AssemblyName": "Blazorise",
@@ -17353,7 +17353,7 @@
}
},
{
- "HashCode": 997776560,
+ "HashCode": -528683871,
"Kind": "Components.Component",
"Name": "Blazorise.Buttons",
"AssemblyName": "Blazorise",
@@ -17646,7 +17646,7 @@
}
},
{
- "HashCode": 1026637332,
+ "HashCode": 522964995,
"Kind": "Components.Component",
"Name": "Blazorise.Buttons",
"AssemblyName": "Blazorise",
@@ -17940,7 +17940,7 @@
}
},
{
- "HashCode": -757553707,
+ "HashCode": -779275368,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Buttons.ChildContent",
"AssemblyName": "Blazorise",
@@ -17959,7 +17959,7 @@
}
},
{
- "HashCode": 564338260,
+ "HashCode": 405526035,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Buttons.ChildContent",
"AssemblyName": "Blazorise",
@@ -17979,7 +17979,7 @@
}
},
{
- "HashCode": 1944590880,
+ "HashCode": -1914043680,
"Kind": "Components.Component",
"Name": "Blazorise.CloseButton",
"AssemblyName": "Blazorise",
@@ -18261,7 +18261,7 @@
}
},
{
- "HashCode": -867153318,
+ "HashCode": 1897235039,
"Kind": "Components.Component",
"Name": "Blazorise.CloseButton",
"AssemblyName": "Blazorise",
@@ -18544,7 +18544,7 @@
}
},
{
- "HashCode": -201851848,
+ "HashCode": -1376888603,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CloseButton.ChildContent",
"AssemblyName": "Blazorise",
@@ -18563,7 +18563,7 @@
}
},
{
- "HashCode": 1284027273,
+ "HashCode": -93192917,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CloseButton.ChildContent",
"AssemblyName": "Blazorise",
@@ -18583,7 +18583,7 @@
}
},
{
- "HashCode": 1810011223,
+ "HashCode": -552421184,
"Kind": "Components.Component",
"Name": "Blazorise.Card",
"AssemblyName": "Blazorise",
@@ -18864,7 +18864,7 @@
}
},
{
- "HashCode": 223009000,
+ "HashCode": 278698561,
"Kind": "Components.Component",
"Name": "Blazorise.Card",
"AssemblyName": "Blazorise",
@@ -19146,7 +19146,7 @@
}
},
{
- "HashCode": -1940585627,
+ "HashCode": 1727933674,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Card.ChildContent",
"AssemblyName": "Blazorise",
@@ -19165,7 +19165,7 @@
}
},
{
- "HashCode": -1975458086,
+ "HashCode": 276317911,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Card.ChildContent",
"AssemblyName": "Blazorise",
@@ -19185,7 +19185,7 @@
}
},
{
- "HashCode": 1857488301,
+ "HashCode": 562201896,
"Kind": "Components.Component",
"Name": "Blazorise.CardActions",
"AssemblyName": "Blazorise",
@@ -19448,7 +19448,7 @@
}
},
{
- "HashCode": 669717355,
+ "HashCode": -113972848,
"Kind": "Components.Component",
"Name": "Blazorise.CardActions",
"AssemblyName": "Blazorise",
@@ -19712,7 +19712,7 @@
}
},
{
- "HashCode": -1428385413,
+ "HashCode": -421157233,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardActions.ChildContent",
"AssemblyName": "Blazorise",
@@ -19731,7 +19731,7 @@
}
},
{
- "HashCode": 123219584,
+ "HashCode": -855861468,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardActions.ChildContent",
"AssemblyName": "Blazorise",
@@ -19751,7 +19751,7 @@
}
},
{
- "HashCode": -766029757,
+ "HashCode": 1076441596,
"Kind": "Components.Component",
"Name": "Blazorise.CardBody",
"AssemblyName": "Blazorise",
@@ -20014,7 +20014,7 @@
}
},
{
- "HashCode": -2087784121,
+ "HashCode": 1464382631,
"Kind": "Components.Component",
"Name": "Blazorise.CardBody",
"AssemblyName": "Blazorise",
@@ -20278,7 +20278,7 @@
}
},
{
- "HashCode": -1292694894,
+ "HashCode": 267545434,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -20297,7 +20297,7 @@
}
},
{
- "HashCode": -1751842266,
+ "HashCode": 1481010843,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -20317,7 +20317,7 @@
}
},
{
- "HashCode": -1747015260,
+ "HashCode": -1816457744,
"Kind": "Components.Component",
"Name": "Blazorise.CardDeck",
"AssemblyName": "Blazorise",
@@ -20589,7 +20589,7 @@
}
},
{
- "HashCode": -1143956304,
+ "HashCode": -2055788171,
"Kind": "Components.Component",
"Name": "Blazorise.CardDeck",
"AssemblyName": "Blazorise",
@@ -20862,7 +20862,7 @@
}
},
{
- "HashCode": 367410411,
+ "HashCode": 823553590,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardDeck.ChildContent",
"AssemblyName": "Blazorise",
@@ -20881,7 +20881,7 @@
}
},
{
- "HashCode": 530635872,
+ "HashCode": 775801554,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardDeck.ChildContent",
"AssemblyName": "Blazorise",
@@ -20901,7 +20901,7 @@
}
},
{
- "HashCode": -720396383,
+ "HashCode": 152063147,
"Kind": "Components.Component",
"Name": "Blazorise.CardFooter",
"AssemblyName": "Blazorise",
@@ -21164,7 +21164,7 @@
}
},
{
- "HashCode": -201253242,
+ "HashCode": 1623993100,
"Kind": "Components.Component",
"Name": "Blazorise.CardFooter",
"AssemblyName": "Blazorise",
@@ -21428,7 +21428,7 @@
}
},
{
- "HashCode": -1141747140,
+ "HashCode": 235270764,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardFooter.ChildContent",
"AssemblyName": "Blazorise",
@@ -21447,7 +21447,7 @@
}
},
{
- "HashCode": 2110745890,
+ "HashCode": -1463996409,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardFooter.ChildContent",
"AssemblyName": "Blazorise",
@@ -21467,7 +21467,7 @@
}
},
{
- "HashCode": -2018416724,
+ "HashCode": 1313583790,
"Kind": "Components.Component",
"Name": "Blazorise.CardGroup",
"AssemblyName": "Blazorise",
@@ -21739,7 +21739,7 @@
}
},
{
- "HashCode": 1994563504,
+ "HashCode": 1350737349,
"Kind": "Components.Component",
"Name": "Blazorise.CardGroup",
"AssemblyName": "Blazorise",
@@ -22012,7 +22012,7 @@
}
},
{
- "HashCode": 1278228470,
+ "HashCode": -846294939,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardGroup.ChildContent",
"AssemblyName": "Blazorise",
@@ -22031,7 +22031,7 @@
}
},
{
- "HashCode": -194594548,
+ "HashCode": 759667965,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardGroup.ChildContent",
"AssemblyName": "Blazorise",
@@ -22051,7 +22051,7 @@
}
},
{
- "HashCode": 1036269522,
+ "HashCode": 1949823604,
"Kind": "Components.Component",
"Name": "Blazorise.CardHeader",
"AssemblyName": "Blazorise",
@@ -22314,7 +22314,7 @@
}
},
{
- "HashCode": 1913655636,
+ "HashCode": 1028932822,
"Kind": "Components.Component",
"Name": "Blazorise.CardHeader",
"AssemblyName": "Blazorise",
@@ -22578,7 +22578,7 @@
}
},
{
- "HashCode": -177785569,
+ "HashCode": 34102611,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -22597,7 +22597,7 @@
}
},
{
- "HashCode": 1109290009,
+ "HashCode": 1457176510,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -22617,7 +22617,7 @@
}
},
{
- "HashCode": -1411592864,
+ "HashCode": -269387983,
"Kind": "Components.Component",
"Name": "Blazorise.CardImage",
"AssemblyName": "Blazorise",
@@ -22898,7 +22898,7 @@
}
},
{
- "HashCode": -1084551604,
+ "HashCode": -266927925,
"Kind": "Components.Component",
"Name": "Blazorise.CardImage",
"AssemblyName": "Blazorise",
@@ -23180,7 +23180,7 @@
}
},
{
- "HashCode": 7263650,
+ "HashCode": 2110575090,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardImage.ChildContent",
"AssemblyName": "Blazorise",
@@ -23199,7 +23199,7 @@
}
},
{
- "HashCode": -211932849,
+ "HashCode": -1756736901,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardImage.ChildContent",
"AssemblyName": "Blazorise",
@@ -23219,7 +23219,7 @@
}
},
{
- "HashCode": 1195825620,
+ "HashCode": -598502249,
"Kind": "Components.Component",
"Name": "Blazorise.CardLink",
"AssemblyName": "Blazorise",
@@ -23500,7 +23500,7 @@
}
},
{
- "HashCode": -2117492989,
+ "HashCode": -1208555106,
"Kind": "Components.Component",
"Name": "Blazorise.CardLink",
"AssemblyName": "Blazorise",
@@ -23782,7 +23782,7 @@
}
},
{
- "HashCode": 1932935295,
+ "HashCode": 406708143,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardLink.ChildContent",
"AssemblyName": "Blazorise",
@@ -23801,7 +23801,7 @@
}
},
{
- "HashCode": 1230634458,
+ "HashCode": 643983205,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardLink.ChildContent",
"AssemblyName": "Blazorise",
@@ -23821,7 +23821,7 @@
}
},
{
- "HashCode": -1561664573,
+ "HashCode": 770545977,
"Kind": "Components.Component",
"Name": "Blazorise.CardSubtitle",
"AssemblyName": "Blazorise",
@@ -24111,7 +24111,7 @@
}
},
{
- "HashCode": -648239359,
+ "HashCode": -1969721648,
"Kind": "Components.Component",
"Name": "Blazorise.CardSubtitle",
"AssemblyName": "Blazorise",
@@ -24402,7 +24402,7 @@
}
},
{
- "HashCode": 2040706750,
+ "HashCode": -1058122679,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardSubtitle.ChildContent",
"AssemblyName": "Blazorise",
@@ -24421,7 +24421,7 @@
}
},
{
- "HashCode": 1460907843,
+ "HashCode": 1916135414,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardSubtitle.ChildContent",
"AssemblyName": "Blazorise",
@@ -24441,7 +24441,7 @@
}
},
{
- "HashCode": 896919016,
+ "HashCode": -897859490,
"Kind": "Components.Component",
"Name": "Blazorise.CardText",
"AssemblyName": "Blazorise",
@@ -24722,7 +24722,7 @@
}
},
{
- "HashCode": 47853165,
+ "HashCode": -1601014300,
"Kind": "Components.Component",
"Name": "Blazorise.CardText",
"AssemblyName": "Blazorise",
@@ -25004,7 +25004,7 @@
}
},
{
- "HashCode": 1948709271,
+ "HashCode": 708950184,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardText.ChildContent",
"AssemblyName": "Blazorise",
@@ -25023,7 +25023,7 @@
}
},
{
- "HashCode": -951980356,
+ "HashCode": 1633824260,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardText.ChildContent",
"AssemblyName": "Blazorise",
@@ -25043,7 +25043,7 @@
}
},
{
- "HashCode": 1122611883,
+ "HashCode": 1458648319,
"Kind": "Components.Component",
"Name": "Blazorise.CardTitle",
"AssemblyName": "Blazorise",
@@ -25333,7 +25333,7 @@
}
},
{
- "HashCode": -423768031,
+ "HashCode": -2110615503,
"Kind": "Components.Component",
"Name": "Blazorise.CardTitle",
"AssemblyName": "Blazorise",
@@ -25624,7 +25624,7 @@
}
},
{
- "HashCode": 1796994789,
+ "HashCode": -1491795766,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardTitle.ChildContent",
"AssemblyName": "Blazorise",
@@ -25643,7 +25643,7 @@
}
},
{
- "HashCode": -1657208060,
+ "HashCode": 871769361,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CardTitle.ChildContent",
"AssemblyName": "Blazorise",
@@ -25663,7 +25663,7 @@
}
},
{
- "HashCode": -984720166,
+ "HashCode": -1964413364,
"Kind": "Components.Component",
"Name": "Blazorise.Carousel",
"AssemblyName": "Blazorise",
@@ -26028,7 +26028,7 @@
}
},
{
- "HashCode": -851774103,
+ "HashCode": -310488099,
"Kind": "Components.Component",
"Name": "Blazorise.Carousel",
"AssemblyName": "Blazorise",
@@ -26394,7 +26394,7 @@
}
},
{
- "HashCode": 929213477,
+ "HashCode": 447598070,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Carousel.ChildContent",
"AssemblyName": "Blazorise",
@@ -26413,7 +26413,7 @@
}
},
{
- "HashCode": -2032264163,
+ "HashCode": -1979654251,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Carousel.ChildContent",
"AssemblyName": "Blazorise",
@@ -26433,7 +26433,7 @@
}
},
{
- "HashCode": -2045213614,
+ "HashCode": 765130288,
"Kind": "Components.Component",
"Name": "Blazorise.CarouselSlide",
"AssemblyName": "Blazorise",
@@ -26714,7 +26714,7 @@
}
},
{
- "HashCode": -719669150,
+ "HashCode": 472740137,
"Kind": "Components.Component",
"Name": "Blazorise.CarouselSlide",
"AssemblyName": "Blazorise",
@@ -26996,7 +26996,7 @@
}
},
{
- "HashCode": 483260651,
+ "HashCode": -1681538926,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CarouselSlide.ChildContent",
"AssemblyName": "Blazorise",
@@ -27015,7 +27015,7 @@
}
},
{
- "HashCode": 569985443,
+ "HashCode": -726595292,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CarouselSlide.ChildContent",
"AssemblyName": "Blazorise",
@@ -27035,7 +27035,7 @@
}
},
{
- "HashCode": 1054341185,
+ "HashCode": -2065332642,
"Kind": "Components.Component",
"Name": "Blazorise.Check",
"AssemblyName": "Blazorise",
@@ -27505,7 +27505,7 @@
}
},
{
- "HashCode": 2008606350,
+ "HashCode": -846649445,
"Kind": "Components.Component",
"Name": "Blazorise.Check",
"AssemblyName": "Blazorise",
@@ -27976,7 +27976,7 @@
}
},
{
- "HashCode": -78330448,
+ "HashCode": -1160929407,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Check.Feedback",
"AssemblyName": "Blazorise",
@@ -27995,7 +27995,7 @@
}
},
{
- "HashCode": 492694166,
+ "HashCode": -135145152,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Check.Feedback",
"AssemblyName": "Blazorise",
@@ -28015,7 +28015,7 @@
}
},
{
- "HashCode": -32134706,
+ "HashCode": -114227554,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Check.ChildContent",
"AssemblyName": "Blazorise",
@@ -28034,7 +28034,7 @@
}
},
{
- "HashCode": 1725862877,
+ "HashCode": 1772191130,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Check.ChildContent",
"AssemblyName": "Blazorise",
@@ -28054,7 +28054,7 @@
}
},
{
- "HashCode": 263998796,
+ "HashCode": 2055675034,
"Kind": "Components.Component",
"Name": "Blazorise.Collapse",
"AssemblyName": "Blazorise",
@@ -28326,7 +28326,7 @@
}
},
{
- "HashCode": 1061525996,
+ "HashCode": -1758755016,
"Kind": "Components.Component",
"Name": "Blazorise.Collapse",
"AssemblyName": "Blazorise",
@@ -28599,7 +28599,7 @@
}
},
{
- "HashCode": 352186556,
+ "HashCode": 1964341247,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Collapse.ChildContent",
"AssemblyName": "Blazorise",
@@ -28618,7 +28618,7 @@
}
},
{
- "HashCode": 517708772,
+ "HashCode": 420182758,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Collapse.ChildContent",
"AssemblyName": "Blazorise",
@@ -28638,7 +28638,7 @@
}
},
{
- "HashCode": 377007519,
+ "HashCode": -1694973757,
"Kind": "Components.Component",
"Name": "Blazorise.CollapseBody",
"AssemblyName": "Blazorise",
@@ -28901,7 +28901,7 @@
}
},
{
- "HashCode": -1822696008,
+ "HashCode": 474340726,
"Kind": "Components.Component",
"Name": "Blazorise.CollapseBody",
"AssemblyName": "Blazorise",
@@ -29165,7 +29165,7 @@
}
},
{
- "HashCode": -2048529343,
+ "HashCode": 721144176,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CollapseBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -29184,7 +29184,7 @@
}
},
{
- "HashCode": -467799152,
+ "HashCode": -1853164622,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CollapseBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -29204,7 +29204,7 @@
}
},
{
- "HashCode": 1305603627,
+ "HashCode": -863115279,
"Kind": "Components.Component",
"Name": "Blazorise.CollapseHeader",
"AssemblyName": "Blazorise",
@@ -29477,7 +29477,7 @@
}
},
{
- "HashCode": 1398242287,
+ "HashCode": 911832797,
"Kind": "Components.Component",
"Name": "Blazorise.CollapseHeader",
"AssemblyName": "Blazorise",
@@ -29751,7 +29751,7 @@
}
},
{
- "HashCode": -1691277509,
+ "HashCode": -565251381,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CollapseHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -29770,7 +29770,7 @@
}
},
{
- "HashCode": 669749909,
+ "HashCode": -1515981676,
"Kind": "Components.ChildContent",
"Name": "Blazorise.CollapseHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -29790,7 +29790,7 @@
}
},
{
- "HashCode": 2039886174,
+ "HashCode": 653270069,
"Kind": "Components.Component",
"Name": "Blazorise.ColorEdit",
"AssemblyName": "Blazorise",
@@ -30216,7 +30216,7 @@
}
},
{
- "HashCode": 2013143540,
+ "HashCode": 1086930753,
"Kind": "Components.Component",
"Name": "Blazorise.ColorEdit",
"AssemblyName": "Blazorise",
@@ -30643,7 +30643,7 @@
}
},
{
- "HashCode": -1211981816,
+ "HashCode": -706498809,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ColorEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -30662,7 +30662,7 @@
}
},
{
- "HashCode": -407730516,
+ "HashCode": 652651183,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ColorEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -30682,7 +30682,7 @@
}
},
{
- "HashCode": -34086674,
+ "HashCode": -470523418,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ColorEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -30701,7 +30701,7 @@
}
},
{
- "HashCode": 1910672626,
+ "HashCode": -1589538657,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ColorEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -30721,7 +30721,7 @@
}
},
{
- "HashCode": -981708523,
+ "HashCode": -1240731978,
"Kind": "Components.Component",
"Name": "Blazorise.ColorPicker",
"AssemblyName": "Blazorise",
@@ -31202,7 +31202,7 @@
}
},
{
- "HashCode": 1182382499,
+ "HashCode": -1709290414,
"Kind": "Components.Component",
"Name": "Blazorise.ColorPicker",
"AssemblyName": "Blazorise",
@@ -31684,7 +31684,7 @@
}
},
{
- "HashCode": 1251241806,
+ "HashCode": 1724353878,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ColorPicker.Feedback",
"AssemblyName": "Blazorise",
@@ -31703,7 +31703,7 @@
}
},
{
- "HashCode": 37491518,
+ "HashCode": 2109952576,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ColorPicker.Feedback",
"AssemblyName": "Blazorise",
@@ -31723,7 +31723,7 @@
}
},
{
- "HashCode": -800106953,
+ "HashCode": 255423517,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ColorPicker.ChildContent",
"AssemblyName": "Blazorise",
@@ -31742,7 +31742,7 @@
}
},
{
- "HashCode": -501358193,
+ "HashCode": -72730687,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ColorPicker.ChildContent",
"AssemblyName": "Blazorise",
@@ -31762,7 +31762,7 @@
}
},
{
- "HashCode": -706327603,
+ "HashCode": -118469893,
"Kind": "Components.Component",
"Name": "Blazorise.Column",
"AssemblyName": "Blazorise",
@@ -32034,7 +32034,7 @@
}
},
{
- "HashCode": -1760013894,
+ "HashCode": -1677796327,
"Kind": "Components.Component",
"Name": "Blazorise.Column",
"AssemblyName": "Blazorise",
@@ -32307,7 +32307,7 @@
}
},
{
- "HashCode": -1401457557,
+ "HashCode": 1613865769,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Column.ChildContent",
"AssemblyName": "Blazorise",
@@ -32326,7 +32326,7 @@
}
},
{
- "HashCode": 1549865955,
+ "HashCode": 1811592827,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Column.ChildContent",
"AssemblyName": "Blazorise",
@@ -32346,7 +32346,7 @@
}
},
{
- "HashCode": 219002869,
+ "HashCode": 1192609702,
"Kind": "Components.Component",
"Name": "Blazorise.Container",
"AssemblyName": "Blazorise",
@@ -32628,7 +32628,7 @@
}
},
{
- "HashCode": -1195542309,
+ "HashCode": 1937553380,
"Kind": "Components.Component",
"Name": "Blazorise.Container",
"AssemblyName": "Blazorise",
@@ -32911,7 +32911,7 @@
}
},
{
- "HashCode": 894533552,
+ "HashCode": 1641841026,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Container.ChildContent",
"AssemblyName": "Blazorise",
@@ -32930,7 +32930,7 @@
}
},
{
- "HashCode": -201688158,
+ "HashCode": 1225700334,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Container.ChildContent",
"AssemblyName": "Blazorise",
@@ -32950,7 +32950,7 @@
}
},
{
- "HashCode": 166463446,
+ "HashCode": 1287889799,
"Kind": "Components.Component",
"Name": "Blazorise.Control",
"AssemblyName": "Blazorise",
@@ -33232,7 +33232,7 @@
}
},
{
- "HashCode": 508322037,
+ "HashCode": -612260961,
"Kind": "Components.Component",
"Name": "Blazorise.Control",
"AssemblyName": "Blazorise",
@@ -33515,7 +33515,7 @@
}
},
{
- "HashCode": 1743601827,
+ "HashCode": 1434555666,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Control.ChildContent",
"AssemblyName": "Blazorise",
@@ -33534,7 +33534,7 @@
}
},
{
- "HashCode": -1406607094,
+ "HashCode": -807004065,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Control.ChildContent",
"AssemblyName": "Blazorise",
@@ -33554,7 +33554,7 @@
}
},
{
- "HashCode": 963316745,
+ "HashCode": 694877309,
"Kind": "Components.Component",
"Name": "Blazorise.DateEdit",
"AssemblyName": "Blazorise",
@@ -34096,7 +34096,7 @@
}
},
{
- "HashCode": 1554977381,
+ "HashCode": 178309308,
"Kind": "Components.Component",
"Name": "Blazorise.DateEdit",
"AssemblyName": "Blazorise",
@@ -34639,7 +34639,7 @@
}
},
{
- "HashCode": -2076153675,
+ "HashCode": 1372404361,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DateEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -34658,7 +34658,7 @@
}
},
{
- "HashCode": -369219875,
+ "HashCode": -1125932922,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DateEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -34678,7 +34678,7 @@
}
},
{
- "HashCode": 978687985,
+ "HashCode": -836614668,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DateEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -34697,7 +34697,7 @@
}
},
{
- "HashCode": -1272840948,
+ "HashCode": -1621460615,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DateEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -34717,7 +34717,7 @@
}
},
{
- "HashCode": -230595067,
+ "HashCode": -1994001080,
"Kind": "Components.Component",
"Name": "Blazorise.DatePicker",
"AssemblyName": "Blazorise",
@@ -35329,7 +35329,7 @@
}
},
{
- "HashCode": 416234626,
+ "HashCode": 1958029976,
"Kind": "Components.Component",
"Name": "Blazorise.DatePicker",
"AssemblyName": "Blazorise",
@@ -35942,7 +35942,7 @@
}
},
{
- "HashCode": -250889321,
+ "HashCode": -954810420,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DatePicker.Feedback",
"AssemblyName": "Blazorise",
@@ -35961,7 +35961,7 @@
}
},
{
- "HashCode": 1303626038,
+ "HashCode": 463976177,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DatePicker.Feedback",
"AssemblyName": "Blazorise",
@@ -35981,7 +35981,7 @@
}
},
{
- "HashCode": 2114605814,
+ "HashCode": 1368384613,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DatePicker.ChildContent",
"AssemblyName": "Blazorise",
@@ -36000,7 +36000,7 @@
}
},
{
- "HashCode": -1420222289,
+ "HashCode": 454575227,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DatePicker.ChildContent",
"AssemblyName": "Blazorise",
@@ -36020,7 +36020,7 @@
}
},
{
- "HashCode": 1379110380,
+ "HashCode": -674590966,
"Kind": "Components.Component",
"Name": "Blazorise.Divider",
"AssemblyName": "Blazorise",
@@ -36291,7 +36291,7 @@
}
},
{
- "HashCode": 1814497975,
+ "HashCode": -365730176,
"Kind": "Components.Component",
"Name": "Blazorise.Divider",
"AssemblyName": "Blazorise",
@@ -36563,7 +36563,7 @@
}
},
{
- "HashCode": 286515453,
+ "HashCode": 521123619,
"Kind": "Components.Component",
"Name": "Blazorise.Dropdown",
"AssemblyName": "Blazorise",
@@ -36873,7 +36873,7 @@
}
},
{
- "HashCode": -679532746,
+ "HashCode": 807719904,
"Kind": "Components.Component",
"Name": "Blazorise.Dropdown",
"AssemblyName": "Blazorise",
@@ -37184,7 +37184,7 @@
}
},
{
- "HashCode": -1634387883,
+ "HashCode": -1778475800,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Dropdown.ChildContent",
"AssemblyName": "Blazorise",
@@ -37203,7 +37203,7 @@
}
},
{
- "HashCode": -452522020,
+ "HashCode": -795356655,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Dropdown.ChildContent",
"AssemblyName": "Blazorise",
@@ -37223,7 +37223,7 @@
}
},
{
- "HashCode": 528121855,
+ "HashCode": -890899369,
"Kind": "Components.Component",
"Name": "Blazorise.DropdownDivider",
"AssemblyName": "Blazorise",
@@ -37476,7 +37476,7 @@
}
},
{
- "HashCode": -362718476,
+ "HashCode": -636649869,
"Kind": "Components.Component",
"Name": "Blazorise.DropdownDivider",
"AssemblyName": "Blazorise",
@@ -37730,7 +37730,7 @@
}
},
{
- "HashCode": -544116780,
+ "HashCode": -988129370,
"Kind": "Components.Component",
"Name": "Blazorise.DropdownHeader",
"AssemblyName": "Blazorise",
@@ -37993,7 +37993,7 @@
}
},
{
- "HashCode": -1495780460,
+ "HashCode": 577605929,
"Kind": "Components.Component",
"Name": "Blazorise.DropdownHeader",
"AssemblyName": "Blazorise",
@@ -38257,7 +38257,7 @@
}
},
{
- "HashCode": -1069614185,
+ "HashCode": -1861323324,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropdownHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -38276,7 +38276,7 @@
}
},
{
- "HashCode": -157418802,
+ "HashCode": -2137503544,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropdownHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -38296,7 +38296,7 @@
}
},
{
- "HashCode": 1288989179,
+ "HashCode": -2031423372,
"Kind": "Components.Component",
"Name": "Blazorise.DropdownItem",
"AssemblyName": "Blazorise",
@@ -38596,7 +38596,7 @@
}
},
{
- "HashCode": 1085615421,
+ "HashCode": 597285546,
"Kind": "Components.Component",
"Name": "Blazorise.DropdownItem",
"AssemblyName": "Blazorise",
@@ -38897,7 +38897,7 @@
}
},
{
- "HashCode": 986123820,
+ "HashCode": -111037350,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropdownItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -38916,7 +38916,7 @@
}
},
{
- "HashCode": -1015334384,
+ "HashCode": 1141971332,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropdownItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -38936,7 +38936,7 @@
}
},
{
- "HashCode": -781902853,
+ "HashCode": -628047814,
"Kind": "Components.Component",
"Name": "Blazorise.DropdownMenu",
"AssemblyName": "Blazorise",
@@ -39208,7 +39208,7 @@
}
},
{
- "HashCode": 610062283,
+ "HashCode": -44159703,
"Kind": "Components.Component",
"Name": "Blazorise.DropdownMenu",
"AssemblyName": "Blazorise",
@@ -39481,7 +39481,7 @@
}
},
{
- "HashCode": 609446951,
+ "HashCode": 461129053,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropdownMenu.ChildContent",
"AssemblyName": "Blazorise",
@@ -39500,7 +39500,7 @@
}
},
{
- "HashCode": -240158547,
+ "HashCode": -1603347351,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropdownMenu.ChildContent",
"AssemblyName": "Blazorise",
@@ -39520,7 +39520,7 @@
}
},
{
- "HashCode": -361677602,
+ "HashCode": 298298200,
"Kind": "Components.Component",
"Name": "Blazorise.DropdownToggle",
"AssemblyName": "Blazorise",
@@ -39856,7 +39856,7 @@
}
},
{
- "HashCode": -1845604375,
+ "HashCode": 580596127,
"Kind": "Components.Component",
"Name": "Blazorise.DropdownToggle",
"AssemblyName": "Blazorise",
@@ -40193,7 +40193,7 @@
}
},
{
- "HashCode": -1896090168,
+ "HashCode": 1984743016,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropdownToggle.ChildContent",
"AssemblyName": "Blazorise",
@@ -40212,7 +40212,7 @@
}
},
{
- "HashCode": -1766420486,
+ "HashCode": -968829447,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropdownToggle.ChildContent",
"AssemblyName": "Blazorise",
@@ -40232,7 +40232,7 @@
}
},
{
- "HashCode": 798365597,
+ "HashCode": 1021645887,
"Kind": "Components.Component",
"Name": "Blazorise.DropContainer",
"AssemblyName": "Blazorise",
@@ -40636,7 +40636,7 @@
}
},
{
- "HashCode": -1554806243,
+ "HashCode": -1692365353,
"Kind": "Components.Component",
"Name": "Blazorise.DropContainer",
"AssemblyName": "Blazorise",
@@ -41041,7 +41041,7 @@
}
},
{
- "HashCode": 581804422,
+ "HashCode": -196672052,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropContainer.ItemTemplate",
"AssemblyName": "Blazorise",
@@ -41072,7 +41072,7 @@
}
},
{
- "HashCode": -321986255,
+ "HashCode": 1689705289,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropContainer.ItemTemplate",
"AssemblyName": "Blazorise",
@@ -41104,7 +41104,7 @@
}
},
{
- "HashCode": 19997682,
+ "HashCode": -863984842,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropContainer.ChildContent",
"AssemblyName": "Blazorise",
@@ -41123,7 +41123,7 @@
}
},
{
- "HashCode": 23419682,
+ "HashCode": -597102536,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropContainer.ChildContent",
"AssemblyName": "Blazorise",
@@ -41143,7 +41143,7 @@
}
},
{
- "HashCode": -1098972001,
+ "HashCode": -1002602093,
"Kind": "Components.Component",
"Name": "Blazorise.DropZone",
"AssemblyName": "Blazorise",
@@ -41535,7 +41535,7 @@
}
},
{
- "HashCode": 1231221249,
+ "HashCode": 1246415541,
"Kind": "Components.Component",
"Name": "Blazorise.DropZone",
"AssemblyName": "Blazorise",
@@ -41928,7 +41928,7 @@
}
},
{
- "HashCode": -583765317,
+ "HashCode": -1334324948,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropZone.ItemTemplate",
"AssemblyName": "Blazorise",
@@ -41959,7 +41959,7 @@
}
},
{
- "HashCode": -173158207,
+ "HashCode": -1539430285,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropZone.ItemTemplate",
"AssemblyName": "Blazorise",
@@ -41991,7 +41991,7 @@
}
},
{
- "HashCode": 2114031729,
+ "HashCode": 1786429515,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropZone.ChildContent",
"AssemblyName": "Blazorise",
@@ -42010,7 +42010,7 @@
}
},
{
- "HashCode": -1111313205,
+ "HashCode": 738158465,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DropZone.ChildContent",
"AssemblyName": "Blazorise",
@@ -42030,7 +42030,7 @@
}
},
{
- "HashCode": -1084107616,
+ "HashCode": -560510362,
"Kind": "Components.Component",
"Name": "Blazorise._Draggable",
"AssemblyName": "Blazorise",
@@ -42373,7 +42373,7 @@
}
},
{
- "HashCode": -1060146496,
+ "HashCode": 995581835,
"Kind": "Components.Component",
"Name": "Blazorise._Draggable",
"AssemblyName": "Blazorise",
@@ -42717,7 +42717,7 @@
}
},
{
- "HashCode": 426358049,
+ "HashCode": -939512426,
"Kind": "Components.ChildContent",
"Name": "Blazorise._Draggable.ChildContent",
"AssemblyName": "Blazorise",
@@ -42736,7 +42736,7 @@
}
},
{
- "HashCode": -984722630,
+ "HashCode": 74207155,
"Kind": "Components.ChildContent",
"Name": "Blazorise._Draggable.ChildContent",
"AssemblyName": "Blazorise",
@@ -42756,7 +42756,7 @@
}
},
{
- "HashCode": 1172216341,
+ "HashCode": -860766299,
"Kind": "Components.Component",
"Name": "Blazorise.Dynamic",
"AssemblyName": "Blazorise",
@@ -42840,7 +42840,7 @@
}
},
{
- "HashCode": 1416509065,
+ "HashCode": 916176543,
"Kind": "Components.Component",
"Name": "Blazorise.Dynamic",
"AssemblyName": "Blazorise",
@@ -42925,7 +42925,7 @@
}
},
{
- "HashCode": -636078779,
+ "HashCode": -1425458044,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Dynamic.ChildContent",
"AssemblyName": "Blazorise",
@@ -42944,7 +42944,7 @@
}
},
{
- "HashCode": -441464195,
+ "HashCode": -1264815310,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Dynamic.ChildContent",
"AssemblyName": "Blazorise",
@@ -42964,7 +42964,7 @@
}
},
{
- "HashCode": 1220007108,
+ "HashCode": -257660557,
"Kind": "Components.Component",
"Name": "Blazorise.Field",
"AssemblyName": "Blazorise",
@@ -43255,7 +43255,7 @@
}
},
{
- "HashCode": 1883889891,
+ "HashCode": 1257832538,
"Kind": "Components.Component",
"Name": "Blazorise.Field",
"AssemblyName": "Blazorise",
@@ -43547,7 +43547,7 @@
}
},
{
- "HashCode": 2043180675,
+ "HashCode": 309075740,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Field.ChildContent",
"AssemblyName": "Blazorise",
@@ -43566,7 +43566,7 @@
}
},
{
- "HashCode": -361003669,
+ "HashCode": 1120479285,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Field.ChildContent",
"AssemblyName": "Blazorise",
@@ -43586,7 +43586,7 @@
}
},
{
- "HashCode": 879344107,
+ "HashCode": -514466450,
"Kind": "Components.Component",
"Name": "Blazorise.FieldBody",
"AssemblyName": "Blazorise",
@@ -43858,7 +43858,7 @@
}
},
{
- "HashCode": 111227561,
+ "HashCode": 1195095795,
"Kind": "Components.Component",
"Name": "Blazorise.FieldBody",
"AssemblyName": "Blazorise",
@@ -44131,7 +44131,7 @@
}
},
{
- "HashCode": 514366003,
+ "HashCode": 1056221664,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FieldBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -44150,7 +44150,7 @@
}
},
{
- "HashCode": -477357864,
+ "HashCode": 1143970185,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FieldBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -44170,7 +44170,7 @@
}
},
{
- "HashCode": -304646837,
+ "HashCode": -47525125,
"Kind": "Components.Component",
"Name": "Blazorise.FieldHelp",
"AssemblyName": "Blazorise",
@@ -44433,7 +44433,7 @@
}
},
{
- "HashCode": -126433590,
+ "HashCode": 751996338,
"Kind": "Components.Component",
"Name": "Blazorise.FieldHelp",
"AssemblyName": "Blazorise",
@@ -44697,7 +44697,7 @@
}
},
{
- "HashCode": -1784718253,
+ "HashCode": 1036971917,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FieldHelp.ChildContent",
"AssemblyName": "Blazorise",
@@ -44716,7 +44716,7 @@
}
},
{
- "HashCode": 193156505,
+ "HashCode": 1216460532,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FieldHelp.ChildContent",
"AssemblyName": "Blazorise",
@@ -44736,7 +44736,7 @@
}
},
{
- "HashCode": 2140224508,
+ "HashCode": -1821923261,
"Kind": "Components.Component",
"Name": "Blazorise.FieldLabel",
"AssemblyName": "Blazorise",
@@ -45027,7 +45027,7 @@
}
},
{
- "HashCode": 1425132895,
+ "HashCode": 145731249,
"Kind": "Components.Component",
"Name": "Blazorise.FieldLabel",
"AssemblyName": "Blazorise",
@@ -45319,7 +45319,7 @@
}
},
{
- "HashCode": 64749687,
+ "HashCode": 101141484,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FieldLabel.ChildContent",
"AssemblyName": "Blazorise",
@@ -45338,7 +45338,7 @@
}
},
{
- "HashCode": 1934279218,
+ "HashCode": 1434590279,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FieldLabel.ChildContent",
"AssemblyName": "Blazorise",
@@ -45358,7 +45358,7 @@
}
},
{
- "HashCode": 1182705471,
+ "HashCode": -1546700568,
"Kind": "Components.Component",
"Name": "Blazorise.Fields",
"AssemblyName": "Blazorise",
@@ -45648,7 +45648,7 @@
}
},
{
- "HashCode": 1657852268,
+ "HashCode": 892383804,
"Kind": "Components.Component",
"Name": "Blazorise.Fields",
"AssemblyName": "Blazorise",
@@ -45939,7 +45939,7 @@
}
},
{
- "HashCode": -1497544763,
+ "HashCode": -2005873303,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Fields.ChildContent",
"AssemblyName": "Blazorise",
@@ -45958,7 +45958,7 @@
}
},
{
- "HashCode": -244447910,
+ "HashCode": 1428128737,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Fields.ChildContent",
"AssemblyName": "Blazorise",
@@ -45978,7 +45978,7 @@
}
},
{
- "HashCode": -1130620614,
+ "HashCode": 837360696,
"Kind": "Components.Component",
"Name": "Blazorise.Figure",
"AssemblyName": "Blazorise",
@@ -46251,7 +46251,7 @@
}
},
{
- "HashCode": -183386218,
+ "HashCode": 1521273423,
"Kind": "Components.Component",
"Name": "Blazorise.Figure",
"AssemblyName": "Blazorise",
@@ -46525,7 +46525,7 @@
}
},
{
- "HashCode": 1435452389,
+ "HashCode": 1279510293,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Figure.ChildContent",
"AssemblyName": "Blazorise",
@@ -46544,7 +46544,7 @@
}
},
{
- "HashCode": -201944099,
+ "HashCode": 2054719504,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Figure.ChildContent",
"AssemblyName": "Blazorise",
@@ -46564,7 +46564,7 @@
}
},
{
- "HashCode": -1393755813,
+ "HashCode": 2072765385,
"Kind": "Components.Component",
"Name": "Blazorise.FigureCaption",
"AssemblyName": "Blazorise",
@@ -46827,7 +46827,7 @@
}
},
{
- "HashCode": -463653012,
+ "HashCode": 70758571,
"Kind": "Components.Component",
"Name": "Blazorise.FigureCaption",
"AssemblyName": "Blazorise",
@@ -47091,7 +47091,7 @@
}
},
{
- "HashCode": -799076786,
+ "HashCode": 1374247061,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FigureCaption.ChildContent",
"AssemblyName": "Blazorise",
@@ -47110,7 +47110,7 @@
}
},
{
- "HashCode": 344713990,
+ "HashCode": 976719669,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FigureCaption.ChildContent",
"AssemblyName": "Blazorise",
@@ -47130,7 +47130,7 @@
}
},
{
- "HashCode": -511967069,
+ "HashCode": -1304008968,
"Kind": "Components.Component",
"Name": "Blazorise.FigureImage",
"AssemblyName": "Blazorise",
@@ -47410,7 +47410,7 @@
}
},
{
- "HashCode": -1947277829,
+ "HashCode": -1102601087,
"Kind": "Components.Component",
"Name": "Blazorise.FigureImage",
"AssemblyName": "Blazorise",
@@ -47691,7 +47691,7 @@
}
},
{
- "HashCode": 1689620027,
+ "HashCode": -1491281895,
"Kind": "Components.Component",
"Name": "Blazorise.FileEdit",
"AssemblyName": "Blazorise",
@@ -48212,7 +48212,7 @@
}
},
{
- "HashCode": 1645913266,
+ "HashCode": 122577823,
"Kind": "Components.Component",
"Name": "Blazorise.FileEdit",
"AssemblyName": "Blazorise",
@@ -48734,7 +48734,7 @@
}
},
{
- "HashCode": -1446413458,
+ "HashCode": 1372252114,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FileEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -48753,7 +48753,7 @@
}
},
{
- "HashCode": -1096619514,
+ "HashCode": -2005782070,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FileEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -48773,7 +48773,7 @@
}
},
{
- "HashCode": 41988616,
+ "HashCode": 412005553,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FileEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -48792,7 +48792,7 @@
}
},
{
- "HashCode": -165477154,
+ "HashCode": 1328995630,
"Kind": "Components.ChildContent",
"Name": "Blazorise.FileEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -48812,7 +48812,7 @@
}
},
{
- "HashCode": -1592124558,
+ "HashCode": -888576696,
"Kind": "Components.Component",
"Name": "Blazorise.Form",
"AssemblyName": "Blazorise",
@@ -49075,7 +49075,7 @@
}
},
{
- "HashCode": 1405414995,
+ "HashCode": 2023625866,
"Kind": "Components.Component",
"Name": "Blazorise.Form",
"AssemblyName": "Blazorise",
@@ -49339,7 +49339,7 @@
}
},
{
- "HashCode": 1021609128,
+ "HashCode": -1461866611,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Form.ChildContent",
"AssemblyName": "Blazorise",
@@ -49358,7 +49358,7 @@
}
},
{
- "HashCode": 511807762,
+ "HashCode": -2065792232,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Form.ChildContent",
"AssemblyName": "Blazorise",
@@ -49378,7 +49378,7 @@
}
},
{
- "HashCode": 499843624,
+ "HashCode": 241289006,
"Kind": "Components.Component",
"Name": "Blazorise.Help",
"AssemblyName": "Blazorise",
@@ -49641,7 +49641,7 @@
}
},
{
- "HashCode": -1829229559,
+ "HashCode": -423665683,
"Kind": "Components.Component",
"Name": "Blazorise.Help",
"AssemblyName": "Blazorise",
@@ -49905,7 +49905,7 @@
}
},
{
- "HashCode": 1640224211,
+ "HashCode": 653989388,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Help.ChildContent",
"AssemblyName": "Blazorise",
@@ -49924,7 +49924,7 @@
}
},
{
- "HashCode": -1299161081,
+ "HashCode": -1487608255,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Help.ChildContent",
"AssemblyName": "Blazorise",
@@ -49944,7 +49944,7 @@
}
},
{
- "HashCode": 1246134481,
+ "HashCode": 226983790,
"Kind": "Components.Component",
"Name": "Blazorise.Icon",
"AssemblyName": "Blazorise",
@@ -50256,7 +50256,7 @@
}
},
{
- "HashCode": 2066057502,
+ "HashCode": 737867527,
"Kind": "Components.Component",
"Name": "Blazorise.Icon",
"AssemblyName": "Blazorise",
@@ -50569,7 +50569,7 @@
}
},
{
- "HashCode": 208589409,
+ "HashCode": -1886316206,
"Kind": "Components.Component",
"Name": "Blazorise.Image",
"AssemblyName": "Blazorise",
@@ -50849,7 +50849,7 @@
}
},
{
- "HashCode": -1765263964,
+ "HashCode": 658179169,
"Kind": "Components.Component",
"Name": "Blazorise.Image",
"AssemblyName": "Blazorise",
@@ -51130,7 +51130,7 @@
}
},
{
- "HashCode": 1085385853,
+ "HashCode": 1055379576,
"Kind": "Components.Component",
"Name": "Blazorise.Inline",
"AssemblyName": "Blazorise",
@@ -51393,7 +51393,7 @@
}
},
{
- "HashCode": 1756746388,
+ "HashCode": -1622385884,
"Kind": "Components.Component",
"Name": "Blazorise.Inline",
"AssemblyName": "Blazorise",
@@ -51657,7 +51657,7 @@
}
},
{
- "HashCode": -1304291566,
+ "HashCode": -386422634,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Inline.ChildContent",
"AssemblyName": "Blazorise",
@@ -51676,7 +51676,7 @@
}
},
{
- "HashCode": 812376756,
+ "HashCode": 1164334727,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Inline.ChildContent",
"AssemblyName": "Blazorise",
@@ -51696,7 +51696,7 @@
}
},
{
- "HashCode": 210802013,
+ "HashCode": -299157885,
"Kind": "Components.Component",
"Name": "Blazorise.InputMask",
"AssemblyName": "Blazorise",
@@ -52360,7 +52360,7 @@
}
},
{
- "HashCode": 935303455,
+ "HashCode": -239796781,
"Kind": "Components.Component",
"Name": "Blazorise.InputMask",
"AssemblyName": "Blazorise",
@@ -53025,7 +53025,7 @@
}
},
{
- "HashCode": 1404860228,
+ "HashCode": 188429184,
"Kind": "Components.ChildContent",
"Name": "Blazorise.InputMask.Feedback",
"AssemblyName": "Blazorise",
@@ -53044,7 +53044,7 @@
}
},
{
- "HashCode": -750645520,
+ "HashCode": -1733325570,
"Kind": "Components.ChildContent",
"Name": "Blazorise.InputMask.Feedback",
"AssemblyName": "Blazorise",
@@ -53064,7 +53064,7 @@
}
},
{
- "HashCode": -738809829,
+ "HashCode": -1247358637,
"Kind": "Components.ChildContent",
"Name": "Blazorise.InputMask.ChildContent",
"AssemblyName": "Blazorise",
@@ -53083,7 +53083,7 @@
}
},
{
- "HashCode": -1777248432,
+ "HashCode": -1287105437,
"Kind": "Components.ChildContent",
"Name": "Blazorise.InputMask.ChildContent",
"AssemblyName": "Blazorise",
@@ -53103,7 +53103,7 @@
}
},
{
- "HashCode": 905437684,
+ "HashCode": 2015590995,
"Kind": "Components.Component",
"Name": "Blazorise.Jumbotron",
"AssemblyName": "Blazorise",
@@ -53366,7 +53366,7 @@
}
},
{
- "HashCode": -1226476074,
+ "HashCode": -676128642,
"Kind": "Components.Component",
"Name": "Blazorise.Jumbotron",
"AssemblyName": "Blazorise",
@@ -53630,7 +53630,7 @@
}
},
{
- "HashCode": -1938345042,
+ "HashCode": -1232408705,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Jumbotron.ChildContent",
"AssemblyName": "Blazorise",
@@ -53649,7 +53649,7 @@
}
},
{
- "HashCode": 592452749,
+ "HashCode": 905324402,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Jumbotron.ChildContent",
"AssemblyName": "Blazorise",
@@ -53669,7 +53669,7 @@
}
},
{
- "HashCode": 931632731,
+ "HashCode": -1487395196,
"Kind": "Components.Component",
"Name": "Blazorise.JumbotronSubtitle",
"AssemblyName": "Blazorise",
@@ -53932,7 +53932,7 @@
}
},
{
- "HashCode": -1764894095,
+ "HashCode": -1939057800,
"Kind": "Components.Component",
"Name": "Blazorise.JumbotronSubtitle",
"AssemblyName": "Blazorise",
@@ -54196,7 +54196,7 @@
}
},
{
- "HashCode": -323026565,
+ "HashCode": -2047754957,
"Kind": "Components.ChildContent",
"Name": "Blazorise.JumbotronSubtitle.ChildContent",
"AssemblyName": "Blazorise",
@@ -54215,7 +54215,7 @@
}
},
{
- "HashCode": 1455307902,
+ "HashCode": -896739867,
"Kind": "Components.ChildContent",
"Name": "Blazorise.JumbotronSubtitle.ChildContent",
"AssemblyName": "Blazorise",
@@ -54235,7 +54235,7 @@
}
},
{
- "HashCode": -538694414,
+ "HashCode": 976008136,
"Kind": "Components.Component",
"Name": "Blazorise.JumbotronTitle",
"AssemblyName": "Blazorise",
@@ -54508,7 +54508,7 @@
}
},
{
- "HashCode": -1130401434,
+ "HashCode": 943813263,
"Kind": "Components.Component",
"Name": "Blazorise.JumbotronTitle",
"AssemblyName": "Blazorise",
@@ -54782,7 +54782,7 @@
}
},
{
- "HashCode": 10687554,
+ "HashCode": -658911073,
"Kind": "Components.ChildContent",
"Name": "Blazorise.JumbotronTitle.ChildContent",
"AssemblyName": "Blazorise",
@@ -54801,7 +54801,7 @@
}
},
{
- "HashCode": 1861752756,
+ "HashCode": 1464538509,
"Kind": "Components.ChildContent",
"Name": "Blazorise.JumbotronTitle.ChildContent",
"AssemblyName": "Blazorise",
@@ -54821,7 +54821,7 @@
}
},
{
- "HashCode": 1705195363,
+ "HashCode": -471377572,
"Kind": "Components.Component",
"Name": "Blazorise.Label",
"AssemblyName": "Blazorise",
@@ -55113,7 +55113,7 @@
}
},
{
- "HashCode": -1974328191,
+ "HashCode": 1952506546,
"Kind": "Components.Component",
"Name": "Blazorise.Label",
"AssemblyName": "Blazorise",
@@ -55406,7 +55406,7 @@
}
},
{
- "HashCode": 1662959184,
+ "HashCode": 846886561,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Label.ChildContent",
"AssemblyName": "Blazorise",
@@ -55425,7 +55425,7 @@
}
},
{
- "HashCode": 748149705,
+ "HashCode": -1951785144,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Label.ChildContent",
"AssemblyName": "Blazorise",
@@ -55445,7 +55445,7 @@
}
},
{
- "HashCode": -1455183220,
+ "HashCode": -15941275,
"Kind": "Components.Component",
"Name": "Blazorise.Layout",
"AssemblyName": "Blazorise",
@@ -55755,7 +55755,7 @@
}
},
{
- "HashCode": -1783257881,
+ "HashCode": -892577954,
"Kind": "Components.Component",
"Name": "Blazorise.Layout",
"AssemblyName": "Blazorise",
@@ -56066,7 +56066,7 @@
}
},
{
- "HashCode": -329839865,
+ "HashCode": 1540015767,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Layout.LoadingTemplate",
"AssemblyName": "Blazorise",
@@ -56085,7 +56085,7 @@
}
},
{
- "HashCode": -1020205867,
+ "HashCode": -889778360,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Layout.LoadingTemplate",
"AssemblyName": "Blazorise",
@@ -56105,7 +56105,7 @@
}
},
{
- "HashCode": 1792828227,
+ "HashCode": -495008627,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Layout.ChildContent",
"AssemblyName": "Blazorise",
@@ -56124,7 +56124,7 @@
}
},
{
- "HashCode": -268143538,
+ "HashCode": -1191011781,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Layout.ChildContent",
"AssemblyName": "Blazorise",
@@ -56144,7 +56144,7 @@
}
},
{
- "HashCode": -1070215802,
+ "HashCode": -918592376,
"Kind": "Components.Component",
"Name": "Blazorise.LayoutContent",
"AssemblyName": "Blazorise",
@@ -56407,7 +56407,7 @@
}
},
{
- "HashCode": 2125437289,
+ "HashCode": -1541020608,
"Kind": "Components.Component",
"Name": "Blazorise.LayoutContent",
"AssemblyName": "Blazorise",
@@ -56671,7 +56671,7 @@
}
},
{
- "HashCode": -1278506579,
+ "HashCode": 1544041957,
"Kind": "Components.ChildContent",
"Name": "Blazorise.LayoutContent.ChildContent",
"AssemblyName": "Blazorise",
@@ -56690,7 +56690,7 @@
}
},
{
- "HashCode": -1750458731,
+ "HashCode": -1821803351,
"Kind": "Components.ChildContent",
"Name": "Blazorise.LayoutContent.ChildContent",
"AssemblyName": "Blazorise",
@@ -56710,7 +56710,7 @@
}
},
{
- "HashCode": -1915140551,
+ "HashCode": -781880055,
"Kind": "Components.Component",
"Name": "Blazorise.LayoutFooter",
"AssemblyName": "Blazorise",
@@ -56982,7 +56982,7 @@
}
},
{
- "HashCode": 2044160865,
+ "HashCode": -1349574253,
"Kind": "Components.Component",
"Name": "Blazorise.LayoutFooter",
"AssemblyName": "Blazorise",
@@ -57255,7 +57255,7 @@
}
},
{
- "HashCode": -1310164869,
+ "HashCode": 390011253,
"Kind": "Components.ChildContent",
"Name": "Blazorise.LayoutFooter.ChildContent",
"AssemblyName": "Blazorise",
@@ -57274,7 +57274,7 @@
}
},
{
- "HashCode": 1327678943,
+ "HashCode": 1721532118,
"Kind": "Components.ChildContent",
"Name": "Blazorise.LayoutFooter.ChildContent",
"AssemblyName": "Blazorise",
@@ -57294,7 +57294,7 @@
}
},
{
- "HashCode": -572943113,
+ "HashCode": 1046981620,
"Kind": "Components.Component",
"Name": "Blazorise.LayoutHeader",
"AssemblyName": "Blazorise",
@@ -57566,7 +57566,7 @@
}
},
{
- "HashCode": 621766281,
+ "HashCode": 598132326,
"Kind": "Components.Component",
"Name": "Blazorise.LayoutHeader",
"AssemblyName": "Blazorise",
@@ -57839,7 +57839,7 @@
}
},
{
- "HashCode": -2107894679,
+ "HashCode": 1326886771,
"Kind": "Components.ChildContent",
"Name": "Blazorise.LayoutHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -57858,7 +57858,7 @@
}
},
{
- "HashCode": -1535417283,
+ "HashCode": -1256456152,
"Kind": "Components.ChildContent",
"Name": "Blazorise.LayoutHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -57878,7 +57878,7 @@
}
},
{
- "HashCode": -1628995896,
+ "HashCode": 1361615740,
"Kind": "Components.Component",
"Name": "Blazorise.LayoutSider",
"AssemblyName": "Blazorise",
@@ -58141,7 +58141,7 @@
}
},
{
- "HashCode": 2044103801,
+ "HashCode": 821068130,
"Kind": "Components.Component",
"Name": "Blazorise.LayoutSider",
"AssemblyName": "Blazorise",
@@ -58405,7 +58405,7 @@
}
},
{
- "HashCode": -117803040,
+ "HashCode": -2125271215,
"Kind": "Components.ChildContent",
"Name": "Blazorise.LayoutSider.ChildContent",
"AssemblyName": "Blazorise",
@@ -58424,7 +58424,7 @@
}
},
{
- "HashCode": -69529660,
+ "HashCode": 1368734280,
"Kind": "Components.ChildContent",
"Name": "Blazorise.LayoutSider.ChildContent",
"AssemblyName": "Blazorise",
@@ -58444,7 +58444,7 @@
}
},
{
- "HashCode": -1288216663,
+ "HashCode": 119903296,
"Kind": "Components.Component",
"Name": "Blazorise.LayoutSiderContent",
"AssemblyName": "Blazorise",
@@ -58707,7 +58707,7 @@
}
},
{
- "HashCode": -204990853,
+ "HashCode": -625937129,
"Kind": "Components.Component",
"Name": "Blazorise.LayoutSiderContent",
"AssemblyName": "Blazorise",
@@ -58971,7 +58971,7 @@
}
},
{
- "HashCode": 797437448,
+ "HashCode": 333003699,
"Kind": "Components.ChildContent",
"Name": "Blazorise.LayoutSiderContent.ChildContent",
"AssemblyName": "Blazorise",
@@ -58990,7 +58990,7 @@
}
},
{
- "HashCode": -536128172,
+ "HashCode": 1767537908,
"Kind": "Components.ChildContent",
"Name": "Blazorise.LayoutSiderContent.ChildContent",
"AssemblyName": "Blazorise",
@@ -59010,7 +59010,7 @@
}
},
{
- "HashCode": 59665929,
+ "HashCode": 1771001570,
"Kind": "Components.Component",
"Name": "Blazorise.Anchor",
"AssemblyName": "Blazorise",
@@ -59320,7 +59320,7 @@
}
},
{
- "HashCode": -1045779581,
+ "HashCode": 1718402951,
"Kind": "Components.Component",
"Name": "Blazorise.Anchor",
"AssemblyName": "Blazorise",
@@ -59631,7 +59631,7 @@
}
},
{
- "HashCode": -357857599,
+ "HashCode": -1595514973,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Anchor.ChildContent",
"AssemblyName": "Blazorise",
@@ -59650,7 +59650,7 @@
}
},
{
- "HashCode": 875556408,
+ "HashCode": -466034256,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Anchor.ChildContent",
"AssemblyName": "Blazorise",
@@ -59670,7 +59670,7 @@
}
},
{
- "HashCode": -1411196319,
+ "HashCode": -1134415311,
"Kind": "Components.Component",
"Name": "Blazorise.Link",
"AssemblyName": "Blazorise",
@@ -59980,7 +59980,7 @@
}
},
{
- "HashCode": -1158843262,
+ "HashCode": -1910694274,
"Kind": "Components.Component",
"Name": "Blazorise.Link",
"AssemblyName": "Blazorise",
@@ -60291,7 +60291,7 @@
}
},
{
- "HashCode": 1844147155,
+ "HashCode": 1589147612,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Link.ChildContent",
"AssemblyName": "Blazorise",
@@ -60310,7 +60310,7 @@
}
},
{
- "HashCode": -376339596,
+ "HashCode": -1547555559,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Link.ChildContent",
"AssemblyName": "Blazorise",
@@ -60330,7 +60330,7 @@
}
},
{
- "HashCode": -1119540565,
+ "HashCode": -785613332,
"Kind": "Components.Component",
"Name": "Blazorise.ListGroup",
"AssemblyName": "Blazorise",
@@ -60631,7 +60631,7 @@
}
},
{
- "HashCode": 404589321,
+ "HashCode": -52750275,
"Kind": "Components.Component",
"Name": "Blazorise.ListGroup",
"AssemblyName": "Blazorise",
@@ -60933,7 +60933,7 @@
}
},
{
- "HashCode": -1383166892,
+ "HashCode": 2107230376,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ListGroup.ChildContent",
"AssemblyName": "Blazorise",
@@ -60952,7 +60952,7 @@
}
},
{
- "HashCode": 103985899,
+ "HashCode": 297016767,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ListGroup.ChildContent",
"AssemblyName": "Blazorise",
@@ -60972,7 +60972,7 @@
}
},
{
- "HashCode": -2144371019,
+ "HashCode": -2094133731,
"Kind": "Components.Component",
"Name": "Blazorise.ListGroupItem",
"AssemblyName": "Blazorise",
@@ -61272,7 +61272,7 @@
}
},
{
- "HashCode": 452631389,
+ "HashCode": -937101583,
"Kind": "Components.Component",
"Name": "Blazorise.ListGroupItem",
"AssemblyName": "Blazorise",
@@ -61573,7 +61573,7 @@
}
},
{
- "HashCode": 614758059,
+ "HashCode": 1322073551,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ListGroupItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -61592,7 +61592,7 @@
}
},
{
- "HashCode": 829887076,
+ "HashCode": 1959429247,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ListGroupItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -61612,7 +61612,7 @@
}
},
{
- "HashCode": -1495640881,
+ "HashCode": -879125756,
"Kind": "Components.Component",
"Name": "Blazorise.Media",
"AssemblyName": "Blazorise",
@@ -61875,7 +61875,7 @@
}
},
{
- "HashCode": -254005140,
+ "HashCode": -1835527202,
"Kind": "Components.Component",
"Name": "Blazorise.Media",
"AssemblyName": "Blazorise",
@@ -62139,7 +62139,7 @@
}
},
{
- "HashCode": 601705050,
+ "HashCode": 675299665,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Media.ChildContent",
"AssemblyName": "Blazorise",
@@ -62158,7 +62158,7 @@
}
},
{
- "HashCode": 1540068640,
+ "HashCode": -328086812,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Media.ChildContent",
"AssemblyName": "Blazorise",
@@ -62178,7 +62178,7 @@
}
},
{
- "HashCode": -1593420524,
+ "HashCode": 1038655763,
"Kind": "Components.Component",
"Name": "Blazorise.MediaBody",
"AssemblyName": "Blazorise",
@@ -62441,7 +62441,7 @@
}
},
{
- "HashCode": 1854046540,
+ "HashCode": 2041943382,
"Kind": "Components.Component",
"Name": "Blazorise.MediaBody",
"AssemblyName": "Blazorise",
@@ -62705,7 +62705,7 @@
}
},
{
- "HashCode": 160330568,
+ "HashCode": -1378436377,
"Kind": "Components.ChildContent",
"Name": "Blazorise.MediaBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -62724,7 +62724,7 @@
}
},
{
- "HashCode": 966320779,
+ "HashCode": -840162484,
"Kind": "Components.ChildContent",
"Name": "Blazorise.MediaBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -62744,7 +62744,7 @@
}
},
{
- "HashCode": 1094510059,
+ "HashCode": 1395052179,
"Kind": "Components.Component",
"Name": "Blazorise.MediaLeft",
"AssemblyName": "Blazorise",
@@ -63007,7 +63007,7 @@
}
},
{
- "HashCode": -1475821873,
+ "HashCode": -1944348060,
"Kind": "Components.Component",
"Name": "Blazorise.MediaLeft",
"AssemblyName": "Blazorise",
@@ -63271,7 +63271,7 @@
}
},
{
- "HashCode": -449318601,
+ "HashCode": 1029873178,
"Kind": "Components.ChildContent",
"Name": "Blazorise.MediaLeft.ChildContent",
"AssemblyName": "Blazorise",
@@ -63290,7 +63290,7 @@
}
},
{
- "HashCode": -1581567664,
+ "HashCode": -1013003454,
"Kind": "Components.ChildContent",
"Name": "Blazorise.MediaLeft.ChildContent",
"AssemblyName": "Blazorise",
@@ -63310,7 +63310,7 @@
}
},
{
- "HashCode": -262522259,
+ "HashCode": -72209558,
"Kind": "Components.Component",
"Name": "Blazorise.MediaRight",
"AssemblyName": "Blazorise",
@@ -63573,7 +63573,7 @@
}
},
{
- "HashCode": -499980498,
+ "HashCode": 28065568,
"Kind": "Components.Component",
"Name": "Blazorise.MediaRight",
"AssemblyName": "Blazorise",
@@ -63837,7 +63837,7 @@
}
},
{
- "HashCode": -205158886,
+ "HashCode": -1740224695,
"Kind": "Components.ChildContent",
"Name": "Blazorise.MediaRight.ChildContent",
"AssemblyName": "Blazorise",
@@ -63856,7 +63856,7 @@
}
},
{
- "HashCode": -757013982,
+ "HashCode": -1344196540,
"Kind": "Components.ChildContent",
"Name": "Blazorise.MediaRight.ChildContent",
"AssemblyName": "Blazorise",
@@ -63876,7 +63876,7 @@
}
},
{
- "HashCode": -376529171,
+ "HashCode": 1205808000,
"Kind": "Components.Component",
"Name": "Blazorise.MemoEdit",
"AssemblyName": "Blazorise",
@@ -64410,7 +64410,7 @@
}
},
{
- "HashCode": -771730765,
+ "HashCode": 1739041409,
"Kind": "Components.Component",
"Name": "Blazorise.MemoEdit",
"AssemblyName": "Blazorise",
@@ -64945,7 +64945,7 @@
}
},
{
- "HashCode": 1527259911,
+ "HashCode": -1835333535,
"Kind": "Components.ChildContent",
"Name": "Blazorise.MemoEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -64964,7 +64964,7 @@
}
},
{
- "HashCode": 695855019,
+ "HashCode": 1462985072,
"Kind": "Components.ChildContent",
"Name": "Blazorise.MemoEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -64984,7 +64984,7 @@
}
},
{
- "HashCode": 206222538,
+ "HashCode": -1614833072,
"Kind": "Components.ChildContent",
"Name": "Blazorise.MemoEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -65003,7 +65003,7 @@
}
},
{
- "HashCode": 1478089868,
+ "HashCode": 1984280406,
"Kind": "Components.ChildContent",
"Name": "Blazorise.MemoEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -65023,7 +65023,7 @@
}
},
{
- "HashCode": -258855367,
+ "HashCode": -675481878,
"Kind": "Components.Component",
"Name": "Blazorise.MessageAlert",
"AssemblyName": "Blazorise",
@@ -65361,7 +65361,7 @@
}
},
{
- "HashCode": -1018947948,
+ "HashCode": -1267767456,
"Kind": "Components.Component",
"Name": "Blazorise.MessageAlert",
"AssemblyName": "Blazorise",
@@ -65700,7 +65700,7 @@
}
},
{
- "HashCode": 1919650355,
+ "HashCode": -1685890417,
"Kind": "Components.Component",
"Name": "Blazorise.Modal",
"AssemblyName": "Blazorise",
@@ -66068,7 +66068,7 @@
}
},
{
- "HashCode": 545044852,
+ "HashCode": -174396920,
"Kind": "Components.Component",
"Name": "Blazorise.Modal",
"AssemblyName": "Blazorise",
@@ -66437,7 +66437,7 @@
}
},
{
- "HashCode": 1401345462,
+ "HashCode": 46557468,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Modal.ChildContent",
"AssemblyName": "Blazorise",
@@ -66456,7 +66456,7 @@
}
},
{
- "HashCode": 1594367064,
+ "HashCode": -473692457,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Modal.ChildContent",
"AssemblyName": "Blazorise",
@@ -66476,7 +66476,7 @@
}
},
{
- "HashCode": -209819771,
+ "HashCode": -1488835883,
"Kind": "Components.Component",
"Name": "Blazorise.ModalBody",
"AssemblyName": "Blazorise",
@@ -66748,7 +66748,7 @@
}
},
{
- "HashCode": 633468432,
+ "HashCode": 841930371,
"Kind": "Components.Component",
"Name": "Blazorise.ModalBody",
"AssemblyName": "Blazorise",
@@ -67021,7 +67021,7 @@
}
},
{
- "HashCode": -2058260752,
+ "HashCode": 245640194,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ModalBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -67040,7 +67040,7 @@
}
},
{
- "HashCode": -383734444,
+ "HashCode": 223466809,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ModalBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -67060,7 +67060,7 @@
}
},
{
- "HashCode": -1301343611,
+ "HashCode": 166195403,
"Kind": "Components.Component",
"Name": "Blazorise.ModalContent",
"AssemblyName": "Blazorise",
@@ -67351,7 +67351,7 @@
}
},
{
- "HashCode": -1458567978,
+ "HashCode": -1856306537,
"Kind": "Components.Component",
"Name": "Blazorise.ModalContent",
"AssemblyName": "Blazorise",
@@ -67643,7 +67643,7 @@
}
},
{
- "HashCode": 1559521968,
+ "HashCode": 525168869,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ModalContent.ChildContent",
"AssemblyName": "Blazorise",
@@ -67662,7 +67662,7 @@
}
},
{
- "HashCode": 1840642600,
+ "HashCode": -1054334617,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ModalContent.ChildContent",
"AssemblyName": "Blazorise",
@@ -67682,7 +67682,7 @@
}
},
{
- "HashCode": -1261014303,
+ "HashCode": -762798919,
"Kind": "Components.Component",
"Name": "Blazorise.ModalFooter",
"AssemblyName": "Blazorise",
@@ -67945,7 +67945,7 @@
}
},
{
- "HashCode": 1497694757,
+ "HashCode": 1285677459,
"Kind": "Components.Component",
"Name": "Blazorise.ModalFooter",
"AssemblyName": "Blazorise",
@@ -68209,7 +68209,7 @@
}
},
{
- "HashCode": -275550925,
+ "HashCode": -1094030104,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ModalFooter.ChildContent",
"AssemblyName": "Blazorise",
@@ -68228,7 +68228,7 @@
}
},
{
- "HashCode": -627986936,
+ "HashCode": 1572248889,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ModalFooter.ChildContent",
"AssemblyName": "Blazorise",
@@ -68248,7 +68248,7 @@
}
},
{
- "HashCode": -141839393,
+ "HashCode": -1915620649,
"Kind": "Components.Component",
"Name": "Blazorise.ModalHeader",
"AssemblyName": "Blazorise",
@@ -68511,7 +68511,7 @@
}
},
{
- "HashCode": -1871277630,
+ "HashCode": -428168387,
"Kind": "Components.Component",
"Name": "Blazorise.ModalHeader",
"AssemblyName": "Blazorise",
@@ -68775,7 +68775,7 @@
}
},
{
- "HashCode": -47065558,
+ "HashCode": -735193417,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ModalHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -68794,7 +68794,7 @@
}
},
{
- "HashCode": 1205336256,
+ "HashCode": -2130602013,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ModalHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -68814,7 +68814,7 @@
}
},
{
- "HashCode": -1255220383,
+ "HashCode": 892788835,
"Kind": "Components.Component",
"Name": "Blazorise.ModalTitle",
"AssemblyName": "Blazorise",
@@ -69087,7 +69087,7 @@
}
},
{
- "HashCode": 1313067368,
+ "HashCode": -1951288746,
"Kind": "Components.Component",
"Name": "Blazorise.ModalTitle",
"AssemblyName": "Blazorise",
@@ -69361,7 +69361,7 @@
}
},
{
- "HashCode": 1728095318,
+ "HashCode": -2126038280,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ModalTitle.ChildContent",
"AssemblyName": "Blazorise",
@@ -69380,7 +69380,7 @@
}
},
{
- "HashCode": -1230363819,
+ "HashCode": -1007501438,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ModalTitle.ChildContent",
"AssemblyName": "Blazorise",
@@ -69400,7 +69400,7 @@
}
},
{
- "HashCode": 1232043754,
+ "HashCode": -1758804551,
"Kind": "Components.Component",
"Name": "Blazorise._ModalBackdrop",
"AssemblyName": "Blazorise",
@@ -69653,7 +69653,7 @@
}
},
{
- "HashCode": 1172721006,
+ "HashCode": -343357340,
"Kind": "Components.Component",
"Name": "Blazorise._ModalBackdrop",
"AssemblyName": "Blazorise",
@@ -69907,7 +69907,7 @@
}
},
{
- "HashCode": -1432795894,
+ "HashCode": -1981612183,
"Kind": "Components.Component",
"Name": "Blazorise.NumericEdit",
"AssemblyName": "Blazorise",
@@ -70459,7 +70459,7 @@
}
},
{
- "HashCode": -2005378427,
+ "HashCode": -1382315210,
"Kind": "Components.Component",
"Name": "Blazorise.NumericEdit",
"AssemblyName": "Blazorise",
@@ -71012,7 +71012,7 @@
}
},
{
- "HashCode": -1951570887,
+ "HashCode": -516222480,
"Kind": "Components.ChildContent",
"Name": "Blazorise.NumericEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -71031,7 +71031,7 @@
}
},
{
- "HashCode": 187485322,
+ "HashCode": -1512638011,
"Kind": "Components.ChildContent",
"Name": "Blazorise.NumericEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -71051,7 +71051,7 @@
}
},
{
- "HashCode": 966634434,
+ "HashCode": 2128187258,
"Kind": "Components.ChildContent",
"Name": "Blazorise.NumericEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -71070,7 +71070,7 @@
}
},
{
- "HashCode": 1971522659,
+ "HashCode": 165640270,
"Kind": "Components.ChildContent",
"Name": "Blazorise.NumericEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -71090,7 +71090,7 @@
}
},
{
- "HashCode": -1278514771,
+ "HashCode": 179585368,
"Kind": "Components.Component",
"Name": "Blazorise.NumericPicker",
"AssemblyName": "Blazorise",
@@ -71772,7 +71772,7 @@
}
},
{
- "HashCode": -1361587528,
+ "HashCode": -669556956,
"Kind": "Components.Component",
"Name": "Blazorise.NumericPicker",
"AssemblyName": "Blazorise",
@@ -72455,7 +72455,7 @@
}
},
{
- "HashCode": -67512095,
+ "HashCode": 1982723688,
"Kind": "Components.ChildContent",
"Name": "Blazorise.NumericPicker.Feedback",
"AssemblyName": "Blazorise",
@@ -72474,7 +72474,7 @@
}
},
{
- "HashCode": 1691505060,
+ "HashCode": 747134092,
"Kind": "Components.ChildContent",
"Name": "Blazorise.NumericPicker.Feedback",
"AssemblyName": "Blazorise",
@@ -72494,7 +72494,7 @@
}
},
{
- "HashCode": -706052224,
+ "HashCode": 2114962304,
"Kind": "Components.ChildContent",
"Name": "Blazorise.NumericPicker.ChildContent",
"AssemblyName": "Blazorise",
@@ -72513,7 +72513,7 @@
}
},
{
- "HashCode": 1557296924,
+ "HashCode": -73055542,
"Kind": "Components.ChildContent",
"Name": "Blazorise.NumericPicker.ChildContent",
"AssemblyName": "Blazorise",
@@ -72533,7 +72533,7 @@
}
},
{
- "HashCode": 1865707392,
+ "HashCode": 1895401041,
"Kind": "Components.Component",
"Name": "Blazorise.Pagination",
"AssemblyName": "Blazorise",
@@ -72815,7 +72815,7 @@
}
},
{
- "HashCode": -2056255056,
+ "HashCode": -197538876,
"Kind": "Components.Component",
"Name": "Blazorise.Pagination",
"AssemblyName": "Blazorise",
@@ -73098,7 +73098,7 @@
}
},
{
- "HashCode": -243577948,
+ "HashCode": 995458791,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Pagination.ChildContent",
"AssemblyName": "Blazorise",
@@ -73117,7 +73117,7 @@
}
},
{
- "HashCode": 982748088,
+ "HashCode": -1800794645,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Pagination.ChildContent",
"AssemblyName": "Blazorise",
@@ -73137,7 +73137,7 @@
}
},
{
- "HashCode": 287222584,
+ "HashCode": -298286636,
"Kind": "Components.Component",
"Name": "Blazorise.PaginationItem",
"AssemblyName": "Blazorise",
@@ -73418,7 +73418,7 @@
}
},
{
- "HashCode": -1032205643,
+ "HashCode": 997030627,
"Kind": "Components.Component",
"Name": "Blazorise.PaginationItem",
"AssemblyName": "Blazorise",
@@ -73700,7 +73700,7 @@
}
},
{
- "HashCode": -1898124968,
+ "HashCode": -1635381180,
"Kind": "Components.ChildContent",
"Name": "Blazorise.PaginationItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -73719,7 +73719,7 @@
}
},
{
- "HashCode": 1414728632,
+ "HashCode": 1575164027,
"Kind": "Components.ChildContent",
"Name": "Blazorise.PaginationItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -73739,7 +73739,7 @@
}
},
{
- "HashCode": 1908181785,
+ "HashCode": -1388780273,
"Kind": "Components.Component",
"Name": "Blazorise.PaginationLink",
"AssemblyName": "Blazorise",
@@ -74021,7 +74021,7 @@
}
},
{
- "HashCode": -1137706063,
+ "HashCode": -2015462241,
"Kind": "Components.Component",
"Name": "Blazorise.PaginationLink",
"AssemblyName": "Blazorise",
@@ -74304,7 +74304,7 @@
}
},
{
- "HashCode": -691475096,
+ "HashCode": 983518769,
"Kind": "Components.ChildContent",
"Name": "Blazorise.PaginationLink.ChildContent",
"AssemblyName": "Blazorise",
@@ -74323,7 +74323,7 @@
}
},
{
- "HashCode": -1784757617,
+ "HashCode": 1333249681,
"Kind": "Components.ChildContent",
"Name": "Blazorise.PaginationLink.ChildContent",
"AssemblyName": "Blazorise",
@@ -74343,7 +74343,7 @@
}
},
{
- "HashCode": 1041822070,
+ "HashCode": -1030442507,
"Kind": "Components.Component",
"Name": "Blazorise.PageProgress",
"AssemblyName": "Blazorise",
@@ -74623,7 +74623,7 @@
}
},
{
- "HashCode": -1864208272,
+ "HashCode": -2063346875,
"Kind": "Components.Component",
"Name": "Blazorise.PageProgress",
"AssemblyName": "Blazorise",
@@ -74904,7 +74904,7 @@
}
},
{
- "HashCode": 589466840,
+ "HashCode": -1933872964,
"Kind": "Components.Component",
"Name": "Blazorise.PageProgressAlert",
"AssemblyName": "Blazorise",
@@ -75157,7 +75157,7 @@
}
},
{
- "HashCode": -70252861,
+ "HashCode": -542456654,
"Kind": "Components.Component",
"Name": "Blazorise.PageProgressAlert",
"AssemblyName": "Blazorise",
@@ -75411,7 +75411,7 @@
}
},
{
- "HashCode": 1576877702,
+ "HashCode": -474225029,
"Kind": "Components.Component",
"Name": "Blazorise.Progress",
"AssemblyName": "Blazorise",
@@ -75737,7 +75737,7 @@
}
},
{
- "HashCode": 1844798685,
+ "HashCode": 1881871618,
"Kind": "Components.Component",
"Name": "Blazorise.Progress",
"AssemblyName": "Blazorise",
@@ -76064,7 +76064,7 @@
}
},
{
- "HashCode": 198490500,
+ "HashCode": -705111540,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Progress.ChildContent",
"AssemblyName": "Blazorise",
@@ -76083,7 +76083,7 @@
}
},
{
- "HashCode": -1097102671,
+ "HashCode": -1780825336,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Progress.ChildContent",
"AssemblyName": "Blazorise",
@@ -76103,7 +76103,7 @@
}
},
{
- "HashCode": -2063680606,
+ "HashCode": -661327417,
"Kind": "Components.Component",
"Name": "Blazorise.ProgressBar",
"AssemblyName": "Blazorise",
@@ -76420,7 +76420,7 @@
}
},
{
- "HashCode": 871359165,
+ "HashCode": -168045575,
"Kind": "Components.Component",
"Name": "Blazorise.ProgressBar",
"AssemblyName": "Blazorise",
@@ -76738,7 +76738,7 @@
}
},
{
- "HashCode": -1844858142,
+ "HashCode": -1857215504,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ProgressBar.ChildContent",
"AssemblyName": "Blazorise",
@@ -76757,7 +76757,7 @@
}
},
{
- "HashCode": -1867478825,
+ "HashCode": -1381505305,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ProgressBar.ChildContent",
"AssemblyName": "Blazorise",
@@ -76777,7 +76777,7 @@
}
},
{
- "HashCode": -1700225498,
+ "HashCode": -880260824,
"Kind": "Components.Component",
"Name": "Blazorise.Radio",
"AssemblyName": "Blazorise",
@@ -77253,7 +77253,7 @@
}
},
{
- "HashCode": 1955405185,
+ "HashCode": 1381101877,
"Kind": "Components.Component",
"Name": "Blazorise.Radio",
"AssemblyName": "Blazorise",
@@ -77730,7 +77730,7 @@
}
},
{
- "HashCode": -997013232,
+ "HashCode": -756012719,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Radio.Feedback",
"AssemblyName": "Blazorise",
@@ -77749,7 +77749,7 @@
}
},
{
- "HashCode": -537411428,
+ "HashCode": -934537537,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Radio.Feedback",
"AssemblyName": "Blazorise",
@@ -77769,7 +77769,7 @@
}
},
{
- "HashCode": -1115733384,
+ "HashCode": 1890915969,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Radio.ChildContent",
"AssemblyName": "Blazorise",
@@ -77788,7 +77788,7 @@
}
},
{
- "HashCode": -157492636,
+ "HashCode": 1120072416,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Radio.ChildContent",
"AssemblyName": "Blazorise",
@@ -77808,7 +77808,7 @@
}
},
{
- "HashCode": -916040085,
+ "HashCode": -437315360,
"Kind": "Components.Component",
"Name": "Blazorise.RadioGroup",
"AssemblyName": "Blazorise",
@@ -78287,7 +78287,7 @@
}
},
{
- "HashCode": -2137736808,
+ "HashCode": -1893394766,
"Kind": "Components.Component",
"Name": "Blazorise.RadioGroup",
"AssemblyName": "Blazorise",
@@ -78767,7 +78767,7 @@
}
},
{
- "HashCode": -978083692,
+ "HashCode": -10689343,
"Kind": "Components.ChildContent",
"Name": "Blazorise.RadioGroup.Feedback",
"AssemblyName": "Blazorise",
@@ -78786,7 +78786,7 @@
}
},
{
- "HashCode": -1283079243,
+ "HashCode": -138190135,
"Kind": "Components.ChildContent",
"Name": "Blazorise.RadioGroup.Feedback",
"AssemblyName": "Blazorise",
@@ -78806,7 +78806,7 @@
}
},
{
- "HashCode": -1882537686,
+ "HashCode": 2093781701,
"Kind": "Components.ChildContent",
"Name": "Blazorise.RadioGroup.ChildContent",
"AssemblyName": "Blazorise",
@@ -78825,7 +78825,7 @@
}
},
{
- "HashCode": 276584123,
+ "HashCode": -1508990518,
"Kind": "Components.ChildContent",
"Name": "Blazorise.RadioGroup.ChildContent",
"AssemblyName": "Blazorise",
@@ -78845,7 +78845,7 @@
}
},
{
- "HashCode": 230571469,
+ "HashCode": -1773131719,
"Kind": "Components.Component",
"Name": "Blazorise.Rating",
"AssemblyName": "Blazorise",
@@ -79217,7 +79217,7 @@
}
},
{
- "HashCode": -602444523,
+ "HashCode": -266113394,
"Kind": "Components.Component",
"Name": "Blazorise.Rating",
"AssemblyName": "Blazorise",
@@ -79590,7 +79590,7 @@
}
},
{
- "HashCode": 1040776640,
+ "HashCode": 1724885852,
"Kind": "Components.Component",
"Name": "Blazorise.RatingItem",
"AssemblyName": "Blazorise",
@@ -79881,7 +79881,7 @@
}
},
{
- "HashCode": 673945783,
+ "HashCode": 1167996830,
"Kind": "Components.Component",
"Name": "Blazorise.RatingItem",
"AssemblyName": "Blazorise",
@@ -80173,7 +80173,7 @@
}
},
{
- "HashCode": -713664097,
+ "HashCode": -696785799,
"Kind": "Components.Component",
"Name": "Blazorise.Repeater",
"AssemblyName": "Blazorise",
@@ -80263,7 +80263,7 @@
}
},
{
- "HashCode": 1293068223,
+ "HashCode": 114906840,
"Kind": "Components.Component",
"Name": "Blazorise.Repeater",
"AssemblyName": "Blazorise",
@@ -80354,7 +80354,7 @@
}
},
{
- "HashCode": -1772219533,
+ "HashCode": 839560337,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Repeater.ChildContent",
"AssemblyName": "Blazorise",
@@ -80385,7 +80385,7 @@
}
},
{
- "HashCode": 1183274625,
+ "HashCode": 190211957,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Repeater.ChildContent",
"AssemblyName": "Blazorise",
@@ -80417,7 +80417,7 @@
}
},
{
- "HashCode": 2062146943,
+ "HashCode": -1192469216,
"Kind": "Components.Component",
"Name": "Blazorise.Row",
"AssemblyName": "Blazorise",
@@ -80707,7 +80707,7 @@
}
},
{
- "HashCode": 2011490142,
+ "HashCode": 904736221,
"Kind": "Components.Component",
"Name": "Blazorise.Row",
"AssemblyName": "Blazorise",
@@ -80998,7 +80998,7 @@
}
},
{
- "HashCode": -707955450,
+ "HashCode": 292484938,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Row.ChildContent",
"AssemblyName": "Blazorise",
@@ -81017,7 +81017,7 @@
}
},
{
- "HashCode": -1460187501,
+ "HashCode": 2024299477,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Row.ChildContent",
"AssemblyName": "Blazorise",
@@ -81037,7 +81037,7 @@
}
},
{
- "HashCode": 1966212711,
+ "HashCode": 320459027,
"Kind": "Components.Component",
"Name": "Blazorise.Select",
"AssemblyName": "Blazorise",
@@ -81537,7 +81537,7 @@
}
},
{
- "HashCode": 873094403,
+ "HashCode": 635577495,
"Kind": "Components.Component",
"Name": "Blazorise.Select",
"AssemblyName": "Blazorise",
@@ -82038,7 +82038,7 @@
}
},
{
- "HashCode": -488731772,
+ "HashCode": -1700510224,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Select.Feedback",
"AssemblyName": "Blazorise",
@@ -82057,7 +82057,7 @@
}
},
{
- "HashCode": -1403852372,
+ "HashCode": -406505552,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Select.Feedback",
"AssemblyName": "Blazorise",
@@ -82077,7 +82077,7 @@
}
},
{
- "HashCode": -147951682,
+ "HashCode": -1109541110,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Select.ChildContent",
"AssemblyName": "Blazorise",
@@ -82096,7 +82096,7 @@
}
},
{
- "HashCode": -1395745307,
+ "HashCode": 1570767132,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Select.ChildContent",
"AssemblyName": "Blazorise",
@@ -82116,7 +82116,7 @@
}
},
{
- "HashCode": 1767661660,
+ "HashCode": -489789342,
"Kind": "Components.Component",
"Name": "Blazorise.SelectGroup",
"AssemblyName": "Blazorise",
@@ -82388,7 +82388,7 @@
}
},
{
- "HashCode": 372896542,
+ "HashCode": -1347299645,
"Kind": "Components.Component",
"Name": "Blazorise.SelectGroup",
"AssemblyName": "Blazorise",
@@ -82661,7 +82661,7 @@
}
},
{
- "HashCode": -1922547052,
+ "HashCode": -814782025,
"Kind": "Components.ChildContent",
"Name": "Blazorise.SelectGroup.ChildContent",
"AssemblyName": "Blazorise",
@@ -82680,7 +82680,7 @@
}
},
{
- "HashCode": -1868171541,
+ "HashCode": 2111607140,
"Kind": "Components.ChildContent",
"Name": "Blazorise.SelectGroup.ChildContent",
"AssemblyName": "Blazorise",
@@ -82700,7 +82700,7 @@
}
},
{
- "HashCode": 1318104629,
+ "HashCode": -2113227037,
"Kind": "Components.Component",
"Name": "Blazorise.SelectItem",
"AssemblyName": "Blazorise",
@@ -83003,7 +83003,7 @@
}
},
{
- "HashCode": -743506137,
+ "HashCode": 476563097,
"Kind": "Components.Component",
"Name": "Blazorise.SelectItem",
"AssemblyName": "Blazorise",
@@ -83307,7 +83307,7 @@
}
},
{
- "HashCode": -318146322,
+ "HashCode": 184474702,
"Kind": "Components.ChildContent",
"Name": "Blazorise.SelectItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -83326,7 +83326,7 @@
}
},
{
- "HashCode": -482207665,
+ "HashCode": 1672499248,
"Kind": "Components.ChildContent",
"Name": "Blazorise.SelectItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -83346,7 +83346,7 @@
}
},
{
- "HashCode": 1586999694,
+ "HashCode": 849627270,
"Kind": "Components.Component",
"Name": "Blazorise.Slider",
"AssemblyName": "Blazorise",
@@ -83818,7 +83818,7 @@
}
},
{
- "HashCode": -1038000315,
+ "HashCode": -1109392951,
"Kind": "Components.Component",
"Name": "Blazorise.Slider",
"AssemblyName": "Blazorise",
@@ -84291,7 +84291,7 @@
}
},
{
- "HashCode": -651730748,
+ "HashCode": 2137735289,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Slider.Feedback",
"AssemblyName": "Blazorise",
@@ -84310,7 +84310,7 @@
}
},
{
- "HashCode": -1872664225,
+ "HashCode": 92047434,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Slider.Feedback",
"AssemblyName": "Blazorise",
@@ -84330,7 +84330,7 @@
}
},
{
- "HashCode": -2009165708,
+ "HashCode": -137645875,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Slider.ChildContent",
"AssemblyName": "Blazorise",
@@ -84349,7 +84349,7 @@
}
},
{
- "HashCode": -2044688775,
+ "HashCode": 1347070456,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Slider.ChildContent",
"AssemblyName": "Blazorise",
@@ -84369,7 +84369,7 @@
}
},
{
- "HashCode": 1334605907,
+ "HashCode": -346977908,
"Kind": "Components.Component",
"Name": "Blazorise.Step",
"AssemblyName": "Blazorise",
@@ -84698,7 +84698,7 @@
}
},
{
- "HashCode": -680983297,
+ "HashCode": -1255763544,
"Kind": "Components.Component",
"Name": "Blazorise.Step",
"AssemblyName": "Blazorise",
@@ -85028,7 +85028,7 @@
}
},
{
- "HashCode": -1924062612,
+ "HashCode": -2002622850,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Step.Marker",
"AssemblyName": "Blazorise",
@@ -85047,7 +85047,7 @@
}
},
{
- "HashCode": -1085961775,
+ "HashCode": -1558114978,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Step.Marker",
"AssemblyName": "Blazorise",
@@ -85067,7 +85067,7 @@
}
},
{
- "HashCode": -1061176103,
+ "HashCode": -1504024889,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Step.Caption",
"AssemblyName": "Blazorise",
@@ -85086,7 +85086,7 @@
}
},
{
- "HashCode": -1209448425,
+ "HashCode": 1822080270,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Step.Caption",
"AssemblyName": "Blazorise",
@@ -85106,7 +85106,7 @@
}
},
{
- "HashCode": -2024253575,
+ "HashCode": 1390728896,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Step.ChildContent",
"AssemblyName": "Blazorise",
@@ -85125,7 +85125,7 @@
}
},
{
- "HashCode": 107892621,
+ "HashCode": 167042111,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Step.ChildContent",
"AssemblyName": "Blazorise",
@@ -85145,7 +85145,7 @@
}
},
{
- "HashCode": 383783492,
+ "HashCode": 1722381373,
"Kind": "Components.Component",
"Name": "Blazorise.StepPanel",
"AssemblyName": "Blazorise",
@@ -85417,7 +85417,7 @@
}
},
{
- "HashCode": -1368584516,
+ "HashCode": -1467342482,
"Kind": "Components.Component",
"Name": "Blazorise.StepPanel",
"AssemblyName": "Blazorise",
@@ -85690,7 +85690,7 @@
}
},
{
- "HashCode": -1390491048,
+ "HashCode": -685433849,
"Kind": "Components.ChildContent",
"Name": "Blazorise.StepPanel.ChildContent",
"AssemblyName": "Blazorise",
@@ -85709,7 +85709,7 @@
}
},
{
- "HashCode": -997443166,
+ "HashCode": -229786919,
"Kind": "Components.ChildContent",
"Name": "Blazorise.StepPanel.ChildContent",
"AssemblyName": "Blazorise",
@@ -85729,7 +85729,7 @@
}
},
{
- "HashCode": 1809319950,
+ "HashCode": 1168141575,
"Kind": "Components.Component",
"Name": "Blazorise.Steps",
"AssemblyName": "Blazorise",
@@ -86031,7 +86031,7 @@
}
},
{
- "HashCode": 1758783517,
+ "HashCode": 1673337895,
"Kind": "Components.Component",
"Name": "Blazorise.Steps",
"AssemblyName": "Blazorise",
@@ -86334,7 +86334,7 @@
}
},
{
- "HashCode": 681421401,
+ "HashCode": 1886981332,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Steps.Items",
"AssemblyName": "Blazorise",
@@ -86353,7 +86353,7 @@
}
},
{
- "HashCode": 1706238868,
+ "HashCode": 1358266590,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Steps.Items",
"AssemblyName": "Blazorise",
@@ -86373,7 +86373,7 @@
}
},
{
- "HashCode": -411395784,
+ "HashCode": 374833512,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Steps.Content",
"AssemblyName": "Blazorise",
@@ -86392,7 +86392,7 @@
}
},
{
- "HashCode": -45819318,
+ "HashCode": -573553655,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Steps.Content",
"AssemblyName": "Blazorise",
@@ -86412,7 +86412,7 @@
}
},
{
- "HashCode": -500777816,
+ "HashCode": -882741570,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Steps.ChildContent",
"AssemblyName": "Blazorise",
@@ -86431,7 +86431,7 @@
}
},
{
- "HashCode": 663228572,
+ "HashCode": 807815065,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Steps.ChildContent",
"AssemblyName": "Blazorise",
@@ -86451,7 +86451,7 @@
}
},
{
- "HashCode": -1726380577,
+ "HashCode": -298334858,
"Kind": "Components.Component",
"Name": "Blazorise.StepsContent",
"AssemblyName": "Blazorise",
@@ -86733,7 +86733,7 @@
}
},
{
- "HashCode": -624502470,
+ "HashCode": -1976648675,
"Kind": "Components.Component",
"Name": "Blazorise.StepsContent",
"AssemblyName": "Blazorise",
@@ -87016,7 +87016,7 @@
}
},
{
- "HashCode": 964874283,
+ "HashCode": -140873814,
"Kind": "Components.ChildContent",
"Name": "Blazorise.StepsContent.ChildContent",
"AssemblyName": "Blazorise",
@@ -87035,7 +87035,7 @@
}
},
{
- "HashCode": 1829067661,
+ "HashCode": -2039557824,
"Kind": "Components.ChildContent",
"Name": "Blazorise.StepsContent.ChildContent",
"AssemblyName": "Blazorise",
@@ -87055,7 +87055,7 @@
}
},
{
- "HashCode": -1876039048,
+ "HashCode": 634504360,
"Kind": "Components.Component",
"Name": "Blazorise.Switch",
"AssemblyName": "Blazorise",
@@ -87525,7 +87525,7 @@
}
},
{
- "HashCode": 663658322,
+ "HashCode": 2070398506,
"Kind": "Components.Component",
"Name": "Blazorise.Switch",
"AssemblyName": "Blazorise",
@@ -87996,7 +87996,7 @@
}
},
{
- "HashCode": 80033250,
+ "HashCode": 524147360,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Switch.Feedback",
"AssemblyName": "Blazorise",
@@ -88015,7 +88015,7 @@
}
},
{
- "HashCode": 309562099,
+ "HashCode": 1094041124,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Switch.Feedback",
"AssemblyName": "Blazorise",
@@ -88035,7 +88035,7 @@
}
},
{
- "HashCode": 578558591,
+ "HashCode": -487139741,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Switch.ChildContent",
"AssemblyName": "Blazorise",
@@ -88054,7 +88054,7 @@
}
},
{
- "HashCode": -1980747133,
+ "HashCode": -2081210118,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Switch.ChildContent",
"AssemblyName": "Blazorise",
@@ -88074,7 +88074,7 @@
}
},
{
- "HashCode": -991653014,
+ "HashCode": -1722500087,
"Kind": "Components.Component",
"Name": "Blazorise.Table",
"AssemblyName": "Blazorise",
@@ -88588,7 +88588,7 @@
}
},
{
- "HashCode": -918913219,
+ "HashCode": 2073455556,
"Kind": "Components.Component",
"Name": "Blazorise.Table",
"AssemblyName": "Blazorise",
@@ -89103,7 +89103,7 @@
}
},
{
- "HashCode": -92270245,
+ "HashCode": 1771830614,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Table.ChildContent",
"AssemblyName": "Blazorise",
@@ -89122,7 +89122,7 @@
}
},
{
- "HashCode": 1765719549,
+ "HashCode": 240020601,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Table.ChildContent",
"AssemblyName": "Blazorise",
@@ -89142,7 +89142,7 @@
}
},
{
- "HashCode": -69779029,
+ "HashCode": -1271440352,
"Kind": "Components.Component",
"Name": "Blazorise.TableBody",
"AssemblyName": "Blazorise",
@@ -89547,7 +89547,7 @@
}
},
{
- "HashCode": 1685075824,
+ "HashCode": -122164981,
"Kind": "Components.Component",
"Name": "Blazorise.TableBody",
"AssemblyName": "Blazorise",
@@ -89953,7 +89953,7 @@
}
},
{
- "HashCode": -994773592,
+ "HashCode": 1731754612,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -89972,7 +89972,7 @@
}
},
{
- "HashCode": -1618357931,
+ "HashCode": -1425300592,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableBody.ChildContent",
"AssemblyName": "Blazorise",
@@ -89992,7 +89992,7 @@
}
},
{
- "HashCode": 1769312695,
+ "HashCode": -395693475,
"Kind": "Components.Component",
"Name": "Blazorise.TableFooter",
"AssemblyName": "Blazorise",
@@ -90397,7 +90397,7 @@
}
},
{
- "HashCode": 44514669,
+ "HashCode": 1980007498,
"Kind": "Components.Component",
"Name": "Blazorise.TableFooter",
"AssemblyName": "Blazorise",
@@ -90803,7 +90803,7 @@
}
},
{
- "HashCode": -15067025,
+ "HashCode": 1880136157,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableFooter.ChildContent",
"AssemblyName": "Blazorise",
@@ -90822,7 +90822,7 @@
}
},
{
- "HashCode": 88636802,
+ "HashCode": 414775280,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableFooter.ChildContent",
"AssemblyName": "Blazorise",
@@ -90842,7 +90842,7 @@
}
},
{
- "HashCode": -69800065,
+ "HashCode": -716141487,
"Kind": "Components.Component",
"Name": "Blazorise.TableHeader",
"AssemblyName": "Blazorise",
@@ -91257,7 +91257,7 @@
}
},
{
- "HashCode": 1877301858,
+ "HashCode": -1508217333,
"Kind": "Components.Component",
"Name": "Blazorise.TableHeader",
"AssemblyName": "Blazorise",
@@ -91673,7 +91673,7 @@
}
},
{
- "HashCode": -369246395,
+ "HashCode": -245587569,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -91692,7 +91692,7 @@
}
},
{
- "HashCode": -1007118528,
+ "HashCode": -744708918,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -91712,7 +91712,7 @@
}
},
{
- "HashCode": 1728911208,
+ "HashCode": -1670706328,
"Kind": "Components.Component",
"Name": "Blazorise.TableHeaderCell",
"AssemblyName": "Blazorise",
@@ -92145,7 +92145,7 @@
}
},
{
- "HashCode": 2075646012,
+ "HashCode": -487522014,
"Kind": "Components.Component",
"Name": "Blazorise.TableHeaderCell",
"AssemblyName": "Blazorise",
@@ -92579,7 +92579,7 @@
}
},
{
- "HashCode": 838008246,
+ "HashCode": -1179908062,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableHeaderCell.ChildContent",
"AssemblyName": "Blazorise",
@@ -92598,7 +92598,7 @@
}
},
{
- "HashCode": -1807292103,
+ "HashCode": 682318787,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableHeaderCell.ChildContent",
"AssemblyName": "Blazorise",
@@ -92618,7 +92618,7 @@
}
},
{
- "HashCode": 330234715,
+ "HashCode": -2049724721,
"Kind": "Components.Component",
"Name": "Blazorise.TableRow",
"AssemblyName": "Blazorise",
@@ -93071,7 +93071,7 @@
}
},
{
- "HashCode": -578805544,
+ "HashCode": 323673193,
"Kind": "Components.Component",
"Name": "Blazorise.TableRow",
"AssemblyName": "Blazorise",
@@ -93525,7 +93525,7 @@
}
},
{
- "HashCode": -1493373113,
+ "HashCode": -1278223667,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableRow.ChildContent",
"AssemblyName": "Blazorise",
@@ -93544,7 +93544,7 @@
}
},
{
- "HashCode": 545643976,
+ "HashCode": 1222023377,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableRow.ChildContent",
"AssemblyName": "Blazorise",
@@ -93564,7 +93564,7 @@
}
},
{
- "HashCode": 1267310011,
+ "HashCode": 324293919,
"Kind": "Components.Component",
"Name": "Blazorise.TableRowCell",
"AssemblyName": "Blazorise",
@@ -94006,7 +94006,7 @@
}
},
{
- "HashCode": -381536143,
+ "HashCode": 919550460,
"Kind": "Components.Component",
"Name": "Blazorise.TableRowCell",
"AssemblyName": "Blazorise",
@@ -94449,7 +94449,7 @@
}
},
{
- "HashCode": 24234845,
+ "HashCode": 500220711,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableRowCell.ChildContent",
"AssemblyName": "Blazorise",
@@ -94468,7 +94468,7 @@
}
},
{
- "HashCode": 2085366230,
+ "HashCode": -892477564,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableRowCell.ChildContent",
"AssemblyName": "Blazorise",
@@ -94488,7 +94488,7 @@
}
},
{
- "HashCode": -1756494192,
+ "HashCode": -1184535587,
"Kind": "Components.Component",
"Name": "Blazorise.TableRowHeader",
"AssemblyName": "Blazorise",
@@ -94903,7 +94903,7 @@
}
},
{
- "HashCode": 1461975672,
+ "HashCode": -727430081,
"Kind": "Components.Component",
"Name": "Blazorise.TableRowHeader",
"AssemblyName": "Blazorise",
@@ -95319,7 +95319,7 @@
}
},
{
- "HashCode": 918478876,
+ "HashCode": 2088798118,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableRowHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -95338,7 +95338,7 @@
}
},
{
- "HashCode": -614765490,
+ "HashCode": 583949962,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TableRowHeader.ChildContent",
"AssemblyName": "Blazorise",
@@ -95358,7 +95358,7 @@
}
},
{
- "HashCode": -1787219965,
+ "HashCode": -2110396006,
"Kind": "Components.Component",
"Name": "Blazorise.Tab",
"AssemblyName": "Blazorise",
@@ -95649,7 +95649,7 @@
}
},
{
- "HashCode": 206418594,
+ "HashCode": -1272655073,
"Kind": "Components.Component",
"Name": "Blazorise.Tab",
"AssemblyName": "Blazorise",
@@ -95941,7 +95941,7 @@
}
},
{
- "HashCode": 1825768887,
+ "HashCode": -2041653351,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Tab.ChildContent",
"AssemblyName": "Blazorise",
@@ -95960,7 +95960,7 @@
}
},
{
- "HashCode": -1550178628,
+ "HashCode": 2003550286,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Tab.ChildContent",
"AssemblyName": "Blazorise",
@@ -95980,7 +95980,7 @@
}
},
{
- "HashCode": 377482756,
+ "HashCode": -954920704,
"Kind": "Components.Component",
"Name": "Blazorise.TabPanel",
"AssemblyName": "Blazorise",
@@ -96252,7 +96252,7 @@
}
},
{
- "HashCode": 532034249,
+ "HashCode": -2046433247,
"Kind": "Components.Component",
"Name": "Blazorise.TabPanel",
"AssemblyName": "Blazorise",
@@ -96525,7 +96525,7 @@
}
},
{
- "HashCode": 731600234,
+ "HashCode": 1204831924,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TabPanel.ChildContent",
"AssemblyName": "Blazorise",
@@ -96544,7 +96544,7 @@
}
},
{
- "HashCode": -912009539,
+ "HashCode": -546033608,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TabPanel.ChildContent",
"AssemblyName": "Blazorise",
@@ -96564,7 +96564,7 @@
}
},
{
- "HashCode": -1537823629,
+ "HashCode": 561337834,
"Kind": "Components.Component",
"Name": "Blazorise.Tabs",
"AssemblyName": "Blazorise",
@@ -96922,7 +96922,7 @@
}
},
{
- "HashCode": 1100631397,
+ "HashCode": -1718075510,
"Kind": "Components.Component",
"Name": "Blazorise.Tabs",
"AssemblyName": "Blazorise",
@@ -97281,7 +97281,7 @@
}
},
{
- "HashCode": 1643091467,
+ "HashCode": -1579171442,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Tabs.Items",
"AssemblyName": "Blazorise",
@@ -97300,7 +97300,7 @@
}
},
{
- "HashCode": -1622198684,
+ "HashCode": 2106508197,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Tabs.Items",
"AssemblyName": "Blazorise",
@@ -97320,7 +97320,7 @@
}
},
{
- "HashCode": 813395892,
+ "HashCode": 426879700,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Tabs.Content",
"AssemblyName": "Blazorise",
@@ -97339,7 +97339,7 @@
}
},
{
- "HashCode": 458001225,
+ "HashCode": 1198082292,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Tabs.Content",
"AssemblyName": "Blazorise",
@@ -97359,7 +97359,7 @@
}
},
{
- "HashCode": 42623358,
+ "HashCode": 686393517,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Tabs.ChildContent",
"AssemblyName": "Blazorise",
@@ -97378,7 +97378,7 @@
}
},
{
- "HashCode": -714608291,
+ "HashCode": 1067624679,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Tabs.ChildContent",
"AssemblyName": "Blazorise",
@@ -97398,7 +97398,7 @@
}
},
{
- "HashCode": -1354136770,
+ "HashCode": -1058872377,
"Kind": "Components.Component",
"Name": "Blazorise.TabsContent",
"AssemblyName": "Blazorise",
@@ -97680,7 +97680,7 @@
}
},
{
- "HashCode": 2140399387,
+ "HashCode": 973331802,
"Kind": "Components.Component",
"Name": "Blazorise.TabsContent",
"AssemblyName": "Blazorise",
@@ -97963,7 +97963,7 @@
}
},
{
- "HashCode": -1940630725,
+ "HashCode": 412798769,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TabsContent.ChildContent",
"AssemblyName": "Blazorise",
@@ -97982,7 +97982,7 @@
}
},
{
- "HashCode": -2056874331,
+ "HashCode": 803334812,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TabsContent.ChildContent",
"AssemblyName": "Blazorise",
@@ -98002,7 +98002,7 @@
}
},
{
- "HashCode": -11567698,
+ "HashCode": 1671734101,
"Kind": "Components.Component",
"Name": "Blazorise.TextEdit",
"AssemblyName": "Blazorise",
@@ -98548,7 +98548,7 @@
}
},
{
- "HashCode": 758712181,
+ "HashCode": 1733860710,
"Kind": "Components.Component",
"Name": "Blazorise.TextEdit",
"AssemblyName": "Blazorise",
@@ -99095,7 +99095,7 @@
}
},
{
- "HashCode": 716940383,
+ "HashCode": 2473932,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TextEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -99114,7 +99114,7 @@
}
},
{
- "HashCode": -362884429,
+ "HashCode": 1002391738,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TextEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -99134,7 +99134,7 @@
}
},
{
- "HashCode": -534685857,
+ "HashCode": -1268802090,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TextEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -99153,7 +99153,7 @@
}
},
{
- "HashCode": 1314903866,
+ "HashCode": 741559361,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TextEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -99173,7 +99173,7 @@
}
},
{
- "HashCode": 607865036,
+ "HashCode": -1957499282,
"Kind": "Components.Component",
"Name": "Blazorise.ThemeProvider",
"AssemblyName": "Blazorise",
@@ -99220,7 +99220,7 @@
}
},
{
- "HashCode": 44535179,
+ "HashCode": 363958827,
"Kind": "Components.Component",
"Name": "Blazorise.ThemeProvider",
"AssemblyName": "Blazorise",
@@ -99268,7 +99268,7 @@
}
},
{
- "HashCode": -636667021,
+ "HashCode": -1400012121,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ThemeProvider.ChildContent",
"AssemblyName": "Blazorise",
@@ -99287,7 +99287,7 @@
}
},
{
- "HashCode": -1584976688,
+ "HashCode": -308837650,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ThemeProvider.ChildContent",
"AssemblyName": "Blazorise",
@@ -99307,7 +99307,7 @@
}
},
{
- "HashCode": -130345337,
+ "HashCode": 604452042,
"Kind": "Components.Component",
"Name": "Blazorise.TimeEdit",
"AssemblyName": "Blazorise",
@@ -99839,7 +99839,7 @@
}
},
{
- "HashCode": 1191678737,
+ "HashCode": 556131913,
"Kind": "Components.Component",
"Name": "Blazorise.TimeEdit",
"AssemblyName": "Blazorise",
@@ -100372,7 +100372,7 @@
}
},
{
- "HashCode": -2043757193,
+ "HashCode": 1705884457,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TimeEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -100391,7 +100391,7 @@
}
},
{
- "HashCode": 1310876367,
+ "HashCode": -1724993659,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TimeEdit.Feedback",
"AssemblyName": "Blazorise",
@@ -100411,7 +100411,7 @@
}
},
{
- "HashCode": -1914916323,
+ "HashCode": -340315871,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TimeEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -100430,7 +100430,7 @@
}
},
{
- "HashCode": -254184935,
+ "HashCode": -797923374,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TimeEdit.ChildContent",
"AssemblyName": "Blazorise",
@@ -100450,7 +100450,7 @@
}
},
{
- "HashCode": 592429208,
+ "HashCode": -1498127495,
"Kind": "Components.Component",
"Name": "Blazorise.TimePicker",
"AssemblyName": "Blazorise",
@@ -100991,7 +100991,7 @@
}
},
{
- "HashCode": -1916646356,
+ "HashCode": 81890131,
"Kind": "Components.Component",
"Name": "Blazorise.TimePicker",
"AssemblyName": "Blazorise",
@@ -101533,7 +101533,7 @@
}
},
{
- "HashCode": 1615434620,
+ "HashCode": 396034851,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TimePicker.Feedback",
"AssemblyName": "Blazorise",
@@ -101552,7 +101552,7 @@
}
},
{
- "HashCode": -384917705,
+ "HashCode": -38687293,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TimePicker.Feedback",
"AssemblyName": "Blazorise",
@@ -101572,7 +101572,7 @@
}
},
{
- "HashCode": 895532476,
+ "HashCode": 402986253,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TimePicker.ChildContent",
"AssemblyName": "Blazorise",
@@ -101591,7 +101591,7 @@
}
},
{
- "HashCode": -1395192596,
+ "HashCode": -545432623,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TimePicker.ChildContent",
"AssemblyName": "Blazorise",
@@ -101611,7 +101611,7 @@
}
},
{
- "HashCode": -980526648,
+ "HashCode": -210542295,
"Kind": "Components.Component",
"Name": "Blazorise.Tooltip",
"AssemblyName": "Blazorise",
@@ -101966,7 +101966,7 @@
}
},
{
- "HashCode": 1187144063,
+ "HashCode": -743777591,
"Kind": "Components.Component",
"Name": "Blazorise.Tooltip",
"AssemblyName": "Blazorise",
@@ -102322,7 +102322,7 @@
}
},
{
- "HashCode": 1661419520,
+ "HashCode": -1286917962,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Tooltip.ChildContent",
"AssemblyName": "Blazorise",
@@ -102341,7 +102341,7 @@
}
},
{
- "HashCode": 2054245475,
+ "HashCode": -2010629009,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Tooltip.ChildContent",
"AssemblyName": "Blazorise",
@@ -102361,7 +102361,7 @@
}
},
{
- "HashCode": 144383622,
+ "HashCode": 949928669,
"Kind": "Components.Component",
"Name": "Blazorise.Blockquote",
"AssemblyName": "Blazorise",
@@ -102642,7 +102642,7 @@
}
},
{
- "HashCode": -605985429,
+ "HashCode": -1650137967,
"Kind": "Components.Component",
"Name": "Blazorise.Blockquote",
"AssemblyName": "Blazorise",
@@ -102924,7 +102924,7 @@
}
},
{
- "HashCode": 1829532194,
+ "HashCode": -25953999,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Blockquote.ChildContent",
"AssemblyName": "Blazorise",
@@ -102943,7 +102943,7 @@
}
},
{
- "HashCode": 267815519,
+ "HashCode": 3992104,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Blockquote.ChildContent",
"AssemblyName": "Blazorise",
@@ -102963,7 +102963,7 @@
}
},
{
- "HashCode": -1950064595,
+ "HashCode": 2042552819,
"Kind": "Components.Component",
"Name": "Blazorise.BlockquoteFooter",
"AssemblyName": "Blazorise",
@@ -103244,7 +103244,7 @@
}
},
{
- "HashCode": 2097260496,
+ "HashCode": 1697647701,
"Kind": "Components.Component",
"Name": "Blazorise.BlockquoteFooter",
"AssemblyName": "Blazorise",
@@ -103526,7 +103526,7 @@
}
},
{
- "HashCode": 163810359,
+ "HashCode": -1723691723,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BlockquoteFooter.ChildContent",
"AssemblyName": "Blazorise",
@@ -103545,7 +103545,7 @@
}
},
{
- "HashCode": 2086436787,
+ "HashCode": -964323549,
"Kind": "Components.ChildContent",
"Name": "Blazorise.BlockquoteFooter.ChildContent",
"AssemblyName": "Blazorise",
@@ -103565,7 +103565,7 @@
}
},
{
- "HashCode": 137416102,
+ "HashCode": -1358319748,
"Kind": "Components.Component",
"Name": "Blazorise.Code",
"AssemblyName": "Blazorise",
@@ -103855,7 +103855,7 @@
}
},
{
- "HashCode": -1596863207,
+ "HashCode": 1294813276,
"Kind": "Components.Component",
"Name": "Blazorise.Code",
"AssemblyName": "Blazorise",
@@ -104146,7 +104146,7 @@
}
},
{
- "HashCode": -363231832,
+ "HashCode": 1857043400,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Code.ChildContent",
"AssemblyName": "Blazorise",
@@ -104165,7 +104165,7 @@
}
},
{
- "HashCode": 2043860011,
+ "HashCode": -1606186628,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Code.ChildContent",
"AssemblyName": "Blazorise",
@@ -104185,7 +104185,7 @@
}
},
{
- "HashCode": 36610177,
+ "HashCode": 1392246607,
"Kind": "Components.Component",
"Name": "Blazorise.DescriptionList",
"AssemblyName": "Blazorise",
@@ -104475,7 +104475,7 @@
}
},
{
- "HashCode": -1488441101,
+ "HashCode": -1457889134,
"Kind": "Components.Component",
"Name": "Blazorise.DescriptionList",
"AssemblyName": "Blazorise",
@@ -104766,7 +104766,7 @@
}
},
{
- "HashCode": 69234250,
+ "HashCode": -1105338448,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DescriptionList.ChildContent",
"AssemblyName": "Blazorise",
@@ -104785,7 +104785,7 @@
}
},
{
- "HashCode": -1102223576,
+ "HashCode": 755507670,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DescriptionList.ChildContent",
"AssemblyName": "Blazorise",
@@ -104805,7 +104805,7 @@
}
},
{
- "HashCode": -1525644961,
+ "HashCode": -1743545896,
"Kind": "Components.Component",
"Name": "Blazorise.DescriptionListDefinition",
"AssemblyName": "Blazorise",
@@ -105095,7 +105095,7 @@
}
},
{
- "HashCode": -874119698,
+ "HashCode": -725991701,
"Kind": "Components.Component",
"Name": "Blazorise.DescriptionListDefinition",
"AssemblyName": "Blazorise",
@@ -105386,7 +105386,7 @@
}
},
{
- "HashCode": -1859858191,
+ "HashCode": 190027017,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DescriptionListDefinition.ChildContent",
"AssemblyName": "Blazorise",
@@ -105405,7 +105405,7 @@
}
},
{
- "HashCode": -1154956617,
+ "HashCode": -1842681131,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DescriptionListDefinition.ChildContent",
"AssemblyName": "Blazorise",
@@ -105425,7 +105425,7 @@
}
},
{
- "HashCode": 2017333630,
+ "HashCode": -1634818558,
"Kind": "Components.Component",
"Name": "Blazorise.DescriptionListTerm",
"AssemblyName": "Blazorise",
@@ -105715,7 +105715,7 @@
}
},
{
- "HashCode": 405055602,
+ "HashCode": 1594958329,
"Kind": "Components.Component",
"Name": "Blazorise.DescriptionListTerm",
"AssemblyName": "Blazorise",
@@ -106006,7 +106006,7 @@
}
},
{
- "HashCode": -1835936550,
+ "HashCode": -1822499324,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DescriptionListTerm.ChildContent",
"AssemblyName": "Blazorise",
@@ -106025,7 +106025,7 @@
}
},
{
- "HashCode": -189233941,
+ "HashCode": -706970588,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DescriptionListTerm.ChildContent",
"AssemblyName": "Blazorise",
@@ -106045,7 +106045,7 @@
}
},
{
- "HashCode": 1262200829,
+ "HashCode": -1139691918,
"Kind": "Components.Component",
"Name": "Blazorise.DisplayHeading",
"AssemblyName": "Blazorise",
@@ -106336,7 +106336,7 @@
}
},
{
- "HashCode": -394560455,
+ "HashCode": 2132253777,
"Kind": "Components.Component",
"Name": "Blazorise.DisplayHeading",
"AssemblyName": "Blazorise",
@@ -106628,7 +106628,7 @@
}
},
{
- "HashCode": -1806860640,
+ "HashCode": -2129134738,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DisplayHeading.ChildContent",
"AssemblyName": "Blazorise",
@@ -106647,7 +106647,7 @@
}
},
{
- "HashCode": -518016067,
+ "HashCode": -267393770,
"Kind": "Components.ChildContent",
"Name": "Blazorise.DisplayHeading.ChildContent",
"AssemblyName": "Blazorise",
@@ -106667,7 +106667,7 @@
}
},
{
- "HashCode": 1470291985,
+ "HashCode": 580880197,
"Kind": "Components.Component",
"Name": "Blazorise.Heading",
"AssemblyName": "Blazorise",
@@ -106958,7 +106958,7 @@
}
},
{
- "HashCode": 1949597207,
+ "HashCode": -1909097658,
"Kind": "Components.Component",
"Name": "Blazorise.Heading",
"AssemblyName": "Blazorise",
@@ -107250,7 +107250,7 @@
}
},
{
- "HashCode": -1224851234,
+ "HashCode": -502062500,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Heading.ChildContent",
"AssemblyName": "Blazorise",
@@ -107269,7 +107269,7 @@
}
},
{
- "HashCode": 1161047101,
+ "HashCode": 2087772593,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Heading.ChildContent",
"AssemblyName": "Blazorise",
@@ -107289,7 +107289,7 @@
}
},
{
- "HashCode": -1341265284,
+ "HashCode": 413601469,
"Kind": "Components.Component",
"Name": "Blazorise.OrderedList",
"AssemblyName": "Blazorise",
@@ -107589,7 +107589,7 @@
}
},
{
- "HashCode": 407805008,
+ "HashCode": -1007689389,
"Kind": "Components.Component",
"Name": "Blazorise.OrderedList",
"AssemblyName": "Blazorise",
@@ -107890,7 +107890,7 @@
}
},
{
- "HashCode": 334737562,
+ "HashCode": -1597275756,
"Kind": "Components.ChildContent",
"Name": "Blazorise.OrderedList.ChildContent",
"AssemblyName": "Blazorise",
@@ -107909,7 +107909,7 @@
}
},
{
- "HashCode": -1214438060,
+ "HashCode": 1565067669,
"Kind": "Components.ChildContent",
"Name": "Blazorise.OrderedList.ChildContent",
"AssemblyName": "Blazorise",
@@ -107929,7 +107929,7 @@
}
},
{
- "HashCode": -1672093220,
+ "HashCode": -378086581,
"Kind": "Components.Component",
"Name": "Blazorise.OrderedListItem",
"AssemblyName": "Blazorise",
@@ -108210,7 +108210,7 @@
}
},
{
- "HashCode": 235758919,
+ "HashCode": -1784984946,
"Kind": "Components.Component",
"Name": "Blazorise.OrderedListItem",
"AssemblyName": "Blazorise",
@@ -108492,7 +108492,7 @@
}
},
{
- "HashCode": 575823731,
+ "HashCode": 1768691819,
"Kind": "Components.ChildContent",
"Name": "Blazorise.OrderedListItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -108511,7 +108511,7 @@
}
},
{
- "HashCode": 2129566022,
+ "HashCode": 207920520,
"Kind": "Components.ChildContent",
"Name": "Blazorise.OrderedListItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -108531,7 +108531,7 @@
}
},
{
- "HashCode": 1019578034,
+ "HashCode": 1501464256,
"Kind": "Components.Component",
"Name": "Blazorise.Paragraph",
"AssemblyName": "Blazorise",
@@ -108812,7 +108812,7 @@
}
},
{
- "HashCode": 932897343,
+ "HashCode": -1064738898,
"Kind": "Components.Component",
"Name": "Blazorise.Paragraph",
"AssemblyName": "Blazorise",
@@ -109094,7 +109094,7 @@
}
},
{
- "HashCode": 1347183747,
+ "HashCode": 191450135,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Paragraph.ChildContent",
"AssemblyName": "Blazorise",
@@ -109113,7 +109113,7 @@
}
},
{
- "HashCode": -763519659,
+ "HashCode": 532827851,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Paragraph.ChildContent",
"AssemblyName": "Blazorise",
@@ -109133,7 +109133,7 @@
}
},
{
- "HashCode": 1869963314,
+ "HashCode": 303276779,
"Kind": "Components.Component",
"Name": "Blazorise.Text",
"AssemblyName": "Blazorise",
@@ -109414,7 +109414,7 @@
}
},
{
- "HashCode": -1737610836,
+ "HashCode": 1414982448,
"Kind": "Components.Component",
"Name": "Blazorise.Text",
"AssemblyName": "Blazorise",
@@ -109696,7 +109696,7 @@
}
},
{
- "HashCode": -282614444,
+ "HashCode": -983633917,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Text.ChildContent",
"AssemblyName": "Blazorise",
@@ -109715,7 +109715,7 @@
}
},
{
- "HashCode": 1691676821,
+ "HashCode": 168002349,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Text.ChildContent",
"AssemblyName": "Blazorise",
@@ -109735,7 +109735,7 @@
}
},
{
- "HashCode": -1142298493,
+ "HashCode": 479171231,
"Kind": "Components.Component",
"Name": "Blazorise.UnorderedList",
"AssemblyName": "Blazorise",
@@ -110025,7 +110025,7 @@
}
},
{
- "HashCode": 1039754367,
+ "HashCode": -584834429,
"Kind": "Components.Component",
"Name": "Blazorise.UnorderedList",
"AssemblyName": "Blazorise",
@@ -110316,7 +110316,7 @@
}
},
{
- "HashCode": 220851460,
+ "HashCode": 1334939182,
"Kind": "Components.ChildContent",
"Name": "Blazorise.UnorderedList.ChildContent",
"AssemblyName": "Blazorise",
@@ -110335,7 +110335,7 @@
}
},
{
- "HashCode": -1870139059,
+ "HashCode": 1702456592,
"Kind": "Components.ChildContent",
"Name": "Blazorise.UnorderedList.ChildContent",
"AssemblyName": "Blazorise",
@@ -110355,7 +110355,7 @@
}
},
{
- "HashCode": -1480903143,
+ "HashCode": 1932497267,
"Kind": "Components.Component",
"Name": "Blazorise.UnorderedListItem",
"AssemblyName": "Blazorise",
@@ -110636,7 +110636,7 @@
}
},
{
- "HashCode": 171527455,
+ "HashCode": 816983669,
"Kind": "Components.Component",
"Name": "Blazorise.UnorderedListItem",
"AssemblyName": "Blazorise",
@@ -110918,7 +110918,7 @@
}
},
{
- "HashCode": 1318866799,
+ "HashCode": -1418101995,
"Kind": "Components.ChildContent",
"Name": "Blazorise.UnorderedListItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -110937,7 +110937,7 @@
}
},
{
- "HashCode": 1638510120,
+ "HashCode": 878464949,
"Kind": "Components.ChildContent",
"Name": "Blazorise.UnorderedListItem.ChildContent",
"AssemblyName": "Blazorise",
@@ -110957,7 +110957,7 @@
}
},
{
- "HashCode": 1323526185,
+ "HashCode": -432863910,
"Kind": "Components.Component",
"Name": "Blazorise.Validation",
"AssemblyName": "Blazorise",
@@ -111054,7 +111054,7 @@
}
},
{
- "HashCode": -431371417,
+ "HashCode": -782138307,
"Kind": "Components.Component",
"Name": "Blazorise.Validation",
"AssemblyName": "Blazorise",
@@ -111152,7 +111152,7 @@
}
},
{
- "HashCode": 537898038,
+ "HashCode": -1187476559,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Validation.ChildContent",
"AssemblyName": "Blazorise",
@@ -111171,7 +111171,7 @@
}
},
{
- "HashCode": -8061523,
+ "HashCode": -1448863090,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Validation.ChildContent",
"AssemblyName": "Blazorise",
@@ -111191,7 +111191,7 @@
}
},
{
- "HashCode": -2015535251,
+ "HashCode": 1654681533,
"Kind": "Components.Component",
"Name": "Blazorise.ValidationError",
"AssemblyName": "Blazorise",
@@ -111472,7 +111472,7 @@
}
},
{
- "HashCode": 371070176,
+ "HashCode": -1358927573,
"Kind": "Components.Component",
"Name": "Blazorise.ValidationError",
"AssemblyName": "Blazorise",
@@ -111754,7 +111754,7 @@
}
},
{
- "HashCode": 702043761,
+ "HashCode": -68232153,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ValidationError.ChildContent",
"AssemblyName": "Blazorise",
@@ -111773,7 +111773,7 @@
}
},
{
- "HashCode": -1461390769,
+ "HashCode": 706650036,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ValidationError.ChildContent",
"AssemblyName": "Blazorise",
@@ -111793,7 +111793,7 @@
}
},
{
- "HashCode": -1680193389,
+ "HashCode": -1341108599,
"Kind": "Components.Component",
"Name": "Blazorise.ValidationNone",
"AssemblyName": "Blazorise",
@@ -112056,7 +112056,7 @@
}
},
{
- "HashCode": -546474362,
+ "HashCode": -196002520,
"Kind": "Components.Component",
"Name": "Blazorise.ValidationNone",
"AssemblyName": "Blazorise",
@@ -112320,7 +112320,7 @@
}
},
{
- "HashCode": 748411959,
+ "HashCode": 1030515948,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ValidationNone.ChildContent",
"AssemblyName": "Blazorise",
@@ -112339,7 +112339,7 @@
}
},
{
- "HashCode": 1219973019,
+ "HashCode": -1896063934,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ValidationNone.ChildContent",
"AssemblyName": "Blazorise",
@@ -112359,7 +112359,7 @@
}
},
{
- "HashCode": -282227797,
+ "HashCode": -79098290,
"Kind": "Components.Component",
"Name": "Blazorise.Validations",
"AssemblyName": "Blazorise",
@@ -112454,7 +112454,7 @@
}
},
{
- "HashCode": 874325908,
+ "HashCode": 1012199583,
"Kind": "Components.Component",
"Name": "Blazorise.Validations",
"AssemblyName": "Blazorise",
@@ -112550,7 +112550,7 @@
}
},
{
- "HashCode": -1707880457,
+ "HashCode": -1344773001,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Validations.ChildContent",
"AssemblyName": "Blazorise",
@@ -112569,7 +112569,7 @@
}
},
{
- "HashCode": -1706242785,
+ "HashCode": 1960978241,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Validations.ChildContent",
"AssemblyName": "Blazorise",
@@ -112589,7 +112589,7 @@
}
},
{
- "HashCode": -2063592035,
+ "HashCode": 1335609821,
"Kind": "Components.Component",
"Name": "Blazorise.ValidationSuccess",
"AssemblyName": "Blazorise",
@@ -112861,7 +112861,7 @@
}
},
{
- "HashCode": -1332297812,
+ "HashCode": -916290776,
"Kind": "Components.Component",
"Name": "Blazorise.ValidationSuccess",
"AssemblyName": "Blazorise",
@@ -113134,7 +113134,7 @@
}
},
{
- "HashCode": -1631718630,
+ "HashCode": -1009261183,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ValidationSuccess.ChildContent",
"AssemblyName": "Blazorise",
@@ -113153,7 +113153,7 @@
}
},
{
- "HashCode": 870287246,
+ "HashCode": -1197568936,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ValidationSuccess.ChildContent",
"AssemblyName": "Blazorise",
@@ -113173,7 +113173,7 @@
}
},
{
- "HashCode": 1449398496,
+ "HashCode": 1429434179,
"Kind": "Components.Component",
"Name": "Blazorise.ValidationSummary",
"AssemblyName": "Blazorise",
@@ -113454,7 +113454,7 @@
}
},
{
- "HashCode": 1233501897,
+ "HashCode": 1132113410,
"Kind": "Components.Component",
"Name": "Blazorise.ValidationSummary",
"AssemblyName": "Blazorise",
@@ -113736,7 +113736,7 @@
}
},
{
- "HashCode": 1091445080,
+ "HashCode": 2091101496,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ValidationSummary.ChildContent",
"AssemblyName": "Blazorise",
@@ -113755,7 +113755,7 @@
}
},
{
- "HashCode": -590843439,
+ "HashCode": -1500150621,
"Kind": "Components.ChildContent",
"Name": "Blazorise.ValidationSummary.ChildContent",
"AssemblyName": "Blazorise",
@@ -113775,7 +113775,7 @@
}
},
{
- "HashCode": 707845829,
+ "HashCode": -2129816910,
"Kind": "Components.Component",
"Name": "Blazorise.Abbreviation",
"AssemblyName": "Blazorise",
@@ -114047,7 +114047,7 @@
}
},
{
- "HashCode": 710140171,
+ "HashCode": 2084296336,
"Kind": "Components.Component",
"Name": "Blazorise.Abbreviation",
"AssemblyName": "Blazorise",
@@ -114320,7 +114320,7 @@
}
},
{
- "HashCode": -1197516917,
+ "HashCode": -723564823,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Abbreviation.ChildContent",
"AssemblyName": "Blazorise",
@@ -114339,7 +114339,7 @@
}
},
{
- "HashCode": -1381202814,
+ "HashCode": 1129433602,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Abbreviation.ChildContent",
"AssemblyName": "Blazorise",
@@ -114359,7 +114359,7 @@
}
},
{
- "HashCode": -699207267,
+ "HashCode": -971524965,
"Kind": "Components.Component",
"Name": "Blazorise.Address",
"AssemblyName": "Blazorise",
@@ -114622,7 +114622,7 @@
}
},
{
- "HashCode": -1445899718,
+ "HashCode": 279568669,
"Kind": "Components.Component",
"Name": "Blazorise.Address",
"AssemblyName": "Blazorise",
@@ -114886,7 +114886,7 @@
}
},
{
- "HashCode": -518176400,
+ "HashCode": 1113132460,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Address.ChildContent",
"AssemblyName": "Blazorise",
@@ -114905,7 +114905,7 @@
}
},
{
- "HashCode": 3878321,
+ "HashCode": -10140918,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Address.ChildContent",
"AssemblyName": "Blazorise",
@@ -114925,7 +114925,7 @@
}
},
{
- "HashCode": 1685765084,
+ "HashCode": -1390755532,
"Kind": "Components.Component",
"Name": "Blazorise.Div",
"AssemblyName": "Blazorise",
@@ -115188,7 +115188,7 @@
}
},
{
- "HashCode": 510103124,
+ "HashCode": 1353616605,
"Kind": "Components.Component",
"Name": "Blazorise.Div",
"AssemblyName": "Blazorise",
@@ -115452,7 +115452,7 @@
}
},
{
- "HashCode": 1042975963,
+ "HashCode": 437251368,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Div.ChildContent",
"AssemblyName": "Blazorise",
@@ -115471,7 +115471,7 @@
}
},
{
- "HashCode": 993691553,
+ "HashCode": -1048076589,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Div.ChildContent",
"AssemblyName": "Blazorise",
@@ -115491,7 +115491,7 @@
}
},
{
- "HashCode": -774212345,
+ "HashCode": 236887798,
"Kind": "Components.Component",
"Name": "Blazorise.Small",
"AssemblyName": "Blazorise",
@@ -115754,7 +115754,7 @@
}
},
{
- "HashCode": -957777642,
+ "HashCode": -1841303512,
"Kind": "Components.Component",
"Name": "Blazorise.Small",
"AssemblyName": "Blazorise",
@@ -116018,7 +116018,7 @@
}
},
{
- "HashCode": 1056308587,
+ "HashCode": 1624499734,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Small.ChildContent",
"AssemblyName": "Blazorise",
@@ -116037,7 +116037,7 @@
}
},
{
- "HashCode": -1866213781,
+ "HashCode": -1574294720,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Small.ChildContent",
"AssemblyName": "Blazorise",
@@ -116057,7 +116057,7 @@
}
},
{
- "HashCode": -2097711624,
+ "HashCode": 255917849,
"Kind": "Components.Component",
"Name": "Blazorise.Span",
"AssemblyName": "Blazorise",
@@ -116320,7 +116320,7 @@
}
},
{
- "HashCode": 1114175159,
+ "HashCode": 1921294459,
"Kind": "Components.Component",
"Name": "Blazorise.Span",
"AssemblyName": "Blazorise",
@@ -116584,7 +116584,7 @@
}
},
{
- "HashCode": 280122075,
+ "HashCode": 1429430986,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Span.ChildContent",
"AssemblyName": "Blazorise",
@@ -116603,7 +116603,7 @@
}
},
{
- "HashCode": 282335740,
+ "HashCode": 42677993,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Span.ChildContent",
"AssemblyName": "Blazorise",
@@ -116623,7 +116623,7 @@
}
},
{
- "HashCode": -1260234508,
+ "HashCode": -700826016,
"Kind": "Components.Component",
"Name": "Blazorise.Strong",
"AssemblyName": "Blazorise",
@@ -116886,7 +116886,7 @@
}
},
{
- "HashCode": 1954901024,
+ "HashCode": -964916651,
"Kind": "Components.Component",
"Name": "Blazorise.Strong",
"AssemblyName": "Blazorise",
@@ -117150,7 +117150,7 @@
}
},
{
- "HashCode": 1611693282,
+ "HashCode": -1850984242,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Strong.ChildContent",
"AssemblyName": "Blazorise",
@@ -117169,7 +117169,7 @@
}
},
{
- "HashCode": -1046786306,
+ "HashCode": 410337818,
"Kind": "Components.ChildContent",
"Name": "Blazorise.Strong.ChildContent",
"AssemblyName": "Blazorise",
@@ -117189,7 +117189,7 @@
}
},
{
- "HashCode": -534570560,
+ "HashCode": 77922989,
"Kind": "Components.Component",
"Name": "Blazorise._Imports",
"AssemblyName": "Blazorise",
@@ -117205,7 +117205,7 @@
}
},
{
- "HashCode": -174572095,
+ "HashCode": -1112181868,
"Kind": "Components.Component",
"Name": "Blazorise._Imports",
"AssemblyName": "Blazorise",
@@ -117222,7 +117222,7 @@
}
},
{
- "HashCode": -366948979,
+ "HashCode": 1409930253,
"Kind": "Components.Component",
"Name": "Blazorise.TreeView.TreeView",
"AssemblyName": "Blazorise.TreeView",
@@ -117612,7 +117612,7 @@
}
},
{
- "HashCode": 1755278504,
+ "HashCode": -640264183,
"Kind": "Components.Component",
"Name": "Blazorise.TreeView.TreeView",
"AssemblyName": "Blazorise.TreeView",
@@ -118003,7 +118003,7 @@
}
},
{
- "HashCode": 1903088967,
+ "HashCode": 1739604376,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TreeView.TreeView.NodeContent",
"AssemblyName": "Blazorise.TreeView",
@@ -118034,7 +118034,7 @@
}
},
{
- "HashCode": 169399133,
+ "HashCode": -1592055424,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TreeView.TreeView.NodeContent",
"AssemblyName": "Blazorise.TreeView",
@@ -118066,7 +118066,7 @@
}
},
{
- "HashCode": -468938125,
+ "HashCode": 1632200425,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TreeView.TreeView.ChildContent",
"AssemblyName": "Blazorise.TreeView",
@@ -118084,7 +118084,7 @@
}
},
{
- "HashCode": 108045166,
+ "HashCode": -1490666843,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TreeView.TreeView.ChildContent",
"AssemblyName": "Blazorise.TreeView",
@@ -118103,7 +118103,7 @@
}
},
{
- "HashCode": 1630215448,
+ "HashCode": -1211038066,
"Kind": "Components.Component",
"Name": "Blazorise.TreeView._TreeViewNode",
"AssemblyName": "Blazorise.TreeView",
@@ -118474,7 +118474,7 @@
}
},
{
- "HashCode": -52308674,
+ "HashCode": -820851320,
"Kind": "Components.Component",
"Name": "Blazorise.TreeView._TreeViewNode",
"AssemblyName": "Blazorise.TreeView",
@@ -118846,7 +118846,7 @@
}
},
{
- "HashCode": -2014509997,
+ "HashCode": -1023129506,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TreeView._TreeViewNode.NodeContent",
"AssemblyName": "Blazorise.TreeView",
@@ -118876,7 +118876,7 @@
}
},
{
- "HashCode": -446983753,
+ "HashCode": 36426215,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TreeView._TreeViewNode.NodeContent",
"AssemblyName": "Blazorise.TreeView",
@@ -118907,7 +118907,7 @@
}
},
{
- "HashCode": 1760347925,
+ "HashCode": -1329686254,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TreeView._TreeViewNode.ChildContent",
"AssemblyName": "Blazorise.TreeView",
@@ -118925,7 +118925,7 @@
}
},
{
- "HashCode": -656229844,
+ "HashCode": 1356241595,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TreeView._TreeViewNode.ChildContent",
"AssemblyName": "Blazorise.TreeView",
@@ -118944,7 +118944,7 @@
}
},
{
- "HashCode": -453222834,
+ "HashCode": 818671217,
"Kind": "Components.Component",
"Name": "Blazorise.TreeView._TreeViewNodeContent",
"AssemblyName": "Blazorise.TreeView",
@@ -119248,7 +119248,7 @@
}
},
{
- "HashCode": 2128980975,
+ "HashCode": 924879990,
"Kind": "Components.Component",
"Name": "Blazorise.TreeView._TreeViewNodeContent",
"AssemblyName": "Blazorise.TreeView",
@@ -119553,7 +119553,7 @@
}
},
{
- "HashCode": -1517838687,
+ "HashCode": 1182088556,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TreeView._TreeViewNodeContent.ChildContent",
"AssemblyName": "Blazorise.TreeView",
@@ -119571,7 +119571,7 @@
}
},
{
- "HashCode": 614702838,
+ "HashCode": 1145748809,
"Kind": "Components.ChildContent",
"Name": "Blazorise.TreeView._TreeViewNodeContent.ChildContent",
"AssemblyName": "Blazorise.TreeView",
@@ -119590,7 +119590,7 @@
}
},
{
- "HashCode": 1546081635,
+ "HashCode": -1363212755,
"Kind": "Components.Component",
"Name": "Blazorise.TreeView._Imports",
"AssemblyName": "Blazorise.TreeView",
@@ -119606,7 +119606,7 @@
}
},
{
- "HashCode": -1051757053,
+ "HashCode": 349225529,
"Kind": "Components.Component",
"Name": "Blazorise.TreeView._Imports",
"AssemblyName": "Blazorise.TreeView",
@@ -119623,7 +119623,7 @@
}
},
{
- "HashCode": 2121561041,
+ "HashCode": -368255735,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -119700,7 +119700,7 @@
}
},
{
- "HashCode": -942028738,
+ "HashCode": 488065738,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -119778,7 +119778,7 @@
}
},
{
- "HashCode": 870285718,
+ "HashCode": 1369109644,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -119809,7 +119809,7 @@
}
},
{
- "HashCode": 1636259266,
+ "HashCode": 94735360,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -119841,7 +119841,7 @@
}
},
{
- "HashCode": -1872687544,
+ "HashCode": -1685588990,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -119860,7 +119860,7 @@
}
},
{
- "HashCode": -1239197063,
+ "HashCode": 1125045409,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -119880,7 +119880,7 @@
}
},
{
- "HashCode": -1165268587,
+ "HashCode": -982730134,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -119976,7 +119976,7 @@
}
},
{
- "HashCode": -669322022,
+ "HashCode": 1311255414,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120073,7 +120073,7 @@
}
},
{
- "HashCode": 414047906,
+ "HashCode": -1910885985,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120104,7 +120104,7 @@
}
},
{
- "HashCode": 290107177,
+ "HashCode": -2132974599,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120136,7 +120136,7 @@
}
},
{
- "HashCode": -79742699,
+ "HashCode": 1444944531,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120167,7 +120167,7 @@
}
},
{
- "HashCode": -254196738,
+ "HashCode": 480291587,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120199,7 +120199,7 @@
}
},
{
- "HashCode": -262029594,
+ "HashCode": 684527250,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120230,7 +120230,7 @@
}
},
{
- "HashCode": -963273423,
+ "HashCode": 25751207,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120262,7 +120262,7 @@
}
},
{
- "HashCode": -1822683243,
+ "HashCode": 612703624,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120281,7 +120281,7 @@
}
},
{
- "HashCode": -1773023910,
+ "HashCode": -1757480269,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120301,7 +120301,7 @@
}
},
{
- "HashCode": -420744837,
+ "HashCode": -872099765,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120329,7 +120329,7 @@
}
},
{
- "HashCode": 352834130,
+ "HashCode": 704270045,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120358,7 +120358,7 @@
}
},
{
- "HashCode": -678370359,
+ "HashCode": -1422352136,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120377,7 +120377,7 @@
}
},
{
- "HashCode": 961480804,
+ "HashCode": 569640346,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -120397,7 +120397,7 @@
}
},
{
- "HashCode": -2050819389,
+ "HashCode": -222366915,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.CascadingValue",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120466,7 +120466,7 @@
}
},
{
- "HashCode": -580022195,
+ "HashCode": -310244300,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.CascadingValue",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120536,7 +120536,7 @@
}
},
{
- "HashCode": 67732089,
+ "HashCode": -257354031,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120555,7 +120555,7 @@
}
},
{
- "HashCode": 681559381,
+ "HashCode": 2103531069,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120575,7 +120575,7 @@
}
},
{
- "HashCode": 214661964,
+ "HashCode": 1123658677,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.DynamicComponent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120613,7 +120613,7 @@
}
},
{
- "HashCode": 458739233,
+ "HashCode": 686502057,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.DynamicComponent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120652,7 +120652,7 @@
}
},
{
- "HashCode": 668621198,
+ "HashCode": -1926093827,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.LayoutView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120690,7 +120690,7 @@
}
},
{
- "HashCode": 870348651,
+ "HashCode": 2030925835,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.LayoutView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120729,7 +120729,7 @@
}
},
{
- "HashCode": 1782095982,
+ "HashCode": 55590910,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120748,7 +120748,7 @@
}
},
{
- "HashCode": -1737958057,
+ "HashCode": 564305275,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120768,7 +120768,7 @@
}
},
{
- "HashCode": -440514318,
+ "HashCode": -880065705,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.RouteView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120806,7 +120806,7 @@
}
},
{
- "HashCode": 1257681064,
+ "HashCode": 654803494,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.RouteView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120845,7 +120845,7 @@
}
},
{
- "HashCode": 1681590557,
+ "HashCode": -1108295360,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.Router",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -120944,7 +120944,7 @@
}
},
{
- "HashCode": 787163489,
+ "HashCode": 1290577485,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.Router",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -121044,7 +121044,7 @@
}
},
{
- "HashCode": 161283511,
+ "HashCode": -548486257,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -121063,7 +121063,7 @@
}
},
{
- "HashCode": 1803834916,
+ "HashCode": 915285019,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -121083,7 +121083,7 @@
}
},
{
- "HashCode": -230643096,
+ "HashCode": -1536101042,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Found",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -121114,7 +121114,7 @@
}
},
{
- "HashCode": -1493384725,
+ "HashCode": 1291725054,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Found",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -121146,7 +121146,7 @@
}
},
{
- "HashCode": -1736308809,
+ "HashCode": -516263606,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -121165,7 +121165,7 @@
}
},
{
- "HashCode": 899850367,
+ "HashCode": -1469398382,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -121185,7 +121185,7 @@
}
},
{
- "HashCode": -247575972,
+ "HashCode": 2102170556,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
"AssemblyName": "Microsoft.AspNetCore.Components.Forms",
@@ -121202,7 +121202,7 @@
}
},
{
- "HashCode": 1797472468,
+ "HashCode": -482688983,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
"AssemblyName": "Microsoft.AspNetCore.Components.Forms",
@@ -121220,7 +121220,7 @@
}
},
{
- "HashCode": -452896661,
+ "HashCode": 1628443878,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -121316,7 +121316,7 @@
}
},
{
- "HashCode": 909864264,
+ "HashCode": -195256721,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -121413,7 +121413,7 @@
}
},
{
- "HashCode": 975716500,
+ "HashCode": 445342415,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -121444,7 +121444,7 @@
}
},
{
- "HashCode": -661819599,
+ "HashCode": 524038033,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -121476,7 +121476,7 @@
}
},
{
- "HashCode": 147494700,
+ "HashCode": 1252144048,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -121541,7 +121541,7 @@
}
},
{
- "HashCode": 108741570,
+ "HashCode": -1464424535,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -121607,7 +121607,7 @@
}
},
{
- "HashCode": 1376972735,
+ "HashCode": -1359623576,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -121706,7 +121706,7 @@
}
},
{
- "HashCode": 1628593191,
+ "HashCode": -692813882,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -121806,7 +121806,7 @@
}
},
{
- "HashCode": 97929097,
+ "HashCode": 1910090075,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputFile",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -121844,7 +121844,7 @@
}
},
{
- "HashCode": 1477077814,
+ "HashCode": -1923953246,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputFile",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -121883,7 +121883,7 @@
}
},
{
- "HashCode": -235102393,
+ "HashCode": 1943284099,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -121972,7 +121972,7 @@
}
},
{
- "HashCode": -1988918278,
+ "HashCode": -361165754,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122062,7 +122062,7 @@
}
},
{
- "HashCode": -979720853,
+ "HashCode": -757303608,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadio",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122121,7 +122121,7 @@
}
},
{
- "HashCode": -1733717885,
+ "HashCode": -848338056,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadio",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122181,7 +122181,7 @@
}
},
{
- "HashCode": 1601423437,
+ "HashCode": 1953175110,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122280,7 +122280,7 @@
}
},
{
- "HashCode": -33891971,
+ "HashCode": 474206850,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122380,7 +122380,7 @@
}
},
{
- "HashCode": -1862358816,
+ "HashCode": 630686013,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122399,7 +122399,7 @@
}
},
{
- "HashCode": 1340721914,
+ "HashCode": -1465849272,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122419,7 +122419,7 @@
}
},
{
- "HashCode": 1218017095,
+ "HashCode": 163528869,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122509,7 +122509,7 @@
}
},
{
- "HashCode": 1767659935,
+ "HashCode": -288893164,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122600,7 +122600,7 @@
}
},
{
- "HashCode": 94145117,
+ "HashCode": 1729278118,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122619,7 +122619,7 @@
}
},
{
- "HashCode": 970147423,
+ "HashCode": 1117813996,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122639,7 +122639,7 @@
}
},
{
- "HashCode": 1292219308,
+ "HashCode": 1496578618,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputText",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122704,7 +122704,7 @@
}
},
{
- "HashCode": 2113073277,
+ "HashCode": -1585426695,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputText",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122770,7 +122770,7 @@
}
},
{
- "HashCode": 2032276109,
+ "HashCode": 61751328,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122835,7 +122835,7 @@
}
},
{
- "HashCode": 470700206,
+ "HashCode": 1374436265,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122901,7 +122901,7 @@
}
},
{
- "HashCode": -808078148,
+ "HashCode": -659362594,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -122951,7 +122951,7 @@
}
},
{
- "HashCode": 1870394043,
+ "HashCode": 1581579826,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123002,7 +123002,7 @@
}
},
{
- "HashCode": -724624780,
+ "HashCode": -2057197105,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123039,7 +123039,7 @@
}
},
{
- "HashCode": 229133919,
+ "HashCode": -2011085731,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123077,7 +123077,7 @@
}
},
{
- "HashCode": 201683578,
+ "HashCode": -1851314927,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123114,7 +123114,7 @@
}
},
{
- "HashCode": -491504269,
+ "HashCode": -1359061253,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123152,7 +123152,7 @@
}
},
{
- "HashCode": -320305158,
+ "HashCode": -1761128169,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123209,7 +123209,7 @@
}
},
{
- "HashCode": 1584667910,
+ "HashCode": -1869434489,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123267,7 +123267,7 @@
}
},
{
- "HashCode": 1341932670,
+ "HashCode": -1052304781,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123286,7 +123286,7 @@
}
},
{
- "HashCode": 706159756,
+ "HashCode": -1121763800,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123306,7 +123306,7 @@
}
},
{
- "HashCode": -117164107,
+ "HashCode": -684097093,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123335,7 +123335,7 @@
}
},
{
- "HashCode": -1341168096,
+ "HashCode": -1027610192,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123365,7 +123365,7 @@
}
},
{
- "HashCode": -2104054415,
+ "HashCode": -1327762611,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123384,7 +123384,7 @@
}
},
{
- "HashCode": 1357447395,
+ "HashCode": -2125720288,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123404,7 +123404,7 @@
}
},
{
- "HashCode": -1575792696,
+ "HashCode": 1482916572,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123421,7 +123421,7 @@
}
},
{
- "HashCode": 420812537,
+ "HashCode": -45162829,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123439,7 +123439,7 @@
}
},
{
- "HashCode": 1321991045,
+ "HashCode": -1682371921,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123468,7 +123468,7 @@
}
},
{
- "HashCode": -1191411754,
+ "HashCode": 1125749919,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123498,7 +123498,7 @@
}
},
{
- "HashCode": 1811180338,
+ "HashCode": -1544915303,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123517,7 +123517,7 @@
}
},
{
- "HashCode": -223301154,
+ "HashCode": 597778349,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123537,7 +123537,7 @@
}
},
{
- "HashCode": 1835549384,
+ "HashCode": 95758389,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123595,7 +123595,7 @@
}
},
{
- "HashCode": -916302333,
+ "HashCode": 76599021,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123654,7 +123654,7 @@
}
},
{
- "HashCode": -900378922,
+ "HashCode": 1764029084,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123673,7 +123673,7 @@
}
},
{
- "HashCode": 1503777522,
+ "HashCode": -64841271,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123693,7 +123693,7 @@
}
},
{
- "HashCode": -660999574,
+ "HashCode": -1667002634,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123724,7 +123724,7 @@
}
},
{
- "HashCode": -647490644,
+ "HashCode": 837621538,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123756,7 +123756,7 @@
}
},
{
- "HashCode": -373192234,
+ "HashCode": -295536632,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123868,7 +123868,7 @@
}
},
{
- "HashCode": -2018436205,
+ "HashCode": -1983420986,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -123981,7 +123981,7 @@
}
},
{
- "HashCode": -1831194480,
+ "HashCode": -1822670835,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -124012,7 +124012,7 @@
}
},
{
- "HashCode": -1481994524,
+ "HashCode": -1801130104,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -124044,7 +124044,7 @@
}
},
{
- "HashCode": 522733807,
+ "HashCode": -701674250,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -124075,7 +124075,7 @@
}
},
{
- "HashCode": -71311032,
+ "HashCode": -613632997,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -124107,7 +124107,7 @@
}
},
{
- "HashCode": 787809707,
+ "HashCode": 1837489438,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -124138,7 +124138,7 @@
}
},
{
- "HashCode": 1676065419,
+ "HashCode": 334185510,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -124170,7 +124170,7 @@
}
},
{
- "HashCode": -683198775,
+ "HashCode": -1763069867,
"Kind": "Components.EventHandler",
"Name": "onmouseenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -124251,7 +124251,7 @@
}
},
{
- "HashCode": 455788059,
+ "HashCode": 1254201879,
"Kind": "Components.EventHandler",
"Name": "onmouseleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -124332,7 +124332,7 @@
}
},
{
- "HashCode": 1822964942,
+ "HashCode": -1732209887,
"Kind": "Components.EventHandler",
"Name": "onfocus",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -124413,7 +124413,7 @@
}
},
{
- "HashCode": -1978956536,
+ "HashCode": -1279833489,
"Kind": "Components.EventHandler",
"Name": "onblur",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -124494,7 +124494,7 @@
}
},
{
- "HashCode": 2098663487,
+ "HashCode": 807132401,
"Kind": "Components.EventHandler",
"Name": "onfocusin",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -124575,7 +124575,7 @@
}
},
{
- "HashCode": 1952572323,
+ "HashCode": -244580784,
"Kind": "Components.EventHandler",
"Name": "onfocusout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -124656,7 +124656,7 @@
}
},
{
- "HashCode": -1405911945,
+ "HashCode": -891060300,
"Kind": "Components.EventHandler",
"Name": "onmouseover",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -124737,7 +124737,7 @@
}
},
{
- "HashCode": 1830746892,
+ "HashCode": -1316485578,
"Kind": "Components.EventHandler",
"Name": "onmouseout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -124818,7 +124818,7 @@
}
},
{
- "HashCode": 85432456,
+ "HashCode": -1304749139,
"Kind": "Components.EventHandler",
"Name": "onmousemove",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -124899,7 +124899,7 @@
}
},
{
- "HashCode": -1845981745,
+ "HashCode": -1203438411,
"Kind": "Components.EventHandler",
"Name": "onmousedown",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -124980,7 +124980,7 @@
}
},
{
- "HashCode": -85604012,
+ "HashCode": -1332756035,
"Kind": "Components.EventHandler",
"Name": "onmouseup",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125061,7 +125061,7 @@
}
},
{
- "HashCode": 1185311411,
+ "HashCode": 993938618,
"Kind": "Components.EventHandler",
"Name": "onclick",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125142,7 +125142,7 @@
}
},
{
- "HashCode": 474762248,
+ "HashCode": 277696088,
"Kind": "Components.EventHandler",
"Name": "ondblclick",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125223,7 +125223,7 @@
}
},
{
- "HashCode": 525838261,
+ "HashCode": 342771276,
"Kind": "Components.EventHandler",
"Name": "onwheel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125304,7 +125304,7 @@
}
},
{
- "HashCode": 555744602,
+ "HashCode": -787042233,
"Kind": "Components.EventHandler",
"Name": "onmousewheel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125385,7 +125385,7 @@
}
},
{
- "HashCode": -1110827480,
+ "HashCode": -295291248,
"Kind": "Components.EventHandler",
"Name": "oncontextmenu",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125466,7 +125466,7 @@
}
},
{
- "HashCode": 1153900832,
+ "HashCode": 2035820978,
"Kind": "Components.EventHandler",
"Name": "ondrag",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125547,7 +125547,7 @@
}
},
{
- "HashCode": -469730145,
+ "HashCode": 900966139,
"Kind": "Components.EventHandler",
"Name": "ondragend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125628,7 +125628,7 @@
}
},
{
- "HashCode": 1762673760,
+ "HashCode": 1511114598,
"Kind": "Components.EventHandler",
"Name": "ondragenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125709,7 +125709,7 @@
}
},
{
- "HashCode": 1018278945,
+ "HashCode": 358873848,
"Kind": "Components.EventHandler",
"Name": "ondragleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125790,7 +125790,7 @@
}
},
{
- "HashCode": -1487846988,
+ "HashCode": -1196845768,
"Kind": "Components.EventHandler",
"Name": "ondragover",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125871,7 +125871,7 @@
}
},
{
- "HashCode": -436624430,
+ "HashCode": 1939173442,
"Kind": "Components.EventHandler",
"Name": "ondragstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -125952,7 +125952,7 @@
}
},
{
- "HashCode": -800404629,
+ "HashCode": 1777596806,
"Kind": "Components.EventHandler",
"Name": "ondrop",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126033,7 +126033,7 @@
}
},
{
- "HashCode": 342604440,
+ "HashCode": 570602498,
"Kind": "Components.EventHandler",
"Name": "onkeydown",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126114,7 +126114,7 @@
}
},
{
- "HashCode": -954429201,
+ "HashCode": -718638706,
"Kind": "Components.EventHandler",
"Name": "onkeyup",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126195,7 +126195,7 @@
}
},
{
- "HashCode": -843110707,
+ "HashCode": -374430330,
"Kind": "Components.EventHandler",
"Name": "onkeypress",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126276,7 +126276,7 @@
}
},
{
- "HashCode": 1809610246,
+ "HashCode": -1012524044,
"Kind": "Components.EventHandler",
"Name": "onchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126357,7 +126357,7 @@
}
},
{
- "HashCode": -2070905338,
+ "HashCode": 447856575,
"Kind": "Components.EventHandler",
"Name": "oninput",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126438,7 +126438,7 @@
}
},
{
- "HashCode": -589027738,
+ "HashCode": -2041989361,
"Kind": "Components.EventHandler",
"Name": "oninvalid",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126519,7 +126519,7 @@
}
},
{
- "HashCode": -934747538,
+ "HashCode": 327910124,
"Kind": "Components.EventHandler",
"Name": "onreset",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126600,7 +126600,7 @@
}
},
{
- "HashCode": -966060263,
+ "HashCode": 1285531372,
"Kind": "Components.EventHandler",
"Name": "onselect",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126681,7 +126681,7 @@
}
},
{
- "HashCode": 765711152,
+ "HashCode": 470119959,
"Kind": "Components.EventHandler",
"Name": "onselectstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126762,7 +126762,7 @@
}
},
{
- "HashCode": -1256077711,
+ "HashCode": 1667344794,
"Kind": "Components.EventHandler",
"Name": "onselectionchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126843,7 +126843,7 @@
}
},
{
- "HashCode": 2069995678,
+ "HashCode": 1431247912,
"Kind": "Components.EventHandler",
"Name": "onsubmit",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -126924,7 +126924,7 @@
}
},
{
- "HashCode": -2048886391,
+ "HashCode": -650834847,
"Kind": "Components.EventHandler",
"Name": "onbeforecopy",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127005,7 +127005,7 @@
}
},
{
- "HashCode": 1833103653,
+ "HashCode": 622476200,
"Kind": "Components.EventHandler",
"Name": "onbeforecut",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127086,7 +127086,7 @@
}
},
{
- "HashCode": 991014563,
+ "HashCode": -586810238,
"Kind": "Components.EventHandler",
"Name": "onbeforepaste",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127167,7 +127167,7 @@
}
},
{
- "HashCode": 1910891945,
+ "HashCode": 1930548335,
"Kind": "Components.EventHandler",
"Name": "oncopy",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127248,7 +127248,7 @@
}
},
{
- "HashCode": 1369760254,
+ "HashCode": -356253444,
"Kind": "Components.EventHandler",
"Name": "oncut",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127329,7 +127329,7 @@
}
},
{
- "HashCode": 911254126,
+ "HashCode": 653901943,
"Kind": "Components.EventHandler",
"Name": "onpaste",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127410,7 +127410,7 @@
}
},
{
- "HashCode": -1966108578,
+ "HashCode": -922190560,
"Kind": "Components.EventHandler",
"Name": "ontouchcancel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127491,7 +127491,7 @@
}
},
{
- "HashCode": 1294984848,
+ "HashCode": -682063621,
"Kind": "Components.EventHandler",
"Name": "ontouchend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127572,7 +127572,7 @@
}
},
{
- "HashCode": 393631529,
+ "HashCode": -1515180919,
"Kind": "Components.EventHandler",
"Name": "ontouchmove",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127653,7 +127653,7 @@
}
},
{
- "HashCode": 1590722041,
+ "HashCode": -354663081,
"Kind": "Components.EventHandler",
"Name": "ontouchstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127734,7 +127734,7 @@
}
},
{
- "HashCode": 1938350536,
+ "HashCode": 1369569212,
"Kind": "Components.EventHandler",
"Name": "ontouchenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127815,7 +127815,7 @@
}
},
{
- "HashCode": 2097539291,
+ "HashCode": -1221410620,
"Kind": "Components.EventHandler",
"Name": "ontouchleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127896,7 +127896,7 @@
}
},
{
- "HashCode": 2059726250,
+ "HashCode": -1742144454,
"Kind": "Components.EventHandler",
"Name": "ongotpointercapture",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -127977,7 +127977,7 @@
}
},
{
- "HashCode": 34005751,
+ "HashCode": 1066513824,
"Kind": "Components.EventHandler",
"Name": "onlostpointercapture",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128058,7 +128058,7 @@
}
},
{
- "HashCode": -633726571,
+ "HashCode": 484239210,
"Kind": "Components.EventHandler",
"Name": "onpointercancel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128139,7 +128139,7 @@
}
},
{
- "HashCode": 1426844755,
+ "HashCode": 1175754390,
"Kind": "Components.EventHandler",
"Name": "onpointerdown",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128220,7 +128220,7 @@
}
},
{
- "HashCode": -1580217900,
+ "HashCode": 1324180570,
"Kind": "Components.EventHandler",
"Name": "onpointerenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128301,7 +128301,7 @@
}
},
{
- "HashCode": 1017387014,
+ "HashCode": -2070118220,
"Kind": "Components.EventHandler",
"Name": "onpointerleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128382,7 +128382,7 @@
}
},
{
- "HashCode": -1296559441,
+ "HashCode": -1632003174,
"Kind": "Components.EventHandler",
"Name": "onpointermove",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128463,7 +128463,7 @@
}
},
{
- "HashCode": 1518406787,
+ "HashCode": -1258628993,
"Kind": "Components.EventHandler",
"Name": "onpointerout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128544,7 +128544,7 @@
}
},
{
- "HashCode": 1668495678,
+ "HashCode": 204860030,
"Kind": "Components.EventHandler",
"Name": "onpointerover",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128625,7 +128625,7 @@
}
},
{
- "HashCode": -1089216979,
+ "HashCode": 711022824,
"Kind": "Components.EventHandler",
"Name": "onpointerup",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128706,7 +128706,7 @@
}
},
{
- "HashCode": -330927127,
+ "HashCode": 888650493,
"Kind": "Components.EventHandler",
"Name": "oncanplay",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128787,7 +128787,7 @@
}
},
{
- "HashCode": -1388687558,
+ "HashCode": 311517124,
"Kind": "Components.EventHandler",
"Name": "oncanplaythrough",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128868,7 +128868,7 @@
}
},
{
- "HashCode": 1263324440,
+ "HashCode": -802719468,
"Kind": "Components.EventHandler",
"Name": "oncuechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -128949,7 +128949,7 @@
}
},
{
- "HashCode": 1356011896,
+ "HashCode": -942659617,
"Kind": "Components.EventHandler",
"Name": "ondurationchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129030,7 +129030,7 @@
}
},
{
- "HashCode": -370511783,
+ "HashCode": 1996877337,
"Kind": "Components.EventHandler",
"Name": "onemptied",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129111,7 +129111,7 @@
}
},
{
- "HashCode": 2102102003,
+ "HashCode": 1975475793,
"Kind": "Components.EventHandler",
"Name": "onpause",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129192,7 +129192,7 @@
}
},
{
- "HashCode": -524181067,
+ "HashCode": 1434965754,
"Kind": "Components.EventHandler",
"Name": "onplay",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129273,7 +129273,7 @@
}
},
{
- "HashCode": 1371574340,
+ "HashCode": -467540568,
"Kind": "Components.EventHandler",
"Name": "onplaying",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129354,7 +129354,7 @@
}
},
{
- "HashCode": 1484489153,
+ "HashCode": 2081300064,
"Kind": "Components.EventHandler",
"Name": "onratechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129435,7 +129435,7 @@
}
},
{
- "HashCode": -1235093949,
+ "HashCode": 37692023,
"Kind": "Components.EventHandler",
"Name": "onseeked",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129516,7 +129516,7 @@
}
},
{
- "HashCode": -1959094854,
+ "HashCode": -518367759,
"Kind": "Components.EventHandler",
"Name": "onseeking",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129597,7 +129597,7 @@
}
},
{
- "HashCode": -693009894,
+ "HashCode": 2121000472,
"Kind": "Components.EventHandler",
"Name": "onstalled",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129678,7 +129678,7 @@
}
},
{
- "HashCode": 1678998956,
+ "HashCode": -2041198398,
"Kind": "Components.EventHandler",
"Name": "onstop",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129759,7 +129759,7 @@
}
},
{
- "HashCode": -1495657214,
+ "HashCode": -2013205566,
"Kind": "Components.EventHandler",
"Name": "onsuspend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129840,7 +129840,7 @@
}
},
{
- "HashCode": 1720472196,
+ "HashCode": 653536886,
"Kind": "Components.EventHandler",
"Name": "ontimeupdate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -129921,7 +129921,7 @@
}
},
{
- "HashCode": 1839503680,
+ "HashCode": -597184157,
"Kind": "Components.EventHandler",
"Name": "onvolumechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130002,7 +130002,7 @@
}
},
{
- "HashCode": 1762377468,
+ "HashCode": -82639483,
"Kind": "Components.EventHandler",
"Name": "onwaiting",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130083,7 +130083,7 @@
}
},
{
- "HashCode": -633870182,
+ "HashCode": 1399530488,
"Kind": "Components.EventHandler",
"Name": "onloadstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130164,7 +130164,7 @@
}
},
{
- "HashCode": -441956873,
+ "HashCode": -287865750,
"Kind": "Components.EventHandler",
"Name": "ontimeout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130245,7 +130245,7 @@
}
},
{
- "HashCode": 554125012,
+ "HashCode": -1944530859,
"Kind": "Components.EventHandler",
"Name": "onabort",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130326,7 +130326,7 @@
}
},
{
- "HashCode": 179902494,
+ "HashCode": -1891195667,
"Kind": "Components.EventHandler",
"Name": "onload",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130407,7 +130407,7 @@
}
},
{
- "HashCode": -892431445,
+ "HashCode": 1946695032,
"Kind": "Components.EventHandler",
"Name": "onloadend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130488,7 +130488,7 @@
}
},
{
- "HashCode": -2066191922,
+ "HashCode": -1753445296,
"Kind": "Components.EventHandler",
"Name": "onprogress",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130569,7 +130569,7 @@
}
},
{
- "HashCode": 1434708818,
+ "HashCode": -62688760,
"Kind": "Components.EventHandler",
"Name": "onerror",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130650,7 +130650,7 @@
}
},
{
- "HashCode": 1920250938,
+ "HashCode": 731303157,
"Kind": "Components.EventHandler",
"Name": "onactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130731,7 +130731,7 @@
}
},
{
- "HashCode": 553102247,
+ "HashCode": -1259536311,
"Kind": "Components.EventHandler",
"Name": "onbeforeactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130812,7 +130812,7 @@
}
},
{
- "HashCode": 862502520,
+ "HashCode": 1415064147,
"Kind": "Components.EventHandler",
"Name": "onbeforedeactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130893,7 +130893,7 @@
}
},
{
- "HashCode": -744369255,
+ "HashCode": -137510682,
"Kind": "Components.EventHandler",
"Name": "ondeactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -130974,7 +130974,7 @@
}
},
{
- "HashCode": -1021682015,
+ "HashCode": -1261425236,
"Kind": "Components.EventHandler",
"Name": "onended",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -131055,7 +131055,7 @@
}
},
{
- "HashCode": -1414935851,
+ "HashCode": 1095762350,
"Kind": "Components.EventHandler",
"Name": "onfullscreenchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -131136,7 +131136,7 @@
}
},
{
- "HashCode": -341066944,
+ "HashCode": 883177151,
"Kind": "Components.EventHandler",
"Name": "onfullscreenerror",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -131217,7 +131217,7 @@
}
},
{
- "HashCode": -500292830,
+ "HashCode": 552663623,
"Kind": "Components.EventHandler",
"Name": "onloadeddata",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -131298,7 +131298,7 @@
}
},
{
- "HashCode": 1780620709,
+ "HashCode": -1730564948,
"Kind": "Components.EventHandler",
"Name": "onloadedmetadata",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -131379,7 +131379,7 @@
}
},
{
- "HashCode": -2096151796,
+ "HashCode": 139314295,
"Kind": "Components.EventHandler",
"Name": "onpointerlockchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -131460,7 +131460,7 @@
}
},
{
- "HashCode": 569803856,
+ "HashCode": 479630198,
"Kind": "Components.EventHandler",
"Name": "onpointerlockerror",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -131541,7 +131541,7 @@
}
},
{
- "HashCode": -1302548938,
+ "HashCode": 117861450,
"Kind": "Components.EventHandler",
"Name": "onreadystatechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -131622,7 +131622,7 @@
}
},
{
- "HashCode": -141027798,
+ "HashCode": 415982274,
"Kind": "Components.EventHandler",
"Name": "onscroll",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -131703,7 +131703,7 @@
}
},
{
- "HashCode": -259226445,
+ "HashCode": -2121705770,
"Kind": "Components.EventHandler",
"Name": "ontoggle",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -131784,7 +131784,7 @@
}
},
{
- "HashCode": -480188354,
+ "HashCode": 793332590,
"Kind": "Components.Splat",
"Name": "Attributes",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -131823,7 +131823,7 @@
}
},
{
- "HashCode": -1176704614,
+ "HashCode": 831785208,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.Razor",
@@ -132138,7 +132138,7 @@
}
},
{
- "HashCode": -373695205,
+ "HashCode": -752555893,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -132335,7 +132335,7 @@
}
},
{
- "HashCode": -2096945070,
+ "HashCode": -212429397,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -132462,7 +132462,7 @@
}
},
{
- "HashCode": -1438690741,
+ "HashCode": -1122255500,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -132517,7 +132517,7 @@
}
},
{
- "HashCode": 1703108490,
+ "HashCode": -805252717,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -132649,7 +132649,7 @@
}
},
{
- "HashCode": 1813971304,
+ "HashCode": 1450963488,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -132695,7 +132695,7 @@
}
},
{
- "HashCode": -184139320,
+ "HashCode": -459323880,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133112,7 +133112,7 @@
}
},
{
- "HashCode": 1901869433,
+ "HashCode": 1143972298,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133214,7 +133214,7 @@
}
},
{
- "HashCode": 1929199375,
+ "HashCode": 783014402,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133260,7 +133260,7 @@
}
},
{
- "HashCode": -584436509,
+ "HashCode": 1496947126,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133330,7 +133330,7 @@
}
},
{
- "HashCode": -106899279,
+ "HashCode": -1841613330,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133363,7 +133363,7 @@
}
},
{
- "HashCode": 1681061380,
+ "HashCode": 1847651541,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133559,7 +133559,7 @@
}
},
{
- "HashCode": -1712859548,
+ "HashCode": 587923649,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133587,7 +133587,7 @@
}
},
{
- "HashCode": 1815542656,
+ "HashCode": 1447749260,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133668,7 +133668,7 @@
}
},
{
- "HashCode": -1152758685,
+ "HashCode": -659822583,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133697,7 +133697,7 @@
}
},
{
- "HashCode": 1529966198,
+ "HashCode": -1274891469,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133850,7 +133850,7 @@
}
},
{
- "HashCode": 1315961642,
+ "HashCode": -1114343997,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133909,7 +133909,7 @@
}
},
{
- "HashCode": 47917688,
+ "HashCode": 1167196172,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133951,7 +133951,7 @@
}
},
{
- "HashCode": 1609906682,
+ "HashCode": -1898041305,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -133984,7 +133984,7 @@
}
},
{
- "HashCode": 528336840,
+ "HashCode": -1076895266,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -134018,7 +134018,7 @@
}
},
{
- "HashCode": -2058054106,
+ "HashCode": 1296876919,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134087,7 +134087,7 @@
}
},
{
- "HashCode": -2135097898,
+ "HashCode": -1543264519,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134165,7 +134165,7 @@
}
},
{
- "HashCode": 579465856,
+ "HashCode": -1372823099,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134243,7 +134243,7 @@
}
},
{
- "HashCode": -623457727,
+ "HashCode": 323013182,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134327,7 +134327,7 @@
}
},
{
- "HashCode": -1125853402,
+ "HashCode": -1218856757,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134411,7 +134411,7 @@
}
},
{
- "HashCode": 1176931447,
+ "HashCode": -1190971962,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134495,7 +134495,7 @@
}
},
{
- "HashCode": 1844188249,
+ "HashCode": 494731469,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134579,7 +134579,7 @@
}
},
{
- "HashCode": 1945775560,
+ "HashCode": -82807529,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134663,7 +134663,7 @@
}
},
{
- "HashCode": -1532613609,
+ "HashCode": -211141465,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134747,7 +134747,7 @@
}
},
{
- "HashCode": 1023557350,
+ "HashCode": 1897097255,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134831,7 +134831,7 @@
}
},
{
- "HashCode": -38403411,
+ "HashCode": -333602328,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134915,7 +134915,7 @@
}
},
{
- "HashCode": -2065697021,
+ "HashCode": 1493844781,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -134999,7 +134999,7 @@
}
},
{
- "HashCode": 2033728673,
+ "HashCode": -1584248118,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -135083,7 +135083,7 @@
}
},
{
- "HashCode": 644817947,
+ "HashCode": 674252627,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -135167,7 +135167,7 @@
}
},
{
- "HashCode": -228631528,
+ "HashCode": 712507925,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -135251,7 +135251,7 @@
}
},
{
- "HashCode": -1232737878,
+ "HashCode": 1572070377,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -135329,7 +135329,7 @@
}
},
{
- "HashCode": 1207055183,
+ "HashCode": 601836393,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -135407,7 +135407,7 @@
}
},
{
- "HashCode": 1282586490,
+ "HashCode": -1293892082,
"Kind": "Components.Bind",
"Name": "Blazorise.Alert",
"AssemblyName": "Blazorise",
@@ -135447,7 +135447,7 @@
}
},
{
- "HashCode": -446799382,
+ "HashCode": 1276884836,
"Kind": "Components.Bind",
"Name": "Blazorise.Alert",
"AssemblyName": "Blazorise",
@@ -135488,7 +135488,7 @@
}
},
{
- "HashCode": -1373421878,
+ "HashCode": -1799413380,
"Kind": "Components.Bind",
"Name": "Blazorise.Bar",
"AssemblyName": "Blazorise",
@@ -135528,7 +135528,7 @@
}
},
{
- "HashCode": 301408562,
+ "HashCode": 1063585834,
"Kind": "Components.Bind",
"Name": "Blazorise.Bar",
"AssemblyName": "Blazorise",
@@ -135569,7 +135569,7 @@
}
},
{
- "HashCode": -1331553308,
+ "HashCode": -225606891,
"Kind": "Components.Bind",
"Name": "Blazorise.BarDropdown",
"AssemblyName": "Blazorise",
@@ -135609,7 +135609,7 @@
}
},
{
- "HashCode": 404493447,
+ "HashCode": -1194792804,
"Kind": "Components.Bind",
"Name": "Blazorise.BarDropdown",
"AssemblyName": "Blazorise",
@@ -135650,7 +135650,7 @@
}
},
{
- "HashCode": 1651337228,
+ "HashCode": 1772509526,
"Kind": "Components.Bind",
"Name": "Blazorise.Carousel",
"AssemblyName": "Blazorise",
@@ -135690,7 +135690,7 @@
}
},
{
- "HashCode": 797193229,
+ "HashCode": -2134719902,
"Kind": "Components.Bind",
"Name": "Blazorise.Carousel",
"AssemblyName": "Blazorise",
@@ -135731,7 +135731,7 @@
}
},
{
- "HashCode": 1440617904,
+ "HashCode": -1323790586,
"Kind": "Components.Bind",
"Name": "Blazorise.Check",
"AssemblyName": "Blazorise",
@@ -135772,7 +135772,7 @@
}
},
{
- "HashCode": -598483998,
+ "HashCode": -1012864334,
"Kind": "Components.Bind",
"Name": "Blazorise.Check",
"AssemblyName": "Blazorise",
@@ -135814,7 +135814,7 @@
}
},
{
- "HashCode": 1302684951,
+ "HashCode": -493291717,
"Kind": "Components.Bind",
"Name": "Blazorise.ColorEdit",
"AssemblyName": "Blazorise",
@@ -135855,7 +135855,7 @@
}
},
{
- "HashCode": -272403537,
+ "HashCode": -1240372250,
"Kind": "Components.Bind",
"Name": "Blazorise.ColorEdit",
"AssemblyName": "Blazorise",
@@ -135897,7 +135897,7 @@
}
},
{
- "HashCode": 1630904662,
+ "HashCode": -946805825,
"Kind": "Components.Bind",
"Name": "Blazorise.ColorPicker",
"AssemblyName": "Blazorise",
@@ -135938,7 +135938,7 @@
}
},
{
- "HashCode": -310201693,
+ "HashCode": -1397894202,
"Kind": "Components.Bind",
"Name": "Blazorise.ColorPicker",
"AssemblyName": "Blazorise",
@@ -135980,7 +135980,7 @@
}
},
{
- "HashCode": 1328276613,
+ "HashCode": 1881507962,
"Kind": "Components.Bind",
"Name": "Blazorise.DateEdit",
"AssemblyName": "Blazorise",
@@ -136021,7 +136021,7 @@
}
},
{
- "HashCode": 1681485635,
+ "HashCode": -1341940325,
"Kind": "Components.Bind",
"Name": "Blazorise.DateEdit",
"AssemblyName": "Blazorise",
@@ -136063,7 +136063,7 @@
}
},
{
- "HashCode": -685089703,
+ "HashCode": 1436514940,
"Kind": "Components.Bind",
"Name": "Blazorise.DatePicker",
"AssemblyName": "Blazorise",
@@ -136104,7 +136104,7 @@
}
},
{
- "HashCode": -1401605585,
+ "HashCode": -1215666714,
"Kind": "Components.Bind",
"Name": "Blazorise.DatePicker",
"AssemblyName": "Blazorise",
@@ -136145,7 +136145,7 @@
}
},
{
- "HashCode": 378054212,
+ "HashCode": 2104520987,
"Kind": "Components.Bind",
"Name": "Blazorise.DatePicker",
"AssemblyName": "Blazorise",
@@ -136187,7 +136187,7 @@
}
},
{
- "HashCode": -1208156235,
+ "HashCode": 559501619,
"Kind": "Components.Bind",
"Name": "Blazorise.DatePicker",
"AssemblyName": "Blazorise",
@@ -136229,7 +136229,7 @@
}
},
{
- "HashCode": 1584602812,
+ "HashCode": -2072009651,
"Kind": "Components.Bind",
"Name": "Blazorise.Dropdown",
"AssemblyName": "Blazorise",
@@ -136269,7 +136269,7 @@
}
},
{
- "HashCode": 1152786115,
+ "HashCode": 797165547,
"Kind": "Components.Bind",
"Name": "Blazorise.Dropdown",
"AssemblyName": "Blazorise",
@@ -136310,7 +136310,7 @@
}
},
{
- "HashCode": -1552309203,
+ "HashCode": 867815279,
"Kind": "Components.Bind",
"Name": "Blazorise.Dynamic",
"AssemblyName": "Blazorise",
@@ -136350,7 +136350,7 @@
}
},
{
- "HashCode": 143169171,
+ "HashCode": 2012474794,
"Kind": "Components.Bind",
"Name": "Blazorise.Dynamic",
"AssemblyName": "Blazorise",
@@ -136391,7 +136391,7 @@
}
},
{
- "HashCode": -1392904643,
+ "HashCode": 829791181,
"Kind": "Components.Bind",
"Name": "Blazorise.InputMask",
"AssemblyName": "Blazorise",
@@ -136432,7 +136432,7 @@
}
},
{
- "HashCode": 2105213017,
+ "HashCode": -1701570148,
"Kind": "Components.Bind",
"Name": "Blazorise.InputMask",
"AssemblyName": "Blazorise",
@@ -136474,7 +136474,7 @@
}
},
{
- "HashCode": 1523653617,
+ "HashCode": -1817516374,
"Kind": "Components.Bind",
"Name": "Blazorise.Layout",
"AssemblyName": "Blazorise",
@@ -136514,7 +136514,7 @@
}
},
{
- "HashCode": 1363758148,
+ "HashCode": -2063997754,
"Kind": "Components.Bind",
"Name": "Blazorise.Layout",
"AssemblyName": "Blazorise",
@@ -136555,7 +136555,7 @@
}
},
{
- "HashCode": -1774106489,
+ "HashCode": 735171814,
"Kind": "Components.Bind",
"Name": "Blazorise.ListGroup",
"AssemblyName": "Blazorise",
@@ -136595,7 +136595,7 @@
}
},
{
- "HashCode": 1252109698,
+ "HashCode": 1888220971,
"Kind": "Components.Bind",
"Name": "Blazorise.ListGroup",
"AssemblyName": "Blazorise",
@@ -136636,7 +136636,7 @@
}
},
{
- "HashCode": -867212385,
+ "HashCode": -172686313,
"Kind": "Components.Bind",
"Name": "Blazorise.MemoEdit",
"AssemblyName": "Blazorise",
@@ -136677,7 +136677,7 @@
}
},
{
- "HashCode": -1049666721,
+ "HashCode": 135617285,
"Kind": "Components.Bind",
"Name": "Blazorise.MemoEdit",
"AssemblyName": "Blazorise",
@@ -136719,7 +136719,7 @@
}
},
{
- "HashCode": 1639905673,
+ "HashCode": -2109596100,
"Kind": "Components.Bind",
"Name": "Blazorise.Modal",
"AssemblyName": "Blazorise",
@@ -136759,7 +136759,7 @@
}
},
{
- "HashCode": -1299592734,
+ "HashCode": 793489102,
"Kind": "Components.Bind",
"Name": "Blazorise.Modal",
"AssemblyName": "Blazorise",
@@ -136800,7 +136800,7 @@
}
},
{
- "HashCode": 1698854274,
+ "HashCode": -252072235,
"Kind": "Components.Bind",
"Name": "Blazorise.NumericEdit",
"AssemblyName": "Blazorise",
@@ -136841,7 +136841,7 @@
}
},
{
- "HashCode": 156179170,
+ "HashCode": 60917502,
"Kind": "Components.Bind",
"Name": "Blazorise.NumericEdit",
"AssemblyName": "Blazorise",
@@ -136883,7 +136883,7 @@
}
},
{
- "HashCode": 2022049441,
+ "HashCode": 511836494,
"Kind": "Components.Bind",
"Name": "Blazorise.NumericPicker",
"AssemblyName": "Blazorise",
@@ -136924,7 +136924,7 @@
}
},
{
- "HashCode": -2063972279,
+ "HashCode": -1304629602,
"Kind": "Components.Bind",
"Name": "Blazorise.NumericPicker",
"AssemblyName": "Blazorise",
@@ -136966,7 +136966,7 @@
}
},
{
- "HashCode": 1781258905,
+ "HashCode": -478357161,
"Kind": "Components.Bind",
"Name": "Blazorise.Radio",
"AssemblyName": "Blazorise",
@@ -137007,7 +137007,7 @@
}
},
{
- "HashCode": -1065397380,
+ "HashCode": 791070545,
"Kind": "Components.Bind",
"Name": "Blazorise.Radio",
"AssemblyName": "Blazorise",
@@ -137049,7 +137049,7 @@
}
},
{
- "HashCode": -511803154,
+ "HashCode": -731531140,
"Kind": "Components.Bind",
"Name": "Blazorise.RadioGroup",
"AssemblyName": "Blazorise",
@@ -137090,7 +137090,7 @@
}
},
{
- "HashCode": -15494482,
+ "HashCode": -1132026957,
"Kind": "Components.Bind",
"Name": "Blazorise.RadioGroup",
"AssemblyName": "Blazorise",
@@ -137132,7 +137132,7 @@
}
},
{
- "HashCode": -1591390720,
+ "HashCode": -1698552461,
"Kind": "Components.Bind",
"Name": "Blazorise.Rating",
"AssemblyName": "Blazorise",
@@ -137172,7 +137172,7 @@
}
},
{
- "HashCode": 291388416,
+ "HashCode": -1634324335,
"Kind": "Components.Bind",
"Name": "Blazorise.Rating",
"AssemblyName": "Blazorise",
@@ -137213,7 +137213,7 @@
}
},
{
- "HashCode": -185109411,
+ "HashCode": 1525769387,
"Kind": "Components.Bind",
"Name": "Blazorise.Select",
"AssemblyName": "Blazorise",
@@ -137254,7 +137254,7 @@
}
},
{
- "HashCode": -1888300987,
+ "HashCode": -1174453739,
"Kind": "Components.Bind",
"Name": "Blazorise.Select",
"AssemblyName": "Blazorise",
@@ -137295,7 +137295,7 @@
}
},
{
- "HashCode": 595678294,
+ "HashCode": 1167068762,
"Kind": "Components.Bind",
"Name": "Blazorise.Select",
"AssemblyName": "Blazorise",
@@ -137337,7 +137337,7 @@
}
},
{
- "HashCode": -684019923,
+ "HashCode": 878262803,
"Kind": "Components.Bind",
"Name": "Blazorise.Select",
"AssemblyName": "Blazorise",
@@ -137379,7 +137379,7 @@
}
},
{
- "HashCode": -1528729532,
+ "HashCode": -1911864596,
"Kind": "Components.Bind",
"Name": "Blazorise.Slider",
"AssemblyName": "Blazorise",
@@ -137420,7 +137420,7 @@
}
},
{
- "HashCode": -1235560330,
+ "HashCode": 2091458314,
"Kind": "Components.Bind",
"Name": "Blazorise.Slider",
"AssemblyName": "Blazorise",
@@ -137462,7 +137462,7 @@
}
},
{
- "HashCode": -342347950,
+ "HashCode": 1963114932,
"Kind": "Components.Bind",
"Name": "Blazorise.Steps",
"AssemblyName": "Blazorise",
@@ -137502,7 +137502,7 @@
}
},
{
- "HashCode": 150801173,
+ "HashCode": -1886890805,
"Kind": "Components.Bind",
"Name": "Blazorise.Steps",
"AssemblyName": "Blazorise",
@@ -137543,7 +137543,7 @@
}
},
{
- "HashCode": 887085225,
+ "HashCode": 334841763,
"Kind": "Components.Bind",
"Name": "Blazorise.StepsContent",
"AssemblyName": "Blazorise",
@@ -137583,7 +137583,7 @@
}
},
{
- "HashCode": -1529793985,
+ "HashCode": -1481899291,
"Kind": "Components.Bind",
"Name": "Blazorise.StepsContent",
"AssemblyName": "Blazorise",
@@ -137624,7 +137624,7 @@
}
},
{
- "HashCode": 1079644015,
+ "HashCode": 1556887101,
"Kind": "Components.Bind",
"Name": "Blazorise.Switch",
"AssemblyName": "Blazorise",
@@ -137665,7 +137665,7 @@
}
},
{
- "HashCode": 322535998,
+ "HashCode": 2021989786,
"Kind": "Components.Bind",
"Name": "Blazorise.Switch",
"AssemblyName": "Blazorise",
@@ -137707,7 +137707,7 @@
}
},
{
- "HashCode": 1713858397,
+ "HashCode": 1514423316,
"Kind": "Components.Bind",
"Name": "Blazorise.Tabs",
"AssemblyName": "Blazorise",
@@ -137747,7 +137747,7 @@
}
},
{
- "HashCode": -876491636,
+ "HashCode": -444900027,
"Kind": "Components.Bind",
"Name": "Blazorise.Tabs",
"AssemblyName": "Blazorise",
@@ -137788,7 +137788,7 @@
}
},
{
- "HashCode": 1575520745,
+ "HashCode": 1277247285,
"Kind": "Components.Bind",
"Name": "Blazorise.TabsContent",
"AssemblyName": "Blazorise",
@@ -137828,7 +137828,7 @@
}
},
{
- "HashCode": 1707242229,
+ "HashCode": 449297220,
"Kind": "Components.Bind",
"Name": "Blazorise.TabsContent",
"AssemblyName": "Blazorise",
@@ -137869,7 +137869,7 @@
}
},
{
- "HashCode": 1861967749,
+ "HashCode": 1039794570,
"Kind": "Components.Bind",
"Name": "Blazorise.TextEdit",
"AssemblyName": "Blazorise",
@@ -137910,7 +137910,7 @@
}
},
{
- "HashCode": -223751741,
+ "HashCode": -326733896,
"Kind": "Components.Bind",
"Name": "Blazorise.TextEdit",
"AssemblyName": "Blazorise",
@@ -137952,7 +137952,7 @@
}
},
{
- "HashCode": 547291266,
+ "HashCode": 455179724,
"Kind": "Components.Bind",
"Name": "Blazorise.TimeEdit",
"AssemblyName": "Blazorise",
@@ -137993,7 +137993,7 @@
}
},
{
- "HashCode": -361437327,
+ "HashCode": -1440454630,
"Kind": "Components.Bind",
"Name": "Blazorise.TimeEdit",
"AssemblyName": "Blazorise",
@@ -138035,7 +138035,7 @@
}
},
{
- "HashCode": -1507301967,
+ "HashCode": 1596036,
"Kind": "Components.Bind",
"Name": "Blazorise.TimePicker",
"AssemblyName": "Blazorise",
@@ -138076,7 +138076,7 @@
}
},
{
- "HashCode": -780491436,
+ "HashCode": -1457397036,
"Kind": "Components.Bind",
"Name": "Blazorise.TimePicker",
"AssemblyName": "Blazorise",
@@ -138118,7 +138118,7 @@
}
},
{
- "HashCode": -419965402,
+ "HashCode": -1240590558,
"Kind": "Components.Bind",
"Name": "Blazorise.Validation",
"AssemblyName": "Blazorise",
@@ -138159,7 +138159,7 @@
}
},
{
- "HashCode": 1234131735,
+ "HashCode": 1752125907,
"Kind": "Components.Bind",
"Name": "Blazorise.Validation",
"AssemblyName": "Blazorise",
@@ -138201,7 +138201,7 @@
}
},
{
- "HashCode": -1143781723,
+ "HashCode": -668035765,
"Kind": "Components.Bind",
"Name": "Blazorise.TreeView.TreeView",
"AssemblyName": "Blazorise.TreeView",
@@ -138241,7 +138241,7 @@
}
},
{
- "HashCode": 1648484444,
+ "HashCode": -187769746,
"Kind": "Components.Bind",
"Name": "Blazorise.TreeView.TreeView",
"AssemblyName": "Blazorise.TreeView",
@@ -138281,7 +138281,7 @@
}
},
{
- "HashCode": 631133509,
+ "HashCode": 1814170106,
"Kind": "Components.Bind",
"Name": "Blazorise.TreeView.TreeView",
"AssemblyName": "Blazorise.TreeView",
@@ -138322,7 +138322,7 @@
}
},
{
- "HashCode": -1298972995,
+ "HashCode": 96453615,
"Kind": "Components.Bind",
"Name": "Blazorise.TreeView.TreeView",
"AssemblyName": "Blazorise.TreeView",
@@ -138363,7 +138363,7 @@
}
},
{
- "HashCode": -1348691214,
+ "HashCode": 1236704094,
"Kind": "Components.Bind",
"Name": "Blazorise.TreeView._TreeViewNode",
"AssemblyName": "Blazorise.TreeView",
@@ -138403,7 +138403,7 @@
}
},
{
- "HashCode": 417874958,
+ "HashCode": -823775064,
"Kind": "Components.Bind",
"Name": "Blazorise.TreeView._TreeViewNode",
"AssemblyName": "Blazorise.TreeView",
@@ -138444,7 +138444,7 @@
}
},
{
- "HashCode": -671123771,
+ "HashCode": -640816073,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138485,7 +138485,7 @@
}
},
{
- "HashCode": 129581113,
+ "HashCode": 612426912,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138527,7 +138527,7 @@
}
},
{
- "HashCode": -209343777,
+ "HashCode": 1434723588,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138568,7 +138568,7 @@
}
},
{
- "HashCode": -1633625619,
+ "HashCode": -261245695,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138610,7 +138610,7 @@
}
},
{
- "HashCode": -627002829,
+ "HashCode": -485865320,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138651,7 +138651,7 @@
}
},
{
- "HashCode": 400869027,
+ "HashCode": -1562506263,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138693,7 +138693,7 @@
}
},
{
- "HashCode": 319910005,
+ "HashCode": -1407930234,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138734,7 +138734,7 @@
}
},
{
- "HashCode": 1803404175,
+ "HashCode": 1820980794,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138776,7 +138776,7 @@
}
},
{
- "HashCode": 1220745541,
+ "HashCode": -1425343695,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138817,7 +138817,7 @@
}
},
{
- "HashCode": -1425780485,
+ "HashCode": 1617257449,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138859,7 +138859,7 @@
}
},
{
- "HashCode": 1769978686,
+ "HashCode": 1422287725,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputText",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138900,7 +138900,7 @@
}
},
{
- "HashCode": 736694356,
+ "HashCode": 1868373854,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputText",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138942,7 +138942,7 @@
}
},
{
- "HashCode": -748746307,
+ "HashCode": -1561235469,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -138983,7 +138983,7 @@
}
},
{
- "HashCode": 127930093,
+ "HashCode": 1489688059,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -139025,7 +139025,7 @@
}
},
{
- "HashCode": -1927046404,
+ "HashCode": -836366618,
"Kind": "Components.Ref",
"Name": "Ref",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -139064,7 +139064,7 @@
}
},
{
- "HashCode": -1332700366,
+ "HashCode": -2108793207,
"Kind": "Components.Key",
"Name": "Key",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -139113,33 +139113,33 @@
"FileKind": "component"
},
{
- "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Shared/SurveyPrompt.razor",
- "TargetPath": "Shared\\SurveyPrompt.razor",
+ "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/FetchData.razor",
+ "TargetPath": "Pages\\FetchData.razor",
"FileKind": "component"
},
- {
- "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/Error.cshtml",
- "TargetPath": "Pages\\Error.cshtml",
- "FileKind": "mvc"
- },
- {
- "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/_Imports.razor",
- "TargetPath": "_Imports.razor",
- "FileKind": "componentImport"
- },
{
"FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/Counter.razor",
"TargetPath": "Pages\\Counter.razor",
"FileKind": "component"
},
+ {
+ "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/_Host.cshtml",
+ "TargetPath": "Pages\\_Host.cshtml",
+ "FileKind": "mvc"
+ },
+ {
+ "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Shared/SurveyPrompt.razor",
+ "TargetPath": "Shared\\SurveyPrompt.razor",
+ "FileKind": "component"
+ },
{
"FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/_Layout.cshtml",
"TargetPath": "Pages\\_Layout.cshtml",
"FileKind": "mvc"
},
{
- "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/_Host.cshtml",
- "TargetPath": "Pages\\_Host.cshtml",
+ "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/Error.cshtml",
+ "TargetPath": "Pages\\Error.cshtml",
"FileKind": "mvc"
},
{
@@ -139148,19 +139148,19 @@
"FileKind": "component"
},
{
- "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Pages/FetchData.razor",
- "TargetPath": "Pages\\FetchData.razor",
+ "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Shared/MainLayout.razor",
+ "TargetPath": "Shared\\MainLayout.razor",
"FileKind": "component"
},
+ {
+ "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/_Imports.razor",
+ "TargetPath": "_Imports.razor",
+ "FileKind": "componentImport"
+ },
{
"FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Shared/NavMenu.razor",
"TargetPath": "Shared\\NavMenu.razor",
"FileKind": "component"
- },
- {
- "FilePath": "/Users/normrasmussen/Documents/Northpass/TaskTree/Shared/MainLayout.razor",
- "TargetPath": "Shared\\MainLayout.razor",
- "FileKind": "component"
}
],
"SerializationFormat": "0.2"
diff --git a/TodoList/obj/Debug/net6.0/project.razor.json b/TodoList/obj/Debug/net6.0/project.razor.json
index 7771e1ec..ee85a454 100644
--- a/TodoList/obj/Debug/net6.0/project.razor.json
+++ b/TodoList/obj/Debug/net6.0/project.razor.json
@@ -12,7 +12,7 @@
"ProjectWorkspaceState": {
"TagHelpers": [
{
- "HashCode": -2074526890,
+ "HashCode": 310464546,
"Kind": "Components.Component",
"Name": "TodoList.Pages.Accounts",
"AssemblyName": "TodoList",
@@ -28,7 +28,7 @@
}
},
{
- "HashCode": 1714989449,
+ "HashCode": -1521964735,
"Kind": "Components.Component",
"Name": "TodoList.Pages.Accounts",
"AssemblyName": "TodoList",
@@ -45,7 +45,7 @@
}
},
{
- "HashCode": -1693021814,
+ "HashCode": 139048787,
"Kind": "Components.Component",
"Name": "TodoList.Pages.AccountTasks",
"AssemblyName": "TodoList",
@@ -61,7 +61,7 @@
}
},
{
- "HashCode": -1584420185,
+ "HashCode": 812304285,
"Kind": "Components.Component",
"Name": "TodoList.Pages.AccountTasks",
"AssemblyName": "TodoList",
@@ -78,7 +78,7 @@
}
},
{
- "HashCode": -1265818129,
+ "HashCode": 766326402,
"Kind": "Components.Component",
"Name": "TodoList.Pages.Counter",
"AssemblyName": "TodoList",
@@ -94,7 +94,7 @@
}
},
{
- "HashCode": 226564716,
+ "HashCode": -162510773,
"Kind": "Components.Component",
"Name": "TodoList.Pages.Counter",
"AssemblyName": "TodoList",
@@ -111,7 +111,7 @@
}
},
{
- "HashCode": -1538857236,
+ "HashCode": 291923636,
"Kind": "Components.Component",
"Name": "TodoList.Pages.FetchData",
"AssemblyName": "TodoList",
@@ -127,7 +127,7 @@
}
},
{
- "HashCode": -239662922,
+ "HashCode": -1187841002,
"Kind": "Components.Component",
"Name": "TodoList.Pages.FetchData",
"AssemblyName": "TodoList",
@@ -144,7 +144,7 @@
}
},
{
- "HashCode": 244816393,
+ "HashCode": 1744369768,
"Kind": "Components.Component",
"Name": "TodoList.Pages.Index",
"AssemblyName": "TodoList",
@@ -160,7 +160,7 @@
}
},
{
- "HashCode": 1271679756,
+ "HashCode": -1548287535,
"Kind": "Components.Component",
"Name": "TodoList.Pages.Index",
"AssemblyName": "TodoList",
@@ -177,7 +177,7 @@
}
},
{
- "HashCode": 1142255801,
+ "HashCode": 2064385483,
"Kind": "Components.Component",
"Name": "TodoList.Pages.Todo",
"AssemblyName": "TodoList",
@@ -193,7 +193,7 @@
}
},
{
- "HashCode": -937661286,
+ "HashCode": -104614539,
"Kind": "Components.Component",
"Name": "TodoList.Pages.Todo",
"AssemblyName": "TodoList",
@@ -210,7 +210,7 @@
}
},
{
- "HashCode": 331836674,
+ "HashCode": 922096318,
"Kind": "Components.Component",
"Name": "TodoList.App",
"AssemblyName": "TodoList",
@@ -226,7 +226,7 @@
}
},
{
- "HashCode": -850814352,
+ "HashCode": 1331939761,
"Kind": "Components.Component",
"Name": "TodoList.App",
"AssemblyName": "TodoList",
@@ -243,7 +243,7 @@
}
},
{
- "HashCode": 1103965388,
+ "HashCode": -1397499888,
"Kind": "Components.Component",
"Name": "TodoList.Shared.SurveyPrompt",
"AssemblyName": "TodoList",
@@ -269,7 +269,7 @@
}
},
{
- "HashCode": 1074186297,
+ "HashCode": 1660065784,
"Kind": "Components.Component",
"Name": "TodoList.Shared.SurveyPrompt",
"AssemblyName": "TodoList",
@@ -296,7 +296,7 @@
}
},
{
- "HashCode": 1654843519,
+ "HashCode": -748278024,
"Kind": "Components.Component",
"Name": "TodoList.Shared.MainLayout",
"AssemblyName": "TodoList",
@@ -324,7 +324,7 @@
}
},
{
- "HashCode": 1794095865,
+ "HashCode": -2126601110,
"Kind": "Components.Component",
"Name": "TodoList.Shared.MainLayout",
"AssemblyName": "TodoList",
@@ -353,7 +353,7 @@
}
},
{
- "HashCode": -977397009,
+ "HashCode": -59534563,
"Kind": "Components.ChildContent",
"Name": "TodoList.Shared.MainLayout.Body",
"AssemblyName": "TodoList",
@@ -372,7 +372,7 @@
}
},
{
- "HashCode": -1715421207,
+ "HashCode": 1089944539,
"Kind": "Components.ChildContent",
"Name": "TodoList.Shared.MainLayout.Body",
"AssemblyName": "TodoList",
@@ -392,7 +392,7 @@
}
},
{
- "HashCode": 976901962,
+ "HashCode": 857765222,
"Kind": "Components.Component",
"Name": "TodoList.Shared.NavMenu",
"AssemblyName": "TodoList",
@@ -408,7 +408,7 @@
}
},
{
- "HashCode": -707383548,
+ "HashCode": -1516668454,
"Kind": "Components.Component",
"Name": "TodoList.Shared.NavMenu",
"AssemblyName": "TodoList",
@@ -425,7 +425,7 @@
}
},
{
- "HashCode": 2121561041,
+ "HashCode": -368255735,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -502,7 +502,7 @@
}
},
{
- "HashCode": -942028738,
+ "HashCode": 488065738,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -580,7 +580,7 @@
}
},
{
- "HashCode": 870285718,
+ "HashCode": 1369109644,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -611,7 +611,7 @@
}
},
{
- "HashCode": 1636259266,
+ "HashCode": 94735360,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -643,7 +643,7 @@
}
},
{
- "HashCode": -1872687544,
+ "HashCode": -1685588990,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -662,7 +662,7 @@
}
},
{
- "HashCode": -1239197063,
+ "HashCode": 1125045409,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -682,7 +682,7 @@
}
},
{
- "HashCode": -1165268587,
+ "HashCode": -982730134,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -778,7 +778,7 @@
}
},
{
- "HashCode": -669322022,
+ "HashCode": 1311255414,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -875,7 +875,7 @@
}
},
{
- "HashCode": 414047906,
+ "HashCode": -1910885985,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -906,7 +906,7 @@
}
},
{
- "HashCode": 290107177,
+ "HashCode": -2132974599,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -938,7 +938,7 @@
}
},
{
- "HashCode": -79742699,
+ "HashCode": 1444944531,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -969,7 +969,7 @@
}
},
{
- "HashCode": -254196738,
+ "HashCode": 480291587,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -1001,7 +1001,7 @@
}
},
{
- "HashCode": -262029594,
+ "HashCode": 684527250,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -1032,7 +1032,7 @@
}
},
{
- "HashCode": -963273423,
+ "HashCode": 25751207,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -1064,7 +1064,7 @@
}
},
{
- "HashCode": -1822683243,
+ "HashCode": 612703624,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -1083,7 +1083,7 @@
}
},
{
- "HashCode": -1773023910,
+ "HashCode": -1757480269,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -1103,7 +1103,7 @@
}
},
{
- "HashCode": -420744837,
+ "HashCode": -872099765,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -1131,7 +1131,7 @@
}
},
{
- "HashCode": 352834130,
+ "HashCode": 704270045,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -1160,7 +1160,7 @@
}
},
{
- "HashCode": -678370359,
+ "HashCode": -1422352136,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -1179,7 +1179,7 @@
}
},
{
- "HashCode": 961480804,
+ "HashCode": 569640346,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -1199,7 +1199,7 @@
}
},
{
- "HashCode": -2050819389,
+ "HashCode": -222366915,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.CascadingValue",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1268,7 +1268,7 @@
}
},
{
- "HashCode": -580022195,
+ "HashCode": -310244300,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.CascadingValue",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1338,7 +1338,7 @@
}
},
{
- "HashCode": 67732089,
+ "HashCode": -257354031,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1357,7 +1357,7 @@
}
},
{
- "HashCode": 681559381,
+ "HashCode": 2103531069,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1377,7 +1377,7 @@
}
},
{
- "HashCode": 214661964,
+ "HashCode": 1123658677,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.DynamicComponent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1415,7 +1415,7 @@
}
},
{
- "HashCode": 458739233,
+ "HashCode": 686502057,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.DynamicComponent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1454,7 +1454,7 @@
}
},
{
- "HashCode": 668621198,
+ "HashCode": -1926093827,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.LayoutView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1492,7 +1492,7 @@
}
},
{
- "HashCode": 870348651,
+ "HashCode": 2030925835,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.LayoutView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1531,7 +1531,7 @@
}
},
{
- "HashCode": 1782095982,
+ "HashCode": 55590910,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1550,7 +1550,7 @@
}
},
{
- "HashCode": -1737958057,
+ "HashCode": 564305275,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1570,7 +1570,7 @@
}
},
{
- "HashCode": -440514318,
+ "HashCode": -880065705,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.RouteView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1608,7 +1608,7 @@
}
},
{
- "HashCode": 1257681064,
+ "HashCode": 654803494,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.RouteView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1647,7 +1647,7 @@
}
},
{
- "HashCode": 1681590557,
+ "HashCode": -1108295360,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.Router",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1746,7 +1746,7 @@
}
},
{
- "HashCode": 787163489,
+ "HashCode": 1290577485,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.Router",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1846,7 +1846,7 @@
}
},
{
- "HashCode": 161283511,
+ "HashCode": -548486257,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1865,7 +1865,7 @@
}
},
{
- "HashCode": 1803834916,
+ "HashCode": 915285019,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1885,7 +1885,7 @@
}
},
{
- "HashCode": -230643096,
+ "HashCode": -1536101042,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Found",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1916,7 +1916,7 @@
}
},
{
- "HashCode": -1493384725,
+ "HashCode": 1291725054,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Found",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1948,7 +1948,7 @@
}
},
{
- "HashCode": -1736308809,
+ "HashCode": -516263606,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1967,7 +1967,7 @@
}
},
{
- "HashCode": 899850367,
+ "HashCode": -1469398382,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1987,7 +1987,7 @@
}
},
{
- "HashCode": -247575972,
+ "HashCode": 2102170556,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
"AssemblyName": "Microsoft.AspNetCore.Components.Forms",
@@ -2004,7 +2004,7 @@
}
},
{
- "HashCode": 1797472468,
+ "HashCode": -482688983,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
"AssemblyName": "Microsoft.AspNetCore.Components.Forms",
@@ -2022,7 +2022,7 @@
}
},
{
- "HashCode": -452896661,
+ "HashCode": 1628443878,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2118,7 +2118,7 @@
}
},
{
- "HashCode": 909864264,
+ "HashCode": -195256721,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2215,7 +2215,7 @@
}
},
{
- "HashCode": 975716500,
+ "HashCode": 445342415,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2246,7 +2246,7 @@
}
},
{
- "HashCode": -661819599,
+ "HashCode": 524038033,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2278,7 +2278,7 @@
}
},
{
- "HashCode": 147494700,
+ "HashCode": 1252144048,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2343,7 +2343,7 @@
}
},
{
- "HashCode": 108741570,
+ "HashCode": -1464424535,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2409,7 +2409,7 @@
}
},
{
- "HashCode": 1376972735,
+ "HashCode": -1359623576,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2508,7 +2508,7 @@
}
},
{
- "HashCode": 1628593191,
+ "HashCode": -692813882,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2608,7 +2608,7 @@
}
},
{
- "HashCode": 97929097,
+ "HashCode": 1910090075,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputFile",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2646,7 +2646,7 @@
}
},
{
- "HashCode": 1477077814,
+ "HashCode": -1923953246,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputFile",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2685,7 +2685,7 @@
}
},
{
- "HashCode": -235102393,
+ "HashCode": 1943284099,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2774,7 +2774,7 @@
}
},
{
- "HashCode": -1988918278,
+ "HashCode": -361165754,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2864,7 +2864,7 @@
}
},
{
- "HashCode": -979720853,
+ "HashCode": -757303608,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadio",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2923,7 +2923,7 @@
}
},
{
- "HashCode": -1733717885,
+ "HashCode": -848338056,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadio",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2983,7 +2983,7 @@
}
},
{
- "HashCode": 1601423437,
+ "HashCode": 1953175110,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3082,7 +3082,7 @@
}
},
{
- "HashCode": -33891971,
+ "HashCode": 474206850,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3182,7 +3182,7 @@
}
},
{
- "HashCode": -1862358816,
+ "HashCode": 630686013,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3201,7 +3201,7 @@
}
},
{
- "HashCode": 1340721914,
+ "HashCode": -1465849272,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3221,7 +3221,7 @@
}
},
{
- "HashCode": 1218017095,
+ "HashCode": 163528869,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3311,7 +3311,7 @@
}
},
{
- "HashCode": 1767659935,
+ "HashCode": -288893164,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3402,7 +3402,7 @@
}
},
{
- "HashCode": 94145117,
+ "HashCode": 1729278118,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3421,7 +3421,7 @@
}
},
{
- "HashCode": 970147423,
+ "HashCode": 1117813996,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3441,7 +3441,7 @@
}
},
{
- "HashCode": 1292219308,
+ "HashCode": 1496578618,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputText",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3506,7 +3506,7 @@
}
},
{
- "HashCode": 2113073277,
+ "HashCode": -1585426695,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputText",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3572,7 +3572,7 @@
}
},
{
- "HashCode": 2032276109,
+ "HashCode": 61751328,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3637,7 +3637,7 @@
}
},
{
- "HashCode": 470700206,
+ "HashCode": 1374436265,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3703,7 +3703,7 @@
}
},
{
- "HashCode": -808078148,
+ "HashCode": -659362594,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3753,7 +3753,7 @@
}
},
{
- "HashCode": 1870394043,
+ "HashCode": 1581579826,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3804,7 +3804,7 @@
}
},
{
- "HashCode": -724624780,
+ "HashCode": -2057197105,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3841,7 +3841,7 @@
}
},
{
- "HashCode": 229133919,
+ "HashCode": -2011085731,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3879,7 +3879,7 @@
}
},
{
- "HashCode": 201683578,
+ "HashCode": -1851314927,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3916,7 +3916,7 @@
}
},
{
- "HashCode": -491504269,
+ "HashCode": -1359061253,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3954,7 +3954,7 @@
}
},
{
- "HashCode": -320305158,
+ "HashCode": -1761128169,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4011,7 +4011,7 @@
}
},
{
- "HashCode": 1584667910,
+ "HashCode": -1869434489,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4069,7 +4069,7 @@
}
},
{
- "HashCode": 1341932670,
+ "HashCode": -1052304781,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4088,7 +4088,7 @@
}
},
{
- "HashCode": 706159756,
+ "HashCode": -1121763800,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4108,7 +4108,7 @@
}
},
{
- "HashCode": -117164107,
+ "HashCode": -684097093,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4137,7 +4137,7 @@
}
},
{
- "HashCode": -1341168096,
+ "HashCode": -1027610192,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4167,7 +4167,7 @@
}
},
{
- "HashCode": -2104054415,
+ "HashCode": -1327762611,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4186,7 +4186,7 @@
}
},
{
- "HashCode": 1357447395,
+ "HashCode": -2125720288,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4206,7 +4206,7 @@
}
},
{
- "HashCode": -1575792696,
+ "HashCode": 1482916572,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4223,7 +4223,7 @@
}
},
{
- "HashCode": 420812537,
+ "HashCode": -45162829,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4241,7 +4241,7 @@
}
},
{
- "HashCode": 1321991045,
+ "HashCode": -1682371921,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4270,7 +4270,7 @@
}
},
{
- "HashCode": -1191411754,
+ "HashCode": 1125749919,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4300,7 +4300,7 @@
}
},
{
- "HashCode": 1811180338,
+ "HashCode": -1544915303,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4319,7 +4319,7 @@
}
},
{
- "HashCode": -223301154,
+ "HashCode": 597778349,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4339,7 +4339,7 @@
}
},
{
- "HashCode": 1835549384,
+ "HashCode": 95758389,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4397,7 +4397,7 @@
}
},
{
- "HashCode": -916302333,
+ "HashCode": 76599021,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4456,7 +4456,7 @@
}
},
{
- "HashCode": -900378922,
+ "HashCode": 1764029084,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4475,7 +4475,7 @@
}
},
{
- "HashCode": 1503777522,
+ "HashCode": -64841271,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4495,7 +4495,7 @@
}
},
{
- "HashCode": -660999574,
+ "HashCode": -1667002634,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4526,7 +4526,7 @@
}
},
{
- "HashCode": -647490644,
+ "HashCode": 837621538,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4558,7 +4558,7 @@
}
},
{
- "HashCode": -373192234,
+ "HashCode": -295536632,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4670,7 +4670,7 @@
}
},
{
- "HashCode": -2018436205,
+ "HashCode": -1983420986,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4783,7 +4783,7 @@
}
},
{
- "HashCode": -1831194480,
+ "HashCode": -1822670835,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4814,7 +4814,7 @@
}
},
{
- "HashCode": -1481994524,
+ "HashCode": -1801130104,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4846,7 +4846,7 @@
}
},
{
- "HashCode": 522733807,
+ "HashCode": -701674250,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4877,7 +4877,7 @@
}
},
{
- "HashCode": -71311032,
+ "HashCode": -613632997,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4909,7 +4909,7 @@
}
},
{
- "HashCode": 787809707,
+ "HashCode": 1837489438,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4940,7 +4940,7 @@
}
},
{
- "HashCode": 1676065419,
+ "HashCode": 334185510,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4972,7 +4972,7 @@
}
},
{
- "HashCode": 1480409020,
+ "HashCode": -99392235,
"Kind": "Components.Component",
"Name": "Radzen.RadzenComponentWithChildren",
"AssemblyName": "Radzen.Blazor",
@@ -5067,7 +5067,7 @@
}
},
{
- "HashCode": 926568873,
+ "HashCode": -1950122926,
"Kind": "Components.Component",
"Name": "Radzen.RadzenComponentWithChildren",
"AssemblyName": "Radzen.Blazor",
@@ -5163,7 +5163,7 @@
}
},
{
- "HashCode": 1386095712,
+ "HashCode": 864220266,
"Kind": "Components.ChildContent",
"Name": "Radzen.RadzenComponentWithChildren.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -5182,7 +5182,7 @@
}
},
{
- "HashCode": -757995886,
+ "HashCode": 1628149403,
"Kind": "Components.ChildContent",
"Name": "Radzen.RadzenComponentWithChildren.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -5202,7 +5202,7 @@
}
},
{
- "HashCode": -928743710,
+ "HashCode": -1835957260,
"Kind": "Components.Component",
"Name": "Radzen.DataBoundFormComponent",
"AssemblyName": "Radzen.Blazor",
@@ -5423,7 +5423,7 @@
}
},
{
- "HashCode": 1855519016,
+ "HashCode": 1237792968,
"Kind": "Components.Component",
"Name": "Radzen.DataBoundFormComponent",
"AssemblyName": "Radzen.Blazor",
@@ -5645,7 +5645,7 @@
}
},
{
- "HashCode": -1790832953,
+ "HashCode": 510479156,
"Kind": "Components.Component",
"Name": "Radzen.DropDownBase",
"AssemblyName": "Radzen.Blazor",
@@ -5977,7 +5977,7 @@
}
},
{
- "HashCode": 1382841485,
+ "HashCode": 1002597032,
"Kind": "Components.Component",
"Name": "Radzen.DropDownBase",
"AssemblyName": "Radzen.Blazor",
@@ -6310,7 +6310,7 @@
}
},
{
- "HashCode": -1929898851,
+ "HashCode": -1400859470,
"Kind": "Components.ChildContent",
"Name": "Radzen.DropDownBase.Template",
"AssemblyName": "Radzen.Blazor",
@@ -6341,7 +6341,7 @@
}
},
{
- "HashCode": -2120260111,
+ "HashCode": 2043703093,
"Kind": "Components.ChildContent",
"Name": "Radzen.DropDownBase.Template",
"AssemblyName": "Radzen.Blazor",
@@ -6373,7 +6373,7 @@
}
},
{
- "HashCode": -914496159,
+ "HashCode": -100804082,
"Kind": "Components.Component",
"Name": "Radzen.FormComponent",
"AssemblyName": "Radzen.Blazor",
@@ -6548,7 +6548,7 @@
}
},
{
- "HashCode": -504609254,
+ "HashCode": 496217547,
"Kind": "Components.Component",
"Name": "Radzen.FormComponent",
"AssemblyName": "Radzen.Blazor",
@@ -6724,7 +6724,7 @@
}
},
{
- "HashCode": 1115118582,
+ "HashCode": -1580219955,
"Kind": "Components.Component",
"Name": "Radzen.PagedDataBoundComponent",
"AssemblyName": "Radzen.Blazor",
@@ -6973,7 +6973,7 @@
}
},
{
- "HashCode": -914107888,
+ "HashCode": -1960276744,
"Kind": "Components.Component",
"Name": "Radzen.PagedDataBoundComponent",
"AssemblyName": "Radzen.Blazor",
@@ -7223,7 +7223,7 @@
}
},
{
- "HashCode": 1472051213,
+ "HashCode": 973566867,
"Kind": "Components.ChildContent",
"Name": "Radzen.PagedDataBoundComponent.Template",
"AssemblyName": "Radzen.Blazor",
@@ -7254,7 +7254,7 @@
}
},
{
- "HashCode": -1552278601,
+ "HashCode": 1185072417,
"Kind": "Components.ChildContent",
"Name": "Radzen.PagedDataBoundComponent.Template",
"AssemblyName": "Radzen.Blazor",
@@ -7286,7 +7286,7 @@
}
},
{
- "HashCode": -1320865641,
+ "HashCode": -2041438456,
"Kind": "Components.Component",
"Name": "Radzen.RadzenComponent",
"AssemblyName": "Radzen.Blazor",
@@ -7371,7 +7371,7 @@
}
},
{
- "HashCode": -1144288760,
+ "HashCode": -1740449998,
"Kind": "Components.Component",
"Name": "Radzen.RadzenComponent",
"AssemblyName": "Radzen.Blazor",
@@ -7457,7 +7457,7 @@
}
},
{
- "HashCode": -1370535373,
+ "HashCode": -501976765,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenAccordion",
"AssemblyName": "Radzen.Blazor",
@@ -7590,7 +7590,7 @@
}
},
{
- "HashCode": -926876239,
+ "HashCode": -909622855,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenAccordion",
"AssemblyName": "Radzen.Blazor",
@@ -7724,7 +7724,7 @@
}
},
{
- "HashCode": -19955796,
+ "HashCode": -121203242,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenAccordion.Items",
"AssemblyName": "Radzen.Blazor",
@@ -7743,7 +7743,7 @@
}
},
{
- "HashCode": 882709825,
+ "HashCode": 1678890535,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenAccordion.Items",
"AssemblyName": "Radzen.Blazor",
@@ -7763,7 +7763,7 @@
}
},
{
- "HashCode": 373248185,
+ "HashCode": 1291498019,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenAccordionItem",
"AssemblyName": "Radzen.Blazor",
@@ -7885,7 +7885,7 @@
}
},
{
- "HashCode": -40412171,
+ "HashCode": -562061698,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenAccordionItem",
"AssemblyName": "Radzen.Blazor",
@@ -8008,7 +8008,7 @@
}
},
{
- "HashCode": -2040024753,
+ "HashCode": -1517988946,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenAccordionItem.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -8027,7 +8027,7 @@
}
},
{
- "HashCode": -1317489374,
+ "HashCode": -1059277448,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenAccordionItem.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -8047,7 +8047,7 @@
}
},
{
- "HashCode": 8178526,
+ "HashCode": 1188837595,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenArcGaugeScale",
"AssemblyName": "Radzen.Blazor",
@@ -8285,7 +8285,7 @@
}
},
{
- "HashCode": -381197407,
+ "HashCode": -1151619630,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenArcGaugeScale",
"AssemblyName": "Radzen.Blazor",
@@ -8524,7 +8524,7 @@
}
},
{
- "HashCode": -1065963912,
+ "HashCode": -1762719718,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenArcGaugeScale.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -8543,7 +8543,7 @@
}
},
{
- "HashCode": 2136207617,
+ "HashCode": -887501653,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenArcGaugeScale.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -8563,7 +8563,7 @@
}
},
{
- "HashCode": -1638732062,
+ "HashCode": -1941370155,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenArcGaugeScaleValue",
"AssemblyName": "Radzen.Blazor",
@@ -8656,7 +8656,7 @@
}
},
{
- "HashCode": 1485881795,
+ "HashCode": -988380144,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenArcGaugeScaleValue",
"AssemblyName": "Radzen.Blazor",
@@ -8750,7 +8750,7 @@
}
},
{
- "HashCode": 177296047,
+ "HashCode": 1892572643,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenArcGaugeScaleValue.Template",
"AssemblyName": "Radzen.Blazor",
@@ -8781,7 +8781,7 @@
}
},
{
- "HashCode": 130627337,
+ "HashCode": -564186600,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenArcGaugeScaleValue.Template",
"AssemblyName": "Radzen.Blazor",
@@ -8813,7 +8813,7 @@
}
},
{
- "HashCode": -1347759452,
+ "HashCode": 841482879,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenAreaSeries",
"AssemblyName": "Radzen.Blazor",
@@ -8985,7 +8985,7 @@
}
},
{
- "HashCode": 915148077,
+ "HashCode": -1834037610,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenAreaSeries",
"AssemblyName": "Radzen.Blazor",
@@ -9158,7 +9158,7 @@
}
},
{
- "HashCode": 83616273,
+ "HashCode": 502917789,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenAreaSeries.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -9177,7 +9177,7 @@
}
},
{
- "HashCode": -1891833395,
+ "HashCode": 285794382,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenAreaSeries.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -9197,7 +9197,7 @@
}
},
{
- "HashCode": -1179091868,
+ "HashCode": 1095462025,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenAreaSeries.TooltipTemplate",
"AssemblyName": "Radzen.Blazor",
@@ -9228,7 +9228,7 @@
}
},
{
- "HashCode": 336081497,
+ "HashCode": -699562495,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenAreaSeries.TooltipTemplate",
"AssemblyName": "Radzen.Blazor",
@@ -9260,7 +9260,7 @@
}
},
{
- "HashCode": 1986685023,
+ "HashCode": 556304530,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenAutoComplete",
"AssemblyName": "Radzen.Blazor",
@@ -9485,7 +9485,7 @@
}
},
{
- "HashCode": -443048541,
+ "HashCode": -1928520171,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenAutoComplete",
"AssemblyName": "Radzen.Blazor",
@@ -9711,7 +9711,7 @@
}
},
{
- "HashCode": -2059698514,
+ "HashCode": -1336042661,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenAxisTitle",
"AssemblyName": "Radzen.Blazor",
@@ -9739,7 +9739,7 @@
}
},
{
- "HashCode": 1986371060,
+ "HashCode": 487777849,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenAxisTitle",
"AssemblyName": "Radzen.Blazor",
@@ -9768,7 +9768,7 @@
}
},
{
- "HashCode": 1261811915,
+ "HashCode": 338623810,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBadge",
"AssemblyName": "Radzen.Blazor",
@@ -9891,7 +9891,7 @@
}
},
{
- "HashCode": -846242829,
+ "HashCode": 685742767,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBadge",
"AssemblyName": "Radzen.Blazor",
@@ -10015,7 +10015,7 @@
}
},
{
- "HashCode": -966895837,
+ "HashCode": 2026222959,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBadge.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -10034,7 +10034,7 @@
}
},
{
- "HashCode": -9446807,
+ "HashCode": -487511898,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBadge.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -10054,7 +10054,7 @@
}
},
{
- "HashCode": -1243384905,
+ "HashCode": 328239085,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBarOptions",
"AssemblyName": "Radzen.Blazor",
@@ -10091,7 +10091,7 @@
}
},
{
- "HashCode": -1433136883,
+ "HashCode": -1447078350,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBarOptions",
"AssemblyName": "Radzen.Blazor",
@@ -10129,7 +10129,7 @@
}
},
{
- "HashCode": -33770532,
+ "HashCode": -304092307,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBarSeries",
"AssemblyName": "Radzen.Blazor",
@@ -10310,7 +10310,7 @@
}
},
{
- "HashCode": 1802117399,
+ "HashCode": -506372305,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBarSeries",
"AssemblyName": "Radzen.Blazor",
@@ -10492,7 +10492,7 @@
}
},
{
- "HashCode": -71945721,
+ "HashCode": 1473848799,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBarSeries.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -10511,7 +10511,7 @@
}
},
{
- "HashCode": 715899261,
+ "HashCode": -341967819,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBarSeries.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -10531,7 +10531,7 @@
}
},
{
- "HashCode": -1490822021,
+ "HashCode": -1718524425,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBarSeries.TooltipTemplate",
"AssemblyName": "Radzen.Blazor",
@@ -10562,7 +10562,7 @@
}
},
{
- "HashCode": -885382431,
+ "HashCode": 1116904679,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBarSeries.TooltipTemplate",
"AssemblyName": "Radzen.Blazor",
@@ -10594,7 +10594,7 @@
}
},
{
- "HashCode": -977223835,
+ "HashCode": -1363562203,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBody",
"AssemblyName": "Radzen.Blazor",
@@ -10708,7 +10708,7 @@
}
},
{
- "HashCode": -1216943985,
+ "HashCode": -1858028887,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBody",
"AssemblyName": "Radzen.Blazor",
@@ -10823,7 +10823,7 @@
}
},
{
- "HashCode": -700978236,
+ "HashCode": -697822678,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBody.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -10842,7 +10842,7 @@
}
},
{
- "HashCode": 247497445,
+ "HashCode": 921917023,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBody.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -10862,7 +10862,7 @@
}
},
{
- "HashCode": -1806669034,
+ "HashCode": -1103875987,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBreadCrumb",
"AssemblyName": "Radzen.Blazor",
@@ -10977,7 +10977,7 @@
}
},
{
- "HashCode": -1472376889,
+ "HashCode": 1289481056,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBreadCrumb",
"AssemblyName": "Radzen.Blazor",
@@ -11093,7 +11093,7 @@
}
},
{
- "HashCode": -172699302,
+ "HashCode": -197534164,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBreadCrumb.Template",
"AssemblyName": "Radzen.Blazor",
@@ -11124,7 +11124,7 @@
}
},
{
- "HashCode": 1167086198,
+ "HashCode": 993221958,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBreadCrumb.Template",
"AssemblyName": "Radzen.Blazor",
@@ -11156,7 +11156,7 @@
}
},
{
- "HashCode": -1166091197,
+ "HashCode": -1545926131,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBreadCrumb.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -11175,7 +11175,7 @@
}
},
{
- "HashCode": 349293533,
+ "HashCode": 823978398,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenBreadCrumb.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -11195,7 +11195,7 @@
}
},
{
- "HashCode": -402274955,
+ "HashCode": -2073131558,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBreadCrumbItem",
"AssemblyName": "Radzen.Blazor",
@@ -11307,7 +11307,7 @@
}
},
{
- "HashCode": -400826151,
+ "HashCode": 627533034,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenBreadCrumbItem",
"AssemblyName": "Radzen.Blazor",
@@ -11420,7 +11420,7 @@
}
},
{
- "HashCode": 1705249899,
+ "HashCode": 1499833339,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenButton",
"AssemblyName": "Radzen.Blazor",
@@ -11609,7 +11609,7 @@
}
},
{
- "HashCode": 419897172,
+ "HashCode": 1250041926,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenButton",
"AssemblyName": "Radzen.Blazor",
@@ -11799,7 +11799,7 @@
}
},
{
- "HashCode": -32813883,
+ "HashCode": -601718013,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenButton.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -11818,7 +11818,7 @@
}
},
{
- "HashCode": -31126393,
+ "HashCode": 1270537985,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenButton.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -11838,7 +11838,7 @@
}
},
{
- "HashCode": -285972881,
+ "HashCode": -1225054854,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenCard",
"AssemblyName": "Radzen.Blazor",
@@ -11933,7 +11933,7 @@
}
},
{
- "HashCode": 1477824892,
+ "HashCode": -911898885,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenCard",
"AssemblyName": "Radzen.Blazor",
@@ -12029,7 +12029,7 @@
}
},
{
- "HashCode": -1451519988,
+ "HashCode": 1808972974,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenCard.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -12048,7 +12048,7 @@
}
},
{
- "HashCode": 988013229,
+ "HashCode": -796201531,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenCard.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -12068,7 +12068,7 @@
}
},
{
- "HashCode": 1810949649,
+ "HashCode": 762636394,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenChart",
"AssemblyName": "Radzen.Blazor",
@@ -12183,7 +12183,7 @@
}
},
{
- "HashCode": 79838901,
+ "HashCode": 2075229242,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenChart",
"AssemblyName": "Radzen.Blazor",
@@ -12299,7 +12299,7 @@
}
},
{
- "HashCode": 696829568,
+ "HashCode": -586419593,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenChart.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -12318,7 +12318,7 @@
}
},
{
- "HashCode": -1118895845,
+ "HashCode": -349028756,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenChart.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -12338,7 +12338,7 @@
}
},
{
- "HashCode": 1106988078,
+ "HashCode": -1063904996,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenChartTooltipOptions",
"AssemblyName": "Radzen.Blazor",
@@ -12375,7 +12375,7 @@
}
},
{
- "HashCode": 2066312579,
+ "HashCode": 1736975101,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenChartTooltipOptions",
"AssemblyName": "Radzen.Blazor",
@@ -12413,7 +12413,7 @@
}
},
{
- "HashCode": 1699169657,
+ "HashCode": 711848553,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenCheckBox",
"AssemblyName": "Radzen.Blazor",
@@ -12597,7 +12597,7 @@
}
},
{
- "HashCode": -1806747806,
+ "HashCode": -10239837,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenCheckBox",
"AssemblyName": "Radzen.Blazor",
@@ -12782,7 +12782,7 @@
}
},
{
- "HashCode": -1170210710,
+ "HashCode": -623887395,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenCheckBoxList",
"AssemblyName": "Radzen.Blazor",
@@ -13004,7 +13004,7 @@
}
},
{
- "HashCode": 2095626996,
+ "HashCode": 217735607,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenCheckBoxList",
"AssemblyName": "Radzen.Blazor",
@@ -13227,7 +13227,7 @@
}
},
{
- "HashCode": 1349719557,
+ "HashCode": -701654457,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenCheckBoxList.Items",
"AssemblyName": "Radzen.Blazor",
@@ -13246,7 +13246,7 @@
}
},
{
- "HashCode": -159884848,
+ "HashCode": 1627316474,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenCheckBoxList.Items",
"AssemblyName": "Radzen.Blazor",
@@ -13266,7 +13266,7 @@
}
},
{
- "HashCode": 1288289390,
+ "HashCode": 599144342,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenCheckBoxListItem",
"AssemblyName": "Radzen.Blazor",
@@ -13391,7 +13391,7 @@
}
},
{
- "HashCode": -1850292868,
+ "HashCode": 1636907499,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenCheckBoxListItem",
"AssemblyName": "Radzen.Blazor",
@@ -13517,7 +13517,7 @@
}
},
{
- "HashCode": 886573119,
+ "HashCode": 1946810066,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenColorPicker",
"AssemblyName": "Radzen.Blazor",
@@ -13805,7 +13805,7 @@
}
},
{
- "HashCode": -1441424494,
+ "HashCode": -697763092,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenColorPicker",
"AssemblyName": "Radzen.Blazor",
@@ -14094,7 +14094,7 @@
}
},
{
- "HashCode": 2129770596,
+ "HashCode": 1378015680,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenColorPicker.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -14113,7 +14113,7 @@
}
},
{
- "HashCode": 287953352,
+ "HashCode": -1339384286,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenColorPicker.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -14133,7 +14133,7 @@
}
},
{
- "HashCode": 476900774,
+ "HashCode": 1871443112,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenColorPickerItem",
"AssemblyName": "Radzen.Blazor",
@@ -14161,7 +14161,7 @@
}
},
{
- "HashCode": 525871409,
+ "HashCode": -1427058599,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenColorPickerItem",
"AssemblyName": "Radzen.Blazor",
@@ -14190,7 +14190,7 @@
}
},
{
- "HashCode": 598315961,
+ "HashCode": -47698933,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenColumnOptions",
"AssemblyName": "Radzen.Blazor",
@@ -14227,7 +14227,7 @@
}
},
{
- "HashCode": 664079719,
+ "HashCode": 163741767,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenColumnOptions",
"AssemblyName": "Radzen.Blazor",
@@ -14265,7 +14265,7 @@
}
},
{
- "HashCode": 19247641,
+ "HashCode": -849618749,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenColumnSeries",
"AssemblyName": "Radzen.Blazor",
@@ -14446,7 +14446,7 @@
}
},
{
- "HashCode": 71672950,
+ "HashCode": 291877340,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenColumnSeries",
"AssemblyName": "Radzen.Blazor",
@@ -14628,7 +14628,7 @@
}
},
{
- "HashCode": 809843070,
+ "HashCode": 1432531366,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenColumnSeries.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -14647,7 +14647,7 @@
}
},
{
- "HashCode": 1379657607,
+ "HashCode": -1184184884,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenColumnSeries.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -14667,7 +14667,7 @@
}
},
{
- "HashCode": -960642586,
+ "HashCode": 1756387797,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenColumnSeries.TooltipTemplate",
"AssemblyName": "Radzen.Blazor",
@@ -14698,7 +14698,7 @@
}
},
{
- "HashCode": 191338691,
+ "HashCode": -1881100228,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenColumnSeries.TooltipTemplate",
"AssemblyName": "Radzen.Blazor",
@@ -14730,7 +14730,7 @@
}
},
{
- "HashCode": -513785473,
+ "HashCode": 1235584333,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenCompareValidator",
"AssemblyName": "Radzen.Blazor",
@@ -14861,7 +14861,7 @@
}
},
{
- "HashCode": -365707925,
+ "HashCode": -1617987356,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenCompareValidator",
"AssemblyName": "Radzen.Blazor",
@@ -14993,7 +14993,7 @@
}
},
{
- "HashCode": 1778906910,
+ "HashCode": -1656375883,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenContent",
"AssemblyName": "Radzen.Blazor",
@@ -15097,7 +15097,7 @@
}
},
{
- "HashCode": -173227455,
+ "HashCode": 854874189,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenContent",
"AssemblyName": "Radzen.Blazor",
@@ -15202,7 +15202,7 @@
}
},
{
- "HashCode": -2097826024,
+ "HashCode": -1428615295,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenContent.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -15221,7 +15221,7 @@
}
},
{
- "HashCode": 1808322382,
+ "HashCode": 602841258,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenContent.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -15241,7 +15241,7 @@
}
},
{
- "HashCode": -827614090,
+ "HashCode": 1108427361,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenContentContainer",
"AssemblyName": "Radzen.Blazor",
@@ -15345,7 +15345,7 @@
}
},
{
- "HashCode": -1793460778,
+ "HashCode": -1457428578,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenContentContainer",
"AssemblyName": "Radzen.Blazor",
@@ -15450,7 +15450,7 @@
}
},
{
- "HashCode": 1392169872,
+ "HashCode": 2045513573,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenContentContainer.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -15469,7 +15469,7 @@
}
},
{
- "HashCode": -1230921044,
+ "HashCode": -805572365,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenContentContainer.ChildContent",
"AssemblyName": "Radzen.Blazor",
@@ -15489,7 +15489,7 @@
}
},
{
- "HashCode": -623833257,
+ "HashCode": 1997657250,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenContextMenu",
"AssemblyName": "Radzen.Blazor",
@@ -15506,7 +15506,7 @@
}
},
{
- "HashCode": -829854199,
+ "HashCode": -1178676535,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenContextMenu",
"AssemblyName": "Radzen.Blazor",
@@ -15524,7 +15524,7 @@
}
},
{
- "HashCode": -56519420,
+ "HashCode": -530231182,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenDataGrid",
"AssemblyName": "Radzen.Blazor",
@@ -16512,7 +16512,7 @@
}
},
{
- "HashCode": 511172627,
+ "HashCode": 2071169259,
"Kind": "Components.Component",
"Name": "Radzen.Blazor.RadzenDataGrid",
"AssemblyName": "Radzen.Blazor",
@@ -17501,7 +17501,7 @@
}
},
{
- "HashCode": -1955390970,
+ "HashCode": -1562799193,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenDataGrid.Columns",
"AssemblyName": "Radzen.Blazor",
@@ -17520,7 +17520,7 @@
}
},
{
- "HashCode": -1886243970,
+ "HashCode": -1790391749,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenDataGrid.Columns",
"AssemblyName": "Radzen.Blazor",
@@ -17540,7 +17540,7 @@
}
},
{
- "HashCode": -1290867076,
+ "HashCode": -2110815027,
"Kind": "Components.ChildContent",
"Name": "Radzen.Blazor.RadzenDataGrid