@saasquatch/mint-components 1.15.0-6 → 1.15.0-8
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-e666dc8b.js → ShadowViewAddon-afc40c22.js} +1 -1
- package/dist/cjs/{copy-text-view-7441206d.js → copy-text-view-9d4259f4.js} +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/mint-components.cjs.js +1 -1
- package/dist/cjs/sqm-big-stat_41.cjs.entry.js +18 -3
- package/dist/cjs/sqm-pagination_3.cjs.entry.js +1 -1
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +2 -2
- package/dist/collection/components/sqm-share-code/sqm-share-code.js +167 -0
- package/dist/collection/components/sqm-share-link/sqm-share-link.js +114 -1
- package/dist/collection/components/views/copy-text-view.js +1 -1
- package/dist/esm/{ShadowViewAddon-7c10e0ee.js → ShadowViewAddon-bdedf635.js} +1 -1
- package/dist/esm/{copy-text-view-717050d5.js → copy-text-view-ca98ab38.js} +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/mint-components.js +1 -1
- package/dist/esm/sqm-big-stat_41.entry.js +18 -3
- package/dist/esm/sqm-pagination_3.entry.js +1 -1
- package/dist/esm/sqm-stencilbook.entry.js +2 -2
- package/dist/esm-es5/{ShadowViewAddon-7c10e0ee.js → ShadowViewAddon-bdedf635.js} +1 -1
- package/dist/esm-es5/copy-text-view-ca98ab38.js +1 -0
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mint-components.js +1 -1
- package/dist/esm-es5/sqm-big-stat_41.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-c6841ab8.system.entry.js → p-09a77c82.system.entry.js} +1 -1
- package/dist/mint-components/{p-51495bc3.entry.js → p-2195c312.entry.js} +1 -1
- package/dist/mint-components/{p-4874193a.system.js → p-338bcfd6.system.js} +1 -1
- package/dist/mint-components/{p-8c12078e.js → p-469ad274.js} +1 -1
- package/dist/mint-components/{p-7f1e10d3.entry.js → p-484196f8.entry.js} +1 -1
- package/dist/mint-components/p-55c16fb9.system.js +1 -0
- package/dist/mint-components/{p-5ca8959a.system.entry.js → p-642909e6.system.entry.js} +1 -1
- package/dist/mint-components/p-9fe143f5.js +1 -0
- package/dist/mint-components/{p-8b36fe4f.entry.js → p-b889ec31.entry.js} +2 -2
- package/dist/mint-components/{p-bdbbc673.system.entry.js → p-c39db551.system.entry.js} +1 -1
- package/dist/mint-components/p-ed11966d.system.js +1 -1
- package/dist/types/components/sqm-share-code/sqm-share-code.d.ts +42 -0
- package/dist/types/components/sqm-share-link/sqm-share-link.d.ts +12 -0
- package/dist/types/components.d.ts +146 -0
- package/docs/docs.docx +0 -0
- package/docs/raisins.json +1 -1
- package/grapesjs/grapesjs.js +1 -1
- package/package.json +1 -1
- package/dist/esm-es5/copy-text-view-717050d5.js +0 -1
- package/dist/mint-components/p-c3680c02.js +0 -1
- package/dist/mint-components/p-d8cf46ba.system.js +0 -1
- package/dist/types/global/android.d.ts +0 -7
- package/dist/types/global/demo.d.ts +0 -2
- package/dist/types/stories/features.d.ts +0 -4
- package/dist/types/stories/templates.d.ts +0 -4
|
@@ -4102,14 +4102,47 @@ export namespace Components {
|
|
|
4102
4102
|
"unsupportedPlatformText"?: string;
|
|
4103
4103
|
}
|
|
4104
4104
|
interface SqmShareCode {
|
|
4105
|
+
/**
|
|
4106
|
+
* Background color of share link container
|
|
4107
|
+
* @uiName Background color
|
|
4108
|
+
* @uiWidget color
|
|
4109
|
+
* @format color
|
|
4110
|
+
* @uiGroup Style
|
|
4111
|
+
*/
|
|
4112
|
+
"backgroundColor"?: string;
|
|
4113
|
+
/**
|
|
4114
|
+
* Border color of share link container (default is set to 1px solid transparent)
|
|
4115
|
+
* @uiName Border color
|
|
4116
|
+
* @uiWidget color
|
|
4117
|
+
* @format color
|
|
4118
|
+
* @uiGroup Style
|
|
4119
|
+
*/
|
|
4120
|
+
"borderColor"?: string;
|
|
4121
|
+
/**
|
|
4122
|
+
* The border radius on the share link container
|
|
4123
|
+
* @uiName Border Radius
|
|
4124
|
+
* @uiType number
|
|
4125
|
+
* @uiGroup Style
|
|
4126
|
+
*/
|
|
4127
|
+
"borderRadius"?: string;
|
|
4105
4128
|
/**
|
|
4106
4129
|
* Set the copy button style and placement
|
|
4107
4130
|
* @uiName Style
|
|
4108
4131
|
* @uiType string
|
|
4109
4132
|
* @uiEnum ["icon", "button-outside", "button-below"]
|
|
4110
4133
|
* @uiEnumNames ["Icon", "Button outside", "Button below"]
|
|
4134
|
+
* @uiGroup Style
|
|
4111
4135
|
*/
|
|
4112
4136
|
"buttonStyle"?: "icon" | "button-outside" | "button-below";
|
|
4137
|
+
/**
|
|
4138
|
+
* The type of the button (primary or secondary) that will be used to copy the link.
|
|
4139
|
+
* @uiName Button Type
|
|
4140
|
+
* @uiType string
|
|
4141
|
+
* @uiEnum ["primary", "secondary"]
|
|
4142
|
+
* @uiEnumNames ["Primary", "Secondary"]
|
|
4143
|
+
* @uiGroup Style
|
|
4144
|
+
*/
|
|
4145
|
+
"buttonType"?: "primary" | "secondary";
|
|
4113
4146
|
/**
|
|
4114
4147
|
* @uiName Copy button label
|
|
4115
4148
|
*/
|
|
@@ -4131,8 +4164,17 @@ export namespace Components {
|
|
|
4131
4164
|
* @uiType string
|
|
4132
4165
|
* @uiEnum ["left", "center", "right"]
|
|
4133
4166
|
* @uiEnumNames ["Left", "Center", "Right"]
|
|
4167
|
+
* @uiGroup Style
|
|
4134
4168
|
*/
|
|
4135
4169
|
"textAlign": "left" | "center" | "right";
|
|
4170
|
+
/**
|
|
4171
|
+
* Color of the text and copy icon
|
|
4172
|
+
* @uiName Text color
|
|
4173
|
+
* @uiWidget color
|
|
4174
|
+
* @format color
|
|
4175
|
+
* @uiGroup Style
|
|
4176
|
+
*/
|
|
4177
|
+
"textColor"?: string;
|
|
4136
4178
|
/**
|
|
4137
4179
|
* The number of milliseconds that the tooltip appears for
|
|
4138
4180
|
* @uiName Tooltip lifespan
|
|
@@ -4145,6 +4187,29 @@ export namespace Components {
|
|
|
4145
4187
|
"tooltiptext": string;
|
|
4146
4188
|
}
|
|
4147
4189
|
interface SqmShareLink {
|
|
4190
|
+
/**
|
|
4191
|
+
* Background color of share link container
|
|
4192
|
+
* @uiName Background color
|
|
4193
|
+
* @uiWidget color
|
|
4194
|
+
* @format color
|
|
4195
|
+
* @uiGroup Style
|
|
4196
|
+
*/
|
|
4197
|
+
"backgroundColor"?: string;
|
|
4198
|
+
/**
|
|
4199
|
+
* Border color of share link container (default is set to 1px solid transparent)
|
|
4200
|
+
* @uiName Border color
|
|
4201
|
+
* @uiWidget color
|
|
4202
|
+
* @format color
|
|
4203
|
+
* @uiGroup Style
|
|
4204
|
+
*/
|
|
4205
|
+
"borderColor"?: string;
|
|
4206
|
+
/**
|
|
4207
|
+
* The border radius on the share link container
|
|
4208
|
+
* @uiName Border Radius
|
|
4209
|
+
* @uiType number
|
|
4210
|
+
* @uiGroup Style
|
|
4211
|
+
*/
|
|
4212
|
+
"borderRadius"?: string;
|
|
4148
4213
|
/**
|
|
4149
4214
|
* Set the copy button style and placement
|
|
4150
4215
|
* @uiName Button style
|
|
@@ -4186,6 +4251,14 @@ export namespace Components {
|
|
|
4186
4251
|
* @uiEnumNames ["Left", "Center", "Right"]
|
|
4187
4252
|
*/
|
|
4188
4253
|
"textAlign"?: "left" | "center" | "right";
|
|
4254
|
+
/**
|
|
4255
|
+
* Color of the text and copy icon
|
|
4256
|
+
* @uiName Text color
|
|
4257
|
+
* @uiWidget color
|
|
4258
|
+
* @format color
|
|
4259
|
+
* @uiGroup Style
|
|
4260
|
+
*/
|
|
4261
|
+
"textColor"?: string;
|
|
4189
4262
|
/**
|
|
4190
4263
|
* The number of milliseconds that the tooltip appears for
|
|
4191
4264
|
* @uiName Tooltip lifespan
|
|
@@ -10881,14 +10954,47 @@ declare namespace LocalJSX {
|
|
|
10881
10954
|
"unsupportedPlatformText"?: string;
|
|
10882
10955
|
}
|
|
10883
10956
|
interface SqmShareCode {
|
|
10957
|
+
/**
|
|
10958
|
+
* Background color of share link container
|
|
10959
|
+
* @uiName Background color
|
|
10960
|
+
* @uiWidget color
|
|
10961
|
+
* @format color
|
|
10962
|
+
* @uiGroup Style
|
|
10963
|
+
*/
|
|
10964
|
+
"backgroundColor"?: string;
|
|
10965
|
+
/**
|
|
10966
|
+
* Border color of share link container (default is set to 1px solid transparent)
|
|
10967
|
+
* @uiName Border color
|
|
10968
|
+
* @uiWidget color
|
|
10969
|
+
* @format color
|
|
10970
|
+
* @uiGroup Style
|
|
10971
|
+
*/
|
|
10972
|
+
"borderColor"?: string;
|
|
10973
|
+
/**
|
|
10974
|
+
* The border radius on the share link container
|
|
10975
|
+
* @uiName Border Radius
|
|
10976
|
+
* @uiType number
|
|
10977
|
+
* @uiGroup Style
|
|
10978
|
+
*/
|
|
10979
|
+
"borderRadius"?: string;
|
|
10884
10980
|
/**
|
|
10885
10981
|
* Set the copy button style and placement
|
|
10886
10982
|
* @uiName Style
|
|
10887
10983
|
* @uiType string
|
|
10888
10984
|
* @uiEnum ["icon", "button-outside", "button-below"]
|
|
10889
10985
|
* @uiEnumNames ["Icon", "Button outside", "Button below"]
|
|
10986
|
+
* @uiGroup Style
|
|
10890
10987
|
*/
|
|
10891
10988
|
"buttonStyle"?: "icon" | "button-outside" | "button-below";
|
|
10989
|
+
/**
|
|
10990
|
+
* The type of the button (primary or secondary) that will be used to copy the link.
|
|
10991
|
+
* @uiName Button Type
|
|
10992
|
+
* @uiType string
|
|
10993
|
+
* @uiEnum ["primary", "secondary"]
|
|
10994
|
+
* @uiEnumNames ["Primary", "Secondary"]
|
|
10995
|
+
* @uiGroup Style
|
|
10996
|
+
*/
|
|
10997
|
+
"buttonType"?: "primary" | "secondary";
|
|
10892
10998
|
/**
|
|
10893
10999
|
* @uiName Copy button label
|
|
10894
11000
|
*/
|
|
@@ -10910,8 +11016,17 @@ declare namespace LocalJSX {
|
|
|
10910
11016
|
* @uiType string
|
|
10911
11017
|
* @uiEnum ["left", "center", "right"]
|
|
10912
11018
|
* @uiEnumNames ["Left", "Center", "Right"]
|
|
11019
|
+
* @uiGroup Style
|
|
10913
11020
|
*/
|
|
10914
11021
|
"textAlign"?: "left" | "center" | "right";
|
|
11022
|
+
/**
|
|
11023
|
+
* Color of the text and copy icon
|
|
11024
|
+
* @uiName Text color
|
|
11025
|
+
* @uiWidget color
|
|
11026
|
+
* @format color
|
|
11027
|
+
* @uiGroup Style
|
|
11028
|
+
*/
|
|
11029
|
+
"textColor"?: string;
|
|
10915
11030
|
/**
|
|
10916
11031
|
* The number of milliseconds that the tooltip appears for
|
|
10917
11032
|
* @uiName Tooltip lifespan
|
|
@@ -10924,6 +11039,29 @@ declare namespace LocalJSX {
|
|
|
10924
11039
|
"tooltiptext"?: string;
|
|
10925
11040
|
}
|
|
10926
11041
|
interface SqmShareLink {
|
|
11042
|
+
/**
|
|
11043
|
+
* Background color of share link container
|
|
11044
|
+
* @uiName Background color
|
|
11045
|
+
* @uiWidget color
|
|
11046
|
+
* @format color
|
|
11047
|
+
* @uiGroup Style
|
|
11048
|
+
*/
|
|
11049
|
+
"backgroundColor"?: string;
|
|
11050
|
+
/**
|
|
11051
|
+
* Border color of share link container (default is set to 1px solid transparent)
|
|
11052
|
+
* @uiName Border color
|
|
11053
|
+
* @uiWidget color
|
|
11054
|
+
* @format color
|
|
11055
|
+
* @uiGroup Style
|
|
11056
|
+
*/
|
|
11057
|
+
"borderColor"?: string;
|
|
11058
|
+
/**
|
|
11059
|
+
* The border radius on the share link container
|
|
11060
|
+
* @uiName Border Radius
|
|
11061
|
+
* @uiType number
|
|
11062
|
+
* @uiGroup Style
|
|
11063
|
+
*/
|
|
11064
|
+
"borderRadius"?: string;
|
|
10927
11065
|
/**
|
|
10928
11066
|
* Set the copy button style and placement
|
|
10929
11067
|
* @uiName Button style
|
|
@@ -10965,6 +11103,14 @@ declare namespace LocalJSX {
|
|
|
10965
11103
|
* @uiEnumNames ["Left", "Center", "Right"]
|
|
10966
11104
|
*/
|
|
10967
11105
|
"textAlign"?: "left" | "center" | "right";
|
|
11106
|
+
/**
|
|
11107
|
+
* Color of the text and copy icon
|
|
11108
|
+
* @uiName Text color
|
|
11109
|
+
* @uiWidget color
|
|
11110
|
+
* @format color
|
|
11111
|
+
* @uiGroup Style
|
|
11112
|
+
*/
|
|
11113
|
+
"textColor"?: string;
|
|
10968
11114
|
/**
|
|
10969
11115
|
* The number of milliseconds that the tooltip appears for
|
|
10970
11116
|
* @uiName Tooltip lifespan
|
package/docs/docs.docx
CHANGED
|
Binary file
|