studiocms 0.1.0-beta.24 → 0.1.0-beta.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +136 -0
- package/dist/cli/add/index.d.ts +3 -4
- package/dist/cli/add/index.js +6 -7
- package/dist/cli/crypto/genJWT/index.d.ts +5 -5
- package/dist/cli/crypto/genJWT/index.js +14 -15
- package/dist/cli/crypto/index.d.ts +2 -2
- package/dist/cli/crypto/index.js +4 -4
- package/dist/cli/getTurso/index.d.ts +2 -2
- package/dist/cli/getTurso/index.js +3 -4
- package/dist/cli/index.js +11 -10
- package/dist/cli/init/index.d.ts +4 -4
- package/dist/cli/init/index.js +11 -12
- package/dist/cli/users/index.d.ts +4 -4
- package/dist/cli/users/index.js +11 -12
- package/dist/cli/users/steps/libsqlCreateUsers.js +3 -3
- package/dist/cli/users/steps/libsqlModifyUsers.js +3 -3
- package/dist/{layouts → components}/auth/FallbackCanvas.astro +1 -1
- package/dist/components/auth/OAuthButton.astro +1 -1
- package/dist/components/auth/OAuthButtonStack.astro +2 -2
- package/dist/components/auth/StaticAuthCheck.astro +3 -3
- package/dist/{scripts → components/auth/component-scripts}/formListener.d.ts +3 -0
- package/dist/{scripts → components/auth/component-scripts}/formListener.js +1 -1
- package/dist/components/dashboard/BaseHead.astro +7 -18
- package/dist/components/dashboard/DashboardGrid.astro +4 -4
- package/dist/components/dashboard/DashboardGridItem.astro +3 -2
- package/dist/components/dashboard/DashboardPageHeader.astro +11 -6
- package/dist/components/dashboard/DoubleSidebar.astro +3 -3
- package/dist/components/dashboard/Footer.astro +3 -7
- package/dist/components/dashboard/LoginChecker.astro +17 -17
- package/dist/components/dashboard/MainSidebarContent.astro +27 -18
- package/dist/components/dashboard/PageHeader.astro +3 -2
- package/dist/components/dashboard/SidebarLink.astro +148 -31
- package/dist/components/dashboard/SidebarPluginLink.astro +4 -4
- package/dist/components/dashboard/SingleSidebar.astro +3 -3
- package/dist/components/dashboard/UserName.astro +2 -2
- package/dist/components/dashboard/component-scripts/dateTimeListener.js +4 -9
- package/dist/components/dashboard/component-scripts/dateWithTimeAndZone.d.ts +1 -0
- package/dist/components/dashboard/component-scripts/dateWithTimeAndZone.js +10 -7
- package/dist/components/dashboard/configuration/ConfigForm.astro +53 -152
- package/dist/components/dashboard/configuration/LoginPreview.astro +275 -0
- package/dist/components/dashboard/content-mgmt/CreateFolder.astro +6 -5
- package/dist/components/dashboard/content-mgmt/CreatePage.astro +23 -47
- package/dist/components/dashboard/content-mgmt/EditFolder.astro +5 -4
- package/dist/components/dashboard/content-mgmt/EditPage.astro +36 -85
- package/dist/components/dashboard/content-mgmt/InnerSidebarElement.astro +30 -22
- package/dist/components/dashboard/content-mgmt/PageEditorSwapper.astro +107 -0
- package/dist/components/dashboard/content-mgmt/PageHeader.astro +26 -18
- package/dist/components/dashboard/content-mgmt/PageTypeHandler.astro +107 -0
- package/dist/components/dashboard/content-mgmt/PluginFields.astro +6 -1
- package/dist/components/dashboard/content-mgmt/TreeRenderer.astro +8 -8
- package/dist/components/dashboard/content-mgmt/TreeSidebarFolder.astro +116 -24
- package/dist/components/dashboard/content-mgmt/TreeSidebarLink.astro +116 -24
- package/dist/components/dashboard/content-mgmt/runtime.js +1 -1
- package/dist/components/dashboard/plugins/SettingsRenderer.astro +6 -1
- package/dist/components/dashboard/profile/APITokens.astro +18 -12
- package/dist/components/dashboard/profile/BasicInfo.astro +17 -13
- package/dist/components/dashboard/profile/Notifications.astro +20 -8
- package/dist/components/dashboard/profile/SocialSignin.astro +11 -8
- package/dist/components/dashboard/profile/UpdatePassword.astro +10 -7
- package/dist/components/dashboard/profile/oAuthButtonProviders.d.ts +1 -8
- package/dist/components/dashboard/profile/oAuthButtonProviders.js +1 -15
- package/dist/components/dashboard/shared.d.ts +1 -1
- package/dist/components/dashboard/sidebar/UserAccount.astro +5 -6
- package/dist/components/dashboard/sidebar/VersionCheck.astro +7 -7
- package/dist/components/dashboard/sidebar/VersionCheckChangelog.astro +32 -8
- package/dist/components/dashboard/sidebar-modals/UserManagementModals.astro +8 -3
- package/dist/components/dashboard/sidebar-modals/VersionModal.astro +43 -24
- package/dist/components/dashboard/sidebarConfig.d.ts +2 -2
- package/dist/components/dashboard/sidebarConfig.js +7 -7
- package/dist/components/dashboard/user-mgmt/InnerSidebarElement.astro +20 -13
- package/dist/components/dashboard/user-mgmt/RankCheck.astro +10 -10
- package/dist/components/dashboard/user-mgmt/SocialSignin.astro +9 -10
- package/dist/components/dashboard/user-mgmt/UserListItem.astro +86 -30
- package/dist/components/default-grid-items/Recently-created-pages.astro +12 -10
- package/dist/components/default-grid-items/Recently-signed-up.astro +9 -9
- package/dist/components/default-grid-items/Recently-updated-pages.astro +12 -10
- package/dist/components/default-grid-items/Totals.astro +11 -10
- package/dist/{routes/firstTimeSetupRoutes/components → components/first-time-setup}/PageHeader.astro +4 -3
- package/dist/components/shared/Code.astro +72 -0
- package/dist/components/shared/SSRUser.astro +200 -0
- package/dist/components/shared/head/Favicons.astro +6 -0
- package/dist/components/shared/head/Global.astro +4 -0
- package/dist/components/shared/head/TitleTags.astro +14 -0
- package/dist/config.d.ts +1 -4
- package/dist/consts.d.ts +48 -3
- package/dist/consts.js +65 -10
- package/dist/db/config.d.ts +1499 -0
- package/dist/db/config.js +262 -4
- package/dist/effect.d.ts +2 -3
- package/dist/effect.js +2 -17
- package/dist/{styles/dashboard-code.css → fonts/syntax-font.css} +2 -20
- package/dist/{utils → handlers}/astroConfigCheck.js +1 -1
- package/dist/handlers/changelog.d.ts +1 -0
- package/dist/handlers/changelog.js +54 -0
- package/dist/handlers/index.d.ts +4 -0
- package/dist/handlers/index.js +10 -0
- package/dist/{pluginHandler.d.ts → handlers/pluginHandler.d.ts} +4 -3
- package/dist/{pluginHandler.js → handlers/pluginHandler.js} +264 -127
- package/dist/{routeHandler.d.ts → handlers/routeHandler.d.ts} +1 -1
- package/dist/{routeHandler.js → handlers/routeHandler.js} +7 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.js +184 -229
- package/dist/{lib → integrations}/dynamic-sitemap/index.js +1 -1
- package/dist/integrations/node-namespace.d.ts +15 -0
- package/dist/integrations/node-namespace.js +31 -0
- package/dist/integrations/plugins.d.ts +4 -0
- package/dist/integrations/plugins.js +7 -0
- package/dist/{lib → integrations}/robots/utils.d.ts +0 -8
- package/dist/{lib → integrations}/robots/utils.js +1 -5
- package/dist/{lib → integrations}/webVitals/checkForWebVitalsPlugin.js +3 -3
- package/{src/lib → dist/integrations}/webVitals/dashboard-grid-items/CoreVitals.astro +1 -1
- package/{src/lib → dist/integrations}/webVitals/dashboard-grid-items/MetricCard.astro +3 -2
- package/dist/{lib → integrations}/webVitals/dashboard-grid-items/SummaryCard.astro +2 -2
- package/dist/{lib → integrations}/webVitals/dashboard-grid-items/metric.css +17 -17
- package/dist/{lib → integrations}/webVitals/dashboard-grid-items/shared.d.ts +4 -4
- package/dist/{lib → integrations}/webVitals/dashboard-grid-items/shared.js +3 -3
- package/{src/lib → dist/integrations}/webVitals/pages/analytics/body.astro +10 -9
- package/dist/{lib → integrations}/webVitals/utils/webVitalsUtils.d.ts +9 -9
- package/dist/layouts/AuthLayout.astro +63 -0
- package/dist/layouts/{dashboard/Layout.astro → DashboardLayout.astro} +22 -10
- package/{src/routes/firstTimeSetupRoutes/components/Layout.astro → dist/layouts/FirstTimeSetupLayout.astro} +15 -3
- package/dist/middleware/index.d.ts +9 -0
- package/dist/middleware/index.js +67 -89
- package/dist/middleware/utils.d.ts +59 -36
- package/dist/middleware/utils.js +59 -40
- package/dist/routes/api/auth/[provider]/callback.d.ts +1 -4
- package/dist/routes/api/auth/[provider]/callback.js +29 -11
- package/dist/routes/api/auth/[provider]/index.d.ts +1 -4
- package/dist/routes/api/auth/[provider]/index.js +29 -11
- package/dist/routes/api/auth/forgot-password.d.ts +1 -4
- package/dist/routes/api/auth/forgot-password.js +85 -66
- package/dist/routes/api/auth/login.d.ts +1 -4
- package/dist/routes/api/auth/login.js +63 -47
- package/dist/routes/api/auth/logout.d.ts +6 -5
- package/dist/routes/api/auth/logout.js +38 -24
- package/dist/routes/api/auth/register.d.ts +1 -4
- package/dist/routes/api/auth/register.js +74 -63
- package/dist/routes/api/auth/shared.d.ts +4 -4
- package/dist/routes/api/auth/shared.js +19 -26
- package/dist/routes/api/dashboard/api-tokens.d.ts +1 -5
- package/dist/routes/api/dashboard/api-tokens.js +70 -64
- package/dist/routes/api/dashboard/config.d.ts +1 -4
- package/dist/routes/api/dashboard/config.js +51 -33
- package/dist/routes/api/dashboard/content/diff.d.ts +1 -4
- package/dist/routes/api/dashboard/content/diff.js +50 -29
- package/dist/routes/api/dashboard/content/folder.d.ts +1 -6
- package/dist/routes/api/dashboard/content/folder.js +106 -86
- package/dist/routes/api/dashboard/content/page.d.ts +1 -5
- package/dist/routes/api/dashboard/content/page.js +207 -202
- package/dist/routes/api/dashboard/create-reset-link.d.ts +1 -4
- package/dist/routes/api/dashboard/create-reset-link.js +53 -40
- package/dist/routes/api/dashboard/create-user-invite.d.ts +1 -4
- package/dist/routes/api/dashboard/create-user-invite.js +128 -106
- package/dist/routes/api/dashboard/create-user.d.ts +1 -4
- package/dist/routes/api/dashboard/create-user.js +132 -68
- package/dist/routes/api/dashboard/email-notification-settings-site.d.ts +1 -4
- package/dist/routes/api/dashboard/email-notification-settings-site.js +47 -21
- package/dist/routes/api/dashboard/partials/LiveRender.astro +21 -16
- package/dist/routes/api/dashboard/plugins/[plugin].d.ts +1 -4
- package/dist/routes/api/dashboard/plugins/[plugin].js +57 -33
- package/dist/routes/api/dashboard/profile.d.ts +1 -4
- package/dist/routes/api/dashboard/profile.js +133 -95
- package/dist/routes/api/dashboard/resend-verify-email.d.ts +1 -4
- package/dist/routes/api/dashboard/resend-verify-email.js +55 -29
- package/dist/routes/api/dashboard/reset-password.d.ts +1 -4
- package/dist/routes/api/dashboard/reset-password.js +76 -50
- package/dist/routes/api/dashboard/search-list.d.ts +1 -4
- package/dist/routes/api/dashboard/search-list.js +45 -37
- package/dist/routes/api/dashboard/update-user-notifications.d.ts +1 -4
- package/dist/routes/api/dashboard/update-user-notifications.js +48 -36
- package/dist/routes/api/dashboard/users.d.ts +1 -5
- package/dist/routes/api/dashboard/users.js +150 -96
- package/dist/routes/api/dashboard/verify-email.d.ts +1 -4
- package/dist/routes/api/dashboard/verify-email.js +52 -33
- package/dist/routes/api/dashboard/verify-session.d.ts +2 -29
- package/dist/routes/api/dashboard/verify-session.js +85 -73
- package/dist/routes/api/mailer/config.d.ts +2 -6
- package/dist/routes/api/mailer/config.js +86 -72
- package/dist/routes/api/mailer/test-email.d.ts +1 -4
- package/dist/routes/api/mailer/test-email.js +56 -33
- package/dist/routes/api/render.astro +1 -1
- package/dist/routes/api/rest/utils/auth-token.d.ts +3 -3
- package/dist/routes/api/rest/utils/auth-token.js +1 -2
- package/dist/routes/api/rest/v1/folders/[id].d.ts +2 -7
- package/dist/routes/api/rest/v1/folders/[id].js +105 -94
- package/dist/routes/api/rest/v1/folders/index.d.ts +2 -6
- package/dist/routes/api/rest/v1/folders/index.js +82 -66
- package/dist/routes/api/rest/v1/pages/[id]/history/[diffid].d.ts +1 -4
- package/dist/routes/api/rest/v1/pages/[id]/history/[diffid].js +46 -34
- package/dist/routes/api/rest/v1/pages/[id]/history/index.d.ts +1 -4
- package/dist/routes/api/rest/v1/pages/[id]/history/index.js +44 -39
- package/dist/routes/api/rest/v1/pages/[id]/index.d.ts +1 -6
- package/dist/routes/api/rest/v1/pages/[id]/index.js +158 -151
- package/dist/routes/api/rest/v1/pages/index.d.ts +1 -5
- package/dist/routes/api/rest/v1/pages/index.js +112 -107
- package/dist/routes/api/rest/v1/public/folders/[id].d.ts +1 -4
- package/dist/routes/api/rest/v1/public/folders/[id].js +32 -23
- package/dist/routes/api/rest/v1/public/folders/index.d.ts +1 -4
- package/dist/routes/api/rest/v1/public/folders/index.js +43 -33
- package/dist/routes/api/rest/v1/public/pages/[id].d.ts +1 -4
- package/dist/routes/api/rest/v1/public/pages/[id].js +38 -26
- package/dist/routes/api/rest/v1/public/pages/index.d.ts +1 -4
- package/dist/routes/api/rest/v1/public/pages/index.js +47 -44
- package/dist/routes/api/rest/v1/settings/index.d.ts +1 -5
- package/dist/routes/api/rest/v1/settings/index.js +60 -54
- package/dist/routes/api/rest/v1/users/[id].d.ts +2 -7
- package/dist/routes/api/rest/v1/users/[id].js +257 -231
- package/dist/routes/api/rest/v1/users/index.d.ts +2 -6
- package/dist/routes/api/rest/v1/users/index.js +154 -136
- package/dist/routes/api/sdk/fallback-list-pages.json.d.ts +1 -4
- package/dist/routes/api/sdk/fallback-list-pages.json.js +26 -33
- package/dist/routes/api/sdk/full-changelog.json.d.ts +1 -4
- package/dist/routes/api/sdk/full-changelog.json.js +27 -26
- package/dist/routes/api/sdk/list-pages.d.ts +1 -4
- package/dist/routes/api/sdk/list-pages.js +36 -29
- package/dist/routes/api/sdk/update-latest-version-cache.d.ts +1 -4
- package/dist/routes/api/sdk/update-latest-version-cache.js +30 -28
- package/dist/routes/api/sdk/utils/changelog.d.ts +5 -21
- package/dist/routes/api/sdk/utils/changelog.js +25 -131
- package/dist/routes/auth/login.astro +68 -58
- package/dist/routes/auth/logout.astro +3 -3
- package/dist/routes/auth/signup.astro +9 -9
- package/dist/routes/dashboard/[...pluginPage].astro +4 -2
- package/dist/routes/dashboard/configuration.astro +7 -4
- package/dist/routes/dashboard/content-management/createfolder.astro +5 -3
- package/dist/routes/dashboard/content-management/createpage.astro +5 -3
- package/dist/routes/dashboard/content-management/diff.astro +19 -15
- package/dist/routes/dashboard/content-management/editfolder.astro +4 -2
- package/dist/routes/dashboard/content-management/editpage.astro +4 -2
- package/dist/routes/dashboard/content-management/index.astro +5 -3
- package/dist/routes/dashboard/index.astro +4 -2
- package/dist/routes/dashboard/password-reset.astro +13 -8
- package/dist/routes/dashboard/plugins/[plugin].astro +10 -7
- package/dist/routes/dashboard/profile.astro +9 -4
- package/dist/routes/dashboard/smtp-configuration.astro +30 -18
- package/dist/routes/dashboard/unverified-email.astro +9 -9
- package/dist/routes/dashboard/user-management/edit.astro +53 -39
- package/dist/routes/dashboard/user-management/index.astro +6 -4
- package/dist/routes/error-pages/404.astro +6 -4
- package/dist/routes/firstTimeSetupRoutes/1-start.astro +18 -110
- package/dist/routes/firstTimeSetupRoutes/2-next.astro +60 -44
- package/dist/routes/firstTimeSetupRoutes/3-done.astro +9 -11
- package/dist/routes/firstTimeSetupRoutes/api/step-1.d.ts +1 -4
- package/dist/routes/firstTimeSetupRoutes/api/step-1.js +98 -87
- package/dist/routes/firstTimeSetupRoutes/api/step-2.d.ts +1 -4
- package/dist/routes/firstTimeSetupRoutes/api/step-2.js +95 -87
- package/dist/routes/firstTimeSetupRoutes/index.astro +6 -0
- package/dist/runtime/index.d.ts +2 -2
- package/dist/runtime/index.js +2 -3
- package/dist/schemas/config/index.js +1 -1
- package/dist/schemas/plugins/index.d.ts +57 -57
- package/dist/schemas/plugins/shared.d.ts +196 -77
- package/dist/schemas/plugins/shared.js +10 -16
- package/dist/styles/404.css +1 -1
- package/dist/styles/{authlayout.css → auth-layout.css} +1 -1
- package/dist/styles/code-component.css +56 -0
- package/dist/styles/dashboard-base.css +31 -62
- package/dist/styles/dashboard-diff.css +32 -32
- package/dist/theme.d.ts +1 -0
- package/dist/types.d.ts +3 -23
- package/dist/{lib → utils}/effects/index.d.ts +0 -1
- package/dist/{lib → utils}/effects/index.js +0 -2
- package/dist/{lib → utils}/effects/logger.d.ts +2 -4
- package/dist/{lib → utils}/effects/logger.js +2 -4
- package/dist/utils/effects/smtp.d.ts +40 -0
- package/dist/utils/effects/smtp.js +75 -0
- package/dist/utils/safeString.d.ts +1 -1
- package/dist/utils/safeString.js +1 -3
- package/dist/utils/stripIconify.d.ts +13 -0
- package/dist/utils/stripIconify.js +11 -0
- package/dist/utils/tinyMDParser.d.ts +6 -0
- package/dist/utils/tinyMDParser.js +5 -5
- package/dist/virtual.d.ts +194 -236
- package/dist/virtuals/auth/core.d.ts +91 -0
- package/dist/virtuals/auth/core.js +45 -0
- package/dist/{lib → virtuals}/auth/index.d.ts +1 -4
- package/dist/virtuals/auth/index.js +9 -0
- package/dist/virtuals/auth/scripts/three.d.ts +108 -0
- package/dist/virtuals/auth/scripts/three.js +484 -0
- package/dist/virtuals/auth/scripts/utils/fitModelToViewport.d.ts +10 -0
- package/dist/virtuals/auth/scripts/utils/fitModelToViewport.js +26 -0
- package/dist/{utils/validImages.d.ts → virtuals/auth/validImages/index.d.ts} +1 -1
- package/dist/virtuals/auth/validImages/index.js +39 -0
- package/dist/virtuals/auth/validImages/studiocms-blobs-dark.webp +0 -0
- package/dist/virtuals/auth/validImages/studiocms-blobs-light.webp +0 -0
- package/dist/virtuals/auth/validImages/studiocms-blocks-dark.webp +0 -0
- package/dist/virtuals/auth/validImages/studiocms-blocks-light.webp +0 -0
- package/dist/virtuals/auth/validImages/studiocms-curves-dark.webp +0 -0
- package/dist/virtuals/auth/validImages/studiocms-curves-light.webp +0 -0
- package/dist/{lib → virtuals}/auth/verify-email.d.ts +10 -10
- package/dist/{lib → virtuals}/auth/verify-email.js +19 -20
- package/dist/virtuals/components/Generator.astro +5 -0
- package/{src → dist/virtuals}/components/Renderer.astro +1 -1
- package/{src/lib → dist/virtuals}/i18n/LanguageSelector.astro +1 -1
- package/dist/{lib → virtuals}/i18n/client.d.ts +100 -4
- package/dist/{lib → virtuals}/i18n/client.js +11 -10
- package/dist/virtuals/i18n/config.d.ts +430 -0
- package/dist/virtuals/i18n/config.js +29 -0
- package/dist/virtuals/i18n/server.d.ts +116 -0
- package/dist/{lib/i18n/index.js → virtuals/i18n/server.js} +6 -19
- package/dist/{lib → virtuals}/i18n/translations/de.json +1 -1
- package/dist/virtuals/i18n/v-files.d.ts +30 -0
- package/dist/virtuals/i18n/v-files.js +46 -0
- package/dist/virtuals/lib/head.d.ts +1 -0
- package/dist/virtuals/lib/head.js +1 -0
- package/dist/{lib → virtuals/lib}/headDefaults.d.ts +1 -1
- package/dist/{lib → virtuals/lib}/headDefaults.js +1 -1
- package/dist/{lib → virtuals/lib}/makeAPIRoute.d.ts +1 -1
- package/dist/virtuals/lib/pathGenerators.d.ts +1 -0
- package/dist/virtuals/lib/pathGenerators.js +1 -0
- package/dist/{lib → virtuals/lib}/routeMap.d.ts +4 -0
- package/dist/{lib → virtuals/lib}/routeMap.js +5 -1
- package/dist/{lib → virtuals/lib}/urlGen.d.ts +2 -1
- package/dist/virtuals/lib/urlGen.js +6 -0
- package/dist/virtuals/mailer/index.d.ts +64 -0
- package/dist/{lib → virtuals}/mailer/index.js +7 -24
- package/dist/{lib → virtuals}/notifier/index.d.ts +6 -7
- package/dist/{lib → virtuals}/notifier/index.js +2 -4
- package/dist/virtuals/plugins/dashboard-pages.d.ts +71 -0
- package/dist/virtuals/scripts/user-quick-tools.d.ts +91 -0
- package/dist/{components → virtuals/scripts}/user-quick-tools.js +135 -53
- package/dist/{sdk → virtuals/sdk}/effect/collectors.d.ts +2 -2
- package/dist/{sdk → virtuals/sdk}/effect/collectors.js +1 -1
- package/dist/{sdk → virtuals/sdk}/effect/db.d.ts +1 -1
- package/dist/{sdk → virtuals/sdk}/effect/db.js +1 -1
- package/dist/{sdk → virtuals/sdk}/effect/foldertree.d.ts +2 -2
- package/dist/{sdk → virtuals/sdk}/effect/foldertree.js +1 -1
- package/dist/{sdk → virtuals/sdk}/effect/generators.d.ts +1 -1
- package/dist/{sdk → virtuals/sdk}/effect/generators.js +1 -1
- package/dist/{sdk → virtuals/sdk}/effect/getVersionFromNPM.d.ts +4 -5
- package/dist/virtuals/sdk/effect/getVersionFromNPM.js +24 -0
- package/dist/{sdk → virtuals/sdk}/effect/parsers.d.ts +1 -1
- package/dist/{sdk → virtuals/sdk}/effect/parsers.js +2 -2
- package/dist/{sdk → virtuals/sdk}/effect/pluginUtils.d.ts +1 -1
- package/dist/{sdk → virtuals/sdk}/effect/pluginUtils.js +1 -1
- package/dist/{sdk → virtuals/sdk}/effect/users.d.ts +1 -1
- package/dist/{sdk → virtuals/sdk}/effect/users.js +2 -2
- package/dist/{sdk → virtuals/sdk}/errors.d.ts +1 -1
- package/dist/{sdk → virtuals/sdk}/errors.js +1 -1
- package/dist/{sdk → virtuals/sdk}/index.d.ts +5 -4
- package/dist/{sdk → virtuals/sdk}/index.js +3 -4
- package/dist/{sdk → virtuals/sdk}/modules/auth.d.ts +7 -6
- package/dist/{sdk → virtuals/sdk}/modules/auth.js +2 -2
- package/dist/{sdk → virtuals/sdk}/modules/clear.d.ts +1 -1
- package/dist/{sdk → virtuals/sdk}/modules/clear.js +1 -1
- package/dist/virtuals/sdk/modules/config.d.ts +272 -0
- package/dist/virtuals/sdk/modules/config.js +205 -0
- package/dist/{sdk → virtuals/sdk}/modules/delete.d.ts +1 -1
- package/dist/{sdk → virtuals/sdk}/modules/delete.js +2 -2
- package/dist/{sdk → virtuals/sdk}/modules/diffTracking.d.ts +1 -1
- package/dist/{sdk → virtuals/sdk}/modules/diffTracking.js +1 -1
- package/dist/{sdk → virtuals/sdk}/modules/get.d.ts +14 -27
- package/dist/{sdk → virtuals/sdk}/modules/get.js +29 -42
- package/dist/{sdk → virtuals/sdk}/modules/init.d.ts +5 -19
- package/dist/{sdk → virtuals/sdk}/modules/init.js +8 -9
- package/dist/{sdk → virtuals/sdk}/modules/middlewares.d.ts +2 -2
- package/dist/{sdk → virtuals/sdk}/modules/middlewares.js +18 -12
- package/dist/{sdk → virtuals/sdk}/modules/notificationSettings.d.ts +6 -23
- package/dist/{sdk → virtuals/sdk}/modules/notificationSettings.js +8 -30
- package/dist/{sdk → virtuals/sdk}/modules/plugins.d.ts +1 -1
- package/dist/{sdk → virtuals/sdk}/modules/plugins.js +1 -1
- package/dist/{sdk → virtuals/sdk}/modules/post.d.ts +7 -7
- package/dist/{sdk → virtuals/sdk}/modules/post.js +15 -10
- package/dist/{sdk → virtuals/sdk}/modules/resetTokenBucket.d.ts +1 -1
- package/dist/{sdk → virtuals/sdk}/modules/resetTokenBucket.js +1 -1
- package/dist/{sdk → virtuals/sdk}/modules/rest_api.d.ts +2 -2
- package/dist/{sdk → virtuals/sdk}/modules/rest_api.js +1 -1
- package/dist/{sdk → virtuals/sdk}/modules/update.d.ts +26 -26
- package/dist/{sdk → virtuals/sdk}/modules/update.js +29 -26
- package/dist/{sdk → virtuals/sdk}/sdkCore.d.ts +6 -4
- package/dist/{sdk → virtuals/sdk}/sdkCore.js +10 -5
- package/dist/virtuals/sdk/tables.d.ts +2 -0
- package/dist/virtuals/sdk/tables.js +5 -0
- package/dist/{sdk → virtuals/sdk}/types/index.d.ts +6 -5
- package/dist/{sdk → virtuals/sdk}/types/tableDefs.d.ts +5 -4
- package/dist/{sdk → virtuals/sdk}/types/tsAlias.d.ts +4 -0
- package/dist/{sdk → virtuals/sdk}/utils.d.ts +4 -3
- package/dist/{sdk → virtuals/sdk}/utils.js +1 -1
- package/dist/virtuals/stubs/config.stub.js +9 -0
- package/dist/virtuals/stubs/logger.stub.js +30 -0
- package/dist/virtuals/utils.d.ts +71 -0
- package/dist/virtuals/utils.js +43 -0
- package/package.json +40 -67
- package/src/cli/add/index.ts +6 -7
- package/src/cli/crypto/genJWT/index.ts +14 -15
- package/src/cli/crypto/index.ts +4 -4
- package/src/cli/getTurso/index.ts +3 -4
- package/src/cli/index.ts +11 -10
- package/src/cli/init/index.ts +11 -12
- package/src/cli/users/index.ts +11 -12
- package/src/cli/users/steps/libsqlCreateUsers.ts +4 -3
- package/src/cli/users/steps/libsqlModifyUsers.ts +4 -3
- package/src/{layouts → components}/auth/FallbackCanvas.astro +1 -1
- package/src/components/auth/OAuthButton.astro +1 -1
- package/src/components/auth/OAuthButtonStack.astro +2 -2
- package/src/components/auth/StaticAuthCheck.astro +3 -3
- package/src/{scripts → components/auth/component-scripts}/formListener.ts +5 -1
- package/src/components/dashboard/BaseHead.astro +7 -18
- package/src/components/dashboard/DashboardGrid.astro +4 -4
- package/src/components/dashboard/DashboardGridItem.astro +3 -2
- package/src/components/dashboard/DashboardPageHeader.astro +11 -6
- package/src/components/dashboard/DoubleSidebar.astro +3 -3
- package/src/components/dashboard/Footer.astro +3 -7
- package/src/components/dashboard/LoginChecker.astro +17 -17
- package/src/components/dashboard/MainSidebarContent.astro +27 -18
- package/src/components/dashboard/PageHeader.astro +3 -2
- package/src/components/dashboard/SidebarLink.astro +148 -31
- package/src/components/dashboard/SidebarPluginLink.astro +4 -4
- package/src/components/dashboard/SingleSidebar.astro +3 -3
- package/src/components/dashboard/UserName.astro +2 -2
- package/src/components/dashboard/component-scripts/dateTimeListener.ts +5 -9
- package/src/components/dashboard/component-scripts/dateWithTimeAndZone.ts +11 -8
- package/src/components/dashboard/configuration/ConfigForm.astro +53 -152
- package/src/components/dashboard/configuration/LoginPreview.astro +275 -0
- package/src/components/dashboard/content-mgmt/CreateFolder.astro +6 -5
- package/src/components/dashboard/content-mgmt/CreatePage.astro +23 -47
- package/src/components/dashboard/content-mgmt/EditFolder.astro +5 -4
- package/src/components/dashboard/content-mgmt/EditPage.astro +36 -85
- package/src/components/dashboard/content-mgmt/InnerSidebarElement.astro +30 -22
- package/src/components/dashboard/content-mgmt/PageEditorSwapper.astro +107 -0
- package/src/components/dashboard/content-mgmt/PageHeader.astro +26 -18
- package/src/components/dashboard/content-mgmt/PageTypeHandler.astro +107 -0
- package/src/components/dashboard/content-mgmt/PluginFields.astro +6 -1
- package/src/components/dashboard/content-mgmt/TreeRenderer.astro +8 -8
- package/src/components/dashboard/content-mgmt/TreeSidebarFolder.astro +116 -24
- package/src/components/dashboard/content-mgmt/TreeSidebarLink.astro +116 -24
- package/src/components/dashboard/content-mgmt/runtime.ts +1 -1
- package/src/components/dashboard/plugins/SettingsRenderer.astro +6 -1
- package/src/components/dashboard/profile/APITokens.astro +18 -12
- package/src/components/dashboard/profile/BasicInfo.astro +17 -13
- package/src/components/dashboard/profile/Notifications.astro +20 -8
- package/src/components/dashboard/profile/SocialSignin.astro +11 -8
- package/src/components/dashboard/profile/UpdatePassword.astro +10 -7
- package/src/components/dashboard/profile/oAuthButtonProviders.ts +1 -20
- package/src/components/dashboard/shared.ts +1 -1
- package/src/components/dashboard/sidebar/UserAccount.astro +5 -6
- package/src/components/dashboard/sidebar/VersionCheck.astro +7 -7
- package/src/components/dashboard/sidebar/VersionCheckChangelog.astro +32 -8
- package/src/components/dashboard/sidebar-modals/UserManagementModals.astro +8 -3
- package/src/components/dashboard/sidebar-modals/VersionModal.astro +43 -24
- package/src/components/dashboard/sidebarConfig.ts +9 -9
- package/src/components/dashboard/user-mgmt/InnerSidebarElement.astro +20 -13
- package/src/components/dashboard/user-mgmt/RankCheck.astro +10 -10
- package/src/components/dashboard/user-mgmt/SocialSignin.astro +9 -10
- package/src/components/dashboard/user-mgmt/UserListItem.astro +86 -30
- package/src/components/default-grid-items/Recently-created-pages.astro +12 -10
- package/src/components/default-grid-items/Recently-signed-up.astro +9 -9
- package/src/components/default-grid-items/Recently-updated-pages.astro +12 -10
- package/src/components/default-grid-items/Totals.astro +11 -10
- package/src/{routes/firstTimeSetupRoutes/components → components/first-time-setup}/PageHeader.astro +4 -3
- package/src/components/shared/Code.astro +72 -0
- package/src/components/shared/SSRUser.astro +200 -0
- package/src/components/shared/head/Favicons.astro +6 -0
- package/src/components/shared/head/Global.astro +4 -0
- package/src/components/shared/head/TitleTags.astro +14 -0
- package/src/config.ts +1 -4
- package/src/consts.ts +94 -14
- package/src/db/config.ts +306 -3
- package/src/effect.ts +5 -10
- package/src/fonts/syntax-font.css +40 -0
- package/src/{utils → handlers}/astroConfigCheck.ts +1 -1
- package/src/handlers/changelog.ts +67 -0
- package/src/handlers/index.ts +4 -0
- package/src/{pluginHandler.ts → handlers/pluginHandler.ts} +359 -142
- package/src/{routeHandler.ts → handlers/routeHandler.ts} +8 -3
- package/src/index.ts +214 -259
- package/src/{lib → integrations}/dynamic-sitemap/index.ts +1 -1
- package/src/integrations/node-namespace.ts +44 -0
- package/src/integrations/plugins.ts +4 -0
- package/src/{lib → integrations}/robots/utils.ts +0 -11
- package/src/{lib → integrations}/webVitals/checkForWebVitalsPlugin.ts +3 -3
- package/{dist/lib → src/integrations}/webVitals/dashboard-grid-items/CoreVitals.astro +1 -1
- package/{dist/lib → src/integrations}/webVitals/dashboard-grid-items/MetricCard.astro +3 -2
- package/src/{lib → integrations}/webVitals/dashboard-grid-items/SummaryCard.astro +2 -2
- package/src/{lib → integrations}/webVitals/dashboard-grid-items/metric.css +17 -17
- package/src/{lib → integrations}/webVitals/dashboard-grid-items/shared.ts +7 -7
- package/{dist/lib → src/integrations}/webVitals/pages/analytics/body.astro +10 -9
- package/src/layouts/AuthLayout.astro +63 -0
- package/src/layouts/{dashboard/Layout.astro → DashboardLayout.astro} +22 -10
- package/{dist/routes/firstTimeSetupRoutes/components/Layout.astro → src/layouts/FirstTimeSetupLayout.astro} +15 -3
- package/src/middleware/index.ts +98 -111
- package/src/middleware/utils.ts +123 -113
- package/src/routes/api/auth/[provider]/callback.ts +31 -15
- package/src/routes/api/auth/[provider]/index.ts +31 -15
- package/src/routes/api/auth/forgot-password.ts +134 -128
- package/src/routes/api/auth/login.ts +80 -67
- package/src/routes/api/auth/logout.ts +59 -43
- package/src/routes/api/auth/register.ts +93 -85
- package/src/routes/api/auth/shared.ts +20 -30
- package/src/routes/api/dashboard/api-tokens.ts +112 -104
- package/src/routes/api/dashboard/config.ts +64 -48
- package/src/routes/api/dashboard/content/diff.ts +59 -38
- package/src/routes/api/dashboard/content/folder.ts +145 -135
- package/src/routes/api/dashboard/content/page.ts +274 -275
- package/src/routes/api/dashboard/create-reset-link.ts +73 -64
- package/src/routes/api/dashboard/create-user-invite.ts +158 -140
- package/src/routes/api/dashboard/create-user.ts +172 -106
- package/src/routes/api/dashboard/email-notification-settings-site.ts +69 -32
- package/src/routes/api/dashboard/partials/LiveRender.astro +21 -16
- package/src/routes/api/dashboard/plugins/[plugin].ts +65 -45
- package/src/routes/api/dashboard/profile.ts +159 -127
- package/src/routes/api/dashboard/resend-verify-email.ts +63 -35
- package/src/routes/api/dashboard/reset-password.ts +108 -77
- package/src/routes/api/dashboard/search-list.ts +50 -50
- package/src/routes/api/dashboard/update-user-notifications.ts +57 -45
- package/src/routes/api/dashboard/users.ts +202 -135
- package/src/routes/api/dashboard/verify-email.ts +57 -42
- package/src/routes/api/dashboard/verify-session.ts +102 -116
- package/src/routes/api/mailer/config.ts +120 -102
- package/src/routes/api/mailer/test-email.ts +73 -52
- package/src/routes/api/render.astro +1 -1
- package/src/routes/api/rest/utils/auth-token.ts +1 -2
- package/src/routes/api/rest/v1/folders/[id].ts +136 -133
- package/src/routes/api/rest/v1/folders/index.ts +102 -90
- package/src/routes/api/rest/v1/pages/[id]/history/[diffid].ts +59 -49
- package/src/routes/api/rest/v1/pages/[id]/history/index.ts +63 -65
- package/src/routes/api/rest/v1/pages/[id]/index.ts +184 -187
- package/src/routes/api/rest/v1/pages/index.ts +136 -137
- package/src/routes/api/rest/v1/public/folders/[id].ts +34 -28
- package/src/routes/api/rest/v1/public/folders/index.ts +54 -47
- package/src/routes/api/rest/v1/public/pages/[id].ts +47 -38
- package/src/routes/api/rest/v1/public/pages/index.ts +60 -62
- package/src/routes/api/rest/v1/settings/index.ts +91 -77
- package/src/routes/api/rest/v1/users/[id].ts +317 -294
- package/src/routes/api/rest/v1/users/index.ts +196 -179
- package/src/routes/api/sdk/fallback-list-pages.json.ts +28 -38
- package/src/routes/api/sdk/full-changelog.json.ts +29 -31
- package/src/routes/api/sdk/list-pages.ts +41 -37
- package/src/routes/api/sdk/update-latest-version-cache.ts +32 -34
- package/src/routes/api/sdk/utils/changelog.ts +29 -168
- package/src/routes/auth/login.astro +68 -58
- package/src/routes/auth/logout.astro +3 -3
- package/src/routes/auth/signup.astro +9 -9
- package/src/routes/dashboard/[...pluginPage].astro +4 -2
- package/src/routes/dashboard/configuration.astro +7 -4
- package/src/routes/dashboard/content-management/createfolder.astro +5 -3
- package/src/routes/dashboard/content-management/createpage.astro +5 -3
- package/src/routes/dashboard/content-management/diff.astro +19 -15
- package/src/routes/dashboard/content-management/editfolder.astro +4 -2
- package/src/routes/dashboard/content-management/editpage.astro +4 -2
- package/src/routes/dashboard/content-management/index.astro +5 -3
- package/src/routes/dashboard/index.astro +4 -2
- package/src/routes/dashboard/password-reset.astro +13 -8
- package/src/routes/dashboard/plugins/[plugin].astro +10 -7
- package/src/routes/dashboard/profile.astro +9 -4
- package/src/routes/dashboard/smtp-configuration.astro +30 -18
- package/src/routes/dashboard/unverified-email.astro +9 -9
- package/src/routes/dashboard/user-management/edit.astro +53 -39
- package/src/routes/dashboard/user-management/index.astro +6 -4
- package/src/routes/error-pages/404.astro +6 -4
- package/src/routes/firstTimeSetupRoutes/1-start.astro +18 -110
- package/src/routes/firstTimeSetupRoutes/2-next.astro +60 -44
- package/src/routes/firstTimeSetupRoutes/3-done.astro +9 -11
- package/src/routes/firstTimeSetupRoutes/api/step-1.ts +116 -98
- package/src/routes/firstTimeSetupRoutes/api/step-2.ts +114 -100
- package/src/routes/firstTimeSetupRoutes/index.astro +6 -0
- package/src/runtime/index.ts +2 -3
- package/src/schemas/config/index.ts +1 -1
- package/src/schemas/plugins/index.ts +1 -1
- package/src/schemas/plugins/shared.ts +149 -23
- package/src/styles/404.css +1 -1
- package/src/styles/{authlayout.css → auth-layout.css} +1 -1
- package/src/styles/code-component.css +64 -0
- package/src/styles/dashboard-base.css +31 -67
- package/src/styles/dashboard-diff.css +32 -32
- package/src/theme.d.ts +1 -0
- package/src/types.ts +4 -21
- package/src/{lib → utils}/effects/index.ts +0 -1
- package/src/{lib → utils}/effects/logger.ts +6 -10
- package/src/utils/effects/smtp.ts +155 -0
- package/src/utils/safeString.ts +1 -6
- package/src/utils/stripIconify.ts +20 -0
- package/src/utils/tinyMDParser.ts +13 -7
- package/src/virtual.d.ts +194 -236
- package/src/virtuals/auth/core.ts +82 -0
- package/src/{lib → virtuals}/auth/index.ts +1 -4
- package/src/virtuals/auth/scripts/three.ts +647 -0
- package/src/virtuals/auth/scripts/utils/fitModelToViewport.ts +50 -0
- package/src/{utils/validImages.ts → virtuals/auth/validImages/index.ts} +10 -10
- package/src/virtuals/auth/validImages/studiocms-blobs-dark.webp +0 -0
- package/src/virtuals/auth/validImages/studiocms-blobs-light.webp +0 -0
- package/src/virtuals/auth/validImages/studiocms-blocks-dark.webp +0 -0
- package/src/virtuals/auth/validImages/studiocms-blocks-light.webp +0 -0
- package/src/virtuals/auth/validImages/studiocms-curves-dark.webp +0 -0
- package/src/virtuals/auth/validImages/studiocms-curves-light.webp +0 -0
- package/src/{lib → virtuals}/auth/verify-email.ts +20 -21
- package/src/virtuals/components/Generator.astro +5 -0
- package/{dist → src/virtuals}/components/Renderer.astro +1 -1
- package/{dist/lib → src/virtuals}/i18n/LanguageSelector.astro +1 -1
- package/src/virtuals/i18n/client.ts +232 -0
- package/src/virtuals/i18n/config.ts +170 -0
- package/src/{lib/i18n/index.ts → virtuals/i18n/server.ts} +42 -46
- package/src/{lib → virtuals}/i18n/translations/de.json +1 -1
- package/src/virtuals/i18n/v-files.ts +122 -0
- package/src/virtuals/lib/head.ts +1 -0
- package/src/{lib → virtuals/lib}/headDefaults.ts +1 -1
- package/src/{lib → virtuals/lib}/makeAPIRoute.ts +1 -1
- package/src/virtuals/lib/pathGenerators.ts +1 -0
- package/src/{lib → virtuals/lib}/routeMap.ts +5 -0
- package/src/virtuals/lib/urlGen.ts +15 -0
- package/src/{lib → virtuals}/mailer/index.ts +10 -44
- package/src/{lib → virtuals}/notifier/index.ts +1 -3
- package/src/{components → virtuals/scripts}/user-quick-tools.ts +151 -59
- package/src/{sdk → virtuals/sdk}/effect/collectors.ts +2 -3
- package/src/{sdk → virtuals/sdk}/effect/db.ts +1 -1
- package/src/{sdk → virtuals/sdk}/effect/foldertree.ts +1 -1
- package/src/{sdk → virtuals/sdk}/effect/generators.ts +1 -1
- package/src/{sdk → virtuals/sdk}/effect/getVersionFromNPM.ts +5 -11
- package/src/{sdk → virtuals/sdk}/effect/parsers.ts +2 -2
- package/src/{sdk → virtuals/sdk}/effect/pluginUtils.ts +1 -1
- package/src/{sdk → virtuals/sdk}/effect/users.ts +2 -2
- package/src/{sdk → virtuals/sdk}/errors.ts +1 -1
- package/src/{sdk → virtuals/sdk}/index.ts +5 -6
- package/src/{sdk → virtuals/sdk}/modules/auth.ts +4 -3
- package/src/{sdk → virtuals/sdk}/modules/clear.ts +1 -1
- package/src/virtuals/sdk/modules/config.ts +602 -0
- package/src/{sdk → virtuals/sdk}/modules/delete.ts +2 -2
- package/src/{sdk → virtuals/sdk}/modules/diffTracking.ts +1 -1
- package/src/{sdk → virtuals/sdk}/modules/get.ts +34 -50
- package/src/{sdk → virtuals/sdk}/modules/init.ts +19 -27
- package/src/{sdk → virtuals/sdk}/modules/middlewares.ts +24 -13
- package/src/{sdk → virtuals/sdk}/modules/notificationSettings.ts +9 -45
- package/src/{sdk → virtuals/sdk}/modules/plugins.ts +1 -1
- package/src/{sdk → virtuals/sdk}/modules/post.ts +18 -19
- package/src/{sdk → virtuals/sdk}/modules/resetTokenBucket.ts +1 -1
- package/src/{sdk → virtuals/sdk}/modules/rest_api.ts +1 -1
- package/src/{sdk → virtuals/sdk}/modules/update.ts +32 -30
- package/src/{sdk → virtuals/sdk}/sdkCore.ts +6 -1
- package/src/virtuals/sdk/tables.ts +2 -0
- package/src/{sdk → virtuals/sdk}/types/index.ts +6 -10
- package/src/{sdk → virtuals/sdk}/types/tableDefs.ts +4 -4
- package/src/{sdk → virtuals/sdk}/types/tsAlias.ts +4 -0
- package/src/{sdk → virtuals/sdk}/utils.ts +3 -3
- package/src/virtuals/stubs/config.stub.js +9 -0
- package/src/virtuals/stubs/logger.stub.js +30 -0
- package/src/virtuals/utils.ts +134 -0
- package/ui.d.ts +1301 -274
- package/dist/componentRegistry/PropsParser.d.ts +0 -15
- package/dist/componentRegistry/PropsParser.js +0 -214
- package/dist/componentRegistry/Registry.d.ts +0 -46
- package/dist/componentRegistry/Registry.js +0 -79
- package/dist/componentRegistry/convert-hyphens.d.ts +0 -14
- package/dist/componentRegistry/convert-hyphens.js +0 -10
- package/dist/componentRegistry/errors.d.ts +0 -67
- package/dist/componentRegistry/errors.js +0 -12
- package/dist/componentRegistry/handler.d.ts +0 -34
- package/dist/componentRegistry/handler.js +0 -110
- package/dist/componentRegistry/index.d.ts +0 -6
- package/dist/componentRegistry/index.js +0 -6
- package/dist/componentRegistry/runtime.d.ts +0 -46
- package/dist/componentRegistry/runtime.js +0 -61
- package/dist/componentRegistry/types.d.ts +0 -59
- package/dist/components/Generator.astro +0 -5
- package/dist/components/dashboard/AstroCodeDiffsScript.astro +0 -25
- package/dist/components/dashboard/Code.astro +0 -23
- package/dist/components/dashboard/component-scripts/makeClientRoutable.d.ts +0 -1
- package/dist/components/dashboard/component-scripts/makeClientRoutable.js +0 -9
- package/dist/components/dashboard/configuration/LightVsDark.astro +0 -67
- package/dist/components/user-quick-tools.d.ts +0 -90
- package/dist/db/tables.js +0 -217
- package/dist/layouts/auth/AuthLayout.astro +0 -71
- package/dist/lib/auth/encryption.d.ts +0 -46
- package/dist/lib/auth/encryption.js +0 -83
- package/dist/lib/auth/index.js +0 -12
- package/dist/lib/auth/password.d.ts +0 -45
- package/dist/lib/auth/password.js +0 -113
- package/dist/lib/auth/session.d.ts +0 -77
- package/dist/lib/auth/session.js +0 -147
- package/dist/lib/auth/user.d.ts +0 -155
- package/dist/lib/auth/user.js +0 -251
- package/dist/lib/auth/utils/lists/passwords.d.ts +0 -2
- package/dist/lib/auth/utils/lists/passwords.js +0 -10006
- package/dist/lib/auth/utils/lists/usernames.d.ts +0 -2
- package/dist/lib/auth/utils/lists/usernames.js +0 -547
- package/dist/lib/auth/utils/scrypt.d.ts +0 -104
- package/dist/lib/auth/utils/scrypt.js +0 -55
- package/dist/lib/auth/utils/unsafeCheck.d.ts +0 -34
- package/dist/lib/auth/utils/unsafeCheck.js +0 -38
- package/dist/lib/dashboardGrid.d.ts +0 -119
- package/dist/lib/dashboardGrid.js +0 -0
- package/dist/lib/effects/convertToVanilla.d.ts +0 -10
- package/dist/lib/effects/convertToVanilla.js +0 -5
- package/dist/lib/effects/smtp.config.d.ts +0 -212
- package/dist/lib/effects/smtp.config.js +0 -123
- package/dist/lib/effects/smtp.d.ts +0 -269
- package/dist/lib/effects/smtp.js +0 -186
- package/dist/lib/endpointResponses.d.ts +0 -2
- package/dist/lib/endpointResponses.js +0 -21
- package/dist/lib/head.d.ts +0 -25
- package/dist/lib/head.js +0 -73
- package/dist/lib/i18n/config.d.ts +0 -16
- package/dist/lib/i18n/config.js +0 -8
- package/dist/lib/i18n/index.d.ts +0 -2471
- package/dist/lib/index.d.ts +0 -7
- package/dist/lib/index.js +0 -7
- package/dist/lib/jsonUtils.d.ts +0 -2
- package/dist/lib/jsonUtils.js +0 -14
- package/dist/lib/mailer/index.d.ts +0 -267
- package/dist/lib/pathGenerators.d.ts +0 -20
- package/dist/lib/pathGenerators.js +0 -66
- package/dist/lib/plugins/dashboard-pages.d.ts +0 -71
- package/dist/lib/removeLeadingTrailingSlashes.d.ts +0 -7
- package/dist/lib/removeLeadingTrailingSlashes.js +0 -13
- package/dist/lib/renderer/errors.d.ts +0 -5
- package/dist/lib/renderer/errors.js +0 -25
- package/dist/lib/urlGen.js +0 -26
- package/dist/lib/webVitals/types.js +0 -0
- package/dist/routes/firstTimeSetupRoutes/components/TabItem.astro +0 -44
- package/dist/routes/firstTimeSetupRoutes/components/Tabs.astro +0 -170
- package/dist/runtime/AstroComponentProxy.d.ts +0 -31
- package/dist/runtime/AstroComponentProxy.js +0 -47
- package/dist/runtime/decoder/decode-codepoint.d.ts +0 -18
- package/dist/runtime/decoder/decode-codepoint.js +0 -58
- package/dist/runtime/decoder/decode-data-html.d.ts +0 -1
- package/dist/runtime/decoder/decode-data-html.js +0 -7
- package/dist/runtime/decoder/decode-data-xml.d.ts +0 -1
- package/dist/runtime/decoder/decode-data-xml.js +0 -7
- package/dist/runtime/decoder/index.d.ts +0 -34
- package/dist/runtime/decoder/index.js +0 -18
- package/dist/runtime/decoder/util.d.ts +0 -208
- package/dist/runtime/decoder/util.js +0 -415
- package/dist/scriptHandler.d.ts +0 -30
- package/dist/scriptHandler.js +0 -25
- package/dist/scripts/three.d.ts +0 -1
- package/dist/scripts/three.js +0 -278
- package/dist/scripts/utils/fitModelToViewport.d.ts +0 -8
- package/dist/scripts/utils/fitModelToViewport.js +0 -19
- package/dist/sdk/effect/convertToVanilla.d.ts +0 -1
- package/dist/sdk/effect/convertToVanilla.js +0 -4
- package/dist/sdk/effect/getVersionFromNPM.js +0 -30
- package/dist/sdk/tables.d.ts +0 -1405
- package/dist/sdk/tables.js +0 -70
- package/dist/utils/addIntegrationArray.d.ts +0 -24
- package/dist/utils/addIntegrationArray.js +0 -11
- package/dist/utils/addIntegrationArrayWithCheck.d.ts +0 -11
- package/dist/utils/addIntegrationArrayWithCheck.js +0 -24
- package/dist/utils/astroEnvConfig.d.ts +0 -45
- package/dist/utils/astroEnvConfig.js +0 -9
- package/dist/utils/authEnvCheck.d.ts +0 -38
- package/dist/utils/authEnvCheck.js +0 -82
- package/dist/utils/changelog.d.ts +0 -1
- package/dist/utils/changelog.js +0 -53
- package/dist/utils/changelogLoader.d.ts +0 -15
- package/dist/utils/changelogLoader.js +0 -104
- package/dist/utils/dynamicResult.d.ts +0 -17
- package/dist/utils/dynamicResult.js +0 -0
- package/dist/utils/getLatestVersion.d.ts +0 -12
- package/dist/utils/getLatestVersion.js +0 -36
- package/dist/utils/integrationLogger.d.ts +0 -7
- package/dist/utils/integrationLogger.js +0 -18
- package/dist/utils/integrations.d.ts +0 -4
- package/dist/utils/integrations.js +0 -32
- package/dist/utils/isDashboardRoute.d.ts +0 -7
- package/dist/utils/isDashboardRoute.js +0 -10
- package/dist/utils/jsonParse.d.ts +0 -9
- package/dist/utils/jsonParse.js +0 -6
- package/dist/utils/loginBackgrounds/studiocms-blobs-dark.png +0 -0
- package/dist/utils/loginBackgrounds/studiocms-blobs-light.png +0 -0
- package/dist/utils/loginBackgrounds/studiocms-blocks-dark.png +0 -0
- package/dist/utils/loginBackgrounds/studiocms-blocks-light.png +0 -0
- package/dist/utils/loginBackgrounds/studiocms-curves-dark.png +0 -0
- package/dist/utils/loginBackgrounds/studiocms-curves-light.png +0 -0
- package/dist/utils/makePageTitle.d.ts +0 -3
- package/dist/utils/makePageTitle.js +0 -7
- package/dist/utils/pageListPackageLabel.d.ts +0 -4
- package/dist/utils/pageListPackageLabel.js +0 -12
- package/dist/utils/pageTypeFilter.d.ts +0 -2
- package/dist/utils/pageTypeFilter.js +0 -16
- package/dist/utils/pluginLogger.d.ts +0 -2
- package/dist/utils/pluginLogger.js +0 -7
- package/dist/utils/readJson.d.ts +0 -1
- package/dist/utils/readJson.js +0 -7
- package/dist/utils/tryCatch.d.ts +0 -10
- package/dist/utils/tryCatch.js +0 -15
- package/dist/utils/validImages.js +0 -39
- package/src/componentRegistry/PropsParser.ts +0 -270
- package/src/componentRegistry/Registry.ts +0 -119
- package/src/componentRegistry/convert-hyphens.ts +0 -21
- package/src/componentRegistry/errors.ts +0 -58
- package/src/componentRegistry/handler.ts +0 -185
- package/src/componentRegistry/index.ts +0 -6
- package/src/componentRegistry/runtime.ts +0 -105
- package/src/componentRegistry/types.ts +0 -63
- package/src/components/Generator.astro +0 -5
- package/src/components/dashboard/AstroCodeDiffsScript.astro +0 -25
- package/src/components/dashboard/Code.astro +0 -23
- package/src/components/dashboard/ThemeManager.astro +0 -53
- package/src/components/dashboard/component-scripts/makeClientRoutable.ts +0 -7
- package/src/components/dashboard/configuration/LightVsDark.astro +0 -67
- package/src/db/tables.ts +0 -226
- package/src/layouts/auth/AuthLayout.astro +0 -71
- package/src/layouts/auth/ThemeManager.astro +0 -53
- package/src/lib/auth/encryption.ts +0 -149
- package/src/lib/auth/password.ts +0 -212
- package/src/lib/auth/session.ts +0 -291
- package/src/lib/auth/user.ts +0 -501
- package/src/lib/auth/utils/lists/passwords.ts +0 -10004
- package/src/lib/auth/utils/lists/usernames.ts +0 -546
- package/src/lib/auth/utils/scrypt.ts +0 -142
- package/src/lib/auth/utils/unsafeCheck.ts +0 -71
- package/src/lib/dashboardGrid.ts +0 -139
- package/src/lib/effects/convertToVanilla.ts +0 -12
- package/src/lib/effects/smtp.config.ts +0 -123
- package/src/lib/effects/smtp.ts +0 -338
- package/src/lib/endpointResponses.ts +0 -20
- package/src/lib/head.ts +0 -114
- package/src/lib/i18n/client.ts +0 -128
- package/src/lib/i18n/config.ts +0 -19
- package/src/lib/index.ts +0 -7
- package/src/lib/jsonUtils.ts +0 -11
- package/src/lib/pathGenerators.ts +0 -72
- package/src/lib/removeLeadingTrailingSlashes.ts +0 -21
- package/src/lib/renderer/errors.ts +0 -29
- package/src/lib/urlGen.ts +0 -40
- package/src/routes/firstTimeSetupRoutes/components/TabItem.astro +0 -44
- package/src/routes/firstTimeSetupRoutes/components/Tabs.astro +0 -170
- package/src/runtime/AstroComponentProxy.ts +0 -93
- package/src/runtime/decoder/decode-codepoint.ts +0 -76
- package/src/runtime/decoder/decode-data-html.ts +0 -6
- package/src/runtime/decoder/decode-data-xml.ts +0 -6
- package/src/runtime/decoder/index.ts +0 -49
- package/src/runtime/decoder/util.ts +0 -587
- package/src/scriptHandler.ts +0 -86
- package/src/scripts/three.ts +0 -415
- package/src/scripts/utils/fitModelToViewport.ts +0 -36
- package/src/sdk/effect/convertToVanilla.ts +0 -1
- package/src/sdk/tables.ts +0 -129
- package/src/styles/dashboard-code.css +0 -56
- package/src/utils/addIntegrationArray.ts +0 -35
- package/src/utils/addIntegrationArrayWithCheck.ts +0 -41
- package/src/utils/astroEnvConfig.ts +0 -12
- package/src/utils/authEnvCheck.ts +0 -144
- package/src/utils/changelog.ts +0 -67
- package/src/utils/changelogLoader.ts +0 -138
- package/src/utils/dynamicResult.ts +0 -19
- package/src/utils/getLatestVersion.ts +0 -67
- package/src/utils/integrationLogger.ts +0 -24
- package/src/utils/integrations.ts +0 -32
- package/src/utils/isDashboardRoute.ts +0 -19
- package/src/utils/jsonParse.ts +0 -11
- package/src/utils/loginBackgrounds/studiocms-blobs-dark.png +0 -0
- package/src/utils/loginBackgrounds/studiocms-blobs-light.png +0 -0
- package/src/utils/loginBackgrounds/studiocms-blocks-dark.png +0 -0
- package/src/utils/loginBackgrounds/studiocms-blocks-light.png +0 -0
- package/src/utils/loginBackgrounds/studiocms-curves-dark.png +0 -0
- package/src/utils/loginBackgrounds/studiocms-curves-light.png +0 -0
- package/src/utils/makePageTitle.ts +0 -11
- package/src/utils/pageListPackageLabel.ts +0 -19
- package/src/utils/pageTypeFilter.ts +0 -13
- package/src/utils/pluginLogger.ts +0 -6
- package/src/utils/readJson.ts +0 -5
- package/src/utils/tryCatch.ts +0 -29
- /package/dist/{layouts → components}/auth/ThreeCanvasLoader.astro +0 -0
- /package/dist/components/{dashboard → shared}/ThemeManager.astro +0 -0
- /package/dist/{styles → fonts}/OnestFont.woff2 +0 -0
- /package/dist/{styles → fonts}/SyntaxFont.woff2 +0 -0
- /package/dist/{styles → fonts}/onest-font.css +0 -0
- /package/dist/{utils → handlers}/astroConfigCheck.d.ts +0 -0
- /package/dist/{lib → integrations}/dynamic-sitemap/index.d.ts +0 -0
- /package/dist/{lib → integrations}/dynamic-sitemap/sitemap-index.xml.d.ts +0 -0
- /package/dist/{lib → integrations}/dynamic-sitemap/sitemap-index.xml.js +0 -0
- /package/dist/{lib → integrations}/robots/core.d.ts +0 -0
- /package/dist/{lib → integrations}/robots/core.js +0 -0
- /package/dist/{lib → integrations}/robots/index.d.ts +0 -0
- /package/dist/{lib → integrations}/robots/index.js +0 -0
- /package/dist/{lib → integrations}/robots/schema.d.ts +0 -0
- /package/dist/{lib → integrations}/robots/schema.js +0 -0
- /package/dist/{lib → integrations}/webVitals/checkForWebVitalsPlugin.d.ts +0 -0
- /package/dist/{lib → integrations}/webVitals/consts.d.ts +0 -0
- /package/dist/{lib → integrations}/webVitals/consts.js +0 -0
- /package/dist/{lib → integrations}/webVitals/pages/analytics/header.astro +0 -0
- /package/dist/{lib → integrations}/webVitals/schemas.d.ts +0 -0
- /package/dist/{lib → integrations}/webVitals/schemas.js +0 -0
- /package/dist/{lib → integrations}/webVitals/types.d.ts +0 -0
- /package/dist/{componentRegistry → integrations/webVitals}/types.js +0 -0
- /package/dist/{lib → integrations}/webVitals/utils/buildDataObject.d.ts +0 -0
- /package/dist/{lib → integrations}/webVitals/utils/buildDataObject.js +0 -0
- /package/dist/{lib → integrations}/webVitals/utils/buildPageRouteDataObject.d.ts +0 -0
- /package/dist/{lib → integrations}/webVitals/utils/buildPageRouteDataObject.js +0 -0
- /package/dist/{lib → integrations}/webVitals/utils/buildPerPageDataObject.d.ts +0 -0
- /package/dist/{lib → integrations}/webVitals/utils/buildPerPageDataObject.js +0 -0
- /package/dist/{lib → integrations}/webVitals/utils/checkDate.d.ts +0 -0
- /package/dist/{lib → integrations}/webVitals/utils/checkDate.js +0 -0
- /package/dist/{lib → integrations}/webVitals/utils/webVitalsUtils.js +0 -0
- /package/dist/{lib → integrations}/webVitals/webVital.d.ts +0 -0
- /package/dist/{lib → integrations}/webVitals/webVital.js +0 -0
- /package/dist/{lib → integrations}/webVitals/webVitalsRouteSummary.d.ts +0 -0
- /package/dist/{lib → integrations}/webVitals/webVitalsRouteSummary.js +0 -0
- /package/dist/{lib → integrations}/webVitals/webVitalsSummary.d.ts +0 -0
- /package/dist/{lib → integrations}/webVitals/webVitalsSummary.js +0 -0
- /package/dist/{utils → virtuals/auth}/getLabelForPermissionLevel.d.ts +0 -0
- /package/dist/{utils → virtuals/auth}/getLabelForPermissionLevel.js +0 -0
- /package/dist/{lib → virtuals}/auth/types.d.ts +0 -0
- /package/dist/{lib → virtuals}/auth/types.js +0 -0
- /package/dist/{components/image → virtuals/components}/CustomImage.astro +0 -0
- /package/dist/{components → virtuals/components}/FormattedDate.astro +0 -0
- /package/dist/{lib → virtuals}/i18n/translations/en.json +0 -0
- /package/dist/{lib → virtuals}/i18n/translations/es.json +0 -0
- /package/dist/{lib → virtuals}/i18n/translations/fr.json +0 -0
- /package/dist/{lib → virtuals}/i18n/translations/hi.json +0 -0
- /package/dist/{lib → virtuals}/i18n/translations/zh.json +0 -0
- /package/dist/{lib → virtuals/lib}/makeAPIRoute.js +0 -0
- /package/dist/{lib → virtuals/lib}/makePublicRoute.d.ts +0 -0
- /package/dist/{lib → virtuals/lib}/makePublicRoute.js +0 -0
- /package/dist/{lib → virtuals}/mailer/template.d.ts +0 -0
- /package/dist/{lib → virtuals}/mailer/template.js +0 -0
- /package/dist/{lib → virtuals}/mailer/templates/index.d.ts +0 -0
- /package/dist/{lib → virtuals}/mailer/templates/index.js +0 -0
- /package/dist/{lib → virtuals}/mailer/templates/notification.d.ts +0 -0
- /package/dist/{lib → virtuals}/mailer/templates/notification.js +0 -0
- /package/dist/{lib → virtuals}/mailer/templates/password-reset.d.ts +0 -0
- /package/dist/{lib → virtuals}/mailer/templates/password-reset.js +0 -0
- /package/dist/{lib → virtuals}/mailer/templates/user-invite.d.ts +0 -0
- /package/dist/{lib → virtuals}/mailer/templates/user-invite.js +0 -0
- /package/dist/{lib → virtuals}/mailer/templates/verify-email.d.ts +0 -0
- /package/dist/{lib → virtuals}/mailer/templates/verify-email.js +0 -0
- /package/dist/{lib → virtuals}/notifier/client.d.ts +0 -0
- /package/dist/{lib → virtuals}/notifier/client.js +0 -0
- /package/dist/{lib → virtuals}/plugins/dashboard-pages.js +0 -0
- /package/dist/{lib → virtuals}/plugins/frontend-navigation.d.ts +0 -0
- /package/dist/{lib → virtuals}/plugins/frontend-navigation.js +0 -0
- /package/dist/{lib → virtuals}/plugins/index.d.ts +0 -0
- /package/dist/{lib → virtuals}/plugins/index.js +0 -0
- /package/dist/{sdk → virtuals/sdk}/consts.d.ts +0 -0
- /package/dist/{sdk → virtuals/sdk}/consts.js +0 -0
- /package/dist/{sdk → virtuals/sdk}/effect/index.d.ts +0 -0
- /package/dist/{sdk → virtuals/sdk}/effect/index.js +0 -0
- /package/dist/{sdk → virtuals/sdk}/effect/lib/jwt-generator.d.ts +0 -0
- /package/dist/{sdk → virtuals/sdk}/effect/lib/jwt-generator.js +0 -0
- /package/dist/{sdk → virtuals/sdk}/types/index.js +0 -0
- /package/dist/{sdk → virtuals/sdk}/types/tableDefs.js +0 -0
- /package/dist/{sdk → virtuals/sdk}/types/tsAlias.js +0 -0
- /package/src/{layouts → components}/auth/ThreeCanvasLoader.astro +0 -0
- /package/src/{routes/firstTimeSetupRoutes → components/first-time-setup}/snippets/opt1-astro.config.diff +0 -0
- /package/src/{routes/firstTimeSetupRoutes → components/first-time-setup}/snippets/opt2-astro.config.diff +0 -0
- /package/src/{routes/firstTimeSetupRoutes → components/first-time-setup}/snippets/opt2-studiocms.config.diff +0 -0
- /package/{dist/layouts/auth → src/components/shared}/ThemeManager.astro +0 -0
- /package/src/{styles → fonts}/OnestFont.woff2 +0 -0
- /package/src/{styles → fonts}/SyntaxFont.woff2 +0 -0
- /package/src/{styles → fonts}/onest-font.css +0 -0
- /package/src/{lib → integrations}/dynamic-sitemap/sitemap-index.xml.ts +0 -0
- /package/src/{lib → integrations}/robots/core.ts +0 -0
- /package/src/{lib → integrations}/robots/index.ts +0 -0
- /package/src/{lib → integrations}/robots/schema.ts +0 -0
- /package/src/{lib → integrations}/webVitals/consts.ts +0 -0
- /package/src/{lib → integrations}/webVitals/pages/analytics/header.astro +0 -0
- /package/src/{lib → integrations}/webVitals/schemas.ts +0 -0
- /package/src/{lib → integrations}/webVitals/types.ts +0 -0
- /package/src/{lib → integrations}/webVitals/utils/buildDataObject.ts +0 -0
- /package/src/{lib → integrations}/webVitals/utils/buildPageRouteDataObject.ts +0 -0
- /package/src/{lib → integrations}/webVitals/utils/buildPerPageDataObject.ts +0 -0
- /package/src/{lib → integrations}/webVitals/utils/checkDate.ts +0 -0
- /package/src/{lib → integrations}/webVitals/utils/webVitalsUtils.ts +0 -0
- /package/src/{lib → integrations}/webVitals/webVital.ts +0 -0
- /package/src/{lib → integrations}/webVitals/webVitalsRouteSummary.ts +0 -0
- /package/src/{lib → integrations}/webVitals/webVitalsSummary.ts +0 -0
- /package/src/{utils → virtuals/auth}/getLabelForPermissionLevel.ts +0 -0
- /package/src/{lib → virtuals}/auth/types.ts +0 -0
- /package/src/{components/image → virtuals/components}/CustomImage.astro +0 -0
- /package/src/{components → virtuals/components}/FormattedDate.astro +0 -0
- /package/src/{lib → virtuals}/i18n/translations/en.json +0 -0
- /package/src/{lib → virtuals}/i18n/translations/es.json +0 -0
- /package/src/{lib → virtuals}/i18n/translations/fr.json +0 -0
- /package/src/{lib → virtuals}/i18n/translations/hi.json +0 -0
- /package/src/{lib → virtuals}/i18n/translations/zh.json +0 -0
- /package/src/{lib → virtuals/lib}/makePublicRoute.ts +0 -0
- /package/src/{lib → virtuals}/mailer/template.ts +0 -0
- /package/src/{lib → virtuals}/mailer/templates/index.ts +0 -0
- /package/src/{lib → virtuals}/mailer/templates/notification.ts +0 -0
- /package/src/{lib → virtuals}/mailer/templates/password-reset.ts +0 -0
- /package/src/{lib → virtuals}/mailer/templates/user-invite.ts +0 -0
- /package/src/{lib → virtuals}/mailer/templates/verify-email.ts +0 -0
- /package/src/{lib → virtuals}/notifier/client.ts +0 -0
- /package/src/{lib → virtuals}/plugins/dashboard-pages.ts +0 -0
- /package/src/{lib → virtuals}/plugins/frontend-navigation.ts +0 -0
- /package/src/{lib → virtuals}/plugins/index.ts +0 -0
- /package/src/{sdk → virtuals/sdk}/consts.ts +0 -0
- /package/src/{sdk → virtuals/sdk}/effect/index.ts +0 -0
- /package/src/{sdk → virtuals/sdk}/effect/lib/jwt-generator.ts +0 -0
package/ui.d.ts
CHANGED
|
@@ -1,277 +1,1304 @@
|
|
|
1
|
-
declare module 'studiocms:ui/
|
|
2
|
-
const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
1
|
+
declare module 'studiocms:ui/icons' {
|
|
2
|
+
export const availableIcons: (
|
|
3
|
+
| 'heroicons:academic-cap'
|
|
4
|
+
| 'heroicons:academic-cap-16-solid'
|
|
5
|
+
| 'heroicons:academic-cap-20-solid'
|
|
6
|
+
| 'heroicons:academic-cap-solid'
|
|
7
|
+
| 'heroicons:adjustments-horizontal'
|
|
8
|
+
| 'heroicons:adjustments-horizontal-16-solid'
|
|
9
|
+
| 'heroicons:adjustments-horizontal-20-solid'
|
|
10
|
+
| 'heroicons:adjustments-horizontal-solid'
|
|
11
|
+
| 'heroicons:adjustments-vertical'
|
|
12
|
+
| 'heroicons:adjustments-vertical-16-solid'
|
|
13
|
+
| 'heroicons:adjustments-vertical-20-solid'
|
|
14
|
+
| 'heroicons:adjustments-vertical-solid'
|
|
15
|
+
| 'heroicons:archive-box'
|
|
16
|
+
| 'heroicons:archive-box-16-solid'
|
|
17
|
+
| 'heroicons:archive-box-20-solid'
|
|
18
|
+
| 'heroicons:archive-box-arrow-down'
|
|
19
|
+
| 'heroicons:archive-box-arrow-down-16-solid'
|
|
20
|
+
| 'heroicons:archive-box-arrow-down-20-solid'
|
|
21
|
+
| 'heroicons:archive-box-arrow-down-solid'
|
|
22
|
+
| 'heroicons:archive-box-solid'
|
|
23
|
+
| 'heroicons:archive-box-x-mark'
|
|
24
|
+
| 'heroicons:archive-box-x-mark-16-solid'
|
|
25
|
+
| 'heroicons:archive-box-x-mark-20-solid'
|
|
26
|
+
| 'heroicons:archive-box-x-mark-solid'
|
|
27
|
+
| 'heroicons:arrow-down'
|
|
28
|
+
| 'heroicons:arrow-down-16-solid'
|
|
29
|
+
| 'heroicons:arrow-down-20-solid'
|
|
30
|
+
| 'heroicons:arrow-down-circle'
|
|
31
|
+
| 'heroicons:arrow-down-circle-16-solid'
|
|
32
|
+
| 'heroicons:arrow-down-circle-20-solid'
|
|
33
|
+
| 'heroicons:arrow-down-circle-solid'
|
|
34
|
+
| 'heroicons:arrow-down-left'
|
|
35
|
+
| 'heroicons:arrow-down-left-16-solid'
|
|
36
|
+
| 'heroicons:arrow-down-left-20-solid'
|
|
37
|
+
| 'heroicons:arrow-down-left-solid'
|
|
38
|
+
| 'heroicons:arrow-down-on-square'
|
|
39
|
+
| 'heroicons:arrow-down-on-square-16-solid'
|
|
40
|
+
| 'heroicons:arrow-down-on-square-20-solid'
|
|
41
|
+
| 'heroicons:arrow-down-on-square-solid'
|
|
42
|
+
| 'heroicons:arrow-down-on-square-stack'
|
|
43
|
+
| 'heroicons:arrow-down-on-square-stack-16-solid'
|
|
44
|
+
| 'heroicons:arrow-down-on-square-stack-20-solid'
|
|
45
|
+
| 'heroicons:arrow-down-on-square-stack-solid'
|
|
46
|
+
| 'heroicons:arrow-down-right'
|
|
47
|
+
| 'heroicons:arrow-down-right-16-solid'
|
|
48
|
+
| 'heroicons:arrow-down-right-20-solid'
|
|
49
|
+
| 'heroicons:arrow-down-right-solid'
|
|
50
|
+
| 'heroicons:arrow-down-solid'
|
|
51
|
+
| 'heroicons:arrow-down-tray'
|
|
52
|
+
| 'heroicons:arrow-down-tray-16-solid'
|
|
53
|
+
| 'heroicons:arrow-down-tray-20-solid'
|
|
54
|
+
| 'heroicons:arrow-down-tray-solid'
|
|
55
|
+
| 'heroicons:arrow-left'
|
|
56
|
+
| 'heroicons:arrow-left-16-solid'
|
|
57
|
+
| 'heroicons:arrow-left-20-solid'
|
|
58
|
+
| 'heroicons:arrow-left-circle'
|
|
59
|
+
| 'heroicons:arrow-left-circle-16-solid'
|
|
60
|
+
| 'heroicons:arrow-left-circle-20-solid'
|
|
61
|
+
| 'heroicons:arrow-left-circle-solid'
|
|
62
|
+
| 'heroicons:arrow-left-end-on-rectangle'
|
|
63
|
+
| 'heroicons:arrow-left-end-on-rectangle-16-solid'
|
|
64
|
+
| 'heroicons:arrow-left-end-on-rectangle-20-solid'
|
|
65
|
+
| 'heroicons:arrow-left-end-on-rectangle-solid'
|
|
66
|
+
| 'heroicons:arrow-left-on-rectangle'
|
|
67
|
+
| 'heroicons:arrow-left-on-rectangle-20-solid'
|
|
68
|
+
| 'heroicons:arrow-left-on-rectangle-solid'
|
|
69
|
+
| 'heroicons:arrow-left-solid'
|
|
70
|
+
| 'heroicons:arrow-left-start-on-rectangle'
|
|
71
|
+
| 'heroicons:arrow-left-start-on-rectangle-16-solid'
|
|
72
|
+
| 'heroicons:arrow-left-start-on-rectangle-20-solid'
|
|
73
|
+
| 'heroicons:arrow-left-start-on-rectangle-solid'
|
|
74
|
+
| 'heroicons:arrow-long-down'
|
|
75
|
+
| 'heroicons:arrow-long-down-16-solid'
|
|
76
|
+
| 'heroicons:arrow-long-down-20-solid'
|
|
77
|
+
| 'heroicons:arrow-long-down-solid'
|
|
78
|
+
| 'heroicons:arrow-long-left'
|
|
79
|
+
| 'heroicons:arrow-long-left-16-solid'
|
|
80
|
+
| 'heroicons:arrow-long-left-20-solid'
|
|
81
|
+
| 'heroicons:arrow-long-left-solid'
|
|
82
|
+
| 'heroicons:arrow-long-right'
|
|
83
|
+
| 'heroicons:arrow-long-right-16-solid'
|
|
84
|
+
| 'heroicons:arrow-long-right-20-solid'
|
|
85
|
+
| 'heroicons:arrow-long-right-solid'
|
|
86
|
+
| 'heroicons:arrow-long-up'
|
|
87
|
+
| 'heroicons:arrow-long-up-16-solid'
|
|
88
|
+
| 'heroicons:arrow-long-up-20-solid'
|
|
89
|
+
| 'heroicons:arrow-long-up-solid'
|
|
90
|
+
| 'heroicons:arrow-path'
|
|
91
|
+
| 'heroicons:arrow-path-16-solid'
|
|
92
|
+
| 'heroicons:arrow-path-20-solid'
|
|
93
|
+
| 'heroicons:arrow-path-rounded-square'
|
|
94
|
+
| 'heroicons:arrow-path-rounded-square-16-solid'
|
|
95
|
+
| 'heroicons:arrow-path-rounded-square-20-solid'
|
|
96
|
+
| 'heroicons:arrow-path-rounded-square-solid'
|
|
97
|
+
| 'heroicons:arrow-path-solid'
|
|
98
|
+
| 'heroicons:arrow-right'
|
|
99
|
+
| 'heroicons:arrow-right-16-solid'
|
|
100
|
+
| 'heroicons:arrow-right-20-solid'
|
|
101
|
+
| 'heroicons:arrow-right-circle'
|
|
102
|
+
| 'heroicons:arrow-right-circle-16-solid'
|
|
103
|
+
| 'heroicons:arrow-right-circle-20-solid'
|
|
104
|
+
| 'heroicons:arrow-right-circle-solid'
|
|
105
|
+
| 'heroicons:arrow-right-end-on-rectangle'
|
|
106
|
+
| 'heroicons:arrow-right-end-on-rectangle-16-solid'
|
|
107
|
+
| 'heroicons:arrow-right-end-on-rectangle-20-solid'
|
|
108
|
+
| 'heroicons:arrow-right-end-on-rectangle-solid'
|
|
109
|
+
| 'heroicons:arrow-right-on-rectangle'
|
|
110
|
+
| 'heroicons:arrow-right-on-rectangle-20-solid'
|
|
111
|
+
| 'heroicons:arrow-right-on-rectangle-solid'
|
|
112
|
+
| 'heroicons:arrow-right-solid'
|
|
113
|
+
| 'heroicons:arrow-right-start-on-rectangle'
|
|
114
|
+
| 'heroicons:arrow-right-start-on-rectangle-16-solid'
|
|
115
|
+
| 'heroicons:arrow-right-start-on-rectangle-20-solid'
|
|
116
|
+
| 'heroicons:arrow-right-start-on-rectangle-solid'
|
|
117
|
+
| 'heroicons:arrow-small-down'
|
|
118
|
+
| 'heroicons:arrow-small-down-20-solid'
|
|
119
|
+
| 'heroicons:arrow-small-down-solid'
|
|
120
|
+
| 'heroicons:arrow-small-left'
|
|
121
|
+
| 'heroicons:arrow-small-left-20-solid'
|
|
122
|
+
| 'heroicons:arrow-small-left-solid'
|
|
123
|
+
| 'heroicons:arrow-small-right'
|
|
124
|
+
| 'heroicons:arrow-small-right-20-solid'
|
|
125
|
+
| 'heroicons:arrow-small-right-solid'
|
|
126
|
+
| 'heroicons:arrow-small-up'
|
|
127
|
+
| 'heroicons:arrow-small-up-20-solid'
|
|
128
|
+
| 'heroicons:arrow-small-up-solid'
|
|
129
|
+
| 'heroicons:arrow-top-right-on-square'
|
|
130
|
+
| 'heroicons:arrow-top-right-on-square-16-solid'
|
|
131
|
+
| 'heroicons:arrow-top-right-on-square-20-solid'
|
|
132
|
+
| 'heroicons:arrow-top-right-on-square-solid'
|
|
133
|
+
| 'heroicons:arrow-trending-down'
|
|
134
|
+
| 'heroicons:arrow-trending-down-16-solid'
|
|
135
|
+
| 'heroicons:arrow-trending-down-20-solid'
|
|
136
|
+
| 'heroicons:arrow-trending-down-solid'
|
|
137
|
+
| 'heroicons:arrow-trending-up'
|
|
138
|
+
| 'heroicons:arrow-trending-up-16-solid'
|
|
139
|
+
| 'heroicons:arrow-trending-up-20-solid'
|
|
140
|
+
| 'heroicons:arrow-trending-up-solid'
|
|
141
|
+
| 'heroicons:arrow-turn-down-left'
|
|
142
|
+
| 'heroicons:arrow-turn-down-left-16-solid'
|
|
143
|
+
| 'heroicons:arrow-turn-down-left-20-solid'
|
|
144
|
+
| 'heroicons:arrow-turn-down-left-solid'
|
|
145
|
+
| 'heroicons:arrow-turn-down-right'
|
|
146
|
+
| 'heroicons:arrow-turn-down-right-16-solid'
|
|
147
|
+
| 'heroicons:arrow-turn-down-right-20-solid'
|
|
148
|
+
| 'heroicons:arrow-turn-down-right-solid'
|
|
149
|
+
| 'heroicons:arrow-turn-left-down'
|
|
150
|
+
| 'heroicons:arrow-turn-left-down-16-solid'
|
|
151
|
+
| 'heroicons:arrow-turn-left-down-20-solid'
|
|
152
|
+
| 'heroicons:arrow-turn-left-down-solid'
|
|
153
|
+
| 'heroicons:arrow-turn-left-up'
|
|
154
|
+
| 'heroicons:arrow-turn-left-up-16-solid'
|
|
155
|
+
| 'heroicons:arrow-turn-left-up-20-solid'
|
|
156
|
+
| 'heroicons:arrow-turn-left-up-solid'
|
|
157
|
+
| 'heroicons:arrow-turn-right-down'
|
|
158
|
+
| 'heroicons:arrow-turn-right-down-16-solid'
|
|
159
|
+
| 'heroicons:arrow-turn-right-down-20-solid'
|
|
160
|
+
| 'heroicons:arrow-turn-right-down-solid'
|
|
161
|
+
| 'heroicons:arrow-turn-right-up'
|
|
162
|
+
| 'heroicons:arrow-turn-right-up-16-solid'
|
|
163
|
+
| 'heroicons:arrow-turn-right-up-20-solid'
|
|
164
|
+
| 'heroicons:arrow-turn-right-up-solid'
|
|
165
|
+
| 'heroicons:arrow-turn-up-left'
|
|
166
|
+
| 'heroicons:arrow-turn-up-left-16-solid'
|
|
167
|
+
| 'heroicons:arrow-turn-up-left-20-solid'
|
|
168
|
+
| 'heroicons:arrow-turn-up-left-solid'
|
|
169
|
+
| 'heroicons:arrow-turn-up-right'
|
|
170
|
+
| 'heroicons:arrow-turn-up-right-16-solid'
|
|
171
|
+
| 'heroicons:arrow-turn-up-right-20-solid'
|
|
172
|
+
| 'heroicons:arrow-turn-up-right-solid'
|
|
173
|
+
| 'heroicons:arrow-up'
|
|
174
|
+
| 'heroicons:arrow-up-16-solid'
|
|
175
|
+
| 'heroicons:arrow-up-20-solid'
|
|
176
|
+
| 'heroicons:arrow-up-circle'
|
|
177
|
+
| 'heroicons:arrow-up-circle-16-solid'
|
|
178
|
+
| 'heroicons:arrow-up-circle-20-solid'
|
|
179
|
+
| 'heroicons:arrow-up-circle-solid'
|
|
180
|
+
| 'heroicons:arrow-up-left'
|
|
181
|
+
| 'heroicons:arrow-up-left-16-solid'
|
|
182
|
+
| 'heroicons:arrow-up-left-20-solid'
|
|
183
|
+
| 'heroicons:arrow-up-left-solid'
|
|
184
|
+
| 'heroicons:arrow-up-on-square'
|
|
185
|
+
| 'heroicons:arrow-up-on-square-16-solid'
|
|
186
|
+
| 'heroicons:arrow-up-on-square-20-solid'
|
|
187
|
+
| 'heroicons:arrow-up-on-square-solid'
|
|
188
|
+
| 'heroicons:arrow-up-on-square-stack'
|
|
189
|
+
| 'heroicons:arrow-up-on-square-stack-16-solid'
|
|
190
|
+
| 'heroicons:arrow-up-on-square-stack-20-solid'
|
|
191
|
+
| 'heroicons:arrow-up-on-square-stack-solid'
|
|
192
|
+
| 'heroicons:arrow-up-right'
|
|
193
|
+
| 'heroicons:arrow-up-right-16-solid'
|
|
194
|
+
| 'heroicons:arrow-up-right-20-solid'
|
|
195
|
+
| 'heroicons:arrow-up-right-solid'
|
|
196
|
+
| 'heroicons:arrow-up-solid'
|
|
197
|
+
| 'heroicons:arrow-up-tray'
|
|
198
|
+
| 'heroicons:arrow-up-tray-16-solid'
|
|
199
|
+
| 'heroicons:arrow-up-tray-20-solid'
|
|
200
|
+
| 'heroicons:arrow-up-tray-solid'
|
|
201
|
+
| 'heroicons:arrow-uturn-down'
|
|
202
|
+
| 'heroicons:arrow-uturn-down-16-solid'
|
|
203
|
+
| 'heroicons:arrow-uturn-down-20-solid'
|
|
204
|
+
| 'heroicons:arrow-uturn-down-solid'
|
|
205
|
+
| 'heroicons:arrow-uturn-left'
|
|
206
|
+
| 'heroicons:arrow-uturn-left-16-solid'
|
|
207
|
+
| 'heroicons:arrow-uturn-left-20-solid'
|
|
208
|
+
| 'heroicons:arrow-uturn-left-solid'
|
|
209
|
+
| 'heroicons:arrow-uturn-right'
|
|
210
|
+
| 'heroicons:arrow-uturn-right-16-solid'
|
|
211
|
+
| 'heroicons:arrow-uturn-right-20-solid'
|
|
212
|
+
| 'heroicons:arrow-uturn-right-solid'
|
|
213
|
+
| 'heroicons:arrow-uturn-up'
|
|
214
|
+
| 'heroicons:arrow-uturn-up-16-solid'
|
|
215
|
+
| 'heroicons:arrow-uturn-up-20-solid'
|
|
216
|
+
| 'heroicons:arrow-uturn-up-solid'
|
|
217
|
+
| 'heroicons:arrows-pointing-in'
|
|
218
|
+
| 'heroicons:arrows-pointing-in-16-solid'
|
|
219
|
+
| 'heroicons:arrows-pointing-in-20-solid'
|
|
220
|
+
| 'heroicons:arrows-pointing-in-solid'
|
|
221
|
+
| 'heroicons:arrows-pointing-out'
|
|
222
|
+
| 'heroicons:arrows-pointing-out-16-solid'
|
|
223
|
+
| 'heroicons:arrows-pointing-out-20-solid'
|
|
224
|
+
| 'heroicons:arrows-pointing-out-solid'
|
|
225
|
+
| 'heroicons:arrows-right-left'
|
|
226
|
+
| 'heroicons:arrows-right-left-16-solid'
|
|
227
|
+
| 'heroicons:arrows-right-left-20-solid'
|
|
228
|
+
| 'heroicons:arrows-right-left-solid'
|
|
229
|
+
| 'heroicons:arrows-up-down'
|
|
230
|
+
| 'heroicons:arrows-up-down-16-solid'
|
|
231
|
+
| 'heroicons:arrows-up-down-20-solid'
|
|
232
|
+
| 'heroicons:arrows-up-down-solid'
|
|
233
|
+
| 'heroicons:at-symbol'
|
|
234
|
+
| 'heroicons:at-symbol-16-solid'
|
|
235
|
+
| 'heroicons:at-symbol-20-solid'
|
|
236
|
+
| 'heroicons:at-symbol-solid'
|
|
237
|
+
| 'heroicons:backspace'
|
|
238
|
+
| 'heroicons:backspace-16-solid'
|
|
239
|
+
| 'heroicons:backspace-20-solid'
|
|
240
|
+
| 'heroicons:backspace-solid'
|
|
241
|
+
| 'heroicons:backward'
|
|
242
|
+
| 'heroicons:backward-16-solid'
|
|
243
|
+
| 'heroicons:backward-20-solid'
|
|
244
|
+
| 'heroicons:backward-solid'
|
|
245
|
+
| 'heroicons:banknotes'
|
|
246
|
+
| 'heroicons:banknotes-16-solid'
|
|
247
|
+
| 'heroicons:banknotes-20-solid'
|
|
248
|
+
| 'heroicons:banknotes-solid'
|
|
249
|
+
| 'heroicons:bars-2'
|
|
250
|
+
| 'heroicons:bars-2-16-solid'
|
|
251
|
+
| 'heroicons:bars-2-20-solid'
|
|
252
|
+
| 'heroicons:bars-2-solid'
|
|
253
|
+
| 'heroicons:bars-3'
|
|
254
|
+
| 'heroicons:bars-3-16-solid'
|
|
255
|
+
| 'heroicons:bars-3-20-solid'
|
|
256
|
+
| 'heroicons:bars-3-bottom-left'
|
|
257
|
+
| 'heroicons:bars-3-bottom-left-16-solid'
|
|
258
|
+
| 'heroicons:bars-3-bottom-left-20-solid'
|
|
259
|
+
| 'heroicons:bars-3-bottom-left-solid'
|
|
260
|
+
| 'heroicons:bars-3-bottom-right'
|
|
261
|
+
| 'heroicons:bars-3-bottom-right-16-solid'
|
|
262
|
+
| 'heroicons:bars-3-bottom-right-20-solid'
|
|
263
|
+
| 'heroicons:bars-3-bottom-right-solid'
|
|
264
|
+
| 'heroicons:bars-3-center-left'
|
|
265
|
+
| 'heroicons:bars-3-center-left-16-solid'
|
|
266
|
+
| 'heroicons:bars-3-center-left-20-solid'
|
|
267
|
+
| 'heroicons:bars-3-center-left-solid'
|
|
268
|
+
| 'heroicons:bars-3-solid'
|
|
269
|
+
| 'heroicons:bars-4'
|
|
270
|
+
| 'heroicons:bars-4-16-solid'
|
|
271
|
+
| 'heroicons:bars-4-20-solid'
|
|
272
|
+
| 'heroicons:bars-4-solid'
|
|
273
|
+
| 'heroicons:bars-arrow-down'
|
|
274
|
+
| 'heroicons:bars-arrow-down-16-solid'
|
|
275
|
+
| 'heroicons:bars-arrow-down-20-solid'
|
|
276
|
+
| 'heroicons:bars-arrow-down-solid'
|
|
277
|
+
| 'heroicons:bars-arrow-up'
|
|
278
|
+
| 'heroicons:bars-arrow-up-16-solid'
|
|
279
|
+
| 'heroicons:bars-arrow-up-20-solid'
|
|
280
|
+
| 'heroicons:bars-arrow-up-solid'
|
|
281
|
+
| 'heroicons:battery-0'
|
|
282
|
+
| 'heroicons:battery-0-16-solid'
|
|
283
|
+
| 'heroicons:battery-0-20-solid'
|
|
284
|
+
| 'heroicons:battery-0-solid'
|
|
285
|
+
| 'heroicons:battery-100'
|
|
286
|
+
| 'heroicons:battery-100-16-solid'
|
|
287
|
+
| 'heroicons:battery-100-20-solid'
|
|
288
|
+
| 'heroicons:battery-100-solid'
|
|
289
|
+
| 'heroicons:battery-50'
|
|
290
|
+
| 'heroicons:battery-50-16-solid'
|
|
291
|
+
| 'heroicons:battery-50-20-solid'
|
|
292
|
+
| 'heroicons:battery-50-solid'
|
|
293
|
+
| 'heroicons:beaker'
|
|
294
|
+
| 'heroicons:beaker-16-solid'
|
|
295
|
+
| 'heroicons:beaker-20-solid'
|
|
296
|
+
| 'heroicons:beaker-solid'
|
|
297
|
+
| 'heroicons:bell'
|
|
298
|
+
| 'heroicons:bell-16-solid'
|
|
299
|
+
| 'heroicons:bell-20-solid'
|
|
300
|
+
| 'heroicons:bell-alert'
|
|
301
|
+
| 'heroicons:bell-alert-16-solid'
|
|
302
|
+
| 'heroicons:bell-alert-20-solid'
|
|
303
|
+
| 'heroicons:bell-alert-solid'
|
|
304
|
+
| 'heroicons:bell-slash'
|
|
305
|
+
| 'heroicons:bell-slash-16-solid'
|
|
306
|
+
| 'heroicons:bell-slash-20-solid'
|
|
307
|
+
| 'heroicons:bell-slash-solid'
|
|
308
|
+
| 'heroicons:bell-snooze'
|
|
309
|
+
| 'heroicons:bell-snooze-16-solid'
|
|
310
|
+
| 'heroicons:bell-snooze-20-solid'
|
|
311
|
+
| 'heroicons:bell-snooze-solid'
|
|
312
|
+
| 'heroicons:bell-solid'
|
|
313
|
+
| 'heroicons:bold'
|
|
314
|
+
| 'heroicons:bold-16-solid'
|
|
315
|
+
| 'heroicons:bold-20-solid'
|
|
316
|
+
| 'heroicons:bold-solid'
|
|
317
|
+
| 'heroicons:bolt'
|
|
318
|
+
| 'heroicons:bolt-16-solid'
|
|
319
|
+
| 'heroicons:bolt-20-solid'
|
|
320
|
+
| 'heroicons:bolt-slash'
|
|
321
|
+
| 'heroicons:bolt-slash-16-solid'
|
|
322
|
+
| 'heroicons:bolt-slash-20-solid'
|
|
323
|
+
| 'heroicons:bolt-slash-solid'
|
|
324
|
+
| 'heroicons:bolt-solid'
|
|
325
|
+
| 'heroicons:book-open'
|
|
326
|
+
| 'heroicons:book-open-16-solid'
|
|
327
|
+
| 'heroicons:book-open-20-solid'
|
|
328
|
+
| 'heroicons:book-open-solid'
|
|
329
|
+
| 'heroicons:bookmark'
|
|
330
|
+
| 'heroicons:bookmark-16-solid'
|
|
331
|
+
| 'heroicons:bookmark-20-solid'
|
|
332
|
+
| 'heroicons:bookmark-slash'
|
|
333
|
+
| 'heroicons:bookmark-slash-16-solid'
|
|
334
|
+
| 'heroicons:bookmark-slash-20-solid'
|
|
335
|
+
| 'heroicons:bookmark-slash-solid'
|
|
336
|
+
| 'heroicons:bookmark-solid'
|
|
337
|
+
| 'heroicons:bookmark-square'
|
|
338
|
+
| 'heroicons:bookmark-square-16-solid'
|
|
339
|
+
| 'heroicons:bookmark-square-20-solid'
|
|
340
|
+
| 'heroicons:bookmark-square-solid'
|
|
341
|
+
| 'heroicons:briefcase'
|
|
342
|
+
| 'heroicons:briefcase-16-solid'
|
|
343
|
+
| 'heroicons:briefcase-20-solid'
|
|
344
|
+
| 'heroicons:briefcase-solid'
|
|
345
|
+
| 'heroicons:bug-ant'
|
|
346
|
+
| 'heroicons:bug-ant-16-solid'
|
|
347
|
+
| 'heroicons:bug-ant-20-solid'
|
|
348
|
+
| 'heroicons:bug-ant-solid'
|
|
349
|
+
| 'heroicons:building-library'
|
|
350
|
+
| 'heroicons:building-library-16-solid'
|
|
351
|
+
| 'heroicons:building-library-20-solid'
|
|
352
|
+
| 'heroicons:building-library-solid'
|
|
353
|
+
| 'heroicons:building-office'
|
|
354
|
+
| 'heroicons:building-office-16-solid'
|
|
355
|
+
| 'heroicons:building-office-2'
|
|
356
|
+
| 'heroicons:building-office-2-16-solid'
|
|
357
|
+
| 'heroicons:building-office-2-20-solid'
|
|
358
|
+
| 'heroicons:building-office-2-solid'
|
|
359
|
+
| 'heroicons:building-office-20-solid'
|
|
360
|
+
| 'heroicons:building-office-solid'
|
|
361
|
+
| 'heroicons:building-storefront'
|
|
362
|
+
| 'heroicons:building-storefront-16-solid'
|
|
363
|
+
| 'heroicons:building-storefront-20-solid'
|
|
364
|
+
| 'heroicons:building-storefront-solid'
|
|
365
|
+
| 'heroicons:cake'
|
|
366
|
+
| 'heroicons:cake-16-solid'
|
|
367
|
+
| 'heroicons:cake-20-solid'
|
|
368
|
+
| 'heroicons:cake-solid'
|
|
369
|
+
| 'heroicons:calculator'
|
|
370
|
+
| 'heroicons:calculator-16-solid'
|
|
371
|
+
| 'heroicons:calculator-20-solid'
|
|
372
|
+
| 'heroicons:calculator-solid'
|
|
373
|
+
| 'heroicons:calendar'
|
|
374
|
+
| 'heroicons:calendar-16-solid'
|
|
375
|
+
| 'heroicons:calendar-20-solid'
|
|
376
|
+
| 'heroicons:calendar-date-range'
|
|
377
|
+
| 'heroicons:calendar-date-range-16-solid'
|
|
378
|
+
| 'heroicons:calendar-date-range-20-solid'
|
|
379
|
+
| 'heroicons:calendar-date-range-solid'
|
|
380
|
+
| 'heroicons:calendar-days'
|
|
381
|
+
| 'heroicons:calendar-days-16-solid'
|
|
382
|
+
| 'heroicons:calendar-days-20-solid'
|
|
383
|
+
| 'heroicons:calendar-days-solid'
|
|
384
|
+
| 'heroicons:calendar-solid'
|
|
385
|
+
| 'heroicons:camera'
|
|
386
|
+
| 'heroicons:camera-16-solid'
|
|
387
|
+
| 'heroicons:camera-20-solid'
|
|
388
|
+
| 'heroicons:camera-solid'
|
|
389
|
+
| 'heroicons:chart-bar'
|
|
390
|
+
| 'heroicons:chart-bar-16-solid'
|
|
391
|
+
| 'heroicons:chart-bar-20-solid'
|
|
392
|
+
| 'heroicons:chart-bar-solid'
|
|
393
|
+
| 'heroicons:chart-bar-square'
|
|
394
|
+
| 'heroicons:chart-bar-square-16-solid'
|
|
395
|
+
| 'heroicons:chart-bar-square-20-solid'
|
|
396
|
+
| 'heroicons:chart-bar-square-solid'
|
|
397
|
+
| 'heroicons:chart-pie'
|
|
398
|
+
| 'heroicons:chart-pie-16-solid'
|
|
399
|
+
| 'heroicons:chart-pie-20-solid'
|
|
400
|
+
| 'heroicons:chart-pie-solid'
|
|
401
|
+
| 'heroicons:chat-bubble-bottom-center'
|
|
402
|
+
| 'heroicons:chat-bubble-bottom-center-16-solid'
|
|
403
|
+
| 'heroicons:chat-bubble-bottom-center-20-solid'
|
|
404
|
+
| 'heroicons:chat-bubble-bottom-center-solid'
|
|
405
|
+
| 'heroicons:chat-bubble-bottom-center-text'
|
|
406
|
+
| 'heroicons:chat-bubble-bottom-center-text-16-solid'
|
|
407
|
+
| 'heroicons:chat-bubble-bottom-center-text-20-solid'
|
|
408
|
+
| 'heroicons:chat-bubble-bottom-center-text-solid'
|
|
409
|
+
| 'heroicons:chat-bubble-left'
|
|
410
|
+
| 'heroicons:chat-bubble-left-16-solid'
|
|
411
|
+
| 'heroicons:chat-bubble-left-20-solid'
|
|
412
|
+
| 'heroicons:chat-bubble-left-ellipsis'
|
|
413
|
+
| 'heroicons:chat-bubble-left-ellipsis-16-solid'
|
|
414
|
+
| 'heroicons:chat-bubble-left-ellipsis-20-solid'
|
|
415
|
+
| 'heroicons:chat-bubble-left-ellipsis-solid'
|
|
416
|
+
| 'heroicons:chat-bubble-left-right'
|
|
417
|
+
| 'heroicons:chat-bubble-left-right-16-solid'
|
|
418
|
+
| 'heroicons:chat-bubble-left-right-20-solid'
|
|
419
|
+
| 'heroicons:chat-bubble-left-right-solid'
|
|
420
|
+
| 'heroicons:chat-bubble-left-solid'
|
|
421
|
+
| 'heroicons:chat-bubble-oval-left'
|
|
422
|
+
| 'heroicons:chat-bubble-oval-left-16-solid'
|
|
423
|
+
| 'heroicons:chat-bubble-oval-left-20-solid'
|
|
424
|
+
| 'heroicons:chat-bubble-oval-left-ellipsis'
|
|
425
|
+
| 'heroicons:chat-bubble-oval-left-ellipsis-16-solid'
|
|
426
|
+
| 'heroicons:chat-bubble-oval-left-ellipsis-20-solid'
|
|
427
|
+
| 'heroicons:chat-bubble-oval-left-ellipsis-solid'
|
|
428
|
+
| 'heroicons:chat-bubble-oval-left-solid'
|
|
429
|
+
| 'heroicons:check'
|
|
430
|
+
| 'heroicons:check-16-solid'
|
|
431
|
+
| 'heroicons:check-20-solid'
|
|
432
|
+
| 'heroicons:check-badge'
|
|
433
|
+
| 'heroicons:check-badge-16-solid'
|
|
434
|
+
| 'heroicons:check-badge-20-solid'
|
|
435
|
+
| 'heroicons:check-badge-solid'
|
|
436
|
+
| 'heroicons:check-circle'
|
|
437
|
+
| 'heroicons:check-circle-16-solid'
|
|
438
|
+
| 'heroicons:check-circle-20-solid'
|
|
439
|
+
| 'heroicons:check-circle-solid'
|
|
440
|
+
| 'heroicons:check-solid'
|
|
441
|
+
| 'heroicons:chevron-double-down'
|
|
442
|
+
| 'heroicons:chevron-double-down-16-solid'
|
|
443
|
+
| 'heroicons:chevron-double-down-20-solid'
|
|
444
|
+
| 'heroicons:chevron-double-down-solid'
|
|
445
|
+
| 'heroicons:chevron-double-left'
|
|
446
|
+
| 'heroicons:chevron-double-left-16-solid'
|
|
447
|
+
| 'heroicons:chevron-double-left-20-solid'
|
|
448
|
+
| 'heroicons:chevron-double-left-solid'
|
|
449
|
+
| 'heroicons:chevron-double-right'
|
|
450
|
+
| 'heroicons:chevron-double-right-16-solid'
|
|
451
|
+
| 'heroicons:chevron-double-right-20-solid'
|
|
452
|
+
| 'heroicons:chevron-double-right-solid'
|
|
453
|
+
| 'heroicons:chevron-double-up'
|
|
454
|
+
| 'heroicons:chevron-double-up-16-solid'
|
|
455
|
+
| 'heroicons:chevron-double-up-20-solid'
|
|
456
|
+
| 'heroicons:chevron-double-up-solid'
|
|
457
|
+
| 'heroicons:chevron-down'
|
|
458
|
+
| 'heroicons:chevron-down-16-solid'
|
|
459
|
+
| 'heroicons:chevron-down-20-solid'
|
|
460
|
+
| 'heroicons:chevron-down-solid'
|
|
461
|
+
| 'heroicons:chevron-left'
|
|
462
|
+
| 'heroicons:chevron-left-16-solid'
|
|
463
|
+
| 'heroicons:chevron-left-20-solid'
|
|
464
|
+
| 'heroicons:chevron-left-solid'
|
|
465
|
+
| 'heroicons:chevron-right'
|
|
466
|
+
| 'heroicons:chevron-right-16-solid'
|
|
467
|
+
| 'heroicons:chevron-right-20-solid'
|
|
468
|
+
| 'heroicons:chevron-right-solid'
|
|
469
|
+
| 'heroicons:chevron-up'
|
|
470
|
+
| 'heroicons:chevron-up-16-solid'
|
|
471
|
+
| 'heroicons:chevron-up-20-solid'
|
|
472
|
+
| 'heroicons:chevron-up-down'
|
|
473
|
+
| 'heroicons:chevron-up-down-16-solid'
|
|
474
|
+
| 'heroicons:chevron-up-down-20-solid'
|
|
475
|
+
| 'heroicons:chevron-up-down-solid'
|
|
476
|
+
| 'heroicons:chevron-up-solid'
|
|
477
|
+
| 'heroicons:circle-stack'
|
|
478
|
+
| 'heroicons:circle-stack-16-solid'
|
|
479
|
+
| 'heroicons:circle-stack-20-solid'
|
|
480
|
+
| 'heroicons:circle-stack-solid'
|
|
481
|
+
| 'heroicons:clipboard'
|
|
482
|
+
| 'heroicons:clipboard-16-solid'
|
|
483
|
+
| 'heroicons:clipboard-20-solid'
|
|
484
|
+
| 'heroicons:clipboard-document'
|
|
485
|
+
| 'heroicons:clipboard-document-16-solid'
|
|
486
|
+
| 'heroicons:clipboard-document-20-solid'
|
|
487
|
+
| 'heroicons:clipboard-document-check'
|
|
488
|
+
| 'heroicons:clipboard-document-check-16-solid'
|
|
489
|
+
| 'heroicons:clipboard-document-check-20-solid'
|
|
490
|
+
| 'heroicons:clipboard-document-check-solid'
|
|
491
|
+
| 'heroicons:clipboard-document-list'
|
|
492
|
+
| 'heroicons:clipboard-document-list-16-solid'
|
|
493
|
+
| 'heroicons:clipboard-document-list-20-solid'
|
|
494
|
+
| 'heroicons:clipboard-document-list-solid'
|
|
495
|
+
| 'heroicons:clipboard-document-solid'
|
|
496
|
+
| 'heroicons:clipboard-solid'
|
|
497
|
+
| 'heroicons:clock'
|
|
498
|
+
| 'heroicons:clock-16-solid'
|
|
499
|
+
| 'heroicons:clock-20-solid'
|
|
500
|
+
| 'heroicons:clock-solid'
|
|
501
|
+
| 'heroicons:cloud'
|
|
502
|
+
| 'heroicons:cloud-16-solid'
|
|
503
|
+
| 'heroicons:cloud-20-solid'
|
|
504
|
+
| 'heroicons:cloud-arrow-down'
|
|
505
|
+
| 'heroicons:cloud-arrow-down-16-solid'
|
|
506
|
+
| 'heroicons:cloud-arrow-down-20-solid'
|
|
507
|
+
| 'heroicons:cloud-arrow-down-solid'
|
|
508
|
+
| 'heroicons:cloud-arrow-up'
|
|
509
|
+
| 'heroicons:cloud-arrow-up-16-solid'
|
|
510
|
+
| 'heroicons:cloud-arrow-up-20-solid'
|
|
511
|
+
| 'heroicons:cloud-arrow-up-solid'
|
|
512
|
+
| 'heroicons:cloud-solid'
|
|
513
|
+
| 'heroicons:code-bracket'
|
|
514
|
+
| 'heroicons:code-bracket-16-solid'
|
|
515
|
+
| 'heroicons:code-bracket-20-solid'
|
|
516
|
+
| 'heroicons:code-bracket-solid'
|
|
517
|
+
| 'heroicons:code-bracket-square'
|
|
518
|
+
| 'heroicons:code-bracket-square-16-solid'
|
|
519
|
+
| 'heroicons:code-bracket-square-20-solid'
|
|
520
|
+
| 'heroicons:code-bracket-square-solid'
|
|
521
|
+
| 'heroicons:cog'
|
|
522
|
+
| 'heroicons:cog-16-solid'
|
|
523
|
+
| 'heroicons:cog-20-solid'
|
|
524
|
+
| 'heroicons:cog-6-tooth'
|
|
525
|
+
| 'heroicons:cog-6-tooth-16-solid'
|
|
526
|
+
| 'heroicons:cog-6-tooth-20-solid'
|
|
527
|
+
| 'heroicons:cog-6-tooth-solid'
|
|
528
|
+
| 'heroicons:cog-8-tooth'
|
|
529
|
+
| 'heroicons:cog-8-tooth-16-solid'
|
|
530
|
+
| 'heroicons:cog-8-tooth-20-solid'
|
|
531
|
+
| 'heroicons:cog-8-tooth-solid'
|
|
532
|
+
| 'heroicons:cog-solid'
|
|
533
|
+
| 'heroicons:command-line'
|
|
534
|
+
| 'heroicons:command-line-16-solid'
|
|
535
|
+
| 'heroicons:command-line-20-solid'
|
|
536
|
+
| 'heroicons:command-line-solid'
|
|
537
|
+
| 'heroicons:computer-desktop'
|
|
538
|
+
| 'heroicons:computer-desktop-16-solid'
|
|
539
|
+
| 'heroicons:computer-desktop-20-solid'
|
|
540
|
+
| 'heroicons:computer-desktop-solid'
|
|
541
|
+
| 'heroicons:cpu-chip'
|
|
542
|
+
| 'heroicons:cpu-chip-16-solid'
|
|
543
|
+
| 'heroicons:cpu-chip-20-solid'
|
|
544
|
+
| 'heroicons:cpu-chip-solid'
|
|
545
|
+
| 'heroicons:credit-card'
|
|
546
|
+
| 'heroicons:credit-card-16-solid'
|
|
547
|
+
| 'heroicons:credit-card-20-solid'
|
|
548
|
+
| 'heroicons:credit-card-solid'
|
|
549
|
+
| 'heroicons:cube'
|
|
550
|
+
| 'heroicons:cube-16-solid'
|
|
551
|
+
| 'heroicons:cube-20-solid'
|
|
552
|
+
| 'heroicons:cube-solid'
|
|
553
|
+
| 'heroicons:cube-transparent'
|
|
554
|
+
| 'heroicons:cube-transparent-16-solid'
|
|
555
|
+
| 'heroicons:cube-transparent-20-solid'
|
|
556
|
+
| 'heroicons:cube-transparent-solid'
|
|
557
|
+
| 'heroicons:currency-bangladeshi'
|
|
558
|
+
| 'heroicons:currency-bangladeshi-16-solid'
|
|
559
|
+
| 'heroicons:currency-bangladeshi-20-solid'
|
|
560
|
+
| 'heroicons:currency-bangladeshi-solid'
|
|
561
|
+
| 'heroicons:currency-dollar'
|
|
562
|
+
| 'heroicons:currency-dollar-16-solid'
|
|
563
|
+
| 'heroicons:currency-dollar-20-solid'
|
|
564
|
+
| 'heroicons:currency-dollar-solid'
|
|
565
|
+
| 'heroicons:currency-euro'
|
|
566
|
+
| 'heroicons:currency-euro-16-solid'
|
|
567
|
+
| 'heroicons:currency-euro-20-solid'
|
|
568
|
+
| 'heroicons:currency-euro-solid'
|
|
569
|
+
| 'heroicons:currency-pound'
|
|
570
|
+
| 'heroicons:currency-pound-16-solid'
|
|
571
|
+
| 'heroicons:currency-pound-20-solid'
|
|
572
|
+
| 'heroicons:currency-pound-solid'
|
|
573
|
+
| 'heroicons:currency-rupee'
|
|
574
|
+
| 'heroicons:currency-rupee-16-solid'
|
|
575
|
+
| 'heroicons:currency-rupee-20-solid'
|
|
576
|
+
| 'heroicons:currency-rupee-solid'
|
|
577
|
+
| 'heroicons:currency-yen'
|
|
578
|
+
| 'heroicons:currency-yen-16-solid'
|
|
579
|
+
| 'heroicons:currency-yen-20-solid'
|
|
580
|
+
| 'heroicons:currency-yen-solid'
|
|
581
|
+
| 'heroicons:cursor-arrow-rays'
|
|
582
|
+
| 'heroicons:cursor-arrow-rays-16-solid'
|
|
583
|
+
| 'heroicons:cursor-arrow-rays-20-solid'
|
|
584
|
+
| 'heroicons:cursor-arrow-rays-solid'
|
|
585
|
+
| 'heroicons:cursor-arrow-ripple'
|
|
586
|
+
| 'heroicons:cursor-arrow-ripple-16-solid'
|
|
587
|
+
| 'heroicons:cursor-arrow-ripple-20-solid'
|
|
588
|
+
| 'heroicons:cursor-arrow-ripple-solid'
|
|
589
|
+
| 'heroicons:device-phone-mobile'
|
|
590
|
+
| 'heroicons:device-phone-mobile-16-solid'
|
|
591
|
+
| 'heroicons:device-phone-mobile-20-solid'
|
|
592
|
+
| 'heroicons:device-phone-mobile-solid'
|
|
593
|
+
| 'heroicons:device-tablet'
|
|
594
|
+
| 'heroicons:device-tablet-16-solid'
|
|
595
|
+
| 'heroicons:device-tablet-20-solid'
|
|
596
|
+
| 'heroicons:device-tablet-solid'
|
|
597
|
+
| 'heroicons:divide'
|
|
598
|
+
| 'heroicons:divide-16-solid'
|
|
599
|
+
| 'heroicons:divide-20-solid'
|
|
600
|
+
| 'heroicons:divide-solid'
|
|
601
|
+
| 'heroicons:document'
|
|
602
|
+
| 'heroicons:document-16-solid'
|
|
603
|
+
| 'heroicons:document-20-solid'
|
|
604
|
+
| 'heroicons:document-arrow-down'
|
|
605
|
+
| 'heroicons:document-arrow-down-16-solid'
|
|
606
|
+
| 'heroicons:document-arrow-down-20-solid'
|
|
607
|
+
| 'heroicons:document-arrow-down-solid'
|
|
608
|
+
| 'heroicons:document-arrow-up'
|
|
609
|
+
| 'heroicons:document-arrow-up-16-solid'
|
|
610
|
+
| 'heroicons:document-arrow-up-20-solid'
|
|
611
|
+
| 'heroicons:document-arrow-up-solid'
|
|
612
|
+
| 'heroicons:document-chart-bar'
|
|
613
|
+
| 'heroicons:document-chart-bar-16-solid'
|
|
614
|
+
| 'heroicons:document-chart-bar-20-solid'
|
|
615
|
+
| 'heroicons:document-chart-bar-solid'
|
|
616
|
+
| 'heroicons:document-check'
|
|
617
|
+
| 'heroicons:document-check-16-solid'
|
|
618
|
+
| 'heroicons:document-check-20-solid'
|
|
619
|
+
| 'heroicons:document-check-solid'
|
|
620
|
+
| 'heroicons:document-currency-bangladeshi'
|
|
621
|
+
| 'heroicons:document-currency-bangladeshi-16-solid'
|
|
622
|
+
| 'heroicons:document-currency-bangladeshi-20-solid'
|
|
623
|
+
| 'heroicons:document-currency-bangladeshi-solid'
|
|
624
|
+
| 'heroicons:document-currency-dollar'
|
|
625
|
+
| 'heroicons:document-currency-dollar-16-solid'
|
|
626
|
+
| 'heroicons:document-currency-dollar-20-solid'
|
|
627
|
+
| 'heroicons:document-currency-dollar-solid'
|
|
628
|
+
| 'heroicons:document-currency-euro'
|
|
629
|
+
| 'heroicons:document-currency-euro-16-solid'
|
|
630
|
+
| 'heroicons:document-currency-euro-20-solid'
|
|
631
|
+
| 'heroicons:document-currency-euro-solid'
|
|
632
|
+
| 'heroicons:document-currency-pound'
|
|
633
|
+
| 'heroicons:document-currency-pound-16-solid'
|
|
634
|
+
| 'heroicons:document-currency-pound-20-solid'
|
|
635
|
+
| 'heroicons:document-currency-pound-solid'
|
|
636
|
+
| 'heroicons:document-currency-rupee'
|
|
637
|
+
| 'heroicons:document-currency-rupee-16-solid'
|
|
638
|
+
| 'heroicons:document-currency-rupee-20-solid'
|
|
639
|
+
| 'heroicons:document-currency-rupee-solid'
|
|
640
|
+
| 'heroicons:document-currency-yen'
|
|
641
|
+
| 'heroicons:document-currency-yen-16-solid'
|
|
642
|
+
| 'heroicons:document-currency-yen-20-solid'
|
|
643
|
+
| 'heroicons:document-currency-yen-solid'
|
|
644
|
+
| 'heroicons:document-duplicate'
|
|
645
|
+
| 'heroicons:document-duplicate-16-solid'
|
|
646
|
+
| 'heroicons:document-duplicate-20-solid'
|
|
647
|
+
| 'heroicons:document-duplicate-solid'
|
|
648
|
+
| 'heroicons:document-magnifying-glass'
|
|
649
|
+
| 'heroicons:document-magnifying-glass-16-solid'
|
|
650
|
+
| 'heroicons:document-magnifying-glass-20-solid'
|
|
651
|
+
| 'heroicons:document-magnifying-glass-solid'
|
|
652
|
+
| 'heroicons:document-minus'
|
|
653
|
+
| 'heroicons:document-minus-16-solid'
|
|
654
|
+
| 'heroicons:document-minus-20-solid'
|
|
655
|
+
| 'heroicons:document-minus-solid'
|
|
656
|
+
| 'heroicons:document-plus'
|
|
657
|
+
| 'heroicons:document-plus-16-solid'
|
|
658
|
+
| 'heroicons:document-plus-20-solid'
|
|
659
|
+
| 'heroicons:document-plus-solid'
|
|
660
|
+
| 'heroicons:document-solid'
|
|
661
|
+
| 'heroicons:document-text'
|
|
662
|
+
| 'heroicons:document-text-16-solid'
|
|
663
|
+
| 'heroicons:document-text-20-solid'
|
|
664
|
+
| 'heroicons:document-text-solid'
|
|
665
|
+
| 'heroicons:ellipsis-horizontal'
|
|
666
|
+
| 'heroicons:ellipsis-horizontal-16-solid'
|
|
667
|
+
| 'heroicons:ellipsis-horizontal-20-solid'
|
|
668
|
+
| 'heroicons:ellipsis-horizontal-circle'
|
|
669
|
+
| 'heroicons:ellipsis-horizontal-circle-16-solid'
|
|
670
|
+
| 'heroicons:ellipsis-horizontal-circle-20-solid'
|
|
671
|
+
| 'heroicons:ellipsis-horizontal-circle-solid'
|
|
672
|
+
| 'heroicons:ellipsis-horizontal-solid'
|
|
673
|
+
| 'heroicons:ellipsis-vertical'
|
|
674
|
+
| 'heroicons:ellipsis-vertical-16-solid'
|
|
675
|
+
| 'heroicons:ellipsis-vertical-20-solid'
|
|
676
|
+
| 'heroicons:ellipsis-vertical-solid'
|
|
677
|
+
| 'heroicons:envelope'
|
|
678
|
+
| 'heroicons:envelope-16-solid'
|
|
679
|
+
| 'heroicons:envelope-20-solid'
|
|
680
|
+
| 'heroicons:envelope-open'
|
|
681
|
+
| 'heroicons:envelope-open-16-solid'
|
|
682
|
+
| 'heroicons:envelope-open-20-solid'
|
|
683
|
+
| 'heroicons:envelope-open-solid'
|
|
684
|
+
| 'heroicons:envelope-solid'
|
|
685
|
+
| 'heroicons:equals'
|
|
686
|
+
| 'heroicons:equals-16-solid'
|
|
687
|
+
| 'heroicons:equals-20-solid'
|
|
688
|
+
| 'heroicons:equals-solid'
|
|
689
|
+
| 'heroicons:exclamation-circle'
|
|
690
|
+
| 'heroicons:exclamation-circle-16-solid'
|
|
691
|
+
| 'heroicons:exclamation-circle-20-solid'
|
|
692
|
+
| 'heroicons:exclamation-circle-solid'
|
|
693
|
+
| 'heroicons:exclamation-triangle'
|
|
694
|
+
| 'heroicons:exclamation-triangle-16-solid'
|
|
695
|
+
| 'heroicons:exclamation-triangle-20-solid'
|
|
696
|
+
| 'heroicons:exclamation-triangle-solid'
|
|
697
|
+
| 'heroicons:eye'
|
|
698
|
+
| 'heroicons:eye-16-solid'
|
|
699
|
+
| 'heroicons:eye-20-solid'
|
|
700
|
+
| 'heroicons:eye-dropper'
|
|
701
|
+
| 'heroicons:eye-dropper-16-solid'
|
|
702
|
+
| 'heroicons:eye-dropper-20-solid'
|
|
703
|
+
| 'heroicons:eye-dropper-solid'
|
|
704
|
+
| 'heroicons:eye-slash'
|
|
705
|
+
| 'heroicons:eye-slash-16-solid'
|
|
706
|
+
| 'heroicons:eye-slash-20-solid'
|
|
707
|
+
| 'heroicons:eye-slash-solid'
|
|
708
|
+
| 'heroicons:eye-solid'
|
|
709
|
+
| 'heroicons:face-frown'
|
|
710
|
+
| 'heroicons:face-frown-16-solid'
|
|
711
|
+
| 'heroicons:face-frown-20-solid'
|
|
712
|
+
| 'heroicons:face-frown-solid'
|
|
713
|
+
| 'heroicons:face-smile'
|
|
714
|
+
| 'heroicons:face-smile-16-solid'
|
|
715
|
+
| 'heroicons:face-smile-20-solid'
|
|
716
|
+
| 'heroicons:face-smile-solid'
|
|
717
|
+
| 'heroicons:film'
|
|
718
|
+
| 'heroicons:film-16-solid'
|
|
719
|
+
| 'heroicons:film-20-solid'
|
|
720
|
+
| 'heroicons:film-solid'
|
|
721
|
+
| 'heroicons:finger-print'
|
|
722
|
+
| 'heroicons:finger-print-16-solid'
|
|
723
|
+
| 'heroicons:finger-print-20-solid'
|
|
724
|
+
| 'heroicons:finger-print-solid'
|
|
725
|
+
| 'heroicons:fire'
|
|
726
|
+
| 'heroicons:fire-16-solid'
|
|
727
|
+
| 'heroicons:fire-20-solid'
|
|
728
|
+
| 'heroicons:fire-solid'
|
|
729
|
+
| 'heroicons:flag'
|
|
730
|
+
| 'heroicons:flag-16-solid'
|
|
731
|
+
| 'heroicons:flag-20-solid'
|
|
732
|
+
| 'heroicons:flag-solid'
|
|
733
|
+
| 'heroicons:folder'
|
|
734
|
+
| 'heroicons:folder-16-solid'
|
|
735
|
+
| 'heroicons:folder-20-solid'
|
|
736
|
+
| 'heroicons:folder-arrow-down'
|
|
737
|
+
| 'heroicons:folder-arrow-down-16-solid'
|
|
738
|
+
| 'heroicons:folder-arrow-down-20-solid'
|
|
739
|
+
| 'heroicons:folder-arrow-down-solid'
|
|
740
|
+
| 'heroicons:folder-minus'
|
|
741
|
+
| 'heroicons:folder-minus-16-solid'
|
|
742
|
+
| 'heroicons:folder-minus-20-solid'
|
|
743
|
+
| 'heroicons:folder-minus-solid'
|
|
744
|
+
| 'heroicons:folder-open'
|
|
745
|
+
| 'heroicons:folder-open-16-solid'
|
|
746
|
+
| 'heroicons:folder-open-20-solid'
|
|
747
|
+
| 'heroicons:folder-open-solid'
|
|
748
|
+
| 'heroicons:folder-plus'
|
|
749
|
+
| 'heroicons:folder-plus-16-solid'
|
|
750
|
+
| 'heroicons:folder-plus-20-solid'
|
|
751
|
+
| 'heroicons:folder-plus-solid'
|
|
752
|
+
| 'heroicons:folder-solid'
|
|
753
|
+
| 'heroicons:forward'
|
|
754
|
+
| 'heroicons:forward-16-solid'
|
|
755
|
+
| 'heroicons:forward-20-solid'
|
|
756
|
+
| 'heroicons:forward-solid'
|
|
757
|
+
| 'heroicons:funnel'
|
|
758
|
+
| 'heroicons:funnel-16-solid'
|
|
759
|
+
| 'heroicons:funnel-20-solid'
|
|
760
|
+
| 'heroicons:funnel-solid'
|
|
761
|
+
| 'heroicons:gif'
|
|
762
|
+
| 'heroicons:gif-16-solid'
|
|
763
|
+
| 'heroicons:gif-20-solid'
|
|
764
|
+
| 'heroicons:gif-solid'
|
|
765
|
+
| 'heroicons:gift'
|
|
766
|
+
| 'heroicons:gift-16-solid'
|
|
767
|
+
| 'heroicons:gift-20-solid'
|
|
768
|
+
| 'heroicons:gift-solid'
|
|
769
|
+
| 'heroicons:gift-top'
|
|
770
|
+
| 'heroicons:gift-top-16-solid'
|
|
771
|
+
| 'heroicons:gift-top-20-solid'
|
|
772
|
+
| 'heroicons:gift-top-solid'
|
|
773
|
+
| 'heroicons:globe-alt'
|
|
774
|
+
| 'heroicons:globe-alt-16-solid'
|
|
775
|
+
| 'heroicons:globe-alt-20-solid'
|
|
776
|
+
| 'heroicons:globe-alt-solid'
|
|
777
|
+
| 'heroicons:globe-americas'
|
|
778
|
+
| 'heroicons:globe-americas-16-solid'
|
|
779
|
+
| 'heroicons:globe-americas-20-solid'
|
|
780
|
+
| 'heroicons:globe-americas-solid'
|
|
781
|
+
| 'heroicons:globe-asia-australia'
|
|
782
|
+
| 'heroicons:globe-asia-australia-16-solid'
|
|
783
|
+
| 'heroicons:globe-asia-australia-20-solid'
|
|
784
|
+
| 'heroicons:globe-asia-australia-solid'
|
|
785
|
+
| 'heroicons:globe-europe-africa'
|
|
786
|
+
| 'heroicons:globe-europe-africa-16-solid'
|
|
787
|
+
| 'heroicons:globe-europe-africa-20-solid'
|
|
788
|
+
| 'heroicons:globe-europe-africa-solid'
|
|
789
|
+
| 'heroicons:h1'
|
|
790
|
+
| 'heroicons:h1-16-solid'
|
|
791
|
+
| 'heroicons:h1-20-solid'
|
|
792
|
+
| 'heroicons:h1-solid'
|
|
793
|
+
| 'heroicons:h2'
|
|
794
|
+
| 'heroicons:h2-16-solid'
|
|
795
|
+
| 'heroicons:h2-20-solid'
|
|
796
|
+
| 'heroicons:h2-solid'
|
|
797
|
+
| 'heroicons:h3'
|
|
798
|
+
| 'heroicons:h3-16-solid'
|
|
799
|
+
| 'heroicons:h3-20-solid'
|
|
800
|
+
| 'heroicons:h3-solid'
|
|
801
|
+
| 'heroicons:hand-raised'
|
|
802
|
+
| 'heroicons:hand-raised-16-solid'
|
|
803
|
+
| 'heroicons:hand-raised-20-solid'
|
|
804
|
+
| 'heroicons:hand-raised-solid'
|
|
805
|
+
| 'heroicons:hand-thumb-down'
|
|
806
|
+
| 'heroicons:hand-thumb-down-16-solid'
|
|
807
|
+
| 'heroicons:hand-thumb-down-20-solid'
|
|
808
|
+
| 'heroicons:hand-thumb-down-solid'
|
|
809
|
+
| 'heroicons:hand-thumb-up'
|
|
810
|
+
| 'heroicons:hand-thumb-up-16-solid'
|
|
811
|
+
| 'heroicons:hand-thumb-up-20-solid'
|
|
812
|
+
| 'heroicons:hand-thumb-up-solid'
|
|
813
|
+
| 'heroicons:hashtag'
|
|
814
|
+
| 'heroicons:hashtag-16-solid'
|
|
815
|
+
| 'heroicons:hashtag-20-solid'
|
|
816
|
+
| 'heroicons:hashtag-solid'
|
|
817
|
+
| 'heroicons:heart'
|
|
818
|
+
| 'heroicons:heart-16-solid'
|
|
819
|
+
| 'heroicons:heart-20-solid'
|
|
820
|
+
| 'heroicons:heart-solid'
|
|
821
|
+
| 'heroicons:home'
|
|
822
|
+
| 'heroicons:home-16-solid'
|
|
823
|
+
| 'heroicons:home-20-solid'
|
|
824
|
+
| 'heroicons:home-modern'
|
|
825
|
+
| 'heroicons:home-modern-16-solid'
|
|
826
|
+
| 'heroicons:home-modern-20-solid'
|
|
827
|
+
| 'heroicons:home-modern-solid'
|
|
828
|
+
| 'heroicons:home-solid'
|
|
829
|
+
| 'heroicons:identification'
|
|
830
|
+
| 'heroicons:identification-16-solid'
|
|
831
|
+
| 'heroicons:identification-20-solid'
|
|
832
|
+
| 'heroicons:identification-solid'
|
|
833
|
+
| 'heroicons:inbox'
|
|
834
|
+
| 'heroicons:inbox-16-solid'
|
|
835
|
+
| 'heroicons:inbox-20-solid'
|
|
836
|
+
| 'heroicons:inbox-arrow-down'
|
|
837
|
+
| 'heroicons:inbox-arrow-down-16-solid'
|
|
838
|
+
| 'heroicons:inbox-arrow-down-20-solid'
|
|
839
|
+
| 'heroicons:inbox-arrow-down-solid'
|
|
840
|
+
| 'heroicons:inbox-solid'
|
|
841
|
+
| 'heroicons:inbox-stack'
|
|
842
|
+
| 'heroicons:inbox-stack-16-solid'
|
|
843
|
+
| 'heroicons:inbox-stack-20-solid'
|
|
844
|
+
| 'heroicons:inbox-stack-solid'
|
|
845
|
+
| 'heroicons:information-circle'
|
|
846
|
+
| 'heroicons:information-circle-16-solid'
|
|
847
|
+
| 'heroicons:information-circle-20-solid'
|
|
848
|
+
| 'heroicons:information-circle-solid'
|
|
849
|
+
| 'heroicons:italic'
|
|
850
|
+
| 'heroicons:italic-16-solid'
|
|
851
|
+
| 'heroicons:italic-20-solid'
|
|
852
|
+
| 'heroicons:italic-solid'
|
|
853
|
+
| 'heroicons:key'
|
|
854
|
+
| 'heroicons:key-16-solid'
|
|
855
|
+
| 'heroicons:key-20-solid'
|
|
856
|
+
| 'heroicons:key-solid'
|
|
857
|
+
| 'heroicons:language'
|
|
858
|
+
| 'heroicons:language-16-solid'
|
|
859
|
+
| 'heroicons:language-20-solid'
|
|
860
|
+
| 'heroicons:language-solid'
|
|
861
|
+
| 'heroicons:lifebuoy'
|
|
862
|
+
| 'heroicons:lifebuoy-16-solid'
|
|
863
|
+
| 'heroicons:lifebuoy-20-solid'
|
|
864
|
+
| 'heroicons:lifebuoy-solid'
|
|
865
|
+
| 'heroicons:light-bulb'
|
|
866
|
+
| 'heroicons:light-bulb-16-solid'
|
|
867
|
+
| 'heroicons:light-bulb-20-solid'
|
|
868
|
+
| 'heroicons:light-bulb-solid'
|
|
869
|
+
| 'heroicons:link'
|
|
870
|
+
| 'heroicons:link-16-solid'
|
|
871
|
+
| 'heroicons:link-20-solid'
|
|
872
|
+
| 'heroicons:link-slash'
|
|
873
|
+
| 'heroicons:link-slash-16-solid'
|
|
874
|
+
| 'heroicons:link-slash-20-solid'
|
|
875
|
+
| 'heroicons:link-slash-solid'
|
|
876
|
+
| 'heroicons:link-solid'
|
|
877
|
+
| 'heroicons:list-bullet'
|
|
878
|
+
| 'heroicons:list-bullet-16-solid'
|
|
879
|
+
| 'heroicons:list-bullet-20-solid'
|
|
880
|
+
| 'heroicons:list-bullet-solid'
|
|
881
|
+
| 'heroicons:lock-closed'
|
|
882
|
+
| 'heroicons:lock-closed-16-solid'
|
|
883
|
+
| 'heroicons:lock-closed-20-solid'
|
|
884
|
+
| 'heroicons:lock-closed-solid'
|
|
885
|
+
| 'heroicons:lock-open'
|
|
886
|
+
| 'heroicons:lock-open-16-solid'
|
|
887
|
+
| 'heroicons:lock-open-20-solid'
|
|
888
|
+
| 'heroicons:lock-open-solid'
|
|
889
|
+
| 'heroicons:magnifying-glass'
|
|
890
|
+
| 'heroicons:magnifying-glass-16-solid'
|
|
891
|
+
| 'heroicons:magnifying-glass-20-solid'
|
|
892
|
+
| 'heroicons:magnifying-glass-circle'
|
|
893
|
+
| 'heroicons:magnifying-glass-circle-16-solid'
|
|
894
|
+
| 'heroicons:magnifying-glass-circle-20-solid'
|
|
895
|
+
| 'heroicons:magnifying-glass-circle-solid'
|
|
896
|
+
| 'heroicons:magnifying-glass-minus'
|
|
897
|
+
| 'heroicons:magnifying-glass-minus-16-solid'
|
|
898
|
+
| 'heroicons:magnifying-glass-minus-20-solid'
|
|
899
|
+
| 'heroicons:magnifying-glass-minus-solid'
|
|
900
|
+
| 'heroicons:magnifying-glass-plus'
|
|
901
|
+
| 'heroicons:magnifying-glass-plus-16-solid'
|
|
902
|
+
| 'heroicons:magnifying-glass-plus-20-solid'
|
|
903
|
+
| 'heroicons:magnifying-glass-plus-solid'
|
|
904
|
+
| 'heroicons:magnifying-glass-solid'
|
|
905
|
+
| 'heroicons:map'
|
|
906
|
+
| 'heroicons:map-16-solid'
|
|
907
|
+
| 'heroicons:map-20-solid'
|
|
908
|
+
| 'heroicons:map-pin'
|
|
909
|
+
| 'heroicons:map-pin-16-solid'
|
|
910
|
+
| 'heroicons:map-pin-20-solid'
|
|
911
|
+
| 'heroicons:map-pin-solid'
|
|
912
|
+
| 'heroicons:map-solid'
|
|
913
|
+
| 'heroicons:megaphone'
|
|
914
|
+
| 'heroicons:megaphone-16-solid'
|
|
915
|
+
| 'heroicons:megaphone-20-solid'
|
|
916
|
+
| 'heroicons:megaphone-solid'
|
|
917
|
+
| 'heroicons:microphone'
|
|
918
|
+
| 'heroicons:microphone-16-solid'
|
|
919
|
+
| 'heroicons:microphone-20-solid'
|
|
920
|
+
| 'heroicons:microphone-solid'
|
|
921
|
+
| 'heroicons:minus'
|
|
922
|
+
| 'heroicons:minus-16-solid'
|
|
923
|
+
| 'heroicons:minus-20-solid'
|
|
924
|
+
| 'heroicons:minus-circle'
|
|
925
|
+
| 'heroicons:minus-circle-16-solid'
|
|
926
|
+
| 'heroicons:minus-circle-20-solid'
|
|
927
|
+
| 'heroicons:minus-circle-solid'
|
|
928
|
+
| 'heroicons:minus-small'
|
|
929
|
+
| 'heroicons:minus-small-20-solid'
|
|
930
|
+
| 'heroicons:minus-small-solid'
|
|
931
|
+
| 'heroicons:minus-solid'
|
|
932
|
+
| 'heroicons:moon'
|
|
933
|
+
| 'heroicons:moon-16-solid'
|
|
934
|
+
| 'heroicons:moon-20-solid'
|
|
935
|
+
| 'heroicons:moon-solid'
|
|
936
|
+
| 'heroicons:musical-note'
|
|
937
|
+
| 'heroicons:musical-note-16-solid'
|
|
938
|
+
| 'heroicons:musical-note-20-solid'
|
|
939
|
+
| 'heroicons:musical-note-solid'
|
|
940
|
+
| 'heroicons:newspaper'
|
|
941
|
+
| 'heroicons:newspaper-16-solid'
|
|
942
|
+
| 'heroicons:newspaper-20-solid'
|
|
943
|
+
| 'heroicons:newspaper-solid'
|
|
944
|
+
| 'heroicons:no-symbol'
|
|
945
|
+
| 'heroicons:no-symbol-16-solid'
|
|
946
|
+
| 'heroicons:no-symbol-20-solid'
|
|
947
|
+
| 'heroicons:no-symbol-solid'
|
|
948
|
+
| 'heroicons:numbered-list'
|
|
949
|
+
| 'heroicons:numbered-list-16-solid'
|
|
950
|
+
| 'heroicons:numbered-list-20-solid'
|
|
951
|
+
| 'heroicons:numbered-list-solid'
|
|
952
|
+
| 'heroicons:paint-brush'
|
|
953
|
+
| 'heroicons:paint-brush-16-solid'
|
|
954
|
+
| 'heroicons:paint-brush-20-solid'
|
|
955
|
+
| 'heroicons:paint-brush-solid'
|
|
956
|
+
| 'heroicons:paper-airplane'
|
|
957
|
+
| 'heroicons:paper-airplane-16-solid'
|
|
958
|
+
| 'heroicons:paper-airplane-20-solid'
|
|
959
|
+
| 'heroicons:paper-airplane-solid'
|
|
960
|
+
| 'heroicons:paper-clip'
|
|
961
|
+
| 'heroicons:paper-clip-16-solid'
|
|
962
|
+
| 'heroicons:paper-clip-20-solid'
|
|
963
|
+
| 'heroicons:paper-clip-solid'
|
|
964
|
+
| 'heroicons:pause'
|
|
965
|
+
| 'heroicons:pause-16-solid'
|
|
966
|
+
| 'heroicons:pause-20-solid'
|
|
967
|
+
| 'heroicons:pause-circle'
|
|
968
|
+
| 'heroicons:pause-circle-16-solid'
|
|
969
|
+
| 'heroicons:pause-circle-20-solid'
|
|
970
|
+
| 'heroicons:pause-circle-solid'
|
|
971
|
+
| 'heroicons:pause-solid'
|
|
972
|
+
| 'heroicons:pencil'
|
|
973
|
+
| 'heroicons:pencil-16-solid'
|
|
974
|
+
| 'heroicons:pencil-20-solid'
|
|
975
|
+
| 'heroicons:pencil-solid'
|
|
976
|
+
| 'heroicons:pencil-square'
|
|
977
|
+
| 'heroicons:pencil-square-16-solid'
|
|
978
|
+
| 'heroicons:pencil-square-20-solid'
|
|
979
|
+
| 'heroicons:pencil-square-solid'
|
|
980
|
+
| 'heroicons:percent-badge'
|
|
981
|
+
| 'heroicons:percent-badge-16-solid'
|
|
982
|
+
| 'heroicons:percent-badge-20-solid'
|
|
983
|
+
| 'heroicons:percent-badge-solid'
|
|
984
|
+
| 'heroicons:phone'
|
|
985
|
+
| 'heroicons:phone-16-solid'
|
|
986
|
+
| 'heroicons:phone-20-solid'
|
|
987
|
+
| 'heroicons:phone-arrow-down-left'
|
|
988
|
+
| 'heroicons:phone-arrow-down-left-16-solid'
|
|
989
|
+
| 'heroicons:phone-arrow-down-left-20-solid'
|
|
990
|
+
| 'heroicons:phone-arrow-down-left-solid'
|
|
991
|
+
| 'heroicons:phone-arrow-up-right'
|
|
992
|
+
| 'heroicons:phone-arrow-up-right-16-solid'
|
|
993
|
+
| 'heroicons:phone-arrow-up-right-20-solid'
|
|
994
|
+
| 'heroicons:phone-arrow-up-right-solid'
|
|
995
|
+
| 'heroicons:phone-solid'
|
|
996
|
+
| 'heroicons:phone-x-mark'
|
|
997
|
+
| 'heroicons:phone-x-mark-16-solid'
|
|
998
|
+
| 'heroicons:phone-x-mark-20-solid'
|
|
999
|
+
| 'heroicons:phone-x-mark-solid'
|
|
1000
|
+
| 'heroicons:photo'
|
|
1001
|
+
| 'heroicons:photo-16-solid'
|
|
1002
|
+
| 'heroicons:photo-20-solid'
|
|
1003
|
+
| 'heroicons:photo-solid'
|
|
1004
|
+
| 'heroicons:play'
|
|
1005
|
+
| 'heroicons:play-16-solid'
|
|
1006
|
+
| 'heroicons:play-20-solid'
|
|
1007
|
+
| 'heroicons:play-circle'
|
|
1008
|
+
| 'heroicons:play-circle-16-solid'
|
|
1009
|
+
| 'heroicons:play-circle-20-solid'
|
|
1010
|
+
| 'heroicons:play-circle-solid'
|
|
1011
|
+
| 'heroicons:play-pause'
|
|
1012
|
+
| 'heroicons:play-pause-16-solid'
|
|
1013
|
+
| 'heroicons:play-pause-20-solid'
|
|
1014
|
+
| 'heroicons:play-pause-solid'
|
|
1015
|
+
| 'heroicons:play-solid'
|
|
1016
|
+
| 'heroicons:plus'
|
|
1017
|
+
| 'heroicons:plus-16-solid'
|
|
1018
|
+
| 'heroicons:plus-20-solid'
|
|
1019
|
+
| 'heroicons:plus-circle'
|
|
1020
|
+
| 'heroicons:plus-circle-16-solid'
|
|
1021
|
+
| 'heroicons:plus-circle-20-solid'
|
|
1022
|
+
| 'heroicons:plus-circle-solid'
|
|
1023
|
+
| 'heroicons:plus-small'
|
|
1024
|
+
| 'heroicons:plus-small-20-solid'
|
|
1025
|
+
| 'heroicons:plus-small-solid'
|
|
1026
|
+
| 'heroicons:plus-solid'
|
|
1027
|
+
| 'heroicons:power'
|
|
1028
|
+
| 'heroicons:power-16-solid'
|
|
1029
|
+
| 'heroicons:power-20-solid'
|
|
1030
|
+
| 'heroicons:power-solid'
|
|
1031
|
+
| 'heroicons:presentation-chart-bar'
|
|
1032
|
+
| 'heroicons:presentation-chart-bar-16-solid'
|
|
1033
|
+
| 'heroicons:presentation-chart-bar-20-solid'
|
|
1034
|
+
| 'heroicons:presentation-chart-bar-solid'
|
|
1035
|
+
| 'heroicons:presentation-chart-line'
|
|
1036
|
+
| 'heroicons:presentation-chart-line-16-solid'
|
|
1037
|
+
| 'heroicons:presentation-chart-line-20-solid'
|
|
1038
|
+
| 'heroicons:presentation-chart-line-solid'
|
|
1039
|
+
| 'heroicons:printer'
|
|
1040
|
+
| 'heroicons:printer-16-solid'
|
|
1041
|
+
| 'heroicons:printer-20-solid'
|
|
1042
|
+
| 'heroicons:printer-solid'
|
|
1043
|
+
| 'heroicons:puzzle-piece'
|
|
1044
|
+
| 'heroicons:puzzle-piece-16-solid'
|
|
1045
|
+
| 'heroicons:puzzle-piece-20-solid'
|
|
1046
|
+
| 'heroicons:puzzle-piece-solid'
|
|
1047
|
+
| 'heroicons:qr-code'
|
|
1048
|
+
| 'heroicons:qr-code-16-solid'
|
|
1049
|
+
| 'heroicons:qr-code-20-solid'
|
|
1050
|
+
| 'heroicons:qr-code-solid'
|
|
1051
|
+
| 'heroicons:question-mark-circle'
|
|
1052
|
+
| 'heroicons:question-mark-circle-16-solid'
|
|
1053
|
+
| 'heroicons:question-mark-circle-20-solid'
|
|
1054
|
+
| 'heroicons:question-mark-circle-solid'
|
|
1055
|
+
| 'heroicons:queue-list'
|
|
1056
|
+
| 'heroicons:queue-list-16-solid'
|
|
1057
|
+
| 'heroicons:queue-list-20-solid'
|
|
1058
|
+
| 'heroicons:queue-list-solid'
|
|
1059
|
+
| 'heroicons:radio'
|
|
1060
|
+
| 'heroicons:radio-16-solid'
|
|
1061
|
+
| 'heroicons:radio-20-solid'
|
|
1062
|
+
| 'heroicons:radio-solid'
|
|
1063
|
+
| 'heroicons:receipt-percent'
|
|
1064
|
+
| 'heroicons:receipt-percent-16-solid'
|
|
1065
|
+
| 'heroicons:receipt-percent-20-solid'
|
|
1066
|
+
| 'heroicons:receipt-percent-solid'
|
|
1067
|
+
| 'heroicons:receipt-refund'
|
|
1068
|
+
| 'heroicons:receipt-refund-16-solid'
|
|
1069
|
+
| 'heroicons:receipt-refund-20-solid'
|
|
1070
|
+
| 'heroicons:receipt-refund-solid'
|
|
1071
|
+
| 'heroicons:rectangle-group'
|
|
1072
|
+
| 'heroicons:rectangle-group-16-solid'
|
|
1073
|
+
| 'heroicons:rectangle-group-20-solid'
|
|
1074
|
+
| 'heroicons:rectangle-group-solid'
|
|
1075
|
+
| 'heroicons:rectangle-stack'
|
|
1076
|
+
| 'heroicons:rectangle-stack-16-solid'
|
|
1077
|
+
| 'heroicons:rectangle-stack-20-solid'
|
|
1078
|
+
| 'heroicons:rectangle-stack-solid'
|
|
1079
|
+
| 'heroicons:rocket-launch'
|
|
1080
|
+
| 'heroicons:rocket-launch-16-solid'
|
|
1081
|
+
| 'heroicons:rocket-launch-20-solid'
|
|
1082
|
+
| 'heroicons:rocket-launch-solid'
|
|
1083
|
+
| 'heroicons:rss'
|
|
1084
|
+
| 'heroicons:rss-16-solid'
|
|
1085
|
+
| 'heroicons:rss-20-solid'
|
|
1086
|
+
| 'heroicons:rss-solid'
|
|
1087
|
+
| 'heroicons:scale'
|
|
1088
|
+
| 'heroicons:scale-16-solid'
|
|
1089
|
+
| 'heroicons:scale-20-solid'
|
|
1090
|
+
| 'heroicons:scale-solid'
|
|
1091
|
+
| 'heroicons:scissors'
|
|
1092
|
+
| 'heroicons:scissors-16-solid'
|
|
1093
|
+
| 'heroicons:scissors-20-solid'
|
|
1094
|
+
| 'heroicons:scissors-solid'
|
|
1095
|
+
| 'heroicons:server'
|
|
1096
|
+
| 'heroicons:server-16-solid'
|
|
1097
|
+
| 'heroicons:server-20-solid'
|
|
1098
|
+
| 'heroicons:server-solid'
|
|
1099
|
+
| 'heroicons:server-stack'
|
|
1100
|
+
| 'heroicons:server-stack-16-solid'
|
|
1101
|
+
| 'heroicons:server-stack-20-solid'
|
|
1102
|
+
| 'heroicons:server-stack-solid'
|
|
1103
|
+
| 'heroicons:share'
|
|
1104
|
+
| 'heroicons:share-16-solid'
|
|
1105
|
+
| 'heroicons:share-20-solid'
|
|
1106
|
+
| 'heroicons:share-solid'
|
|
1107
|
+
| 'heroicons:shield-check'
|
|
1108
|
+
| 'heroicons:shield-check-16-solid'
|
|
1109
|
+
| 'heroicons:shield-check-20-solid'
|
|
1110
|
+
| 'heroicons:shield-check-solid'
|
|
1111
|
+
| 'heroicons:shield-exclamation'
|
|
1112
|
+
| 'heroicons:shield-exclamation-16-solid'
|
|
1113
|
+
| 'heroicons:shield-exclamation-20-solid'
|
|
1114
|
+
| 'heroicons:shield-exclamation-solid'
|
|
1115
|
+
| 'heroicons:shopping-bag'
|
|
1116
|
+
| 'heroicons:shopping-bag-16-solid'
|
|
1117
|
+
| 'heroicons:shopping-bag-20-solid'
|
|
1118
|
+
| 'heroicons:shopping-bag-solid'
|
|
1119
|
+
| 'heroicons:shopping-cart'
|
|
1120
|
+
| 'heroicons:shopping-cart-16-solid'
|
|
1121
|
+
| 'heroicons:shopping-cart-20-solid'
|
|
1122
|
+
| 'heroicons:shopping-cart-solid'
|
|
1123
|
+
| 'heroicons:signal'
|
|
1124
|
+
| 'heroicons:signal-16-solid'
|
|
1125
|
+
| 'heroicons:signal-20-solid'
|
|
1126
|
+
| 'heroicons:signal-slash'
|
|
1127
|
+
| 'heroicons:signal-slash-16-solid'
|
|
1128
|
+
| 'heroicons:signal-slash-20-solid'
|
|
1129
|
+
| 'heroicons:signal-slash-solid'
|
|
1130
|
+
| 'heroicons:signal-solid'
|
|
1131
|
+
| 'heroicons:slash'
|
|
1132
|
+
| 'heroicons:slash-16-solid'
|
|
1133
|
+
| 'heroicons:slash-20-solid'
|
|
1134
|
+
| 'heroicons:slash-solid'
|
|
1135
|
+
| 'heroicons:sparkles'
|
|
1136
|
+
| 'heroicons:sparkles-16-solid'
|
|
1137
|
+
| 'heroicons:sparkles-20-solid'
|
|
1138
|
+
| 'heroicons:sparkles-solid'
|
|
1139
|
+
| 'heroicons:speaker-wave'
|
|
1140
|
+
| 'heroicons:speaker-wave-16-solid'
|
|
1141
|
+
| 'heroicons:speaker-wave-20-solid'
|
|
1142
|
+
| 'heroicons:speaker-wave-solid'
|
|
1143
|
+
| 'heroicons:speaker-x-mark'
|
|
1144
|
+
| 'heroicons:speaker-x-mark-16-solid'
|
|
1145
|
+
| 'heroicons:speaker-x-mark-20-solid'
|
|
1146
|
+
| 'heroicons:speaker-x-mark-solid'
|
|
1147
|
+
| 'heroicons:square-2-stack'
|
|
1148
|
+
| 'heroicons:square-2-stack-16-solid'
|
|
1149
|
+
| 'heroicons:square-2-stack-20-solid'
|
|
1150
|
+
| 'heroicons:square-2-stack-solid'
|
|
1151
|
+
| 'heroicons:square-3-stack-3d'
|
|
1152
|
+
| 'heroicons:square-3-stack-3d-16-solid'
|
|
1153
|
+
| 'heroicons:square-3-stack-3d-20-solid'
|
|
1154
|
+
| 'heroicons:square-3-stack-3d-solid'
|
|
1155
|
+
| 'heroicons:squares-2x2'
|
|
1156
|
+
| 'heroicons:squares-2x2-16-solid'
|
|
1157
|
+
| 'heroicons:squares-2x2-20-solid'
|
|
1158
|
+
| 'heroicons:squares-2x2-solid'
|
|
1159
|
+
| 'heroicons:squares-plus'
|
|
1160
|
+
| 'heroicons:squares-plus-16-solid'
|
|
1161
|
+
| 'heroicons:squares-plus-20-solid'
|
|
1162
|
+
| 'heroicons:squares-plus-solid'
|
|
1163
|
+
| 'heroicons:star'
|
|
1164
|
+
| 'heroicons:star-16-solid'
|
|
1165
|
+
| 'heroicons:star-20-solid'
|
|
1166
|
+
| 'heroicons:star-solid'
|
|
1167
|
+
| 'heroicons:stop'
|
|
1168
|
+
| 'heroicons:stop-16-solid'
|
|
1169
|
+
| 'heroicons:stop-20-solid'
|
|
1170
|
+
| 'heroicons:stop-circle'
|
|
1171
|
+
| 'heroicons:stop-circle-16-solid'
|
|
1172
|
+
| 'heroicons:stop-circle-20-solid'
|
|
1173
|
+
| 'heroicons:stop-circle-solid'
|
|
1174
|
+
| 'heroicons:stop-solid'
|
|
1175
|
+
| 'heroicons:strikethrough'
|
|
1176
|
+
| 'heroicons:strikethrough-16-solid'
|
|
1177
|
+
| 'heroicons:strikethrough-20-solid'
|
|
1178
|
+
| 'heroicons:strikethrough-solid'
|
|
1179
|
+
| 'heroicons:sun'
|
|
1180
|
+
| 'heroicons:sun-16-solid'
|
|
1181
|
+
| 'heroicons:sun-20-solid'
|
|
1182
|
+
| 'heroicons:sun-solid'
|
|
1183
|
+
| 'heroicons:swatch'
|
|
1184
|
+
| 'heroicons:swatch-16-solid'
|
|
1185
|
+
| 'heroicons:swatch-20-solid'
|
|
1186
|
+
| 'heroicons:swatch-solid'
|
|
1187
|
+
| 'heroicons:table-cells'
|
|
1188
|
+
| 'heroicons:table-cells-16-solid'
|
|
1189
|
+
| 'heroicons:table-cells-20-solid'
|
|
1190
|
+
| 'heroicons:table-cells-solid'
|
|
1191
|
+
| 'heroicons:tag'
|
|
1192
|
+
| 'heroicons:tag-16-solid'
|
|
1193
|
+
| 'heroicons:tag-20-solid'
|
|
1194
|
+
| 'heroicons:tag-solid'
|
|
1195
|
+
| 'heroicons:ticket'
|
|
1196
|
+
| 'heroicons:ticket-16-solid'
|
|
1197
|
+
| 'heroicons:ticket-20-solid'
|
|
1198
|
+
| 'heroicons:ticket-solid'
|
|
1199
|
+
| 'heroicons:trash'
|
|
1200
|
+
| 'heroicons:trash-16-solid'
|
|
1201
|
+
| 'heroicons:trash-20-solid'
|
|
1202
|
+
| 'heroicons:trash-solid'
|
|
1203
|
+
| 'heroicons:trophy'
|
|
1204
|
+
| 'heroicons:trophy-16-solid'
|
|
1205
|
+
| 'heroicons:trophy-20-solid'
|
|
1206
|
+
| 'heroicons:trophy-solid'
|
|
1207
|
+
| 'heroicons:truck'
|
|
1208
|
+
| 'heroicons:truck-16-solid'
|
|
1209
|
+
| 'heroicons:truck-20-solid'
|
|
1210
|
+
| 'heroicons:truck-solid'
|
|
1211
|
+
| 'heroicons:tv'
|
|
1212
|
+
| 'heroicons:tv-16-solid'
|
|
1213
|
+
| 'heroicons:tv-20-solid'
|
|
1214
|
+
| 'heroicons:tv-solid'
|
|
1215
|
+
| 'heroicons:underline'
|
|
1216
|
+
| 'heroicons:underline-16-solid'
|
|
1217
|
+
| 'heroicons:underline-20-solid'
|
|
1218
|
+
| 'heroicons:underline-solid'
|
|
1219
|
+
| 'heroicons:user'
|
|
1220
|
+
| 'heroicons:user-16-solid'
|
|
1221
|
+
| 'heroicons:user-20-solid'
|
|
1222
|
+
| 'heroicons:user-circle'
|
|
1223
|
+
| 'heroicons:user-circle-16-solid'
|
|
1224
|
+
| 'heroicons:user-circle-20-solid'
|
|
1225
|
+
| 'heroicons:user-circle-solid'
|
|
1226
|
+
| 'heroicons:user-group'
|
|
1227
|
+
| 'heroicons:user-group-16-solid'
|
|
1228
|
+
| 'heroicons:user-group-20-solid'
|
|
1229
|
+
| 'heroicons:user-group-solid'
|
|
1230
|
+
| 'heroicons:user-minus'
|
|
1231
|
+
| 'heroicons:user-minus-16-solid'
|
|
1232
|
+
| 'heroicons:user-minus-20-solid'
|
|
1233
|
+
| 'heroicons:user-minus-solid'
|
|
1234
|
+
| 'heroicons:user-plus'
|
|
1235
|
+
| 'heroicons:user-plus-16-solid'
|
|
1236
|
+
| 'heroicons:user-plus-20-solid'
|
|
1237
|
+
| 'heroicons:user-plus-solid'
|
|
1238
|
+
| 'heroicons:user-solid'
|
|
1239
|
+
| 'heroicons:users'
|
|
1240
|
+
| 'heroicons:users-16-solid'
|
|
1241
|
+
| 'heroicons:users-20-solid'
|
|
1242
|
+
| 'heroicons:users-solid'
|
|
1243
|
+
| 'heroicons:variable'
|
|
1244
|
+
| 'heroicons:variable-16-solid'
|
|
1245
|
+
| 'heroicons:variable-20-solid'
|
|
1246
|
+
| 'heroicons:variable-solid'
|
|
1247
|
+
| 'heroicons:video-camera'
|
|
1248
|
+
| 'heroicons:video-camera-16-solid'
|
|
1249
|
+
| 'heroicons:video-camera-20-solid'
|
|
1250
|
+
| 'heroicons:video-camera-slash'
|
|
1251
|
+
| 'heroicons:video-camera-slash-16-solid'
|
|
1252
|
+
| 'heroicons:video-camera-slash-20-solid'
|
|
1253
|
+
| 'heroicons:video-camera-slash-solid'
|
|
1254
|
+
| 'heroicons:video-camera-solid'
|
|
1255
|
+
| 'heroicons:view-columns'
|
|
1256
|
+
| 'heroicons:view-columns-16-solid'
|
|
1257
|
+
| 'heroicons:view-columns-20-solid'
|
|
1258
|
+
| 'heroicons:view-columns-solid'
|
|
1259
|
+
| 'heroicons:viewfinder-circle'
|
|
1260
|
+
| 'heroicons:viewfinder-circle-16-solid'
|
|
1261
|
+
| 'heroicons:viewfinder-circle-20-solid'
|
|
1262
|
+
| 'heroicons:viewfinder-circle-solid'
|
|
1263
|
+
| 'heroicons:wallet'
|
|
1264
|
+
| 'heroicons:wallet-16-solid'
|
|
1265
|
+
| 'heroicons:wallet-20-solid'
|
|
1266
|
+
| 'heroicons:wallet-solid'
|
|
1267
|
+
| 'heroicons:wifi'
|
|
1268
|
+
| 'heroicons:wifi-16-solid'
|
|
1269
|
+
| 'heroicons:wifi-20-solid'
|
|
1270
|
+
| 'heroicons:wifi-solid'
|
|
1271
|
+
| 'heroicons:window'
|
|
1272
|
+
| 'heroicons:window-16-solid'
|
|
1273
|
+
| 'heroicons:window-20-solid'
|
|
1274
|
+
| 'heroicons:window-solid'
|
|
1275
|
+
| 'heroicons:wrench'
|
|
1276
|
+
| 'heroicons:wrench-16-solid'
|
|
1277
|
+
| 'heroicons:wrench-20-solid'
|
|
1278
|
+
| 'heroicons:wrench-screwdriver'
|
|
1279
|
+
| 'heroicons:wrench-screwdriver-16-solid'
|
|
1280
|
+
| 'heroicons:wrench-screwdriver-20-solid'
|
|
1281
|
+
| 'heroicons:wrench-screwdriver-solid'
|
|
1282
|
+
| 'heroicons:wrench-solid'
|
|
1283
|
+
| 'heroicons:x-circle'
|
|
1284
|
+
| 'heroicons:x-circle-16-solid'
|
|
1285
|
+
| 'heroicons:x-circle-20-solid'
|
|
1286
|
+
| 'heroicons:x-circle-solid'
|
|
1287
|
+
| 'heroicons:x-mark'
|
|
1288
|
+
| 'heroicons:x-mark-16-solid'
|
|
1289
|
+
| 'heroicons:x-mark-20-solid'
|
|
1290
|
+
| 'heroicons:x-mark-solid'
|
|
1291
|
+
| 'flatcoloricons:google'
|
|
1292
|
+
| 'simpleicons:auth0'
|
|
1293
|
+
| 'simpleicons:discord'
|
|
1294
|
+
| 'simpleicons:github'
|
|
1295
|
+
)[];
|
|
1296
|
+
export const iconCollections: ('heroicons' | 'flatcoloricons' | 'simpleicons')[];
|
|
226
1297
|
|
|
227
|
-
|
|
1298
|
+
export const heroicons: import('@studiocms/ui/types').IconifyJSON;
|
|
1299
|
+
export const flatcoloricons: import('@studiocms/ui/types').IconifyJSON;
|
|
1300
|
+
export const simpleicons: import('@studiocms/ui/types').IconifyJSON;
|
|
228
1301
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
*/
|
|
232
|
-
export class ThemeHelper {
|
|
233
|
-
private themeManagerElement;
|
|
234
|
-
private observer;
|
|
235
|
-
private themeChangeCallbacks;
|
|
236
|
-
/**
|
|
237
|
-
* A helper to toggle, set and get the current StudioCMS UI theme.
|
|
238
|
-
* @param themeProvider The element that should carry the data-theme attribute (replaces the document root)
|
|
239
|
-
*/
|
|
240
|
-
constructor(themeProvider?: HTMLElement);
|
|
241
|
-
/**
|
|
242
|
-
* Get the current theme.
|
|
243
|
-
* @param {boolean} resolveSystemTheme Whether to resolve the `system` theme to the actual theme (`dark` or `light`)
|
|
244
|
-
* @returns {Theme} The current theme.
|
|
245
|
-
*/
|
|
246
|
-
getTheme: <T extends boolean>(
|
|
247
|
-
resolveSystemTheme?: T
|
|
248
|
-
) => T extends true ? 'dark' | 'light' : Theme;
|
|
249
|
-
/**
|
|
250
|
-
* Sets the current theme.
|
|
251
|
-
* @param theme The new theme. One of `dark`, `light` or `system`.
|
|
252
|
-
*/
|
|
253
|
-
setTheme: (theme: Theme) => void;
|
|
254
|
-
/**
|
|
255
|
-
* Toggles the current theme.
|
|
256
|
-
*
|
|
257
|
-
* If the theme is set to `system` (or no theme is set via the root element),
|
|
258
|
-
* the theme is set depending on the user's color scheme preference (set in the browser).
|
|
259
|
-
*/
|
|
260
|
-
toggleTheme: () => void;
|
|
261
|
-
/**
|
|
262
|
-
* Register an element to act as a toggle! When clicked, it will toggle the theme.
|
|
263
|
-
* @param toggle The HTML element that should act as the toggle
|
|
264
|
-
*/
|
|
265
|
-
registerToggle: (toggle: HTMLElement | null) => void;
|
|
266
|
-
/**
|
|
267
|
-
* Allows for adding a callback that gets called whenever the theme changes.
|
|
268
|
-
* @param callback The callback to be executed
|
|
269
|
-
*/
|
|
270
|
-
onThemeChange: (callback: ThemeChangeCallback) => void;
|
|
271
|
-
/**
|
|
272
|
-
* Simply gets the first mutation and calls all registered callbacks.
|
|
273
|
-
* @param mutations The mutations array from the observer. Due to the specified options, this will always be a 1-length array,
|
|
274
|
-
*/
|
|
275
|
-
private themeManagerMutationHandler;
|
|
276
|
-
}
|
|
1302
|
+
export type AvailableIcons = (typeof availableIcons)[number];
|
|
1303
|
+
export type IconCollections = (typeof iconCollections)[number];
|
|
277
1304
|
}
|