@saasquatch/mint-components 1.15.0-15 → 1.15.0-16

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.
Files changed (52) hide show
  1. package/dist/cjs/{ShadowViewAddon-d2ed86e8.js → ShadowViewAddon-8bab3674.js} +39 -38
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/mint-components.cjs.js +1 -1
  4. package/dist/cjs/sqm-big-stat_41.cjs.entry.js +5 -3
  5. package/dist/cjs/sqm-stencilbook.cjs.entry.js +15 -5
  6. package/dist/cjs/sqm-tabs.cjs.entry.js +9 -4
  7. package/dist/collection/components/sqm-coupon-code/sqm-coupon-code-view.js +13 -13
  8. package/dist/collection/components/sqm-share-button/ShareButton.stories.js +3 -1
  9. package/dist/collection/components/sqm-share-button/sqm-share-button-view.js +23 -22
  10. package/dist/collection/components/sqm-share-button/sqm-share-button.js +53 -7
  11. package/dist/collection/components/sqm-tabs/Tabs.stories.js +7 -0
  12. package/dist/collection/components/sqm-tabs/sqm-tabs-view.js +7 -2
  13. package/dist/collection/components/sqm-tabs/sqm-tabs.js +28 -2
  14. package/dist/esm/{ShadowViewAddon-3651cb42.js → ShadowViewAddon-967f1f54.js} +39 -38
  15. package/dist/esm/loader.js +1 -1
  16. package/dist/esm/mint-components.js +1 -1
  17. package/dist/esm/sqm-big-stat_41.entry.js +5 -3
  18. package/dist/esm/sqm-stencilbook.entry.js +15 -5
  19. package/dist/esm/sqm-tabs.entry.js +9 -4
  20. package/dist/esm-es5/ShadowViewAddon-967f1f54.js +1 -0
  21. package/dist/esm-es5/loader.js +1 -1
  22. package/dist/esm-es5/mint-components.js +1 -1
  23. package/dist/esm-es5/sqm-big-stat_41.entry.js +1 -1
  24. package/dist/esm-es5/sqm-stencilbook.entry.js +1 -1
  25. package/dist/esm-es5/sqm-tabs.entry.js +1 -1
  26. package/dist/mint-components/mint-components.esm.js +1 -1
  27. package/dist/mint-components/p-266bbd02.system.js +1 -0
  28. package/dist/mint-components/{p-9b2e60ce.entry.js → p-44eead35.entry.js} +1 -1
  29. package/dist/mint-components/{p-a6ca754f.js → p-8f6297b0.js} +2 -2
  30. package/dist/mint-components/{p-9617685e.system.entry.js → p-ae07ce99.system.entry.js} +1 -1
  31. package/dist/mint-components/{p-60e72631.entry.js → p-b22a7b2d.entry.js} +2 -2
  32. package/dist/mint-components/p-b6de39a2.entry.js +1 -0
  33. package/dist/mint-components/p-d68003fe.system.entry.js +1 -0
  34. package/dist/mint-components/p-ee06426a.system.js +1 -1
  35. package/dist/mint-components/p-fdaa4dbb.system.entry.js +1 -0
  36. package/dist/types/components/sqm-coupon-code/sqm-coupon-code-view.d.ts +1 -0
  37. package/dist/types/components/sqm-share-button/ShareButton.stories.d.ts +1 -1
  38. package/dist/types/components/sqm-share-button/sqm-share-button-view.d.ts +2 -1
  39. package/dist/types/components/sqm-share-button/sqm-share-button.d.ts +15 -3
  40. package/dist/types/components/sqm-tabs/Tabs.stories.d.ts +1 -0
  41. package/dist/types/components/sqm-tabs/sqm-tabs-view.d.ts +1 -0
  42. package/dist/types/components/sqm-tabs/sqm-tabs.d.ts +8 -0
  43. package/dist/types/components.d.ts +44 -4
  44. package/docs/docs.docx +0 -0
  45. package/docs/raisins.json +1 -1
  46. package/grapesjs/grapesjs.js +1 -1
  47. package/package.json +1 -1
  48. package/dist/esm-es5/ShadowViewAddon-3651cb42.js +0 -1
  49. package/dist/mint-components/p-16dba1eb.system.js +0 -1
  50. package/dist/mint-components/p-70c8fea5.system.entry.js +0 -1
  51. package/dist/mint-components/p-c060f770.system.entry.js +0 -1
  52. package/dist/mint-components/p-dcc81e90.entry.js +0 -1
