@saasquatch/mint-components 1.15.0-115 → 1.15.0-116
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-74752e56.js → ShadowViewAddon-c468a0a7.js} +1 -1
- package/dist/cjs/{copy-text-view-c13907f9.js → copy-text-view-b9a8fbb1.js} +5 -7
- package/dist/cjs/sqm-big-stat_43.cjs.entry.js +2 -2
- package/dist/cjs/sqm-pagination_3.cjs.entry.js +1 -1
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +3 -3
- package/dist/collection/components/sqm-share-link/ShareLink.stories.js +1 -1
- package/dist/collection/components/views/copy-text-view.js +5 -7
- package/dist/esm/{ShadowViewAddon-ee0c8c4b.js → ShadowViewAddon-518e026d.js} +1 -1
- package/dist/esm/{copy-text-view-61bd1ac1.js → copy-text-view-b219d166.js} +5 -7
- package/dist/esm/sqm-big-stat_43.entry.js +2 -2
- package/dist/esm/sqm-pagination_3.entry.js +1 -1
- package/dist/esm/sqm-stencilbook.entry.js +3 -3
- package/dist/esm-es5/{ShadowViewAddon-ee0c8c4b.js → ShadowViewAddon-518e026d.js} +1 -1
- package/dist/esm-es5/copy-text-view-b219d166.js +1 -0
- package/dist/esm-es5/sqm-big-stat_43.entry.js +1 -1
- package/dist/esm-es5/sqm-pagination_3.entry.js +1 -1
- package/dist/esm-es5/sqm-stencilbook.entry.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/p-25e70b59.js +1 -0
- package/dist/mint-components/{p-dba96a48.entry.js → p-53eaaebf.entry.js} +2 -2
- package/dist/mint-components/{p-0bac31a6.entry.js → p-5aeb80dc.entry.js} +1 -1
- package/dist/mint-components/{p-2bf5998b.entry.js → p-5cbcff66.entry.js} +1 -1
- package/dist/mint-components/{p-94952e33.js → p-761a02d5.js} +1 -1
- package/dist/mint-components/{p-ba0c9f88.system.entry.js → p-8432d8c2.system.entry.js} +1 -1
- package/dist/mint-components/p-a4bbb947.system.js +1 -0
- package/dist/mint-components/p-a89baf7b.system.js +1 -1
- package/dist/mint-components/{p-680894bd.system.entry.js → p-b5fe3d2c.system.entry.js} +1 -1
- package/dist/mint-components/{p-45736fa8.system.js → p-b8ddc820.system.js} +1 -1
- package/dist/mint-components/{p-4e3ec053.system.entry.js → p-db14cf82.system.entry.js} +1 -1
- package/docs/docs.docx +0 -0
- package/package.json +1 -1
- package/dist/esm-es5/copy-text-view-61bd1ac1.js +0 -1
- package/dist/mint-components/p-c5ca5b5f.js +0 -1
- package/dist/mint-components/p-efeab858.system.js +0 -1
|
@@ -9,7 +9,7 @@ const utils = require('./utils-7cbd60cc.js');
|
|
|
9
9
|
const JSS = require('./JSS-8503a151.js');
|
|
10
10
|
const useReferralCodes = require('./useReferralCodes-11cdf43b.js');
|
|
11
11
|
const mixins = require('./mixins-4761d472.js');
|
|
12
|
-
const copyTextView = require('./copy-text-view-
|
|
12
|
+
const copyTextView = require('./copy-text-view-b9a8fbb1.js');
|
|
13
13
|
const useChildElements = require('./useChildElements-966c9041.js');
|
|
14
14
|
const luxon = require('./luxon-949beaf2.js');
|
|
15
15
|
const sqmTextSpanView = require('./sqm-text-span-view-7a61ae4c.js');
|
|
@@ -36,15 +36,10 @@ function CopyTextView(props) {
|
|
|
36
36
|
width: "100%",
|
|
37
37
|
},
|
|
38
38
|
"&::part(base)": {
|
|
39
|
-
|
|
40
|
-
"--sl-input-border-radius": props.borderRadius
|
|
41
|
-
? `${props.borderRadius}px`
|
|
42
|
-
: "var(--sqm-input-border-radius)",
|
|
43
|
-
"--sl-input-border-color": props.borderColor || "var(--sqm-border-color)",
|
|
44
|
-
// These are now correct
|
|
39
|
+
"--sl-input-border-radius": `${props.borderRadius}px` || "var(--sqm-border-radius-normal)",
|
|
45
40
|
"--sl-input-background-color": props.backgroundColor || "var(--sqm-portal-background)",
|
|
46
41
|
"--sl-input-color": props.textColor || "var(--sqm-input-color)",
|
|
47
|
-
|
|
42
|
+
"--sl-input-border-color": "var(--sqm-border-color)",
|
|
48
43
|
"--sl-input-border-color-hover": "#999999",
|
|
49
44
|
"--sl-input-border-color-focus": "#999999",
|
|
50
45
|
"--sl-input-color-hover": "var(--sqm-input-color-hover)",
|
|
@@ -54,6 +49,9 @@ function CopyTextView(props) {
|
|
|
54
49
|
"--sl-input-background-color-hover": "var(--sqm-portal-background)",
|
|
55
50
|
cursor: "pointer",
|
|
56
51
|
overflow: "visible",
|
|
52
|
+
borderRadius: `${props.borderRadius}px` || "var(--sqm-border-radius-normal)",
|
|
53
|
+
background: props.backgroundColor || "var(--sqm-portal-background)",
|
|
54
|
+
border: `var(--sqm-border-thickness) solid ${props.borderColor || "--sqm-input-border-color"}`,
|
|
57
55
|
},
|
|
58
56
|
width: "100%",
|
|
59
57
|
},
|
|
@@ -12,7 +12,7 @@ const utils = require('./utils-7cbd60cc.js');
|
|
|
12
12
|
const JSS = require('./JSS-8503a151.js');
|
|
13
13
|
require('./useReferralCodes-11cdf43b.js');
|
|
14
14
|
require('./mixins-4761d472.js');
|
|
15
|
-
const copyTextView = require('./copy-text-view-
|
|
15
|
+
const copyTextView = require('./copy-text-view-b9a8fbb1.js');
|
|
16
16
|
const reRender = require('./re-render-d516138a.js');
|
|
17
17
|
const useChildElements = require('./useChildElements-966c9041.js');
|
|
18
18
|
require('./luxon-949beaf2.js');
|
|
@@ -25,7 +25,7 @@ const sqmPortalLoginView = require('./sqm-portal-login-view-bb50304c.js');
|
|
|
25
25
|
const usePortalLogin = require('./usePortalLogin-6aa864ef.js');
|
|
26
26
|
const AsYouType = require('./AsYouType-6788393a.js');
|
|
27
27
|
const utilities = require('./utilities-9a0c5e91.js');
|
|
28
|
-
const ShadowViewAddon = require('./ShadowViewAddon-
|
|
28
|
+
const ShadowViewAddon = require('./ShadowViewAddon-c468a0a7.js');
|
|
29
29
|
require('./sqm-portal-container-view-07e4343f.js');
|
|
30
30
|
const parseStates = require('./parseStates-d1effc19.js');
|
|
31
31
|
const usePayoutStatus = require('./usePayoutStatus-3b34dab1.js');
|
|
@@ -11,7 +11,7 @@ const utils = require('./utils-7cbd60cc.js');
|
|
|
11
11
|
const JSS = require('./JSS-8503a151.js');
|
|
12
12
|
const useReferralCodes = require('./useReferralCodes-11cdf43b.js');
|
|
13
13
|
require('./mixins-4761d472.js');
|
|
14
|
-
const copyTextView = require('./copy-text-view-
|
|
14
|
+
const copyTextView = require('./copy-text-view-b9a8fbb1.js');
|
|
15
15
|
|
|
16
16
|
const style = {
|
|
17
17
|
Container: {
|
|
@@ -11,7 +11,7 @@ require('./utils-7cbd60cc.js');
|
|
|
11
11
|
const JSS = require('./JSS-8503a151.js');
|
|
12
12
|
require('./useReferralCodes-11cdf43b.js');
|
|
13
13
|
require('./mixins-4761d472.js');
|
|
14
|
-
const copyTextView = require('./copy-text-view-
|
|
14
|
+
const copyTextView = require('./copy-text-view-b9a8fbb1.js');
|
|
15
15
|
const GenericTableView = require('./GenericTableView-a9845e80.js');
|
|
16
16
|
require('./useChildElements-966c9041.js');
|
|
17
17
|
const luxon = require('./luxon-949beaf2.js');
|
|
@@ -33,7 +33,7 @@ require('./utilities-9a0c5e91.js');
|
|
|
33
33
|
const sqmPortalResetPasswordView = require('./sqm-portal-reset-password-view-25eb2099.js');
|
|
34
34
|
const sqmPortalVerifyEmailView = require('./sqm-portal-verify-email-view-1c4e781f.js');
|
|
35
35
|
const sqmQrCodeView = require('./sqm-qr-code-view-0c3b2f48.js');
|
|
36
|
-
const ShadowViewAddon = require('./ShadowViewAddon-
|
|
36
|
+
const ShadowViewAddon = require('./ShadowViewAddon-c468a0a7.js');
|
|
37
37
|
const sqmPortalContainerView = require('./sqm-portal-container-view-07e4343f.js');
|
|
38
38
|
const IndirectTaxDetailsView = require('./IndirectTaxDetailsView-cf888c7b.js');
|
|
39
39
|
const utils = require('./utils-e3305bd8.js');
|
|
@@ -13395,7 +13395,7 @@ const Default$m = () => {
|
|
|
13395
13395
|
open: false,
|
|
13396
13396
|
tooltiptext: "Copied!",
|
|
13397
13397
|
};
|
|
13398
|
-
return index.h(copyTextView.CopyTextView, Object.assign({
|
|
13398
|
+
return index.h(copyTextView.CopyTextView, Object.assign({}, props));
|
|
13399
13399
|
};
|
|
13400
13400
|
const Tooltip = () => {
|
|
13401
13401
|
const props = {
|
|
@@ -13,7 +13,7 @@ export const Default = () => {
|
|
|
13
13
|
open: false,
|
|
14
14
|
tooltiptext: "Copied!",
|
|
15
15
|
};
|
|
16
|
-
return h(CopyTextView, Object.assign({
|
|
16
|
+
return h(CopyTextView, Object.assign({}, props));
|
|
17
17
|
};
|
|
18
18
|
export const Tooltip = () => {
|
|
19
19
|
const props = {
|
|
@@ -33,15 +33,10 @@ export function CopyTextView(props) {
|
|
|
33
33
|
width: "100%",
|
|
34
34
|
},
|
|
35
35
|
"&::part(base)": {
|
|
36
|
-
|
|
37
|
-
"--sl-input-border-radius": props.borderRadius
|
|
38
|
-
? `${props.borderRadius}px`
|
|
39
|
-
: "var(--sqm-input-border-radius)",
|
|
40
|
-
"--sl-input-border-color": props.borderColor || "var(--sqm-border-color)",
|
|
41
|
-
// These are now correct
|
|
36
|
+
"--sl-input-border-radius": `${props.borderRadius}px` || "var(--sqm-border-radius-normal)",
|
|
42
37
|
"--sl-input-background-color": props.backgroundColor || "var(--sqm-portal-background)",
|
|
43
38
|
"--sl-input-color": props.textColor || "var(--sqm-input-color)",
|
|
44
|
-
|
|
39
|
+
"--sl-input-border-color": "var(--sqm-border-color)",
|
|
45
40
|
"--sl-input-border-color-hover": "#999999",
|
|
46
41
|
"--sl-input-border-color-focus": "#999999",
|
|
47
42
|
"--sl-input-color-hover": "var(--sqm-input-color-hover)",
|
|
@@ -51,6 +46,9 @@ export function CopyTextView(props) {
|
|
|
51
46
|
"--sl-input-background-color-hover": "var(--sqm-portal-background)",
|
|
52
47
|
cursor: "pointer",
|
|
53
48
|
overflow: "visible",
|
|
49
|
+
borderRadius: `${props.borderRadius}px` || "var(--sqm-border-radius-normal)",
|
|
50
|
+
background: props.backgroundColor || "var(--sqm-portal-background)",
|
|
51
|
+
border: `var(--sqm-border-thickness) solid ${props.borderColor || "--sqm-input-border-color"}`,
|
|
54
52
|
},
|
|
55
53
|
width: "100%",
|
|
56
54
|
},
|
|
@@ -7,7 +7,7 @@ import { l as luxonLocale } from './utils-03188de2.js';
|
|
|
7
7
|
import { c as createStyleSheet, j as jss, a as create } from './JSS-67b5cff8.js';
|
|
8
8
|
import { a as REFERRAL_CODES_NAMESPACE, S as SET_CODE_COPIED } from './useReferralCodes-311e6d72.js';
|
|
9
9
|
import { H as HostBlock, A as AuthWrapper, a as AuthColumn, b as AuthButtonsContainer, E as ErrorStyles } from './mixins-f750863a.js';
|
|
10
|
-
import { C as CopyTextView } from './copy-text-view-
|
|
10
|
+
import { C as CopyTextView } from './copy-text-view-b219d166.js';
|
|
11
11
|
import { u as useChildElements } from './useChildElements-4e70ac0e.js';
|
|
12
12
|
import { l as luxon } from './luxon-bbf75a9d.js';
|
|
13
13
|
import { T as TextSpanView } from './sqm-text-span-view-4c17b8c9.js';
|
|
@@ -34,15 +34,10 @@ function CopyTextView(props) {
|
|
|
34
34
|
width: "100%",
|
|
35
35
|
},
|
|
36
36
|
"&::part(base)": {
|
|
37
|
-
|
|
38
|
-
"--sl-input-border-radius": props.borderRadius
|
|
39
|
-
? `${props.borderRadius}px`
|
|
40
|
-
: "var(--sqm-input-border-radius)",
|
|
41
|
-
"--sl-input-border-color": props.borderColor || "var(--sqm-border-color)",
|
|
42
|
-
// These are now correct
|
|
37
|
+
"--sl-input-border-radius": `${props.borderRadius}px` || "var(--sqm-border-radius-normal)",
|
|
43
38
|
"--sl-input-background-color": props.backgroundColor || "var(--sqm-portal-background)",
|
|
44
39
|
"--sl-input-color": props.textColor || "var(--sqm-input-color)",
|
|
45
|
-
|
|
40
|
+
"--sl-input-border-color": "var(--sqm-border-color)",
|
|
46
41
|
"--sl-input-border-color-hover": "#999999",
|
|
47
42
|
"--sl-input-border-color-focus": "#999999",
|
|
48
43
|
"--sl-input-color-hover": "var(--sqm-input-color-hover)",
|
|
@@ -52,6 +47,9 @@ function CopyTextView(props) {
|
|
|
52
47
|
"--sl-input-background-color-hover": "var(--sqm-portal-background)",
|
|
53
48
|
cursor: "pointer",
|
|
54
49
|
overflow: "visible",
|
|
50
|
+
borderRadius: `${props.borderRadius}px` || "var(--sqm-border-radius-normal)",
|
|
51
|
+
background: props.backgroundColor || "var(--sqm-portal-background)",
|
|
52
|
+
border: `var(--sqm-border-thickness) solid ${props.borderColor || "--sqm-input-border-color"}`,
|
|
55
53
|
},
|
|
56
54
|
width: "100%",
|
|
57
55
|
},
|
|
@@ -8,7 +8,7 @@ import { g as getProps, a as getMissingProps } from './utils-03188de2.js';
|
|
|
8
8
|
import { c as createStyleSheet } from './JSS-67b5cff8.js';
|
|
9
9
|
import './useReferralCodes-311e6d72.js';
|
|
10
10
|
import './mixins-f750863a.js';
|
|
11
|
-
import { C as CopyTextView } from './copy-text-view-
|
|
11
|
+
import { C as CopyTextView } from './copy-text-view-b219d166.js';
|
|
12
12
|
import { a as useRequestRerender } from './re-render-9c90767d.js';
|
|
13
13
|
import { u as useChildElements } from './useChildElements-4e70ac0e.js';
|
|
14
14
|
import './luxon-bbf75a9d.js';
|
|
@@ -21,7 +21,7 @@ import { P as PortalLoginView } from './sqm-portal-login-view-7670cd86.js';
|
|
|
21
21
|
import { u as usePortalLogin } from './usePortalLogin-d0720c81.js';
|
|
22
22
|
import { A as AsYouType } from './AsYouType-46f67d0d.js';
|
|
23
23
|
import { i as isEmpty } from './utilities-ad9c2893.js';
|
|
24
|
-
import { u as useDemoBigStat, Q as useBigStat, B as BigStatView, C as CardFeedView, c as CheckboxFieldView, e as CouponCodeView, D as DropdownFieldView, E as EditProfileView, H as HeroView, I as InputFieldView, U as withShadowView, L as LeaderboardView, N as NameFieldsView, f as ChangeMarktingView, P as PortalChangePasswordView, g as PortalFooterView, h as PortalFrameView, d as PortalRegisterView, R as ReferralIframeView, i as RewardExchangeView, V as demoRewardExchange, G as useShareButton, a as ShareButtonView, J as useShareLink, S as StatContainerView, T as TaskCardView } from './ShadowViewAddon-
|
|
24
|
+
import { u as useDemoBigStat, Q as useBigStat, B as BigStatView, C as CardFeedView, c as CheckboxFieldView, e as CouponCodeView, D as DropdownFieldView, E as EditProfileView, H as HeroView, I as InputFieldView, U as withShadowView, L as LeaderboardView, N as NameFieldsView, f as ChangeMarktingView, P as PortalChangePasswordView, g as PortalFooterView, h as PortalFrameView, d as PortalRegisterView, R as ReferralIframeView, i as RewardExchangeView, V as demoRewardExchange, G as useShareButton, a as ShareButtonView, J as useShareLink, S as StatContainerView, T as TaskCardView } from './ShadowViewAddon-518e026d.js';
|
|
25
25
|
import './sqm-portal-container-view-176e92e3.js';
|
|
26
26
|
import { p as parseStates } from './parseStates-ed75e224.js';
|
|
27
27
|
import { u as usePayoutStatus } from './usePayoutStatus-7eeec61b.js';
|
|
@@ -7,7 +7,7 @@ import { g as getProps } from './utils-03188de2.js';
|
|
|
7
7
|
import { c as createStyleSheet } from './JSS-67b5cff8.js';
|
|
8
8
|
import { R as REFERRAL_CODES_PAGINATION_CONTEXT, a as REFERRAL_CODES_NAMESPACE, S as SET_CODE_COPIED, u as useReferralCodes } from './useReferralCodes-311e6d72.js';
|
|
9
9
|
import './mixins-f750863a.js';
|
|
10
|
-
import { C as CopyTextView } from './copy-text-view-
|
|
10
|
+
import { C as CopyTextView } from './copy-text-view-b219d166.js';
|
|
11
11
|
|
|
12
12
|
const style = {
|
|
13
13
|
Container: {
|
|
@@ -7,7 +7,7 @@ import './utils-03188de2.js';
|
|
|
7
7
|
import { c as createStyleSheet } from './JSS-67b5cff8.js';
|
|
8
8
|
import './useReferralCodes-311e6d72.js';
|
|
9
9
|
import './mixins-f750863a.js';
|
|
10
|
-
import { C as CopyTextView } from './copy-text-view-
|
|
10
|
+
import { C as CopyTextView } from './copy-text-view-b219d166.js';
|
|
11
11
|
import { G as GenericTableView } from './GenericTableView-e43d310f.js';
|
|
12
12
|
import './useChildElements-4e70ac0e.js';
|
|
13
13
|
import { l as luxon } from './luxon-bbf75a9d.js';
|
|
@@ -29,7 +29,7 @@ import './utilities-ad9c2893.js';
|
|
|
29
29
|
import { P as PortalResetPasswordView } from './sqm-portal-reset-password-view-abef7286.js';
|
|
30
30
|
import { P as PortalVerifyEmailView } from './sqm-portal-verify-email-view-33805220.js';
|
|
31
31
|
import { Q as QrCodeView } from './sqm-qr-code-view-97124a66.js';
|
|
32
|
-
import { S as StatContainerView, B as BigStatView, a as ShareButtonView, P as PortalChangePasswordView, b as PoweredByImg$1, u as useDemoBigStat, T as TaskCardView, C as CardFeedView, c as CheckboxFieldView, d as PortalRegisterView, e as CouponCodeView, D as DropdownFieldView, E as EditProfileView, L as LeaderboardView, H as HeroView, I as InputFieldView, N as NameFieldsView, f as ChangeMarktingView, g as PortalFooterView, h as PortalFrameView, R as ReferralIframeView, i as RewardExchangeView, r as rewardExchangeCustomErrorMsg, j as rewardExchangeLongText, k as rewardExchangeSelected, l as chooseAmountFixed, m as chooseAmountFixedNoDescription, n as chooseAmountVariable, o as chooseAmountVariableNoDescription, p as chooseAmountVariableDisabled, q as chooseAmountVariableUnavailable, s as confirmFixed, t as confirmVariable, v as redemptionError, w as queryError, x as success, y as successVariable, z as loading, A as empty$1, F as rewardExchange, G as useShareButton, J as useShareLink, K as ProgressBarView, M as ProgressBar$2, O as ShadowViewAddon } from './ShadowViewAddon-
|
|
32
|
+
import { S as StatContainerView, B as BigStatView, a as ShareButtonView, P as PortalChangePasswordView, b as PoweredByImg$1, u as useDemoBigStat, T as TaskCardView, C as CardFeedView, c as CheckboxFieldView, d as PortalRegisterView, e as CouponCodeView, D as DropdownFieldView, E as EditProfileView, L as LeaderboardView, H as HeroView, I as InputFieldView, N as NameFieldsView, f as ChangeMarktingView, g as PortalFooterView, h as PortalFrameView, R as ReferralIframeView, i as RewardExchangeView, r as rewardExchangeCustomErrorMsg, j as rewardExchangeLongText, k as rewardExchangeSelected, l as chooseAmountFixed, m as chooseAmountFixedNoDescription, n as chooseAmountVariable, o as chooseAmountVariableNoDescription, p as chooseAmountVariableDisabled, q as chooseAmountVariableUnavailable, s as confirmFixed, t as confirmVariable, v as redemptionError, w as queryError, x as success, y as successVariable, z as loading, A as empty$1, F as rewardExchange, G as useShareButton, J as useShareLink, K as ProgressBarView, M as ProgressBar$2, O as ShadowViewAddon } from './ShadowViewAddon-518e026d.js';
|
|
33
33
|
import { P as PortalContainerView, a as PortalSectionView } from './sqm-portal-container-view-176e92e3.js';
|
|
34
34
|
import { I as InvoiceTableView, a as INDIRECT_TAX_SPAIN_REGIONS, b as INDIRECT_TAX_PROVINCES, O as OtherRegionSlotView } from './IndirectTaxDetailsView-084314d5.js';
|
|
35
35
|
import { t as taxTypeToName, L as LoadingView } from './utils-27b2ed4b.js';
|
|
@@ -13391,7 +13391,7 @@ const Default$m = () => {
|
|
|
13391
13391
|
open: false,
|
|
13392
13392
|
tooltiptext: "Copied!",
|
|
13393
13393
|
};
|
|
13394
|
-
return h(CopyTextView, Object.assign({
|
|
13394
|
+
return h(CopyTextView, Object.assign({}, props));
|
|
13395
13395
|
};
|
|
13396
13396
|
const Tooltip = () => {
|
|
13397
13397
|
const props = {
|