@saasquatch/mint-components 1.6.8-5 → 1.6.8-6
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/sqm-big-stat_37.cjs.entry.js +9 -0
- package/dist/cjs/sqm-user-identifier.cjs.entry.js +3 -1
- package/dist/collection/components/sqm-coupon-code/sqm-coupon-code.js +12 -0
- package/dist/collection/components/sqm-share-code/sqm-share-code.js +12 -0
- package/dist/collection/components/sqm-share-link/sqm-share-link.js +12 -0
- package/dist/collection/components/sqm-user-identifier/useUserIdentifer.js +3 -1
- package/dist/esm/sqm-big-stat_37.entry.js +9 -0
- package/dist/esm/sqm-user-identifier.entry.js +3 -1
- package/dist/types/components/sqm-coupon-code/sqm-coupon-code.d.ts +3 -0
- package/dist/types/components/sqm-share-code/sqm-share-code.d.ts +3 -0
- package/dist/types/components/sqm-share-link/sqm-share-link.d.ts +3 -0
- package/dist/types/components.d.ts +18 -0
- package/docs/docs.docx +0 -0
- package/docs/raisins.json +1 -1
- package/grapesjs/grapesjs.js +1 -1
- package/package.json +1 -1
|
@@ -353,6 +353,9 @@ const CouponCode = class {
|
|
|
353
353
|
* Set the copy button position
|
|
354
354
|
*
|
|
355
355
|
* @uiName Copy button position
|
|
356
|
+
* @uiType string
|
|
357
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
358
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
356
359
|
*/
|
|
357
360
|
this.buttonPosition = "outside";
|
|
358
361
|
stencilHooks_module.h$1(this);
|
|
@@ -3599,6 +3602,9 @@ const ShareCode = class {
|
|
|
3599
3602
|
* Set the copy button position
|
|
3600
3603
|
*
|
|
3601
3604
|
* @uiName Copy button position
|
|
3605
|
+
* @uiType string
|
|
3606
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
3607
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
3602
3608
|
*/
|
|
3603
3609
|
this.buttonPosition = "outside";
|
|
3604
3610
|
stencilHooks_module.h$1(this);
|
|
@@ -3670,6 +3676,9 @@ const ShareLink = class {
|
|
|
3670
3676
|
* Set the copy button position
|
|
3671
3677
|
*
|
|
3672
3678
|
* @uiName Copy button position
|
|
3679
|
+
* @uiType string
|
|
3680
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
3681
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
3673
3682
|
*/
|
|
3674
3683
|
this.buttonPosition = "outside";
|
|
3675
3684
|
stencilHooks_module.h$1(this);
|
|
@@ -10,7 +10,9 @@ const cjs = require('./cjs-1066ec21.js');
|
|
|
10
10
|
require('./JSS-8503a151.js');
|
|
11
11
|
const sqmUserIdentifierView = require('./sqm-user-identifier-view-90b36758.js');
|
|
12
12
|
|
|
13
|
-
function useUserIdentifier(
|
|
13
|
+
function useUserIdentifier(
|
|
14
|
+
// @ts-ignore;
|
|
15
|
+
props) {
|
|
14
16
|
return {
|
|
15
17
|
switchUserLink: props.switchUserLink,
|
|
16
18
|
userIdentificationText: "",
|
|
@@ -46,6 +46,9 @@ export class CouponCode {
|
|
|
46
46
|
* Set the copy button position
|
|
47
47
|
*
|
|
48
48
|
* @uiName Copy button position
|
|
49
|
+
* @uiType string
|
|
50
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
51
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
49
52
|
*/
|
|
50
53
|
this.buttonPosition = "outside";
|
|
51
54
|
withHooks(this);
|
|
@@ -203,6 +206,15 @@ export class CouponCode {
|
|
|
203
206
|
"tags": [{
|
|
204
207
|
"text": "Copy button position",
|
|
205
208
|
"name": "uiName"
|
|
209
|
+
}, {
|
|
210
|
+
"text": "string",
|
|
211
|
+
"name": "uiType"
|
|
212
|
+
}, {
|
|
213
|
+
"text": "[\"inside\", \"outside\", \"below\"]",
|
|
214
|
+
"name": "uiEnum"
|
|
215
|
+
}, {
|
|
216
|
+
"text": "[\"inside\", \"outside\", \"below\"]",
|
|
217
|
+
"name": "uiEnumNames"
|
|
206
218
|
}],
|
|
207
219
|
"text": "Set the copy button position"
|
|
208
220
|
},
|
|
@@ -46,6 +46,9 @@ export class ShareCode {
|
|
|
46
46
|
* Set the copy button position
|
|
47
47
|
*
|
|
48
48
|
* @uiName Copy button position
|
|
49
|
+
* @uiType string
|
|
50
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
51
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
49
52
|
*/
|
|
50
53
|
this.buttonPosition = "outside";
|
|
51
54
|
withHooks(this);
|
|
@@ -203,6 +206,15 @@ export class ShareCode {
|
|
|
203
206
|
"tags": [{
|
|
204
207
|
"text": "Copy button position",
|
|
205
208
|
"name": "uiName"
|
|
209
|
+
}, {
|
|
210
|
+
"text": "string",
|
|
211
|
+
"name": "uiType"
|
|
212
|
+
}, {
|
|
213
|
+
"text": "[\"inside\", \"outside\", \"below\"]",
|
|
214
|
+
"name": "uiEnum"
|
|
215
|
+
}, {
|
|
216
|
+
"text": "[\"inside\", \"outside\", \"below\"]",
|
|
217
|
+
"name": "uiEnumNames"
|
|
206
218
|
}],
|
|
207
219
|
"text": "Set the copy button position"
|
|
208
220
|
},
|
|
@@ -46,6 +46,9 @@ export class ShareLink {
|
|
|
46
46
|
* Set the copy button position
|
|
47
47
|
*
|
|
48
48
|
* @uiName Copy button position
|
|
49
|
+
* @uiType string
|
|
50
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
51
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
49
52
|
*/
|
|
50
53
|
this.buttonPosition = "outside";
|
|
51
54
|
withHooks(this);
|
|
@@ -203,6 +206,15 @@ export class ShareLink {
|
|
|
203
206
|
"tags": [{
|
|
204
207
|
"text": "Copy button position",
|
|
205
208
|
"name": "uiName"
|
|
209
|
+
}, {
|
|
210
|
+
"text": "string",
|
|
211
|
+
"name": "uiType"
|
|
212
|
+
}, {
|
|
213
|
+
"text": "[\"inside\", \"outside\", \"below\"]",
|
|
214
|
+
"name": "uiEnum"
|
|
215
|
+
}, {
|
|
216
|
+
"text": "[\"inside\", \"outside\", \"below\"]",
|
|
217
|
+
"name": "uiEnumNames"
|
|
206
218
|
}],
|
|
207
219
|
"text": "Set the copy button position"
|
|
208
220
|
},
|
|
@@ -349,6 +349,9 @@ const CouponCode = class {
|
|
|
349
349
|
* Set the copy button position
|
|
350
350
|
*
|
|
351
351
|
* @uiName Copy button position
|
|
352
|
+
* @uiType string
|
|
353
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
354
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
352
355
|
*/
|
|
353
356
|
this.buttonPosition = "outside";
|
|
354
357
|
h(this);
|
|
@@ -3595,6 +3598,9 @@ const ShareCode = class {
|
|
|
3595
3598
|
* Set the copy button position
|
|
3596
3599
|
*
|
|
3597
3600
|
* @uiName Copy button position
|
|
3601
|
+
* @uiType string
|
|
3602
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
3603
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
3598
3604
|
*/
|
|
3599
3605
|
this.buttonPosition = "outside";
|
|
3600
3606
|
h(this);
|
|
@@ -3666,6 +3672,9 @@ const ShareLink = class {
|
|
|
3666
3672
|
* Set the copy button position
|
|
3667
3673
|
*
|
|
3668
3674
|
* @uiName Copy button position
|
|
3675
|
+
* @uiType string
|
|
3676
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
3677
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
3669
3678
|
*/
|
|
3670
3679
|
this.buttonPosition = "outside";
|
|
3671
3680
|
h(this);
|
|
@@ -6,7 +6,9 @@ import { c as cjs } from './cjs-bdfb4486.js';
|
|
|
6
6
|
import './JSS-67b5cff8.js';
|
|
7
7
|
import { U as UserIdentifierView } from './sqm-user-identifier-view-dbf71a5e.js';
|
|
8
8
|
|
|
9
|
-
function useUserIdentifier(
|
|
9
|
+
function useUserIdentifier(
|
|
10
|
+
// @ts-ignore;
|
|
11
|
+
props) {
|
|
10
12
|
return {
|
|
11
13
|
switchUserLink: props.switchUserLink,
|
|
12
14
|
userIdentificationText: "",
|
|
@@ -47,6 +47,9 @@ export declare class CouponCode {
|
|
|
47
47
|
* Set the copy button position
|
|
48
48
|
*
|
|
49
49
|
* @uiName Copy button position
|
|
50
|
+
* @uiType string
|
|
51
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
52
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
50
53
|
*/
|
|
51
54
|
buttonPosition: "inside" | "outside" | "below";
|
|
52
55
|
/**
|
|
@@ -47,6 +47,9 @@ export declare class ShareCode {
|
|
|
47
47
|
* Set the copy button position
|
|
48
48
|
*
|
|
49
49
|
* @uiName Copy button position
|
|
50
|
+
* @uiType string
|
|
51
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
52
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
50
53
|
*/
|
|
51
54
|
buttonPosition: "inside" | "outside" | "below";
|
|
52
55
|
/**
|
|
@@ -47,6 +47,9 @@ export declare class ShareLink {
|
|
|
47
47
|
* Set the copy button position
|
|
48
48
|
*
|
|
49
49
|
* @uiName Copy button position
|
|
50
|
+
* @uiType string
|
|
51
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
52
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
50
53
|
*/
|
|
51
54
|
buttonPosition: "inside" | "outside" | "below";
|
|
52
55
|
/**
|
|
@@ -159,6 +159,9 @@ export namespace Components {
|
|
|
159
159
|
/**
|
|
160
160
|
* Set the copy button position
|
|
161
161
|
* @uiName Copy button position
|
|
162
|
+
* @uiType string
|
|
163
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
164
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
162
165
|
*/
|
|
163
166
|
"buttonPosition": "inside" | "outside" | "below";
|
|
164
167
|
/**
|
|
@@ -2168,6 +2171,9 @@ export namespace Components {
|
|
|
2168
2171
|
/**
|
|
2169
2172
|
* Set the copy button position
|
|
2170
2173
|
* @uiName Copy button position
|
|
2174
|
+
* @uiType string
|
|
2175
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
2176
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
2171
2177
|
*/
|
|
2172
2178
|
"buttonPosition": "inside" | "outside" | "below";
|
|
2173
2179
|
/**
|
|
@@ -2211,6 +2217,9 @@ export namespace Components {
|
|
|
2211
2217
|
/**
|
|
2212
2218
|
* Set the copy button position
|
|
2213
2219
|
* @uiName Copy button position
|
|
2220
|
+
* @uiType string
|
|
2221
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
2222
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
2214
2223
|
*/
|
|
2215
2224
|
"buttonPosition": "inside" | "outside" | "below";
|
|
2216
2225
|
/**
|
|
@@ -3325,6 +3334,9 @@ declare namespace LocalJSX {
|
|
|
3325
3334
|
/**
|
|
3326
3335
|
* Set the copy button position
|
|
3327
3336
|
* @uiName Copy button position
|
|
3337
|
+
* @uiType string
|
|
3338
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
3339
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
3328
3340
|
*/
|
|
3329
3341
|
"buttonPosition"?: "inside" | "outside" | "below";
|
|
3330
3342
|
/**
|
|
@@ -5310,6 +5322,9 @@ declare namespace LocalJSX {
|
|
|
5310
5322
|
/**
|
|
5311
5323
|
* Set the copy button position
|
|
5312
5324
|
* @uiName Copy button position
|
|
5325
|
+
* @uiType string
|
|
5326
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
5327
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
5313
5328
|
*/
|
|
5314
5329
|
"buttonPosition"?: "inside" | "outside" | "below";
|
|
5315
5330
|
/**
|
|
@@ -5353,6 +5368,9 @@ declare namespace LocalJSX {
|
|
|
5353
5368
|
/**
|
|
5354
5369
|
* Set the copy button position
|
|
5355
5370
|
* @uiName Copy button position
|
|
5371
|
+
* @uiType string
|
|
5372
|
+
* @uiEnum ["inside", "outside", "below"]
|
|
5373
|
+
* @uiEnumNames ["inside", "outside", "below"]
|
|
5356
5374
|
*/
|
|
5357
5375
|
"buttonPosition"?: "inside" | "outside" | "below";
|
|
5358
5376
|
/**
|
package/docs/docs.docx
CHANGED
|
Binary file
|