@@ -4151,11 +4151,18 @@ export namespace Components {
4151
4151
  * @uiName Button background color
4152
4152
  * @uiWidget color
4153
4153
  * @format color
4154
+ * @uiGroup Style
4154
4155
  */
4155
4156
  "backgroundcolor"?: string;
4157
+ /**
4158
+ * @uiName Border
4159
+ * @uiGroup Style
4160
+ */
4161
+ "border"?: string;
4156
4162
  /**
4157
4163
  * Configure border radius with pixel amount
4158
4164
  * @uiName Border radius
4165
+ * @uiGroup Style
4159
4166
  */
4160
4167
  "borderradius"?: number;
4161
4168
  /**
@@ -4169,11 +4176,13 @@ export namespace Components {
4169
4176
  "disabled"?: boolean;
4170
4177
  /**
4171
4178
  * @uiName Hide icon
4179
+ * @uiGroup Style
4172
4180
  * @default
4173
4181
  */
4174
4182
  "hideicon"?: boolean;
4175
4183
  /**
4176
4184
  * @uiName Hide text
4185
+ * @uiGroup Style
4177
4186
  * @default
4178
4187
  */
4179
4188
  "hidetext"?: boolean;
@@ -4211,6 +4220,7 @@ export namespace Components {
4211
4220
  | "unknown";
4212
4221
  /**
4213
4222
  * @uiName Display pill
4223
+ * @uiGroup Style
4214
4224
  */
4215
4225
  "pill"?: boolean;
4216
4226
  /**
@@ -4234,21 +4244,24 @@ export namespace Components {
4234
4244
  * @uiType string
4235
4245
  * @uiEnum ["small", "medium", "large" ]
4236
4246
  * @uiEnumNames ["Small", "Medium", "Large"]
4247
+ * @uiGroup Style
4237
4248
  */
4238
4249
  "size"?: "small" | "medium" | "large";
4239
4250
  /**
4240
4251
  * @uiName Button text color
4241
4252
  * @uiWidget color
4242
4253
  * @format color
4254
+ * @uiGroup Style
4243
4255
  */
4244
4256
  "textcolor"?: string;
4245
4257
  /**
4246
4258
  * @uiType string
4247
4259
  * @uiName Button style
4248
- * @uiEnum ["primary" , "success", "info", "warning", "danger", "default", "text" ]
4249
- * @uiEnumNames ["Primary", "Success", "Info", "Warning", "Danger", "Default", "Text"]
4260
+ * @uiEnum ["primary", "secondary", "success", "info", "warning", "danger", "default", "text" ]
4261
+ * @uiEnumNames ["Primary", "Secondary", "Success", "Info", "Warning", "Danger", "Default", "Text"]
4250
4262
  */
4251
4263
  "type"?: | "primary"
4264
+ | "secondary"
4252
4265
  | "success"
4253
4266
  | "info"
4254
4267
  | "warning"
@@ -4485,6 +4498,13 @@ export namespace Components {
4485
4498
  * @uiEnumNames ["Left", "Right", "Bottom", "Top"]
4486
4499
  */
4487
4500
  "placement"?: "left" | "right" | "bottom" | "top";
4501
+ /**
4502
+ * Tab text color
4503
+ * @uiName Text color
4504
+ * @uiType string
4505
+ * @uiWidget color
4506
+ */
4507
+ "textColor"?: string;
4488
4508
  }
4489
4509
  interface SqmTaskCard {
4490
4510
  /**
@@ -11195,11 +11215,18 @@ declare namespace LocalJSX {
11195
11215
  * @uiName Button background color
11196
11216
  * @uiWidget color
11197
11217
  * @format color
11218
+ * @uiGroup Style
11198
11219
  */
11199
11220
  "backgroundcolor"?: string;
11221
+ /**
11222
+ * @uiName Border
11223
+ * @uiGroup Style
11224
+ */
11225
+ "border"?: string;
11200
11226
  /**
11201
11227
  * Configure border radius with pixel amount
11202
11228
  * @uiName Border radius
11229
+ * @uiGroup Style
11203
11230
  */
11204
11231
  "borderradius"?: number;
11205
11232
  /**
@@ -11213,11 +11240,13 @@ declare namespace LocalJSX {
11213
11240
  "disabled"?: boolean;
11214
11241
  /**
11215
11242
  * @uiName Hide icon
11243
+ * @uiGroup Style
11216
11244
  * @default
11217
11245
  */
11218
11246
  "hideicon"?: boolean;
11219
11247
  /**
11220
11248
  * @uiName Hide text
11249
+ * @uiGroup Style
11221
11250
  * @default
11222
11251
  */
11223
11252
  "hidetext"?: boolean;
@@ -11255,6 +11284,7 @@ declare namespace LocalJSX {
11255
11284
  | "unknown";
11256
11285
  /**
11257
11286
  * @uiName Display pill
11287
+ * @uiGroup Style
11258
11288
  */
11259
11289
  "pill"?: boolean;
11260
11290
  /**
@@ -11278,21 +11308,24 @@ declare namespace LocalJSX {
11278
11308
  * @uiType string
11279
11309
  * @uiEnum ["small", "medium", "large" ]
11280
11310
  * @uiEnumNames ["Small", "Medium", "Large"]
11311
+ * @uiGroup Style
11281
11312
  */
11282
11313
  "size"?: "small" | "medium" | "large";
11283
11314
  /**
11284
11315
  * @uiName Button text color
11285
11316
  * @uiWidget color
11286
11317
  * @format color
11318
+ * @uiGroup Style
11287
11319
  */
11288
11320
  "textcolor"?: string;
11289
11321
  /**
11290
11322
  * @uiType string
11291
11323
  * @uiName Button style
11292
- * @uiEnum ["primary" , "success", "info", "warning", "danger", "default", "text" ]
11293
- * @uiEnumNames ["Primary", "Success", "Info", "Warning", "Danger", "Default", "Text"]
11324
+ * @uiEnum ["primary", "secondary", "success", "info", "warning", "danger", "default", "text" ]
11325
+ * @uiEnumNames ["Primary", "Secondary", "Success", "Info", "Warning", "Danger", "Default", "Text"]
11294
11326
  */
11295
11327
  "type"?: | "primary"
11328
+ | "secondary"
11296
11329
  | "success"
11297
11330
  | "info"
11298
11331
  | "warning"
@@ -11529,6 +11562,13 @@ declare namespace LocalJSX {
11529
11562
  * @uiEnumNames ["Left", "Right", "Bottom", "Top"]
11530
11563
  */
11531
11564
  "placement"?: "left" | "right" | "bottom" | "top";
11565
+ /**
11566
+ * Tab text color
11567
+ * @uiName Text color
11568
+ * @uiType string
11569
+ * @uiWidget color
11570
+ */
11571
+ "textColor"?: string;
11532
11572
  }
11533
11573
  interface SqmTaskCard {
11534
11574
  /**
package/docs/docs.docx CHANGED
Binary file