@saasquatch/mint-components 1.3.2-1 → 1.3.2-10
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/dist/cjs/{ShadowViewAddon-75c18b96.js → ShadowViewAddon-d2fde0a2.js} +1 -1
- package/dist/cjs/{global-041b5338.js → global-e04d7cde.js} +107 -56
- package/dist/cjs/{index.module-6a7bda18.js → index.module-07ed6ad2.js} +2 -1
- package/dist/cjs/loader.cjs.js +3 -4
- package/dist/cjs/mint-components.cjs.js +3 -4
- package/dist/cjs/{re-render-7cdb2d81.js → re-render-81649c33.js} +1 -1
- package/dist/cjs/sqm-asset-card.cjs.entry.js +1 -1
- package/dist/cjs/sqm-big-stat.cjs.entry.js +2 -2
- package/dist/cjs/{sqm-divided-layout_27.cjs.entry.js → sqm-divided-layout_30.cjs.entry.js} +1860 -609
- package/dist/cjs/sqm-graphql-client-provider.cjs.entry.js +1 -1
- package/dist/cjs/{index-19309631.js → sqm-leaderboard-rank-view-0ba128e2.js} +10 -3
- package/dist/cjs/sqm-leaderboard-rank.cjs.entry.js +7 -9
- package/dist/cjs/sqm-leaderboard.cjs.entry.js +2 -2
- package/dist/cjs/sqm-name-fields.cjs.entry.js +1 -1
- package/dist/cjs/{sqm-navigation-sidebar-item-view-e99b4a10.js → sqm-navigation-sidebar-item-view-0bad789c.js} +1 -1
- package/dist/cjs/sqm-navigation-sidebar-item.cjs.entry.js +2 -2
- package/dist/cjs/sqm-popup-container.cjs.entry.js +1 -1
- package/dist/cjs/{sqm-portal-email-verification-view-5e955797.js → sqm-portal-email-verification-view-3c7d8701.js} +1 -1
- package/dist/cjs/sqm-portal-email-verification.cjs.entry.js +3 -4
- package/dist/cjs/{sqm-portal-footer-view-9089feb7.js → sqm-portal-footer-view-8f5d682e.js} +1 -1
- package/dist/cjs/sqm-portal-footer.cjs.entry.js +3 -4
- package/dist/cjs/sqm-portal-forgot-password.cjs.entry.js +1 -1
- package/dist/cjs/sqm-portal-logout.cjs.entry.js +1 -1
- package/dist/cjs/{sqm-portal-profile-view-a23ea292.js → sqm-portal-profile-view-14866b58.js} +1 -1
- package/dist/cjs/sqm-portal-profile.cjs.entry.js +3 -4
- package/dist/cjs/sqm-portal-protected-route.cjs.entry.js +1 -1
- package/dist/cjs/sqm-portal-reset-password.cjs.entry.js +1 -1
- package/dist/cjs/sqm-portal-verify-email.cjs.entry.js +1 -1
- package/dist/cjs/sqm-referral-table-column.cjs.entry.js +2 -2
- package/dist/cjs/sqm-referral-table-date-column.cjs.entry.js +2 -2
- package/dist/cjs/sqm-referral-table-rewards-column.cjs.entry.js +2 -2
- package/dist/cjs/sqm-referral-table-status-column.cjs.entry.js +2 -2
- package/dist/cjs/sqm-referral-table-user-column.cjs.entry.js +2 -2
- package/dist/cjs/sqm-share-code.cjs.entry.js +1 -1
- package/dist/cjs/{useDemoBigStat-17e61803.js → useDemoBigStat-1692a6a1.js} +117 -21
- package/dist/collection/collection-manifest.json +2 -1
- package/dist/collection/components/sqm-big-stat/BigStat.stories.js +8 -1
- package/dist/collection/components/sqm-big-stat/UseBigStat.stories.js +3 -0
- package/dist/collection/components/sqm-big-stat/sqm-big-stat.js +1 -1
- package/dist/collection/components/sqm-big-stat/useBigStat.js +115 -20
- package/dist/collection/components/sqm-big-stat/useDemoBigStat.js +1 -0
- package/dist/collection/components/sqm-reward-exchange-list/RewardExchangeList.stories.js +21 -0
- package/dist/collection/components/sqm-reward-exchange-list/RewardExchangeListData.js +218 -0
- package/dist/collection/components/sqm-reward-exchange-list/SVGs.js +5 -14
- package/dist/collection/components/sqm-reward-exchange-list/progressBar.js +27 -40
- package/dist/collection/components/sqm-reward-exchange-list/sqm-reward-exchange-list-view.js +113 -78
- package/dist/collection/components/sqm-reward-exchange-list/sqm-reward-exchange-list.js +3 -2
- package/dist/collection/components/sqm-reward-exchange-list/useRewardExchangeList.js +4 -2
- package/dist/collection/components/sqm-rewards-table/UseRewardsTable.stories.js +53 -0
- package/dist/collection/components/sqm-rewards-table/sqm-rewards-table-column.js +120 -0
- package/dist/collection/components/sqm-rewards-table/useRewardsTable.js +11 -16
- package/dist/collection/components/{sqm-rewards-table → sqm-router}/Router.stories.js +0 -0
- package/dist/collection/components/sqm-share-button/sqm-share-button.js +1 -1
- package/dist/collection/components/sqm-stencilbook/CucumberAddon.js +3 -1
- package/dist/collection/components/sqm-stencilbook/sqm-stencilbook.js +9 -1
- package/dist/collection/components/sqm-task-card/SVGs.js +0 -6
- package/dist/collection/components/sqm-task-card/TaskCard.stories.js +90 -259
- package/dist/collection/components/sqm-task-card/UseTaskCard.stories.js +41 -0
- package/dist/collection/components/sqm-task-card/progress-bar/SVGs.js +7 -0
- package/dist/collection/components/sqm-task-card/progress-bar/progress-bar-view.js +311 -0
- package/dist/collection/components/sqm-task-card/progress-bar/progress-bar.stories.js +53 -0
- package/dist/collection/components/sqm-task-card/sqm-task-card-view.js +30 -315
- package/dist/collection/components/sqm-task-card/sqm-task-card.js +111 -51
- package/dist/collection/stories/NewPortal.stories.js +15 -15
- package/dist/esm/{ShadowViewAddon-fff5d35d.js → ShadowViewAddon-aa087ef2.js} +1 -1
- package/dist/esm/{global-5ecbf81a.js → global-107bb084.js} +54 -3
- package/dist/esm/{index.module-f80561db.js → index.module-1f571929.js} +2 -2
- package/dist/esm/loader.js +3 -4
- package/dist/esm/mint-components.js +3 -4
- package/dist/esm/{re-render-9ab5fe0f.js → re-render-76c9129f.js} +1 -1
- package/dist/esm/sqm-asset-card.entry.js +1 -1
- package/dist/esm/sqm-big-stat.entry.js +2 -2
- package/dist/esm/{sqm-divided-layout_27.entry.js → sqm-divided-layout_30.entry.js} +1817 -569
- package/dist/esm/sqm-graphql-client-provider.entry.js +1 -1
- package/dist/esm/{index-2f5dd0a1.js → sqm-leaderboard-rank-view-c1aefdd5.js} +9 -3
- package/dist/esm/sqm-leaderboard-rank.entry.js +3 -5
- package/dist/esm/sqm-leaderboard.entry.js +2 -2
- package/dist/esm/sqm-name-fields.entry.js +1 -1
- package/dist/esm/{sqm-navigation-sidebar-item-view-8a3f374b.js → sqm-navigation-sidebar-item-view-b3618185.js} +1 -1
- package/dist/esm/sqm-navigation-sidebar-item.entry.js +2 -2
- package/dist/esm/sqm-popup-container.entry.js +1 -1
- package/dist/esm/{sqm-portal-email-verification-view-90781be2.js → sqm-portal-email-verification-view-df0559b0.js} +1 -1
- package/dist/esm/sqm-portal-email-verification.entry.js +3 -4
- package/dist/esm/{sqm-portal-footer-view-c317518e.js → sqm-portal-footer-view-2b2bfc9e.js} +1 -1
- package/dist/esm/sqm-portal-footer.entry.js +3 -4
- package/dist/esm/sqm-portal-forgot-password.entry.js +1 -1
- package/dist/esm/sqm-portal-logout.entry.js +1 -1
- package/dist/esm/{sqm-portal-profile-view-824c8242.js → sqm-portal-profile-view-2fbb0845.js} +1 -1
- package/dist/esm/sqm-portal-profile.entry.js +3 -4
- package/dist/esm/sqm-portal-protected-route.entry.js +1 -1
- package/dist/esm/sqm-portal-reset-password.entry.js +1 -1
- package/dist/esm/sqm-portal-verify-email.entry.js +1 -1
- package/dist/esm/sqm-referral-table-column.entry.js +2 -2
- package/dist/esm/sqm-referral-table-date-column.entry.js +2 -2
- package/dist/esm/sqm-referral-table-rewards-column.entry.js +2 -2
- package/dist/esm/sqm-referral-table-status-column.entry.js +2 -2
- package/dist/esm/sqm-referral-table-user-column.entry.js +2 -2
- package/dist/esm/sqm-share-code.entry.js +1 -1
- package/dist/esm/{useDemoBigStat-b71fe122.js → useDemoBigStat-49cdfe32.js} +117 -21
- package/dist/esm-es5/{ShadowViewAddon-fff5d35d.js → ShadowViewAddon-aa087ef2.js} +1 -1
- package/dist/esm-es5/{global-5ecbf81a.js → global-107bb084.js} +16 -2
- package/dist/esm-es5/{index.module-f80561db.js → index.module-1f571929.js} +1 -1
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mint-components.js +1 -1
- package/dist/esm-es5/{re-render-9ab5fe0f.js → re-render-76c9129f.js} +1 -1
- package/dist/esm-es5/sqm-asset-card.entry.js +1 -1
- package/dist/esm-es5/sqm-big-stat.entry.js +1 -1
- package/dist/esm-es5/sqm-divided-layout_30.entry.js +1 -0
- package/dist/esm-es5/sqm-graphql-client-provider.entry.js +1 -1
- package/dist/esm-es5/sqm-leaderboard-rank-view-c1aefdd5.js +1 -0
- package/dist/esm-es5/sqm-leaderboard-rank.entry.js +1 -1
- package/dist/esm-es5/sqm-leaderboard.entry.js +1 -1
- package/dist/esm-es5/sqm-name-fields.entry.js +1 -1
- package/dist/esm-es5/{sqm-navigation-sidebar-item-view-8a3f374b.js → sqm-navigation-sidebar-item-view-b3618185.js} +1 -1
- package/dist/esm-es5/sqm-navigation-sidebar-item.entry.js +1 -1
- package/dist/esm-es5/sqm-popup-container.entry.js +1 -1
- package/dist/esm-es5/{sqm-portal-email-verification-view-90781be2.js → sqm-portal-email-verification-view-df0559b0.js} +1 -1
- package/dist/esm-es5/sqm-portal-email-verification.entry.js +1 -1
- package/dist/esm-es5/{sqm-portal-footer-view-c317518e.js → sqm-portal-footer-view-2b2bfc9e.js} +1 -1
- package/dist/esm-es5/sqm-portal-footer.entry.js +1 -1
- package/dist/esm-es5/sqm-portal-forgot-password.entry.js +1 -1
- package/dist/esm-es5/sqm-portal-logout.entry.js +1 -1
- package/dist/esm-es5/{sqm-portal-profile-view-824c8242.js → sqm-portal-profile-view-2fbb0845.js} +1 -1
- package/dist/esm-es5/sqm-portal-profile.entry.js +1 -1
- package/dist/esm-es5/sqm-portal-protected-route.entry.js +1 -1
- package/dist/esm-es5/sqm-portal-reset-password.entry.js +1 -1
- package/dist/esm-es5/sqm-portal-verify-email.entry.js +1 -1
- package/dist/esm-es5/sqm-referral-table-column.entry.js +1 -1
- package/dist/esm-es5/sqm-referral-table-date-column.entry.js +1 -1
- package/dist/esm-es5/sqm-referral-table-rewards-column.entry.js +1 -1
- package/dist/esm-es5/sqm-referral-table-status-column.entry.js +1 -1
- package/dist/esm-es5/sqm-referral-table-user-column.entry.js +1 -1
- package/dist/esm-es5/sqm-share-code.entry.js +1 -1
- package/dist/esm-es5/useDemoBigStat-49cdfe32.js +1 -0
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/mint-components.js +1 -1
- package/dist/mint-components/{p-57a53dbd.system.entry.js → p-03b7444e.system.entry.js} +1 -1
- package/dist/mint-components/{p-82ab88fe.system.js → p-0470556b.system.js} +1 -1
- package/dist/mint-components/p-0ca63e9e.system.entry.js +1 -0
- package/dist/mint-components/p-0ddd6063.system.entry.js +1 -0
- package/dist/mint-components/{p-337b49ee.entry.js → p-0f19ab40.entry.js} +1 -1
- package/dist/mint-components/{p-1ac9c24b.system.entry.js → p-123930ab.system.entry.js} +1 -1
- package/dist/mint-components/p-20991bdd.system.entry.js +1 -0
- package/dist/mint-components/{p-3052c913.system.js → p-22ee65c4.system.js} +1 -1
- package/dist/mint-components/{p-2a025d2a.system.entry.js → p-2b9a01ce.system.entry.js} +1 -1
- package/dist/mint-components/{p-d9cc041f.entry.js → p-3b9492a8.entry.js} +1 -1
- package/dist/mint-components/{p-e9ab90a1.entry.js → p-3bbc61af.entry.js} +1 -1
- package/dist/mint-components/{p-05cca77b.js → p-3fd9db63.js} +1 -1
- package/dist/mint-components/p-458070cf.js +1 -0
- package/dist/mint-components/{p-434ee9c1.js → p-4ae9f594.js} +1 -1
- package/dist/mint-components/{p-7c13e32e.system.entry.js → p-57568b23.system.entry.js} +1 -1
- package/dist/mint-components/{p-82d7a2ba.entry.js → p-57aa7493.entry.js} +1 -1
- package/dist/mint-components/p-5986de11.entry.js +1 -0
- package/dist/mint-components/p-59fa991d.entry.js +335 -0
- package/dist/mint-components/p-5a1a2b2c.entry.js +1 -0
- package/dist/mint-components/{p-3b0acfcd.system.js → p-5e681b4b.system.js} +1 -1
- package/dist/mint-components/{p-4ba2faf2.system.entry.js → p-62b134cb.system.entry.js} +1 -1
- package/dist/mint-components/{p-e475a5ff.system.entry.js → p-64299f78.system.entry.js} +1 -1
- package/dist/mint-components/p-6466d643.entry.js +1 -0
- package/dist/mint-components/{p-2bce988c.js → p-70008004.js} +1 -1
- package/dist/mint-components/{p-16535642.system.entry.js → p-70a6f9d9.system.entry.js} +1 -1
- package/dist/mint-components/p-719c2664.system.js +1 -0
- package/dist/mint-components/{p-db723323.system.entry.js → p-75924795.system.entry.js} +1 -1
- package/dist/mint-components/p-8155cd07.system.js +1 -0
- package/dist/mint-components/{p-0688c9c2.system.entry.js → p-86a55c58.system.entry.js} +1 -1
- package/dist/mint-components/p-874e7da3.entry.js +13 -0
- package/dist/mint-components/{p-5dfc6804.system.entry.js → p-8ac0ec83.system.entry.js} +1 -1
- package/dist/mint-components/{p-1fb688a9.system.js → p-91b0d151.system.js} +1 -1
- package/dist/mint-components/p-9ca6142b.system.entry.js +1 -0
- package/dist/mint-components/{p-6d545e13.entry.js → p-a26457cd.entry.js} +1 -1
- package/dist/mint-components/{p-8e37c08d.js → p-a37fc3cb.js} +1 -1
- package/dist/mint-components/p-a48fc54e.system.js +1 -0
- package/dist/mint-components/{p-cc3510c8.js → p-ab378185.js} +1 -1
- package/dist/mint-components/p-ac92b5ea.js +235 -0
- package/dist/mint-components/{p-6cdc70f4.entry.js → p-b0c6f82b.entry.js} +1 -1
- package/dist/mint-components/{p-844f9bad.entry.js → p-b0e9c89c.entry.js} +1 -1
- package/dist/mint-components/{p-16da5146.entry.js → p-b3bac2c6.entry.js} +1 -1
- package/dist/mint-components/{p-04516274.system.entry.js → p-bcb30771.system.entry.js} +1 -1
- package/dist/mint-components/{p-a0cfd3d9.system.js → p-bdfdb088.system.js} +1 -1
- package/dist/mint-components/p-beb02af2.entry.js +1 -0
- package/dist/mint-components/{p-ceeaf074.system.js → p-beeeda0c.system.js} +35 -21
- package/dist/mint-components/p-bf10c781.system.js +1 -0
- package/dist/mint-components/p-c0e8aaa7.system.entry.js +1 -0
- package/dist/mint-components/{p-3fd33dee.system.entry.js → p-c35b54e4.system.entry.js} +1 -1
- package/dist/mint-components/{p-a7f0b2f6.entry.js → p-c61c61e7.entry.js} +1 -1
- package/dist/mint-components/{p-5f28af29.entry.js → p-c974b7d4.entry.js} +1 -1
- package/dist/mint-components/{p-2f171597.entry.js → p-cbf1db2b.entry.js} +1 -1
- package/dist/mint-components/{p-a4a00461.entry.js → p-d1e28563.entry.js} +1 -1
- package/dist/mint-components/p-d37f227e.entry.js +1 -0
- package/dist/mint-components/{p-1813b9b9.system.js → p-d44e98b8.system.js} +1 -1
- package/dist/mint-components/{p-f1e1086e.js → p-d73d26ec.js} +17 -2
- package/dist/mint-components/p-dacbf435.entry.js +9 -0
- package/dist/mint-components/{p-1b414d8f.system.entry.js → p-dbc04567.system.entry.js} +1 -1
- package/dist/mint-components/{p-d3787c3a.entry.js → p-de0efef2.entry.js} +1 -1
- package/dist/mint-components/p-e01213a2.system.entry.js +1 -0
- package/dist/mint-components/p-e2a855b8.system.entry.js +1 -0
- package/dist/mint-components/p-f0ad9b15.entry.js +1 -0
- package/dist/mint-components/{p-a0045707.system.entry.js → p-f0cbf76e.system.entry.js} +1 -1
- package/dist/mint-components/{p-aba21f90.entry.js → p-f2db1c3b.entry.js} +1 -1
- package/dist/mint-components/{p-505f5c59.system.entry.js → p-f538a675.system.entry.js} +1 -1
- package/dist/mint-components/{p-844fd903.js → p-f7e2418a.js} +1 -1
- package/dist/mint-components/{p-00190438.js → p-f8abbd79.js} +1 -1
- package/dist/mint-components/{p-af06ea5b.system.entry.js → p-fc90a3fe.system.entry.js} +1 -1
- package/dist/types/components/sqm-big-stat/UseBigStat.stories.d.ts +6 -0
- package/dist/types/components/sqm-big-stat/sqm-big-stat-view.d.ts +1 -0
- package/dist/types/components/sqm-big-stat/useBigStat.d.ts +4 -1
- package/dist/types/components/sqm-reward-exchange-list/RewardExchangeList.stories.d.ts +6 -0
- package/dist/types/components/sqm-reward-exchange-list/RewardExchangeListData.d.ts +81 -0
- package/dist/types/components/sqm-reward-exchange-list/SVGs.d.ts +1 -0
- package/dist/types/components/sqm-reward-exchange-list/progressBar.d.ts +3 -2
- package/dist/types/components/sqm-reward-exchange-list/sqm-reward-exchange-list-view.d.ts +2 -3
- package/dist/types/components/sqm-rewards-table/UseRewardsTable.stories.d.ts +16 -0
- package/dist/types/components/sqm-rewards-table/sqm-rewards-table-column.d.ts +20 -0
- package/dist/types/components/sqm-rewards-table/useRewardsTable.d.ts +33 -0
- package/dist/types/components/{sqm-rewards-table → sqm-router}/Router.stories.d.ts +0 -0
- package/dist/types/components/sqm-task-card/SVGs.d.ts +0 -1
- package/dist/types/components/sqm-task-card/TaskCard.stories.d.ts +3 -1
- package/dist/types/components/sqm-task-card/UseTaskCard.stories.d.ts +10 -0
- package/dist/types/components/sqm-task-card/progress-bar/SVGs.d.ts +1 -0
- package/dist/types/components/sqm-task-card/progress-bar/progress-bar-view.d.ts +10 -0
- package/dist/types/components/sqm-task-card/progress-bar/progress-bar.stories.d.ts +12 -0
- package/dist/types/components/sqm-task-card/sqm-task-card-view.d.ts +13 -22
- package/dist/types/components/sqm-task-card/sqm-task-card.d.ts +26 -14
- package/dist/types/components.d.ts +82 -36
- package/grapesjs/grapesjs.js +1 -1
- package/package.json +1 -1
- package/dist/cjs/sqm-leaderboard-rank-view-35015d30.js +0 -10
- package/dist/cjs/sqm-rewards-table.cjs.entry.js +0 -332
- package/dist/cjs/sqm-task-card-view-57066e67.js +0 -476
- package/dist/cjs/sqm-task-card.cjs.entry.js +0 -56
- package/dist/cjs/tslib.es6-0e81fab1.js +0 -56
- package/dist/cjs/useChildElements-428ca5b8.js +0 -21
- package/dist/esm/sqm-leaderboard-rank-view-da91f5f3.js +0 -8
- package/dist/esm/sqm-rewards-table.entry.js +0 -328
- package/dist/esm/sqm-task-card-view-2ee495af.js +0 -474
- package/dist/esm/sqm-task-card.entry.js +0 -52
- package/dist/esm/tslib.es6-7ac9d7e4.js +0 -53
- package/dist/esm/useChildElements-506f00d0.js +0 -19
- package/dist/esm-es5/index-2f5dd0a1.js +0 -1
- package/dist/esm-es5/sqm-divided-layout_27.entry.js +0 -1
- package/dist/esm-es5/sqm-leaderboard-rank-view-da91f5f3.js +0 -1
- package/dist/esm-es5/sqm-rewards-table.entry.js +0 -1
- package/dist/esm-es5/sqm-task-card-view-2ee495af.js +0 -1
- package/dist/esm-es5/sqm-task-card.entry.js +0 -1
- package/dist/esm-es5/tslib.es6-7ac9d7e4.js +0 -15
- package/dist/esm-es5/useChildElements-506f00d0.js +0 -1
- package/dist/esm-es5/useDemoBigStat-b71fe122.js +0 -1
- package/dist/mint-components/p-11c75956.entry.js +0 -1
- package/dist/mint-components/p-189219ee.system.js +0 -1
- package/dist/mint-components/p-1e248afc.system.entry.js +0 -1
- package/dist/mint-components/p-21dfdeb8.entry.js +0 -1
- package/dist/mint-components/p-23a0bdae.entry.js +0 -1
- package/dist/mint-components/p-353b4413.system.js +0 -1
- package/dist/mint-components/p-405a9253.js +0 -227
- package/dist/mint-components/p-55e02769.entry.js +0 -13
- package/dist/mint-components/p-58d9b2f0.js +0 -15
- package/dist/mint-components/p-684850a7.entry.js +0 -287
- package/dist/mint-components/p-70837c1c.entry.js +0 -49
- package/dist/mint-components/p-71d942af.entry.js +0 -9
- package/dist/mint-components/p-7c138c84.entry.js +0 -1
- package/dist/mint-components/p-7c261ea0.system.entry.js +0 -1
- package/dist/mint-components/p-8034f81c.system.entry.js +0 -1
- package/dist/mint-components/p-81dbda90.system.entry.js +0 -1
- package/dist/mint-components/p-8c16f04e.js +0 -1
- package/dist/mint-components/p-8f5e2af4.entry.js +0 -1
- package/dist/mint-components/p-91d39961.system.js +0 -1
- package/dist/mint-components/p-b3af1c6f.js +0 -1
- package/dist/mint-components/p-bf04a8e1.system.entry.js +0 -1
- package/dist/mint-components/p-bf055b6c.system.js +0 -1
- package/dist/mint-components/p-c3866bfa.system.entry.js +0 -1
- package/dist/mint-components/p-c9c4f31b.system.entry.js +0 -1
- package/dist/mint-components/p-dd6a666e.system.js +0 -15
- package/dist/mint-components/p-dfc3cf82.js +0 -1
- package/dist/mint-components/p-e19a57a4.system.entry.js +0 -1
- package/dist/mint-components/p-e22eed7b.entry.js +0 -1
- package/dist/mint-components/p-e2ebe90c.entry.js +0 -1
- package/dist/mint-components/p-e78a5a91.js +0 -1
- package/dist/mint-components/p-ecbabf6e.system.js +0 -1
- package/dist/mint-components/p-f41ab9e1.system.js +0 -1
- package/dist/mint-components/p-f87d8f53.system.js +0 -1
- package/dist/mint-components/p-fcaa5886.system.entry.js +0 -1
|
@@ -31,6 +31,7 @@ import { ReferralTableViewProps } from "./components/sqm-referral-table/sqm-refe
|
|
|
31
31
|
import { ReferralDates } from "./components/sqm-referral-table/useReferralTable";
|
|
32
32
|
import { RewardExchangeViewProps } from "./components/sqm-reward-exchange-list/sqm-reward-exchange-list-view";
|
|
33
33
|
import { GenericTableViewProps } from "./tables/GenericTableView";
|
|
34
|
+
import { Reward } from "./components/sqm-rewards-table/useRewardsTable";
|
|
34
35
|
import { ShareButtonViewProps } from "./components/sqm-share-button/sqm-share-button-view";
|
|
35
36
|
import { ShareLinkViewProps } from "./components/sqm-share-link/sqm-share-link-view";
|
|
36
37
|
import { UserNameViewProps } from "./components/sqm-user-name/sqm-user-name-view";
|
|
@@ -859,6 +860,18 @@ export namespace Components {
|
|
|
859
860
|
*/
|
|
860
861
|
"showReferrer"?: boolean;
|
|
861
862
|
}
|
|
863
|
+
interface SqmRewardsTableColumn {
|
|
864
|
+
/**
|
|
865
|
+
* @uiName Reward column title
|
|
866
|
+
*/
|
|
867
|
+
"columnTitle": string;
|
|
868
|
+
/**
|
|
869
|
+
* @uiName Hide dropdown details of reward
|
|
870
|
+
*/
|
|
871
|
+
"hideDetails": boolean;
|
|
872
|
+
"renderCell": (data: Reward[]) => Promise<any>;
|
|
873
|
+
"renderLabel": () => Promise<string>;
|
|
874
|
+
}
|
|
862
875
|
interface SqmRoute {
|
|
863
876
|
/**
|
|
864
877
|
* @uiName Navigation path name
|
|
@@ -1015,11 +1028,11 @@ export namespace Components {
|
|
|
1015
1028
|
}
|
|
1016
1029
|
interface SqmTaskCard {
|
|
1017
1030
|
/**
|
|
1018
|
-
* @uiName Button Link
|
|
1031
|
+
* @uiName CTA Button Link
|
|
1019
1032
|
*/
|
|
1020
1033
|
"buttonLink": string;
|
|
1021
1034
|
/**
|
|
1022
|
-
* @uiName Button Text
|
|
1035
|
+
* @uiName CTA Button Text
|
|
1023
1036
|
*/
|
|
1024
1037
|
"buttonText": string;
|
|
1025
1038
|
/**
|
|
@@ -1027,45 +1040,52 @@ export namespace Components {
|
|
|
1027
1040
|
*/
|
|
1028
1041
|
"cardTitle": string;
|
|
1029
1042
|
/**
|
|
1030
|
-
* @uiName
|
|
1043
|
+
* @uiName Date Goal Expires
|
|
1031
1044
|
*/
|
|
1032
|
-
"
|
|
1045
|
+
"dateExpires"?: string;
|
|
1033
1046
|
/**
|
|
1034
1047
|
* @uiName Description Text
|
|
1035
1048
|
*/
|
|
1036
1049
|
"description": string;
|
|
1037
1050
|
/**
|
|
1038
|
-
* @uiName
|
|
1051
|
+
* @uiName Goal Completion Number
|
|
1039
1052
|
*/
|
|
1040
|
-
"
|
|
1053
|
+
"goal": number;
|
|
1041
1054
|
/**
|
|
1042
|
-
* @uiName Progress Bar
|
|
1055
|
+
* @uiName Progress Bar Unit
|
|
1043
1056
|
*/
|
|
1044
|
-
"
|
|
1057
|
+
"progressBarUnit"?: string;
|
|
1045
1058
|
/**
|
|
1046
|
-
* @uiName
|
|
1059
|
+
* @uiName Goal Repeatable
|
|
1047
1060
|
*/
|
|
1048
|
-
"
|
|
1061
|
+
"repeatable": boolean;
|
|
1049
1062
|
/**
|
|
1050
|
-
* @uiName
|
|
1063
|
+
* @uiName Reward Amount
|
|
1051
1064
|
*/
|
|
1052
|
-
"
|
|
1065
|
+
"rewardAmount": number;
|
|
1053
1066
|
/**
|
|
1054
|
-
* @uiName
|
|
1067
|
+
* @uiName Reward Unit
|
|
1055
1068
|
*/
|
|
1056
|
-
"
|
|
1069
|
+
"rewardUnit": string;
|
|
1070
|
+
/**
|
|
1071
|
+
* @uiName Show Goal Expiry
|
|
1072
|
+
*/
|
|
1073
|
+
"showExpiry": boolean;
|
|
1057
1074
|
/**
|
|
1058
1075
|
* @uiName Show Progress Bar
|
|
1059
1076
|
*/
|
|
1060
1077
|
"showProgressBar": boolean;
|
|
1061
1078
|
/**
|
|
1062
|
-
*
|
|
1079
|
+
* Select what type of stat to display for the goal. Manual paths are also supported.
|
|
1080
|
+
* @uiWidget StatTypeSelectWidget
|
|
1081
|
+
* @uiName Stat Type
|
|
1082
|
+
* @uiOptions {"version": 1.1}
|
|
1063
1083
|
*/
|
|
1064
|
-
"
|
|
1084
|
+
"statType": string;
|
|
1065
1085
|
/**
|
|
1066
|
-
* @uiName Progress Bar
|
|
1086
|
+
* @uiName Progress Bar Steps
|
|
1067
1087
|
*/
|
|
1068
|
-
"
|
|
1088
|
+
"steps": boolean;
|
|
1069
1089
|
}
|
|
1070
1090
|
interface SqmText {
|
|
1071
1091
|
}
|
|
@@ -1377,6 +1397,12 @@ declare global {
|
|
|
1377
1397
|
prototype: HTMLSqmRewardsTableElement;
|
|
1378
1398
|
new (): HTMLSqmRewardsTableElement;
|
|
1379
1399
|
};
|
|
1400
|
+
interface HTMLSqmRewardsTableColumnElement extends Components.SqmRewardsTableColumn, HTMLStencilElement {
|
|
1401
|
+
}
|
|
1402
|
+
var HTMLSqmRewardsTableColumnElement: {
|
|
1403
|
+
prototype: HTMLSqmRewardsTableColumnElement;
|
|
1404
|
+
new (): HTMLSqmRewardsTableColumnElement;
|
|
1405
|
+
};
|
|
1380
1406
|
interface HTMLSqmRouteElement extends Components.SqmRoute, HTMLStencilElement {
|
|
1381
1407
|
}
|
|
1382
1408
|
var HTMLSqmRouteElement: {
|
|
@@ -1506,6 +1532,7 @@ declare global {
|
|
|
1506
1532
|
"sqm-referral-table-user-column": HTMLSqmReferralTableUserColumnElement;
|
|
1507
1533
|
"sqm-reward-exchange-list": HTMLSqmRewardExchangeListElement;
|
|
1508
1534
|
"sqm-rewards-table": HTMLSqmRewardsTableElement;
|
|
1535
|
+
"sqm-rewards-table-column": HTMLSqmRewardsTableColumnElement;
|
|
1509
1536
|
"sqm-route": HTMLSqmRouteElement;
|
|
1510
1537
|
"sqm-router": HTMLSqmRouterElement;
|
|
1511
1538
|
"sqm-share-button": HTMLSqmShareButtonElement;
|
|
@@ -2337,6 +2364,16 @@ declare namespace LocalJSX {
|
|
|
2337
2364
|
*/
|
|
2338
2365
|
"showReferrer"?: boolean;
|
|
2339
2366
|
}
|
|
2367
|
+
interface SqmRewardsTableColumn {
|
|
2368
|
+
/**
|
|
2369
|
+
* @uiName Reward column title
|
|
2370
|
+
*/
|
|
2371
|
+
"columnTitle"?: string;
|
|
2372
|
+
/**
|
|
2373
|
+
* @uiName Hide dropdown details of reward
|
|
2374
|
+
*/
|
|
2375
|
+
"hideDetails"?: boolean;
|
|
2376
|
+
}
|
|
2340
2377
|
interface SqmRoute {
|
|
2341
2378
|
/**
|
|
2342
2379
|
* @uiName Navigation path name
|
|
@@ -2493,11 +2530,11 @@ declare namespace LocalJSX {
|
|
|
2493
2530
|
}
|
|
2494
2531
|
interface SqmTaskCard {
|
|
2495
2532
|
/**
|
|
2496
|
-
* @uiName Button Link
|
|
2533
|
+
* @uiName CTA Button Link
|
|
2497
2534
|
*/
|
|
2498
2535
|
"buttonLink"?: string;
|
|
2499
2536
|
/**
|
|
2500
|
-
* @uiName Button Text
|
|
2537
|
+
* @uiName CTA Button Text
|
|
2501
2538
|
*/
|
|
2502
2539
|
"buttonText"?: string;
|
|
2503
2540
|
/**
|
|
@@ -2505,45 +2542,52 @@ declare namespace LocalJSX {
|
|
|
2505
2542
|
*/
|
|
2506
2543
|
"cardTitle"?: string;
|
|
2507
2544
|
/**
|
|
2508
|
-
* @uiName
|
|
2545
|
+
* @uiName Date Goal Expires
|
|
2509
2546
|
*/
|
|
2510
|
-
"
|
|
2547
|
+
"dateExpires"?: string;
|
|
2511
2548
|
/**
|
|
2512
2549
|
* @uiName Description Text
|
|
2513
2550
|
*/
|
|
2514
2551
|
"description"?: string;
|
|
2515
2552
|
/**
|
|
2516
|
-
* @uiName
|
|
2553
|
+
* @uiName Goal Completion Number
|
|
2554
|
+
*/
|
|
2555
|
+
"goal"?: number;
|
|
2556
|
+
/**
|
|
2557
|
+
* @uiName Progress Bar Unit
|
|
2517
2558
|
*/
|
|
2518
|
-
"
|
|
2559
|
+
"progressBarUnit"?: string;
|
|
2519
2560
|
/**
|
|
2520
|
-
* @uiName
|
|
2561
|
+
* @uiName Goal Repeatable
|
|
2521
2562
|
*/
|
|
2522
|
-
"
|
|
2563
|
+
"repeatable"?: boolean;
|
|
2523
2564
|
/**
|
|
2524
|
-
* @uiName Reward
|
|
2565
|
+
* @uiName Reward Amount
|
|
2525
2566
|
*/
|
|
2526
|
-
"
|
|
2567
|
+
"rewardAmount"?: number;
|
|
2527
2568
|
/**
|
|
2528
|
-
* @uiName
|
|
2569
|
+
* @uiName Reward Unit
|
|
2529
2570
|
*/
|
|
2530
|
-
"
|
|
2571
|
+
"rewardUnit"?: string;
|
|
2531
2572
|
/**
|
|
2532
|
-
* @uiName
|
|
2573
|
+
* @uiName Show Goal Expiry
|
|
2533
2574
|
*/
|
|
2534
|
-
"
|
|
2575
|
+
"showExpiry"?: boolean;
|
|
2535
2576
|
/**
|
|
2536
2577
|
* @uiName Show Progress Bar
|
|
2537
2578
|
*/
|
|
2538
2579
|
"showProgressBar"?: boolean;
|
|
2539
2580
|
/**
|
|
2540
|
-
*
|
|
2581
|
+
* Select what type of stat to display for the goal. Manual paths are also supported.
|
|
2582
|
+
* @uiWidget StatTypeSelectWidget
|
|
2583
|
+
* @uiName Stat Type
|
|
2584
|
+
* @uiOptions {"version": 1.1}
|
|
2541
2585
|
*/
|
|
2542
|
-
"
|
|
2586
|
+
"statType"?: string;
|
|
2543
2587
|
/**
|
|
2544
|
-
* @uiName Progress Bar
|
|
2588
|
+
* @uiName Progress Bar Steps
|
|
2545
2589
|
*/
|
|
2546
|
-
"
|
|
2590
|
+
"steps"?: boolean;
|
|
2547
2591
|
}
|
|
2548
2592
|
interface SqmText {
|
|
2549
2593
|
}
|
|
@@ -2634,6 +2678,7 @@ declare namespace LocalJSX {
|
|
|
2634
2678
|
"sqm-referral-table-user-column": SqmReferralTableUserColumn;
|
|
2635
2679
|
"sqm-reward-exchange-list": SqmRewardExchangeList;
|
|
2636
2680
|
"sqm-rewards-table": SqmRewardsTable;
|
|
2681
|
+
"sqm-rewards-table-column": SqmRewardsTableColumn;
|
|
2637
2682
|
"sqm-route": SqmRoute;
|
|
2638
2683
|
"sqm-router": SqmRouter;
|
|
2639
2684
|
"sqm-share-button": SqmShareButton;
|
|
@@ -2698,6 +2743,7 @@ declare module "@stencil/core" {
|
|
|
2698
2743
|
"sqm-referral-table-user-column": LocalJSX.SqmReferralTableUserColumn & JSXBase.HTMLAttributes<HTMLSqmReferralTableUserColumnElement>;
|
|
2699
2744
|
"sqm-reward-exchange-list": LocalJSX.SqmRewardExchangeList & JSXBase.HTMLAttributes<HTMLSqmRewardExchangeListElement>;
|
|
2700
2745
|
"sqm-rewards-table": LocalJSX.SqmRewardsTable & JSXBase.HTMLAttributes<HTMLSqmRewardsTableElement>;
|
|
2746
|
+
"sqm-rewards-table-column": LocalJSX.SqmRewardsTableColumn & JSXBase.HTMLAttributes<HTMLSqmRewardsTableColumnElement>;
|
|
2701
2747
|
"sqm-route": LocalJSX.SqmRoute & JSXBase.HTMLAttributes<HTMLSqmRouteElement>;
|
|
2702
2748
|
"sqm-router": LocalJSX.SqmRouter & JSXBase.HTMLAttributes<HTMLSqmRouterElement>;
|
|
2703
2749
|
"sqm-share-button": LocalJSX.SqmShareButton & JSXBase.HTMLAttributes<HTMLSqmShareButtonElement>;
|
package/grapesjs/grapesjs.js
CHANGED
|
@@ -5,7 +5,7 @@ System.register([], function (exports_1, context_1) {
|
|
|
5
5
|
return {
|
|
6
6
|
setters: [],
|
|
7
7
|
execute: function () {
|
|
8
|
-
components = [{ "tag": "sqm-asset-card", "name": "Asset Card", "uiSchema": { "demoData": { "ui:help": "" }, "img-url": { "ui:name": "Banner image", "ui:help": "" }, "title-text": { "ui:name": "Banner title", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "img-url", "type": "string", "title": "Banner image" }, { "name": "title-text", "type": "string", "title": "Banner title" }] }, { "tag": "sqm-big-stat", "name": "Big Stat", "uiSchema": { "alignment": { "ui:name": "Alignment - controls the alignment of the flexbox", "ui:help": "" }, "demoData": { "ui:help": "" }, "flex-reverse": { "ui:name": "Flex Reverse - controls the order of the stat value & description column", "ui:help": "" }, "stat-type": { "ui:widget": "StatTypeSelectWidget", "ui:name": "Stat Type", "ui:help": "Select what type of stat to display. Manual paths are also supported.", "ui:options": { "version": 1.1 } } }, "traits": [{ "name": "alignment", "type": "string", "title": "Alignment - controls the alignment of the flexbox", "enum": ["left", "right", "center"] }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "flex-reverse", "type": "boolean", "title": "Flex Reverse - controls the order of the stat value & description column" }, { "name": "stat-type", "type": "string", "title": "Stat Type" }] }, { "tag": "sqm-divided-layout", "name": "Divided Layout", "uiSchema": { "direction": { "ui:name": "Direction", "ui:help": "" }, "divider-style": { "ui:name": "Border style", "ui:help": "Uses CSS border style syntax" } }, "traits": [{ "name": "direction", "type": "string", "title": "Direction", "enum": ["row", "column"] }, { "name": "divider-style", "type": "string", "title": "Border style" }] }, { "tag": "sqm-edit-profile", "name": "Edit Profile", "uiSchema": { "canceltext": { "ui:name": "Cancel button text", "ui:help": "" }, "currentregiontext": { "ui:name": "Region field label", "ui:help": "" }, "demoData": { "ui:help": "" }, "editprofileheader": { "ui:name": "Heading", "ui:help": "" }, "editprofiletext": { "ui:name": "Enable editing button text", "ui:help": "" }, "firstnametext": { "ui:name": "First name field label", "ui:help": "" }, "lastnametext": { "ui:name": "Last name field label", "ui:help": "" }, "showregion": { "ui:name": "Show or hide current region", "ui:help": "" }, "updatetext": { "ui:name": "Update info button text", "ui:help": "" } }, "traits": [{ "name": "canceltext", "type": "string", "title": "Cancel button text" }, { "name": "currentregiontext", "type": "string", "title": "Region field label" }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "editprofileheader", "type": "string", "title": "Heading" }, { "name": "editprofiletext", "type": "string", "title": "Enable editing button text" }, { "name": "firstnametext", "type": "string", "title": "First name field label" }, { "name": "lastnametext", "type": "string", "title": "Last name field label" }, { "name": "showregion", "type": "boolean", "title": "Show or hide current region" }, { "name": "updatetext", "type": "string", "title": "Update info button text" }] }, { "tag": "sqm-form-message", "name": "Form Message", "uiSchema": { "icon": { "ui:name": "Icon to use in alert", "ui:help": "" }, "type": { "ui:name": "Type of alert", "ui:help": "" } }, "traits": [{ "name": "icon", "type": "string", "title": "Icon to use in alert" }, { "name": "type", "type": "string", "title": "Type of alert" }] }, { "tag": "sqm-graphql-client-provider", "name": "GraphQL Client Provider", "uiSchema": { "domain": { "ui:name": "Domain", "ui:help": "" } }, "traits": [{ "name": "domain", "type": "string", "title": "Domain" }] }, { "tag": "sqm-hero", "name": "Hero Layout", "uiSchema": { "background": { "ui:name": "Background image or color", "ui:help": "" }, "columns": { "ui:name": "Number of columns in the layout", "ui:help": "" }, "padding-size": { "ui:name": "Padding size", "ui:help": "" }, "secondary-background": { "ui:name": "Secondary background image or color (for use in right column)", "ui:help": "" }, "wrap-direction": { "ui:name": "Wrap direction", "ui:help": "" } }, "traits": [{ "name": "background", "type": "string", "title": "Background image or color" }, { "name": "columns", "type": "1 | 2", "title": "Number of columns in the layout" }, { "name": "padding-size", "type": "\"large\" | \"medium\" | \"none\" | \"small\"", "title": "Padding size" }, { "name": "secondary-background", "type": "string", "title": "Secondary background image or color (for use in right column)" }, { "name": "wrap-direction", "type": "\"wrap\" | \"wrap-reverse\"", "title": "Wrap direction" }] }, { "tag": "sqm-hook-story-container", "name": "sqm-hook-story-container", "uiSchema": { "hookStory": { "ui:help": "" } }, "traits": [{ "name": "hookStory", "type": "FunctionalComponent<{}>", "title": "hookStory" }] }, { "tag": "sqm-leaderboard", "name": "Leaderboard", "uiSchema": { "demoData": { "ui:help": "" }, "interval": { "ui:widget": "DateRange", "ui:name": "Leaderboard time interval", "ui:help": "", "ui:options": { "allowPastDates": true, "months": 1 } }, "leaderboard-type": { "ui:name": "Leaderboard type", "ui:help": "" }, "rank-type": { "ui:name": "Rank type", "ui:help": "" }, "rankheading": { "ui:name": "Rank Heading", "ui:help": "" }, "show-rank": { "ui:name": "Show the ranking numbers", "ui:help": "" }, "statsheading": { "ui:name": "Stats Column Heading", "ui:help": "" }, "usersheading": { "ui:name": "User Column Heading", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "interval", "type": "string", "title": "Leaderboard time interval" }, { "name": "leaderboard-type", "type": "string", "title": "Leaderboard type", "enum": ["topStartedReferrers", "topConvertedReferrers"] }, { "name": "rank-type", "type": "string", "title": "Rank type", "enum": ["rowNumber", "rank", "denseRank"] }, { "name": "rankheading", "type": "string", "title": "Rank Heading" }, { "name": "show-rank", "type": "boolean", "title": "Show the ranking numbers" }, { "name": "statsheading", "type": "string", "title": "Stats Column Heading" }, { "name": "usersheading", "type": "string", "title": "User Column Heading" }] }, { "tag": "sqm-leaderboard-rank", "name": "Leaderboard Rank", "uiSchema": { "demoData": { "ui:help": "" }, "interval": { "ui:widget": "DateRange", "ui:name": "Leaderboard time interval", "ui:help": "", "ui:options": { "allowPastDates": true, "months": 1 } }, "leaderboard-type": { "ui:name": "Leaderboard type", "ui:help": "" }, "rank-text": { "ui:name": "Rank Text", "ui:help": "" }, "rank-type": { "ui:name": "Default rank", "ui:help": "" }, "unranked-text": { "ui:name": "Unranked Text", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "interval", "type": "string", "title": "Leaderboard time interval" }, { "name": "leaderboard-type", "type": "string", "title": "Leaderboard type", "enum": ["topStartedReferrers", "topConvertedReferrers"] }, { "name": "rank-text", "type": "string", "title": "Rank Text" }, { "name": "rank-type", "type": "string", "title": "Default rank", "enum": ["rowNumber", "rank", "denseRank"] }, { "name": "unranked-text", "type": "string", "title": "Unranked Text" }] }, { "tag": "sqm-name-fields", "name": "Name Fields", "uiSchema": { "demoData": { "ui:help": "" }, "first-name-label": { "ui:name": "First name field label", "ui:help": "" }, "last-name-label": { "ui:name": "Last name field label", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "{ states?: { validationErrors?: Record<string, string>; content: { firstNameLabel: string; lastNameLabel: string; }; }; }", "title": "demoData" }, { "name": "first-name-label", "type": "string", "title": "First name field label" }, { "name": "last-name-label", "type": "string", "title": "Last name field label" }] }, { "tag": "sqm-navigation-menu", "name": "Navigation Menu", "uiSchema": { "demoData": { "ui:help": "" }, "include-dropdown": { "ui:name": "Include dropdown menu", "ui:help": "" }, "menu-label": { "ui:name": "Label on the header menu", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "include-dropdown", "type": "boolean", "title": "Include dropdown menu" }, { "name": "menu-label", "type": "string", "title": "Label on the header menu" }] }, { "tag": "sqm-navigation-sidebar", "name": "Navigation Sidebar", "uiSchema": {}, "traits": [] }, { "tag": "sqm-navigation-sidebar-item", "name": "Navigation Link", "uiSchema": { "demoData": { "ui:help": "" }, "icon": { "ui:name": "Icon", "ui:help": "" }, "label": { "ui:name": "Label", "ui:help": "" }, "path": { "ui:name": "Navigation path", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "icon", "type": "string", "title": "Icon" }, { "name": "label", "type": "string", "title": "Label" }, { "name": "path", "type": "string", "title": "Navigation path" }] }, { "tag": "sqm-password-field", "name": "Portal Password Field", "uiSchema": { "demoData": { "ui:help": "" }, "enable-validation": { "ui:name": "Enable live password validation", "ui:help": "" }, "field-label": { "ui:name": "Label for password field", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "enable-validation", "type": "boolean", "title": "Enable live password validation" }, { "name": "field-label", "type": "string", "title": "Label for password field" }] }, { "tag": "sqm-popup-container", "name": "Popup container for widgets", "uiSchema": { "close-button": { "ui:name": "Display a close button on the popup", "ui:help": "" }, "close-button-text": { "ui:name": "Text to be used as the close button", "ui:help": "" }, "embed-padding": { "ui:name": "Specify padding on the popup contents when in embedded mode", "ui:help": "" }, "popup-padding": { "ui:name": "Specify padding on the popup contents when in popup mode", "ui:help": "" }, "powered-by": { "ui:name": "Show SaaSquatch Powered By messaging", "ui:help": "" } }, "traits": [{ "name": "close-button", "type": "boolean", "title": "Display a close button on the popup" }, { "name": "close-button-text", "type": "string", "title": "Text to be used as the close button" }, { "name": "embed-padding", "type": "string", "title": "Specify padding on the popup contents when in embedded mode", "enum": ["none", "small", "medium", "large"] }, { "name": "popup-padding", "type": "string", "title": "Specify padding on the popup contents when in popup mode", "enum": ["none", "small", "medium", "large"] }, { "name": "powered-by", "type": "boolean", "title": "Show SaaSquatch Powered By messaging" }] }, { "tag": "sqm-portal-change-password", "name": "Portal Profile", "uiSchema": { "cancel-text": { "ui:name": "Modal cancel password change button text", "ui:help": "" }, "change-password-button-text": { "ui:name": "Modal change password button text", "ui:help": "" }, "confirm-password-field-label": { "ui:name": "Password confirmation input field label", "ui:help": "" }, "demoData": { "ui:help": "" }, "modal-change-password-header": { "ui:name": "Change password modal header", "ui:help": "" }, "password-field-label": { "ui:name": "Password input field label", "ui:help": "" }, "portal-change-password-button-text": { "ui:name": "Portal change password button text", "ui:help": "" }, "portal-change-password-header": { "ui:name": "Portal change password section header", "ui:help": "" }, "success-message": { "ui:name": "Successful password change message", "ui:help": "" } }, "traits": [{ "name": "cancel-text", "type": "string", "title": "Modal cancel password change button text" }, { "name": "change-password-button-text", "type": "string", "title": "Modal change password button text" }, { "name": "confirm-password-field-label", "type": "string", "title": "Password confirmation input field label" }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "modal-change-password-header", "type": "string", "title": "Change password modal header" }, { "name": "password-field-label", "type": "string", "title": "Password input field label" }, { "name": "portal-change-password-button-text", "type": "string", "title": "Portal change password button text" }, { "name": "portal-change-password-header", "type": "string", "title": "Portal change password section header" }, { "name": "success-message", "type": "string", "title": "Successful password change message" }] }, { "tag": "sqm-portal-container", "name": "Portal Container", "uiSchema": { "direction": { "ui:name": "Direction", "ui:help": "" }, "gap": { "ui:name": "Gap", "ui:help": "" }, "min-width": { "ui:name": "Minimum width", "ui:help": "" }, "padding": { "ui:name": "Padding", "ui:help": "" } }, "traits": [{ "name": "direction", "type": "string", "title": "Direction", "enum": ["row", "column"] }, { "name": "gap", "type": "string", "title": "Gap", "enum": ["none", "xxx-small", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "xxxx-large"] }, { "name": "min-width", "type": "string", "title": "Minimum width" }, { "name": "padding", "type": "string", "title": "Padding", "enum": ["none", "xxx-small", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "xxxx-large"] }] }, { "tag": "sqm-portal-email-verification", "name": "Portal Email Verification", "uiSchema": { "demoData": { "ui:help": "" }, "email-verification-header": { "ui:name": "Email verification header text", "ui:help": "" }, "resend-email-button-text": { "ui:name": "Re-send email button text", "ui:help": "" }, "verify-message": { "ui:name": "Email verification body text", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "email-verification-header", "type": "string", "title": "Email verification header text" }, { "name": "resend-email-button-text", "type": "string", "title": "Re-send email button text" }, { "name": "verify-message", "type": "string", "title": "Email verification body text" }] }, { "tag": "sqm-portal-footer", "name": "Portal Footer", "uiSchema": { "faq-link": { "ui:name": "FAQ Link", "ui:help": "" }, "faq-text": { "ui:name": "FAQ Text", "ui:help": "" }, "padding-bottom": { "ui:name": "Padding Bottom", "ui:help": "" }, "padding-left": { "ui:name": "Padding Left", "ui:help": "" }, "padding-right": { "ui:name": "Padding Right", "ui:help": "" }, "padding-top": { "ui:name": "Padding Top", "ui:help": "" }, "powered-by-link": { "ui:name": "Powered By Link", "ui:help": "" }, "show-powered-by": { "ui:name": "Show Powered By SaaSquatch", "ui:help": "" }, "support-email": { "ui:name": "Support Email", "ui:help": "" }, "support-text": { "ui:name": "Support Text", "ui:help": "" }, "terms-link": { "ui:name": "Terms and Conditions Link", "ui:help": "" }, "terms-text": { "ui:name": "Terms and Conditions Text", "ui:help": "" } }, "traits": [{ "name": "faq-link", "type": "string", "title": "FAQ Link" }, { "name": "faq-text", "type": "string", "title": "FAQ Text" }, { "name": "padding-bottom", "type": "string", "title": "Padding Bottom" }, { "name": "padding-left", "type": "string", "title": "Padding Left" }, { "name": "padding-right", "type": "string", "title": "Padding Right" }, { "name": "padding-top", "type": "string", "title": "Padding Top" }, { "name": "powered-by-link", "type": "string", "title": "Powered By Link" }, { "name": "show-powered-by", "type": "boolean", "title": "Show Powered By SaaSquatch" }, { "name": "support-email", "type": "string", "title": "Support Email" }, { "name": "support-text", "type": "string", "title": "Support Text" }, { "name": "terms-link", "type": "string", "title": "Terms and Conditions Link" }, { "name": "terms-text", "type": "string", "title": "Terms and Conditions Text" }] }, { "tag": "sqm-portal-forgot-password", "name": "Portal Forgot Password", "uiSchema": { "demoData": { "ui:help": "" }, "email-label": { "ui:name": "Email label", "ui:help": "" }, "submit-label": { "ui:name": "Password reset button text", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "email-label", "type": "string", "title": "Email label" }, { "name": "submit-label", "type": "string", "title": "Password reset button text" }] }, { "tag": "sqm-portal-frame", "name": "Portal Frame", "uiSchema": { "demoData": { "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }] }, { "tag": "sqm-portal-login", "name": "Portal Login", "uiSchema": { "demoData": { "ui:help": "" }, "email-label": { "ui:name": "Label for email field", "ui:help": "" }, "forgot-password-label": { "ui:name": "Label for forgotten password button", "ui:help": "" }, "next-page": { "ui:name": "Page navigated to after sign-in", "ui:help": "" }, "page-label": { "ui:name": "Heading label", "ui:help": "" }, "password-label": { "ui:name": "Label for password field", "ui:help": "" }, "register-label": { "ui:name": "Label for register navigation button", "ui:help": "" }, "submit-label": { "ui:name": "Label for submit button", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "email-label", "type": "string", "title": "Label for email field" }, { "name": "forgot-password-label", "type": "string", "title": "Label for forgotten password button" }, { "name": "next-page", "type": "string", "title": "Page navigated to after sign-in" }, { "name": "page-label", "type": "string", "title": "Heading label" }, { "name": "password-label", "type": "string", "title": "Label for password field" }, { "name": "register-label", "type": "string", "title": "Label for register navigation button" }, { "name": "submit-label", "type": "string", "title": "Label for submit button" }] }, { "tag": "sqm-portal-logout", "name": "Portal Logout", "uiSchema": { "next-page": { "ui:name": "Next Page path", "ui:help": "" } }, "traits": [{ "name": "next-page", "type": "string", "title": "Next Page path" }] }, { "tag": "sqm-portal-profile", "name": "Portal Profile", "uiSchema": { "countrytext": { "ui:name": "Country input field label", "ui:help": "" }, "demoData": { "ui:help": "" }, "edit-profile-header": { "ui:name": "Edit profile header", "ui:help": "" }, "edit-profile-sub-header": { "ui:name": "Edit profile sub header", "ui:help": "" }, "emailtext": { "ui:name": "Email input field label", "ui:help": "" }, "firstnametext": { "ui:name": "First name input field label", "ui:help": "" }, "lastnametext": { "ui:name": "Last name input field label", "ui:help": "" }, "show-country": { "ui:name": "Show or hide country field", "ui:help": "" }, "submit-change-button-text": { "ui:name": "Text for the submit changes button", "ui:help": "" } }, "traits": [{ "name": "countrytext", "type": "string", "title": "Country input field label" }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "edit-profile-header", "type": "string", "title": "Edit profile header" }, { "name": "edit-profile-sub-header", "type": "string", "title": "Edit profile sub header" }, { "name": "emailtext", "type": "string", "title": "Email input field label" }, { "name": "firstnametext", "type": "string", "title": "First name input field label" }, { "name": "lastnametext", "type": "string", "title": "Last name input field label" }, { "name": "show-country", "type": "boolean", "title": "Show or hide country field" }, { "name": "submit-change-button-text", "type": "string", "title": "Text for the submit changes button" }] }, { "tag": "sqm-portal-protected-route", "name": "Portal Protected Route", "uiSchema": { "redirect-to": { "ui:name": "Redirect Path", "ui:help": "" }, "redirect-to-unverified": { "ui:name": "Redirect unverified users path", "ui:help": "" }, "require-email-verification": { "ui:name": "Require Email Verification", "ui:help": "" } }, "traits": [{ "name": "redirect-to", "type": "string", "title": "Redirect Path" }, { "name": "redirect-to-unverified", "type": "string", "title": "Redirect unverified users path" }, { "name": "require-email-verification", "type": "boolean", "title": "Require Email Verification" }] }, { "tag": "sqm-portal-register", "name": "Portal Register", "uiSchema": { "confirm-password": { "ui:name": "Show confirm password field", "ui:help": "" }, "confirm-password-label": { "ui:name": "Label for confirm password field", "ui:help": "" }, "demoData": { "ui:help": "" }, "email-label": { "ui:name": "Label for email field", "ui:help": "" }, "enable-password-validation": { "ui:name": "Use password field with live validation", "ui:help": "" }, "hide-inputs": { "ui:name": "Hide default input fields to use custom fields", "ui:help": "" }, "login-label": { "ui:name": "Label for login navigation button", "ui:help": "" }, "next-page": { "ui:name": "Page navigated to after registration", "ui:help": "" }, "page-label": { "ui:name": "Heading label", "ui:help": "" }, "password-label": { "ui:name": "Label for password field", "ui:help": "" }, "submit-label": { "ui:name": "Label for submit button", "ui:help": "" } }, "traits": [{ "name": "confirm-password", "type": "boolean", "title": "Show confirm password field" }, { "name": "confirm-password-label", "type": "string", "title": "Label for confirm password field" }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "email-label", "type": "string", "title": "Label for email field" }, { "name": "enable-password-validation", "type": "boolean", "title": "Use password field with live validation" }, { "name": "hide-inputs", "type": "boolean", "title": "Hide default input fields to use custom fields" }, { "name": "login-label", "type": "string", "title": "Label for login navigation button" }, { "name": "next-page", "type": "string", "title": "Page navigated to after registration" }, { "name": "page-label", "type": "string", "title": "Heading label" }, { "name": "password-label", "type": "string", "title": "Label for password field" }, { "name": "submit-label", "type": "string", "title": "Label for submit button" }] }, { "tag": "sqm-portal-reset-password", "name": "Portal Reset Password", "uiSchema": { "confirm-password": { "ui:name": "Show confirm password", "ui:help": "" }, "confirm-password-field-label": { "ui:name": "Confirm password field label", "ui:help": "" }, "continue-button-text": { "ui:name": "Continue button text", "ui:help": "Displayed after a successful password reset" }, "demoData": { "ui:help": "" }, "next-page": { "ui:name": "Next page path", "ui:help": "" }, "password-field-label": { "ui:name": "Password field label", "ui:help": "" }, "password-reset-header": { "ui:name": "Password reset header text", "ui:help": "Displayed after a successful password reset" }, "reset-password-button-text": { "ui:name": "Password reset button text", "ui:help": "" }, "reset-password-header": { "ui:name": "Password reset header text", "ui:help": "" } }, "traits": [{ "name": "confirm-password", "type": "boolean", "title": "Show confirm password" }, { "name": "confirm-password-field-label", "type": "string", "title": "Confirm password field label" }, { "name": "continue-button-text", "type": "string", "title": "Continue button text" }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "next-page", "type": "string", "title": "Next page path" }, { "name": "password-field-label", "type": "string", "title": "Password field label" }, { "name": "password-reset-header", "type": "string", "title": "Password reset header text" }, { "name": "reset-password-button-text", "type": "string", "title": "Password reset button text" }, { "name": "reset-password-header", "type": "string", "title": "Password reset header text" }] }, { "tag": "sqm-portal-verify-email", "name": "Portal Verify Email", "uiSchema": { "demoData": { "ui:help": "" }, "next-page": { "ui:name": "Next page path", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "next-page", "type": "string", "title": "Next page path" }] }, { "tag": "sqm-program-menu", "name": "Portal Menu", "uiSchema": {}, "traits": [] }, { "tag": "sqm-referral-iframe", "name": "Referral IFrame", "uiSchema": { "demoData": { "ui:help": "" }, "iframe-height": { "ui:name": "Height of the iframe container", "ui:help": "" }, "iframe-src": { "ui:name": "URL of iframe to display", "ui:help": "" }, "iframe-width": { "ui:name": "Width of the iframe container", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "iframe-height", "type": "string", "title": "Height of the iframe container" }, { "name": "iframe-src", "type": "string", "title": "URL of iframe to display" }, { "name": "iframe-width", "type": "string", "title": "Width of the iframe container" }] }, { "tag": "sqm-referral-table", "name": "Referral Table", "uiSchema": { "demoData": { "ui:help": "" }, "more-label": { "ui:name": "View More button text", "ui:help": "" }, "per-page": { "ui:name": "Number of referrals per page", "ui:help": "" }, "prev-label": { "ui:name": "Previous button text", "ui:help": "" }, "program-id": { "ui:name": "Program", "ui:help": "Filters to only show referrals in this program. Will default to filtering by the program context where\r\nthis table lives. If no program ID is set or provided by context, then shows all referrals from all programs.\r\nIf program ID is \"classic\", shows classic-only referrals" }, "show-labels": { "ui:name": "Show column labels", "ui:help": "" }, "show-referrer": { "ui:name": "Show Referred by user in table", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "more-label", "type": "string", "title": "View More button text" }, { "name": "per-page", "type": "number", "title": "Number of referrals per page" }, { "name": "prev-label", "type": "string", "title": "Previous button text" }, { "name": "program-id", "type": "string", "title": "Program" }, { "name": "show-labels", "type": "boolean", "title": "Show column labels" }, { "name": "show-referrer", "type": "boolean", "title": "Show Referred by user in table" }] }, { "tag": "sqm-referral-table-cell", "name": "sqm-referral-table-cell", "uiSchema": { "inner-template": { "ui:help": "" } }, "traits": [{ "name": "inner-template", "type": "string", "title": "inner-template" }] }, { "tag": "sqm-referral-table-column", "name": "Referral Table Generic Column", "uiSchema": { "column-title": { "ui:name": "Column Title", "ui:help": "" } }, "traits": [{ "name": "column-title", "type": "string", "title": "Column Title" }] }, { "tag": "sqm-referral-table-date-cell", "name": "sqm-referral-table-date-cell", "uiSchema": { "date": { "ui:help": "" } }, "traits": [{ "name": "date", "type": "number", "title": "date" }] }, { "tag": "sqm-referral-table-date-column", "name": "Referral Table Date Column", "uiSchema": { "column-title": { "ui:name": "Date Column Title", "ui:help": "" }, "date-shown": { "ui:name": "Date Displayed", "ui:help": "" } }, "traits": [{ "name": "column-title", "type": "string", "title": "Date Column Title" }, { "name": "date-shown", "type": "string", "title": "Date Displayed", "enum": ["dateConverted", "dateReferralStarted", "dateFraudChecksCompleted", "dateModerated", "dateModified", "dateReferralEnded", "dateReferralPaid", "dateUserModified"] }] }, { "tag": "sqm-referral-table-rewards-cell", "name": "sqm-referral-table-rewards-cell", "uiSchema": { "hide-details": { "ui:help": "" }, "rewards": { "ui:help": "" } }, "traits": [{ "name": "hide-details", "type": "boolean", "title": "hide-details" }, { "name": "rewards", "type": "Reward[]", "title": "rewards" }] }, { "tag": "sqm-referral-table-rewards-column", "name": "Referral Table Rewards Column", "uiSchema": { "column-title": { "ui:name": "Reward column title", "ui:help": "" }, "hide-details": { "ui:name": "Hide dropdown details of reward", "ui:help": "" } }, "traits": [{ "name": "column-title", "type": "string", "title": "Reward column title" }, { "name": "hide-details", "type": "boolean", "title": "Hide dropdown details of reward" }] }, { "tag": "sqm-referral-table-status-cell", "name": "sqm-referral-table-status-cell", "uiSchema": { "converted": { "ui:help": "" }, "status-text": { "ui:help": "" } }, "traits": [{ "name": "converted", "type": "boolean", "title": "converted" }, { "name": "status-text", "type": "string", "title": "status-text" }] }, { "tag": "sqm-referral-table-status-column", "name": "Referral Table Status Column", "uiSchema": { "column-title": { "ui:name": "Column Title", "ui:help": "" }, "converted-status-text": { "ui:name": "Converted Status Text", "ui:help": "" }, "in-progress-status-text": { "ui:name": "In Progress Status Text", "ui:help": "" } }, "traits": [{ "name": "column-title", "type": "string", "title": "Column Title" }, { "name": "converted-status-text", "type": "string", "title": "Converted Status Text" }, { "name": "in-progress-status-text", "type": "string", "title": "In Progress Status Text" }] }, { "tag": "sqm-referral-table-user-cell", "name": "sqm-referral-table-user-cell", "uiSchema": { "name": { "ui:help": "" } }, "traits": [{ "name": "name", "type": "string", "title": "name" }] }, { "tag": "sqm-referral-table-user-column", "name": "Referral Table User Column", "uiSchema": { "anonymous-user": { "ui:name": "Name displayed for anonymous users", "ui:help": "" }, "column-title": { "ui:name": "User Column Title", "ui:help": "" }, "deleted-user": { "ui:name": "Name displayed for deleted users", "ui:help": "" } }, "traits": [{ "name": "anonymous-user", "type": "string", "title": "Name displayed for anonymous users" }, { "name": "column-title", "type": "string", "title": "User Column Title" }, { "name": "deleted-user", "type": "string", "title": "Name displayed for deleted users" }] }, { "tag": "sqm-reward-exchange-list", "name": "Reward Exchange List", "uiSchema": { "button-text": { "ui:name": "Exchange button text", "ui:help": "" }, "demoData": { "ui:help": "" } }, "traits": [{ "name": "button-text", "type": "string", "title": "Exchange button text" }, { "name": "demoData", "type": "object", "title": "demoData" }] }, { "tag": "sqm-rewards-table", "name": "Rewards Table", "uiSchema": { "demoData": { "ui:help": "" }, "more-label": { "ui:name": "View More button text", "ui:help": "" }, "per-page": { "ui:name": "Number of rewards per page", "ui:help": "" }, "prev-label": { "ui:name": "Previous button text", "ui:help": "" }, "program-id": { "ui:name": "Program", "ui:help": "Filters to only show rewards in this program. Will default to filtering by the program context where\r\nthis table lives. If no program ID is set or provided by context, then shows all rewards from all programs." }, "show-labels": { "ui:name": "Show column labels", "ui:help": "" }, "show-referrer": { "ui:name": "Show Referred by user in table", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "more-label", "type": "string", "title": "View More button text" }, { "name": "per-page", "type": "number", "title": "Number of rewards per page" }, { "name": "prev-label", "type": "string", "title": "Previous button text" }, { "name": "program-id", "type": "string", "title": "Program" }, { "name": "show-labels", "type": "boolean", "title": "Show column labels" }, { "name": "show-referrer", "type": "boolean", "title": "Show Referred by user in table" }] }, { "tag": "sqm-route", "name": "Route (for pages)", "uiSchema": { "path": { "ui:name": "Navigation path name", "ui:help": "" } }, "traits": [{ "name": "path", "type": "string", "title": "Navigation path name" }] }, { "tag": "sqm-router", "name": "Router (for pages)", "uiSchema": {}, "traits": [] }, { "tag": "sqm-share-button", "name": "Share Button", "uiSchema": { "ui:order": ["medium", "program-id", "*", "pill", "disabled", "hideicon"], "demoData": { "ui:help": "" }, "disabled": { "ui:name": "Disabled", "ui:help": "" }, "hideicon": { "ui:name": "Hide the icon", "ui:help": "" }, "hidetext": { "ui:name": "Hide the text", "ui:help": "" }, "icon": { "ui:name": "Icon used in button. Will try to select an icon based on the share medium if left empty.", "ui:help": "" }, "iconslot": { "ui:name": "Icon Location", "ui:help": "" }, "medium": { "ui:name": "Share Medium", "ui:help": "The social medium to share on. Share messages and links\r\nwill be pulled from your program config and tagged for analytics." }, "pill": { "ui:name": "Display as pill", "ui:help": "" }, "program-id": { "ui:name": "Program ID", "ui:help": "Optional programId, or uses the programId context where this button is rendered." }, "sharetext": { "ui:name": "Text used for native sharing (mobile only)", "ui:help": "" }, "sharetitle": { "ui:name": "Title used for native sharing (mobile only)", "ui:help": "" }, "size": { "ui:name": "Button Size", "ui:help": "" }, "type": { "ui:name": "Button Style", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "disabled", "type": "boolean", "title": "Disabled" }, { "name": "hideicon", "type": "boolean", "title": "Hide the icon" }, { "name": "hidetext", "type": "boolean", "title": "Hide the text" }, { "name": "icon", "type": "string", "title": "Icon used in button. Will try to select an icon based on the share medium if left empty." }, { "name": "iconslot", "type": "string", "title": "Icon Location", "enum": ["prefix", "suffix"], "enumNames": ["Prefix", "Suffix"] }, { "name": "medium", "type": "string", "title": "Share Medium", "enum": ["facebook", "twitter", "email", "direct", "linkedin", "sms", "fbmessenger", "whatsapp", "linemessenger", "pinterest", "reminder", "unknown"], "enumNames": ["Facebook", "Twitter", "Email", "Web Share Sheet", "Linkedin", "SMS", "Facebook Messenger", "Whatsapp", "Line Messenger", "Pinterest", "Reminder", "Unknown"] }, { "name": "pill", "type": "boolean", "title": "Display as pill" }, { "name": "program-id", "type": "string", "title": "Program ID" }, { "name": "sharetext", "type": "string", "title": "Text used for native sharing (mobile only)" }, { "name": "sharetitle", "type": "string", "title": "Title used for native sharing (mobile only)" }, { "name": "size", "type": "string", "title": "Button Size", "enum": ["small", "medium", "large"], "enumNames": ["Small", "Medium", "Large"] }, { "name": "type", "type": "string", "title": "Button Style", "enum": ["primary", "success", "info", "warning", "danger", "default", "text"] }] }, { "tag": "sqm-share-code", "name": "Share Code", "uiSchema": { "demoData": { "ui:help": "" }, "program-id": { "ui:name": "Program ID", "ui:help": "The ID of the program that should generate the code. Defaults to the program ID in context where this widget is loaded." }, "tooltip-lifespan": { "ui:name": "Tooltip lifespan", "ui:help": "The number of milliseconds that the tooltip will appear for" }, "tooltip-text": { "ui:name": "Tooltip text", "ui:help": "This is shown after someone has successfully copied the cpde to the clipboard." } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "program-id", "type": "string", "title": "Program ID" }, { "name": "tooltip-lifespan", "type": "number", "title": "Tooltip lifespan" }, { "name": "tooltip-text", "type": "string", "title": "Tooltip text" }] }, { "tag": "sqm-share-link", "name": "Share Link", "uiSchema": { "demoData": { "ui:help": "" }, "program-id": { "ui:name": "Program ID", "ui:help": "The ID of the program that should generate the link. Defaults to the program ID in context where this widget is loaded." }, "tooltip-lifespan": { "ui:name": "Tooltip lifespan", "ui:help": "The number of milliseconds that the tooltip will appear for" }, "tooltip-text": { "ui:name": "Tooltip text", "ui:help": "This is shown after someone has successfully copied the link to the clipboard." } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "program-id", "type": "string", "title": "Program ID" }, { "name": "tooltip-lifespan", "type": "number", "title": "Tooltip lifespan" }, { "name": "tooltip-text", "type": "string", "title": "Tooltip text" }] }, { "tag": "sqm-stat-container", "name": "Stat Container", "uiSchema": { "space": { "ui:name": "Space between stats", "ui:help": "" } }, "traits": [{ "name": "space", "type": "string", "title": "Space between stats", "enum": ["none", "xxx-small", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "xxxx-large"] }] }, { "tag": "sqm-stencilbook", "name": "sqm-stencilbook", "uiSchema": {}, "traits": [] }, { "tag": "sqm-table-cell", "name": "sqm-table-cell", "uiSchema": { "colspan": { "ui:help": "" }, "padding": { "ui:help": "" } }, "traits": [{ "name": "colspan", "type": "number", "title": "colspan" }, { "name": "padding", "type": "string", "title": "padding" }] }, { "tag": "sqm-table-row", "name": "sqm-table-row", "uiSchema": { "border": { "ui:help": "" } }, "traits": [{ "name": "border", "type": "string", "title": "border" }] }, { "tag": "sqm-task-card", "name": "Task Card", "uiSchema": { "button-link": { "ui:name": "Button Link", "ui:help": "" }, "button-text": { "ui:name": "Button Text", "ui:help": "" }, "card-title": { "ui:name": "Title Text", "ui:help": "" }, "date-expire": { "ui:name": "Expire Date", "ui:help": "" }, "description": { "ui:name": "Description Text", "ui:help": "" }, "expire": { "ui:name": "Show Expiry", "ui:help": "" }, "goal": { "ui:name": "Progress Bar Goal", "ui:help": "" }, "points": { "ui:name": "Reward Points", "ui:help": "" }, "progress": { "ui:name": "Progress Bar Progress", "ui:help": "" }, "repeatable": { "ui:name": "Set Repeatable", "ui:help": "" }, "show-progress-bar": { "ui:name": "Show Progress Bar", "ui:help": "" }, "steps": { "ui:name": "Progress Bar Steps", "ui:help": "" }, "unit": { "ui:name": "Progress Bar Unit", "ui:help": "" } }, "traits": [{ "name": "button-link", "type": "string", "title": "Button Link" }, { "name": "button-text", "type": "string", "title": "Button Text" }, { "name": "card-title", "type": "string", "title": "Title Text" }, { "name": "date-expire", "type": "string", "title": "Expire Date" }, { "name": "description", "type": "string", "title": "Description Text" }, { "name": "expire", "type": "boolean", "title": "Show Expiry" }, { "name": "goal", "type": "number", "title": "Progress Bar Goal" }, { "name": "points", "type": "number", "title": "Reward Points" }, { "name": "progress", "type": "number", "title": "Progress Bar Progress" }, { "name": "repeatable", "type": "boolean", "title": "Set Repeatable" }, { "name": "show-progress-bar", "type": "boolean", "title": "Show Progress Bar" }, { "name": "steps", "type": "number", "title": "Progress Bar Steps" }, { "name": "unit", "type": "string", "title": "Progress Bar Unit" }] }, { "tag": "sqm-text", "name": "Text", "uiSchema": {}, "traits": [] }, { "tag": "sqm-text-span", "name": "Text Span", "uiSchema": { "text": { "ui:name": "Text", "ui:help": "" }, "type": { "ui:name": "Text", "ui:help": "" } }, "traits": [{ "name": "text", "type": "string", "title": "Text" }, { "name": "type", "type": "string", "title": "Text", "enum": ["p", "subtext", "h1", "h2", "h3", "h4"] }] }, { "tag": "sqm-titled-section", "name": "Section (with title)", "uiSchema": { "label": { "ui:help": "" }, "label-margin": { "ui:name": "Label margin style", "ui:help": "" }, "padding": { "ui:name": "Section padding", "ui:help": "" } }, "traits": [{ "name": "label", "type": "string", "title": "label" }, { "name": "label-margin", "type": "string", "title": "Label margin style", "enum": ["none", "xxx-small", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "xxxx-large"] }, { "name": "padding", "type": "string", "title": "Section padding", "enum": ["none", "xxx-small", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "xxxx-large"] }] }, { "tag": "sqm-user-name", "name": "Navigation Link", "uiSchema": { "demoData": { "ui:help": "" }, "fallback": { "ui:name": "Fallback name for nameless users", "ui:help": "" }, "loading-text": { "ui:name": "Loading text", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "fallback", "type": "string", "title": "Fallback name for nameless users" }, { "name": "loading-text", "type": "string", "title": "Loading text" }] }, { "tag": "sl-details", "name": "Details", "traits": [{ "type": "string", "name": "summary", "title": "Label" }] }, { "tag": "sl-tab", "name": "Tab", "traits": [{ "type": "string", "name": "panel", "title": "Panel ID" }] }, { "tag": "sl-tab-panel", "name": "Tab Panel", "traits": [{ "type": "string", "name": "name", "title": "Panel ID" }] }, { "tag": "sl-tab-group", "name": "Tab Group", "traits": [{ "type": "string", "name": "placement", "title": "Placement of Tabs", "enum": ["top", "right", "bottom", "left"] }] }, { "tag": "sl-skeleton", "name": "Loading Skeleton", "traits": [] }];
|
|
8
|
+
components = [{ "tag": "sqm-asset-card", "name": "Asset Card", "uiSchema": { "demoData": { "ui:help": "" }, "img-url": { "ui:name": "Banner image", "ui:help": "" }, "title-text": { "ui:name": "Banner title", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "img-url", "type": "string", "title": "Banner image" }, { "name": "title-text", "type": "string", "title": "Banner title" }] }, { "tag": "sqm-big-stat", "name": "Big Stat", "uiSchema": { "alignment": { "ui:name": "Alignment - controls the alignment of the flexbox", "ui:help": "" }, "demoData": { "ui:help": "" }, "flex-reverse": { "ui:name": "Flex Reverse - controls the order of the stat value & description column", "ui:help": "" }, "stat-type": { "ui:widget": "StatTypeSelectWidget", "ui:name": "Stat Type", "ui:help": "Select what type of stat to display. Manual paths are also supported.", "ui:options": { "version": 1.1 } } }, "traits": [{ "name": "alignment", "type": "string", "title": "Alignment - controls the alignment of the flexbox", "enum": ["left", "right", "center"] }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "flex-reverse", "type": "boolean", "title": "Flex Reverse - controls the order of the stat value & description column" }, { "name": "stat-type", "type": "string", "title": "Stat Type" }] }, { "tag": "sqm-divided-layout", "name": "Divided Layout", "uiSchema": { "direction": { "ui:name": "Direction", "ui:help": "" }, "divider-style": { "ui:name": "Border style", "ui:help": "Uses CSS border style syntax" } }, "traits": [{ "name": "direction", "type": "string", "title": "Direction", "enum": ["row", "column"] }, { "name": "divider-style", "type": "string", "title": "Border style" }] }, { "tag": "sqm-edit-profile", "name": "Edit Profile", "uiSchema": { "canceltext": { "ui:name": "Cancel button text", "ui:help": "" }, "currentregiontext": { "ui:name": "Region field label", "ui:help": "" }, "demoData": { "ui:help": "" }, "editprofileheader": { "ui:name": "Heading", "ui:help": "" }, "editprofiletext": { "ui:name": "Enable editing button text", "ui:help": "" }, "firstnametext": { "ui:name": "First name field label", "ui:help": "" }, "lastnametext": { "ui:name": "Last name field label", "ui:help": "" }, "showregion": { "ui:name": "Show or hide current region", "ui:help": "" }, "updatetext": { "ui:name": "Update info button text", "ui:help": "" } }, "traits": [{ "name": "canceltext", "type": "string", "title": "Cancel button text" }, { "name": "currentregiontext", "type": "string", "title": "Region field label" }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "editprofileheader", "type": "string", "title": "Heading" }, { "name": "editprofiletext", "type": "string", "title": "Enable editing button text" }, { "name": "firstnametext", "type": "string", "title": "First name field label" }, { "name": "lastnametext", "type": "string", "title": "Last name field label" }, { "name": "showregion", "type": "boolean", "title": "Show or hide current region" }, { "name": "updatetext", "type": "string", "title": "Update info button text" }] }, { "tag": "sqm-form-message", "name": "Form Message", "uiSchema": { "icon": { "ui:name": "Icon to use in alert", "ui:help": "" }, "type": { "ui:name": "Type of alert", "ui:help": "" } }, "traits": [{ "name": "icon", "type": "string", "title": "Icon to use in alert" }, { "name": "type", "type": "string", "title": "Type of alert" }] }, { "tag": "sqm-graphql-client-provider", "name": "GraphQL Client Provider", "uiSchema": { "domain": { "ui:name": "Domain", "ui:help": "" } }, "traits": [{ "name": "domain", "type": "string", "title": "Domain" }] }, { "tag": "sqm-hero", "name": "Hero Layout", "uiSchema": { "background": { "ui:name": "Background image or color", "ui:help": "" }, "columns": { "ui:name": "Number of columns in the layout", "ui:help": "" }, "padding-size": { "ui:name": "Padding size", "ui:help": "" }, "secondary-background": { "ui:name": "Secondary background image or color (for use in right column)", "ui:help": "" }, "wrap-direction": { "ui:name": "Wrap direction", "ui:help": "" } }, "traits": [{ "name": "background", "type": "string", "title": "Background image or color" }, { "name": "columns", "type": "1 | 2", "title": "Number of columns in the layout" }, { "name": "padding-size", "type": "\"large\" | \"medium\" | \"none\" | \"small\"", "title": "Padding size" }, { "name": "secondary-background", "type": "string", "title": "Secondary background image or color (for use in right column)" }, { "name": "wrap-direction", "type": "\"wrap\" | \"wrap-reverse\"", "title": "Wrap direction" }] }, { "tag": "sqm-hook-story-container", "name": "sqm-hook-story-container", "uiSchema": { "hookStory": { "ui:help": "" } }, "traits": [{ "name": "hookStory", "type": "FunctionalComponent<{}>", "title": "hookStory" }] }, { "tag": "sqm-leaderboard", "name": "Leaderboard", "uiSchema": { "demoData": { "ui:help": "" }, "interval": { "ui:widget": "DateRange", "ui:name": "Leaderboard time interval", "ui:help": "", "ui:options": { "allowPastDates": true, "months": 1 } }, "leaderboard-type": { "ui:name": "Leaderboard type", "ui:help": "" }, "rank-type": { "ui:name": "Rank type", "ui:help": "" }, "rankheading": { "ui:name": "Rank Heading", "ui:help": "" }, "show-rank": { "ui:name": "Show the ranking numbers", "ui:help": "" }, "statsheading": { "ui:name": "Stats Column Heading", "ui:help": "" }, "usersheading": { "ui:name": "User Column Heading", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "interval", "type": "string", "title": "Leaderboard time interval" }, { "name": "leaderboard-type", "type": "string", "title": "Leaderboard type", "enum": ["topStartedReferrers", "topConvertedReferrers"] }, { "name": "rank-type", "type": "string", "title": "Rank type", "enum": ["rowNumber", "rank", "denseRank"] }, { "name": "rankheading", "type": "string", "title": "Rank Heading" }, { "name": "show-rank", "type": "boolean", "title": "Show the ranking numbers" }, { "name": "statsheading", "type": "string", "title": "Stats Column Heading" }, { "name": "usersheading", "type": "string", "title": "User Column Heading" }] }, { "tag": "sqm-leaderboard-rank", "name": "Leaderboard Rank", "uiSchema": { "demoData": { "ui:help": "" }, "interval": { "ui:widget": "DateRange", "ui:name": "Leaderboard time interval", "ui:help": "", "ui:options": { "allowPastDates": true, "months": 1 } }, "leaderboard-type": { "ui:name": "Leaderboard type", "ui:help": "" }, "rank-text": { "ui:name": "Rank Text", "ui:help": "" }, "rank-type": { "ui:name": "Default rank", "ui:help": "" }, "unranked-text": { "ui:name": "Unranked Text", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "interval", "type": "string", "title": "Leaderboard time interval" }, { "name": "leaderboard-type", "type": "string", "title": "Leaderboard type", "enum": ["topStartedReferrers", "topConvertedReferrers"] }, { "name": "rank-text", "type": "string", "title": "Rank Text" }, { "name": "rank-type", "type": "string", "title": "Default rank", "enum": ["rowNumber", "rank", "denseRank"] }, { "name": "unranked-text", "type": "string", "title": "Unranked Text" }] }, { "tag": "sqm-name-fields", "name": "Name Fields", "uiSchema": { "demoData": { "ui:help": "" }, "first-name-label": { "ui:name": "First name field label", "ui:help": "" }, "last-name-label": { "ui:name": "Last name field label", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "{ states?: { validationErrors?: Record<string, string>; content: { firstNameLabel: string; lastNameLabel: string; }; }; }", "title": "demoData" }, { "name": "first-name-label", "type": "string", "title": "First name field label" }, { "name": "last-name-label", "type": "string", "title": "Last name field label" }] }, { "tag": "sqm-navigation-menu", "name": "Navigation Menu", "uiSchema": { "demoData": { "ui:help": "" }, "include-dropdown": { "ui:name": "Include dropdown menu", "ui:help": "" }, "menu-label": { "ui:name": "Label on the header menu", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "include-dropdown", "type": "boolean", "title": "Include dropdown menu" }, { "name": "menu-label", "type": "string", "title": "Label on the header menu" }] }, { "tag": "sqm-navigation-sidebar", "name": "Navigation Sidebar", "uiSchema": {}, "traits": [] }, { "tag": "sqm-navigation-sidebar-item", "name": "Navigation Link", "uiSchema": { "demoData": { "ui:help": "" }, "icon": { "ui:name": "Icon", "ui:help": "" }, "label": { "ui:name": "Label", "ui:help": "" }, "path": { "ui:name": "Navigation path", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "icon", "type": "string", "title": "Icon" }, { "name": "label", "type": "string", "title": "Label" }, { "name": "path", "type": "string", "title": "Navigation path" }] }, { "tag": "sqm-password-field", "name": "Portal Password Field", "uiSchema": { "demoData": { "ui:help": "" }, "enable-validation": { "ui:name": "Enable live password validation", "ui:help": "" }, "field-label": { "ui:name": "Label for password field", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "enable-validation", "type": "boolean", "title": "Enable live password validation" }, { "name": "field-label", "type": "string", "title": "Label for password field" }] }, { "tag": "sqm-popup-container", "name": "Popup container for widgets", "uiSchema": { "close-button": { "ui:name": "Display a close button on the popup", "ui:help": "" }, "close-button-text": { "ui:name": "Text to be used as the close button", "ui:help": "" }, "embed-padding": { "ui:name": "Specify padding on the popup contents when in embedded mode", "ui:help": "" }, "popup-padding": { "ui:name": "Specify padding on the popup contents when in popup mode", "ui:help": "" }, "powered-by": { "ui:name": "Show SaaSquatch Powered By messaging", "ui:help": "" } }, "traits": [{ "name": "close-button", "type": "boolean", "title": "Display a close button on the popup" }, { "name": "close-button-text", "type": "string", "title": "Text to be used as the close button" }, { "name": "embed-padding", "type": "string", "title": "Specify padding on the popup contents when in embedded mode", "enum": ["none", "small", "medium", "large"] }, { "name": "popup-padding", "type": "string", "title": "Specify padding on the popup contents when in popup mode", "enum": ["none", "small", "medium", "large"] }, { "name": "powered-by", "type": "boolean", "title": "Show SaaSquatch Powered By messaging" }] }, { "tag": "sqm-portal-change-password", "name": "Portal Profile", "uiSchema": { "cancel-text": { "ui:name": "Modal cancel password change button text", "ui:help": "" }, "change-password-button-text": { "ui:name": "Modal change password button text", "ui:help": "" }, "confirm-password-field-label": { "ui:name": "Password confirmation input field label", "ui:help": "" }, "demoData": { "ui:help": "" }, "modal-change-password-header": { "ui:name": "Change password modal header", "ui:help": "" }, "password-field-label": { "ui:name": "Password input field label", "ui:help": "" }, "portal-change-password-button-text": { "ui:name": "Portal change password button text", "ui:help": "" }, "portal-change-password-header": { "ui:name": "Portal change password section header", "ui:help": "" }, "success-message": { "ui:name": "Successful password change message", "ui:help": "" } }, "traits": [{ "name": "cancel-text", "type": "string", "title": "Modal cancel password change button text" }, { "name": "change-password-button-text", "type": "string", "title": "Modal change password button text" }, { "name": "confirm-password-field-label", "type": "string", "title": "Password confirmation input field label" }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "modal-change-password-header", "type": "string", "title": "Change password modal header" }, { "name": "password-field-label", "type": "string", "title": "Password input field label" }, { "name": "portal-change-password-button-text", "type": "string", "title": "Portal change password button text" }, { "name": "portal-change-password-header", "type": "string", "title": "Portal change password section header" }, { "name": "success-message", "type": "string", "title": "Successful password change message" }] }, { "tag": "sqm-portal-container", "name": "Portal Container", "uiSchema": { "direction": { "ui:name": "Direction", "ui:help": "" }, "gap": { "ui:name": "Gap", "ui:help": "" }, "min-width": { "ui:name": "Minimum width", "ui:help": "" }, "padding": { "ui:name": "Padding", "ui:help": "" } }, "traits": [{ "name": "direction", "type": "string", "title": "Direction", "enum": ["row", "column"] }, { "name": "gap", "type": "string", "title": "Gap", "enum": ["none", "xxx-small", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "xxxx-large"] }, { "name": "min-width", "type": "string", "title": "Minimum width" }, { "name": "padding", "type": "string", "title": "Padding", "enum": ["none", "xxx-small", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "xxxx-large"] }] }, { "tag": "sqm-portal-email-verification", "name": "Portal Email Verification", "uiSchema": { "demoData": { "ui:help": "" }, "email-verification-header": { "ui:name": "Email verification header text", "ui:help": "" }, "resend-email-button-text": { "ui:name": "Re-send email button text", "ui:help": "" }, "verify-message": { "ui:name": "Email verification body text", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "email-verification-header", "type": "string", "title": "Email verification header text" }, { "name": "resend-email-button-text", "type": "string", "title": "Re-send email button text" }, { "name": "verify-message", "type": "string", "title": "Email verification body text" }] }, { "tag": "sqm-portal-footer", "name": "Portal Footer", "uiSchema": { "faq-link": { "ui:name": "FAQ Link", "ui:help": "" }, "faq-text": { "ui:name": "FAQ Text", "ui:help": "" }, "padding-bottom": { "ui:name": "Padding Bottom", "ui:help": "" }, "padding-left": { "ui:name": "Padding Left", "ui:help": "" }, "padding-right": { "ui:name": "Padding Right", "ui:help": "" }, "padding-top": { "ui:name": "Padding Top", "ui:help": "" }, "powered-by-link": { "ui:name": "Powered By Link", "ui:help": "" }, "show-powered-by": { "ui:name": "Show Powered By SaaSquatch", "ui:help": "" }, "support-email": { "ui:name": "Support Email", "ui:help": "" }, "support-text": { "ui:name": "Support Text", "ui:help": "" }, "terms-link": { "ui:name": "Terms and Conditions Link", "ui:help": "" }, "terms-text": { "ui:name": "Terms and Conditions Text", "ui:help": "" } }, "traits": [{ "name": "faq-link", "type": "string", "title": "FAQ Link" }, { "name": "faq-text", "type": "string", "title": "FAQ Text" }, { "name": "padding-bottom", "type": "string", "title": "Padding Bottom" }, { "name": "padding-left", "type": "string", "title": "Padding Left" }, { "name": "padding-right", "type": "string", "title": "Padding Right" }, { "name": "padding-top", "type": "string", "title": "Padding Top" }, { "name": "powered-by-link", "type": "string", "title": "Powered By Link" }, { "name": "show-powered-by", "type": "boolean", "title": "Show Powered By SaaSquatch" }, { "name": "support-email", "type": "string", "title": "Support Email" }, { "name": "support-text", "type": "string", "title": "Support Text" }, { "name": "terms-link", "type": "string", "title": "Terms and Conditions Link" }, { "name": "terms-text", "type": "string", "title": "Terms and Conditions Text" }] }, { "tag": "sqm-portal-forgot-password", "name": "Portal Forgot Password", "uiSchema": { "demoData": { "ui:help": "" }, "email-label": { "ui:name": "Email label", "ui:help": "" }, "submit-label": { "ui:name": "Password reset button text", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "email-label", "type": "string", "title": "Email label" }, { "name": "submit-label", "type": "string", "title": "Password reset button text" }] }, { "tag": "sqm-portal-frame", "name": "Portal Frame", "uiSchema": { "demoData": { "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }] }, { "tag": "sqm-portal-login", "name": "Portal Login", "uiSchema": { "demoData": { "ui:help": "" }, "email-label": { "ui:name": "Label for email field", "ui:help": "" }, "forgot-password-label": { "ui:name": "Label for forgotten password button", "ui:help": "" }, "next-page": { "ui:name": "Page navigated to after sign-in", "ui:help": "" }, "page-label": { "ui:name": "Heading label", "ui:help": "" }, "password-label": { "ui:name": "Label for password field", "ui:help": "" }, "register-label": { "ui:name": "Label for register navigation button", "ui:help": "" }, "submit-label": { "ui:name": "Label for submit button", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "email-label", "type": "string", "title": "Label for email field" }, { "name": "forgot-password-label", "type": "string", "title": "Label for forgotten password button" }, { "name": "next-page", "type": "string", "title": "Page navigated to after sign-in" }, { "name": "page-label", "type": "string", "title": "Heading label" }, { "name": "password-label", "type": "string", "title": "Label for password field" }, { "name": "register-label", "type": "string", "title": "Label for register navigation button" }, { "name": "submit-label", "type": "string", "title": "Label for submit button" }] }, { "tag": "sqm-portal-logout", "name": "Portal Logout", "uiSchema": { "next-page": { "ui:name": "Next Page path", "ui:help": "" } }, "traits": [{ "name": "next-page", "type": "string", "title": "Next Page path" }] }, { "tag": "sqm-portal-profile", "name": "Portal Profile", "uiSchema": { "countrytext": { "ui:name": "Country input field label", "ui:help": "" }, "demoData": { "ui:help": "" }, "edit-profile-header": { "ui:name": "Edit profile header", "ui:help": "" }, "edit-profile-sub-header": { "ui:name": "Edit profile sub header", "ui:help": "" }, "emailtext": { "ui:name": "Email input field label", "ui:help": "" }, "firstnametext": { "ui:name": "First name input field label", "ui:help": "" }, "lastnametext": { "ui:name": "Last name input field label", "ui:help": "" }, "show-country": { "ui:name": "Show or hide country field", "ui:help": "" }, "submit-change-button-text": { "ui:name": "Text for the submit changes button", "ui:help": "" } }, "traits": [{ "name": "countrytext", "type": "string", "title": "Country input field label" }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "edit-profile-header", "type": "string", "title": "Edit profile header" }, { "name": "edit-profile-sub-header", "type": "string", "title": "Edit profile sub header" }, { "name": "emailtext", "type": "string", "title": "Email input field label" }, { "name": "firstnametext", "type": "string", "title": "First name input field label" }, { "name": "lastnametext", "type": "string", "title": "Last name input field label" }, { "name": "show-country", "type": "boolean", "title": "Show or hide country field" }, { "name": "submit-change-button-text", "type": "string", "title": "Text for the submit changes button" }] }, { "tag": "sqm-portal-protected-route", "name": "Portal Protected Route", "uiSchema": { "redirect-to": { "ui:name": "Redirect Path", "ui:help": "" }, "redirect-to-unverified": { "ui:name": "Redirect unverified users path", "ui:help": "" }, "require-email-verification": { "ui:name": "Require Email Verification", "ui:help": "" } }, "traits": [{ "name": "redirect-to", "type": "string", "title": "Redirect Path" }, { "name": "redirect-to-unverified", "type": "string", "title": "Redirect unverified users path" }, { "name": "require-email-verification", "type": "boolean", "title": "Require Email Verification" }] }, { "tag": "sqm-portal-register", "name": "Portal Register", "uiSchema": { "confirm-password": { "ui:name": "Show confirm password field", "ui:help": "" }, "confirm-password-label": { "ui:name": "Label for confirm password field", "ui:help": "" }, "demoData": { "ui:help": "" }, "email-label": { "ui:name": "Label for email field", "ui:help": "" }, "enable-password-validation": { "ui:name": "Use password field with live validation", "ui:help": "" }, "hide-inputs": { "ui:name": "Hide default input fields to use custom fields", "ui:help": "" }, "login-label": { "ui:name": "Label for login navigation button", "ui:help": "" }, "next-page": { "ui:name": "Page navigated to after registration", "ui:help": "" }, "page-label": { "ui:name": "Heading label", "ui:help": "" }, "password-label": { "ui:name": "Label for password field", "ui:help": "" }, "submit-label": { "ui:name": "Label for submit button", "ui:help": "" } }, "traits": [{ "name": "confirm-password", "type": "boolean", "title": "Show confirm password field" }, { "name": "confirm-password-label", "type": "string", "title": "Label for confirm password field" }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "email-label", "type": "string", "title": "Label for email field" }, { "name": "enable-password-validation", "type": "boolean", "title": "Use password field with live validation" }, { "name": "hide-inputs", "type": "boolean", "title": "Hide default input fields to use custom fields" }, { "name": "login-label", "type": "string", "title": "Label for login navigation button" }, { "name": "next-page", "type": "string", "title": "Page navigated to after registration" }, { "name": "page-label", "type": "string", "title": "Heading label" }, { "name": "password-label", "type": "string", "title": "Label for password field" }, { "name": "submit-label", "type": "string", "title": "Label for submit button" }] }, { "tag": "sqm-portal-reset-password", "name": "Portal Reset Password", "uiSchema": { "confirm-password": { "ui:name": "Show confirm password", "ui:help": "" }, "confirm-password-field-label": { "ui:name": "Confirm password field label", "ui:help": "" }, "continue-button-text": { "ui:name": "Continue button text", "ui:help": "Displayed after a successful password reset" }, "demoData": { "ui:help": "" }, "next-page": { "ui:name": "Next page path", "ui:help": "" }, "password-field-label": { "ui:name": "Password field label", "ui:help": "" }, "password-reset-header": { "ui:name": "Password reset header text", "ui:help": "Displayed after a successful password reset" }, "reset-password-button-text": { "ui:name": "Password reset button text", "ui:help": "" }, "reset-password-header": { "ui:name": "Password reset header text", "ui:help": "" } }, "traits": [{ "name": "confirm-password", "type": "boolean", "title": "Show confirm password" }, { "name": "confirm-password-field-label", "type": "string", "title": "Confirm password field label" }, { "name": "continue-button-text", "type": "string", "title": "Continue button text" }, { "name": "demoData", "type": "object", "title": "demoData" }, { "name": "next-page", "type": "string", "title": "Next page path" }, { "name": "password-field-label", "type": "string", "title": "Password field label" }, { "name": "password-reset-header", "type": "string", "title": "Password reset header text" }, { "name": "reset-password-button-text", "type": "string", "title": "Password reset button text" }, { "name": "reset-password-header", "type": "string", "title": "Password reset header text" }] }, { "tag": "sqm-portal-verify-email", "name": "Portal Verify Email", "uiSchema": { "demoData": { "ui:help": "" }, "next-page": { "ui:name": "Next page path", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "next-page", "type": "string", "title": "Next page path" }] }, { "tag": "sqm-program-menu", "name": "Portal Menu", "uiSchema": {}, "traits": [] }, { "tag": "sqm-referral-iframe", "name": "Referral IFrame", "uiSchema": { "demoData": { "ui:help": "" }, "iframe-height": { "ui:name": "Height of the iframe container", "ui:help": "" }, "iframe-src": { "ui:name": "URL of iframe to display", "ui:help": "" }, "iframe-width": { "ui:name": "Width of the iframe container", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "iframe-height", "type": "string", "title": "Height of the iframe container" }, { "name": "iframe-src", "type": "string", "title": "URL of iframe to display" }, { "name": "iframe-width", "type": "string", "title": "Width of the iframe container" }] }, { "tag": "sqm-referral-table", "name": "Referral Table", "uiSchema": { "demoData": { "ui:help": "" }, "more-label": { "ui:name": "View More button text", "ui:help": "" }, "per-page": { "ui:name": "Number of referrals per page", "ui:help": "" }, "prev-label": { "ui:name": "Previous button text", "ui:help": "" }, "program-id": { "ui:name": "Program", "ui:help": "Filters to only show referrals in this program. Will default to filtering by the program context where\r\nthis table lives. If no program ID is set or provided by context, then shows all referrals from all programs.\r\nIf program ID is \"classic\", shows classic-only referrals" }, "show-labels": { "ui:name": "Show column labels", "ui:help": "" }, "show-referrer": { "ui:name": "Show Referred by user in table", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "more-label", "type": "string", "title": "View More button text" }, { "name": "per-page", "type": "number", "title": "Number of referrals per page" }, { "name": "prev-label", "type": "string", "title": "Previous button text" }, { "name": "program-id", "type": "string", "title": "Program" }, { "name": "show-labels", "type": "boolean", "title": "Show column labels" }, { "name": "show-referrer", "type": "boolean", "title": "Show Referred by user in table" }] }, { "tag": "sqm-referral-table-cell", "name": "sqm-referral-table-cell", "uiSchema": { "inner-template": { "ui:help": "" } }, "traits": [{ "name": "inner-template", "type": "string", "title": "inner-template" }] }, { "tag": "sqm-referral-table-column", "name": "Referral Table Generic Column", "uiSchema": { "column-title": { "ui:name": "Column Title", "ui:help": "" } }, "traits": [{ "name": "column-title", "type": "string", "title": "Column Title" }] }, { "tag": "sqm-referral-table-date-cell", "name": "sqm-referral-table-date-cell", "uiSchema": { "date": { "ui:help": "" } }, "traits": [{ "name": "date", "type": "number", "title": "date" }] }, { "tag": "sqm-referral-table-date-column", "name": "Referral Table Date Column", "uiSchema": { "column-title": { "ui:name": "Date Column Title", "ui:help": "" }, "date-shown": { "ui:name": "Date Displayed", "ui:help": "" } }, "traits": [{ "name": "column-title", "type": "string", "title": "Date Column Title" }, { "name": "date-shown", "type": "string", "title": "Date Displayed", "enum": ["dateConverted", "dateReferralStarted", "dateFraudChecksCompleted", "dateModerated", "dateModified", "dateReferralEnded", "dateReferralPaid", "dateUserModified"] }] }, { "tag": "sqm-referral-table-rewards-cell", "name": "sqm-referral-table-rewards-cell", "uiSchema": { "hide-details": { "ui:help": "" }, "rewards": { "ui:help": "" } }, "traits": [{ "name": "hide-details", "type": "boolean", "title": "hide-details" }, { "name": "rewards", "type": "Reward[]", "title": "rewards" }] }, { "tag": "sqm-referral-table-rewards-column", "name": "Referral Table Rewards Column", "uiSchema": { "column-title": { "ui:name": "Reward column title", "ui:help": "" }, "hide-details": { "ui:name": "Hide dropdown details of reward", "ui:help": "" } }, "traits": [{ "name": "column-title", "type": "string", "title": "Reward column title" }, { "name": "hide-details", "type": "boolean", "title": "Hide dropdown details of reward" }] }, { "tag": "sqm-referral-table-status-cell", "name": "sqm-referral-table-status-cell", "uiSchema": { "converted": { "ui:help": "" }, "status-text": { "ui:help": "" } }, "traits": [{ "name": "converted", "type": "boolean", "title": "converted" }, { "name": "status-text", "type": "string", "title": "status-text" }] }, { "tag": "sqm-referral-table-status-column", "name": "Referral Table Status Column", "uiSchema": { "column-title": { "ui:name": "Column Title", "ui:help": "" }, "converted-status-text": { "ui:name": "Converted Status Text", "ui:help": "" }, "in-progress-status-text": { "ui:name": "In Progress Status Text", "ui:help": "" } }, "traits": [{ "name": "column-title", "type": "string", "title": "Column Title" }, { "name": "converted-status-text", "type": "string", "title": "Converted Status Text" }, { "name": "in-progress-status-text", "type": "string", "title": "In Progress Status Text" }] }, { "tag": "sqm-referral-table-user-cell", "name": "sqm-referral-table-user-cell", "uiSchema": { "name": { "ui:help": "" } }, "traits": [{ "name": "name", "type": "string", "title": "name" }] }, { "tag": "sqm-referral-table-user-column", "name": "Referral Table User Column", "uiSchema": { "anonymous-user": { "ui:name": "Name displayed for anonymous users", "ui:help": "" }, "column-title": { "ui:name": "User Column Title", "ui:help": "" }, "deleted-user": { "ui:name": "Name displayed for deleted users", "ui:help": "" } }, "traits": [{ "name": "anonymous-user", "type": "string", "title": "Name displayed for anonymous users" }, { "name": "column-title", "type": "string", "title": "User Column Title" }, { "name": "deleted-user", "type": "string", "title": "Name displayed for deleted users" }] }, { "tag": "sqm-reward-exchange-list", "name": "Reward Exchange List", "uiSchema": { "button-text": { "ui:name": "Exchange button text", "ui:help": "" }, "demoData": { "ui:help": "" } }, "traits": [{ "name": "button-text", "type": "string", "title": "Exchange button text" }, { "name": "demoData", "type": "object", "title": "demoData" }] }, { "tag": "sqm-rewards-table", "name": "Rewards Table", "uiSchema": { "demoData": { "ui:help": "" }, "more-label": { "ui:name": "View More button text", "ui:help": "" }, "per-page": { "ui:name": "Number of rewards per page", "ui:help": "" }, "prev-label": { "ui:name": "Previous button text", "ui:help": "" }, "program-id": { "ui:name": "Program", "ui:help": "Filters to only show rewards in this program. Will default to filtering by the program context where\r\nthis table lives. If no program ID is set or provided by context, then shows all rewards from all programs." }, "show-labels": { "ui:name": "Show column labels", "ui:help": "" }, "show-referrer": { "ui:name": "Show Referred by user in table", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "more-label", "type": "string", "title": "View More button text" }, { "name": "per-page", "type": "number", "title": "Number of rewards per page" }, { "name": "prev-label", "type": "string", "title": "Previous button text" }, { "name": "program-id", "type": "string", "title": "Program" }, { "name": "show-labels", "type": "boolean", "title": "Show column labels" }, { "name": "show-referrer", "type": "boolean", "title": "Show Referred by user in table" }] }, { "tag": "sqm-rewards-table-column", "name": "Rewards Table Column", "uiSchema": { "column-title": { "ui:name": "Reward column title", "ui:help": "" }, "hide-details": { "ui:name": "Hide dropdown details of reward", "ui:help": "" } }, "traits": [{ "name": "column-title", "type": "string", "title": "Reward column title" }, { "name": "hide-details", "type": "boolean", "title": "Hide dropdown details of reward" }] }, { "tag": "sqm-route", "name": "Route (for pages)", "uiSchema": { "path": { "ui:name": "Navigation path name", "ui:help": "" } }, "traits": [{ "name": "path", "type": "string", "title": "Navigation path name" }] }, { "tag": "sqm-router", "name": "Router (for pages)", "uiSchema": {}, "traits": [] }, { "tag": "sqm-share-button", "name": "Share Button", "uiSchema": { "ui:order": ["medium", "program-id", "*", "pill", "disabled", "hideicon"], "demoData": { "ui:help": "" }, "disabled": { "ui:name": "Disabled", "ui:help": "" }, "hideicon": { "ui:name": "Hide the icon", "ui:help": "" }, "hidetext": { "ui:name": "Hide the text", "ui:help": "" }, "icon": { "ui:name": "Icon used in button. Will try to select an icon based on the share medium if left empty.", "ui:help": "" }, "iconslot": { "ui:name": "Icon Location", "ui:help": "" }, "medium": { "ui:name": "Share Medium", "ui:help": "The social medium to share on. Share messages and links\r\nwill be pulled from your program config and tagged for analytics." }, "pill": { "ui:name": "Display as pill", "ui:help": "" }, "program-id": { "ui:name": "Program ID", "ui:help": "Optional programId, or uses the programId context where this button is rendered." }, "sharetext": { "ui:name": "Text used for native sharing (mobile only)", "ui:help": "" }, "sharetitle": { "ui:name": "Title used for native sharing (mobile only)", "ui:help": "" }, "size": { "ui:name": "Button Size", "ui:help": "" }, "type": { "ui:name": "Button Style", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "disabled", "type": "boolean", "title": "Disabled" }, { "name": "hideicon", "type": "boolean", "title": "Hide the icon" }, { "name": "hidetext", "type": "boolean", "title": "Hide the text" }, { "name": "icon", "type": "string", "title": "Icon used in button. Will try to select an icon based on the share medium if left empty." }, { "name": "iconslot", "type": "string", "title": "Icon Location", "enum": ["prefix", "suffix"], "enumNames": ["Prefix", "Suffix"] }, { "name": "medium", "type": "string", "title": "Share Medium", "enum": ["facebook", "twitter", "email", "direct", "linkedin", "sms", "fbmessenger", "whatsapp", "linemessenger", "pinterest", "reminder", "unknown"], "enumNames": ["Facebook", "Twitter", "Email", "Web Share Sheet", "Linkedin", "SMS", "Facebook Messenger", "Whatsapp", "Line Messenger", "Pinterest", "Reminder", "Unknown"] }, { "name": "pill", "type": "boolean", "title": "Display as pill" }, { "name": "program-id", "type": "string", "title": "Program ID" }, { "name": "sharetext", "type": "string", "title": "Text used for native sharing (mobile only)" }, { "name": "sharetitle", "type": "string", "title": "Title used for native sharing (mobile only)" }, { "name": "size", "type": "string", "title": "Button Size", "enum": ["small", "medium", "large"], "enumNames": ["Small", "Medium", "Large"] }, { "name": "type", "type": "string", "title": "Button Style", "enum": ["primary", "success", "info", "warning", "danger", "default", "text"] }] }, { "tag": "sqm-share-code", "name": "Share Code", "uiSchema": { "demoData": { "ui:help": "" }, "program-id": { "ui:name": "Program ID", "ui:help": "The ID of the program that should generate the code. Defaults to the program ID in context where this widget is loaded." }, "tooltip-lifespan": { "ui:name": "Tooltip lifespan", "ui:help": "The number of milliseconds that the tooltip will appear for" }, "tooltip-text": { "ui:name": "Tooltip text", "ui:help": "This is shown after someone has successfully copied the cpde to the clipboard." } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "program-id", "type": "string", "title": "Program ID" }, { "name": "tooltip-lifespan", "type": "number", "title": "Tooltip lifespan" }, { "name": "tooltip-text", "type": "string", "title": "Tooltip text" }] }, { "tag": "sqm-share-link", "name": "Share Link", "uiSchema": { "demoData": { "ui:help": "" }, "program-id": { "ui:name": "Program ID", "ui:help": "The ID of the program that should generate the link. Defaults to the program ID in context where this widget is loaded." }, "tooltip-lifespan": { "ui:name": "Tooltip lifespan", "ui:help": "The number of milliseconds that the tooltip will appear for" }, "tooltip-text": { "ui:name": "Tooltip text", "ui:help": "This is shown after someone has successfully copied the link to the clipboard." } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "program-id", "type": "string", "title": "Program ID" }, { "name": "tooltip-lifespan", "type": "number", "title": "Tooltip lifespan" }, { "name": "tooltip-text", "type": "string", "title": "Tooltip text" }] }, { "tag": "sqm-stat-container", "name": "Stat Container", "uiSchema": { "space": { "ui:name": "Space between stats", "ui:help": "" } }, "traits": [{ "name": "space", "type": "string", "title": "Space between stats", "enum": ["none", "xxx-small", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "xxxx-large"] }] }, { "tag": "sqm-stencilbook", "name": "sqm-stencilbook", "uiSchema": {}, "traits": [] }, { "tag": "sqm-table-cell", "name": "sqm-table-cell", "uiSchema": { "colspan": { "ui:help": "" }, "padding": { "ui:help": "" } }, "traits": [{ "name": "colspan", "type": "number", "title": "colspan" }, { "name": "padding", "type": "string", "title": "padding" }] }, { "tag": "sqm-table-row", "name": "sqm-table-row", "uiSchema": { "border": { "ui:help": "" } }, "traits": [{ "name": "border", "type": "string", "title": "border" }] }, { "tag": "sqm-task-card", "name": "Task Card", "uiSchema": { "button-link": { "ui:name": "CTA Button Link", "ui:help": "" }, "button-text": { "ui:name": "CTA Button Text", "ui:help": "" }, "card-title": { "ui:name": "Title Text", "ui:help": "" }, "date-expires": { "ui:name": "Date Goal Expires", "ui:help": "" }, "description": { "ui:name": "Description Text", "ui:help": "" }, "goal": { "ui:name": "Goal Completion Number", "ui:help": "" }, "progress-bar-unit": { "ui:name": "Progress Bar Unit", "ui:help": "" }, "repeatable": { "ui:name": "Goal Repeatable", "ui:help": "" }, "reward-amount": { "ui:name": "Reward Amount", "ui:help": "" }, "reward-unit": { "ui:name": "Reward Unit", "ui:help": "" }, "show-expiry": { "ui:name": "Show Goal Expiry", "ui:help": "" }, "show-progress-bar": { "ui:name": "Show Progress Bar", "ui:help": "" }, "stat-type": { "ui:widget": "StatTypeSelectWidget", "ui:name": "Stat Type", "ui:help": "Select what type of stat to display for the goal. Manual paths are also supported.", "ui:options": { "version": 1.1 } }, "steps": { "ui:name": "Progress Bar Steps", "ui:help": "" } }, "traits": [{ "name": "button-link", "type": "string", "title": "CTA Button Link" }, { "name": "button-text", "type": "string", "title": "CTA Button Text" }, { "name": "card-title", "type": "string", "title": "Title Text" }, { "name": "date-expires", "type": "string", "title": "Date Goal Expires" }, { "name": "description", "type": "string", "title": "Description Text" }, { "name": "goal", "type": "number", "title": "Goal Completion Number" }, { "name": "progress-bar-unit", "type": "string", "title": "Progress Bar Unit" }, { "name": "repeatable", "type": "boolean", "title": "Goal Repeatable" }, { "name": "reward-amount", "type": "number", "title": "Reward Amount" }, { "name": "reward-unit", "type": "string", "title": "Reward Unit" }, { "name": "show-expiry", "type": "boolean", "title": "Show Goal Expiry" }, { "name": "show-progress-bar", "type": "boolean", "title": "Show Progress Bar" }, { "name": "stat-type", "type": "string", "title": "Stat Type" }, { "name": "steps", "type": "boolean", "title": "Progress Bar Steps" }] }, { "tag": "sqm-text", "name": "Text", "uiSchema": {}, "traits": [] }, { "tag": "sqm-text-span", "name": "Text Span", "uiSchema": { "text": { "ui:name": "Text", "ui:help": "" }, "type": { "ui:name": "Text", "ui:help": "" } }, "traits": [{ "name": "text", "type": "string", "title": "Text" }, { "name": "type", "type": "string", "title": "Text", "enum": ["p", "subtext", "h1", "h2", "h3", "h4"] }] }, { "tag": "sqm-titled-section", "name": "Section (with title)", "uiSchema": { "label": { "ui:help": "" }, "label-margin": { "ui:name": "Label margin style", "ui:help": "" }, "padding": { "ui:name": "Section padding", "ui:help": "" } }, "traits": [{ "name": "label", "type": "string", "title": "label" }, { "name": "label-margin", "type": "string", "title": "Label margin style", "enum": ["none", "xxx-small", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "xxxx-large"] }, { "name": "padding", "type": "string", "title": "Section padding", "enum": ["none", "xxx-small", "xx-small", "x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "xxxx-large"] }] }, { "tag": "sqm-user-name", "name": "Navigation Link", "uiSchema": { "demoData": { "ui:help": "" }, "fallback": { "ui:name": "Fallback name for nameless users", "ui:help": "" }, "loading-text": { "ui:name": "Loading text", "ui:help": "" } }, "traits": [{ "name": "demoData", "type": "object", "title": "demoData" }, { "name": "fallback", "type": "string", "title": "Fallback name for nameless users" }, { "name": "loading-text", "type": "string", "title": "Loading text" }] }, { "tag": "sl-details", "name": "Details", "traits": [{ "type": "string", "name": "summary", "title": "Label" }] }, { "tag": "sl-tab", "name": "Tab", "traits": [{ "type": "string", "name": "panel", "title": "Panel ID" }] }, { "tag": "sl-tab-panel", "name": "Tab Panel", "traits": [{ "type": "string", "name": "name", "title": "Panel ID" }] }, { "tag": "sl-tab-group", "name": "Tab Group", "traits": [{ "type": "string", "name": "placement", "title": "Placement of Tabs", "enum": ["top", "right", "bottom", "left"] }] }, { "tag": "sl-skeleton", "name": "Loading Skeleton", "traits": [] }];
|
|
9
9
|
exports_1("default", (function (editor, config) {
|
|
10
10
|
if (config === void 0) { config = {}; }
|
|
11
11
|
// Get DomComponents module
|
package/package.json
CHANGED