@saasquatch/mint-components 1.15.0-11 → 1.15.0-13
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-9618130b.js → ShadowViewAddon-d2ed86e8.js} +9 -4
- 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 +17 -11
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +39 -1
- package/dist/collection/components/sqm-leaderboard/Leaderboard.stories.js +37 -0
- package/dist/collection/components/sqm-leaderboard/sqm-leaderboard-view.js +9 -4
- package/dist/collection/components/sqm-leaderboard/sqm-leaderboard.js +193 -56
- package/dist/collection/components/sqm-text/sqm-text.js +4 -7
- package/dist/collection/components/sqm-timeline/sqm-timeline-entry-view.js +1 -1
- package/dist/collection/components/sqm-timeline/sqm-timeline-entry.js +0 -1
- package/dist/esm/{ShadowViewAddon-8f268346.js → ShadowViewAddon-3651cb42.js} +9 -4
- package/dist/esm/loader.js +1 -1
- package/dist/esm/mint-components.js +1 -1
- package/dist/esm/sqm-big-stat_41.entry.js +17 -11
- package/dist/esm/sqm-stencilbook.entry.js +39 -1
- package/dist/esm-es5/ShadowViewAddon-3651cb42.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-stencilbook.entry.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/p-16dba1eb.system.js +1 -0
- package/dist/mint-components/p-2e3acbb8.system.entry.js +1 -0
- package/dist/mint-components/{p-3f3ae257.entry.js → p-60e72631.entry.js} +1 -1
- package/dist/mint-components/p-70c8fea5.system.entry.js +1 -0
- package/dist/mint-components/{p-3109f2d2.js → p-a6ca754f.js} +1 -1
- package/dist/mint-components/{p-8e876dde.entry.js → p-be4b9c0e.entry.js} +7 -7
- package/dist/mint-components/p-ee06426a.system.js +1 -1
- package/dist/types/components/sqm-leaderboard/Leaderboard.stories.d.ts +1 -0
- package/dist/types/components/sqm-leaderboard/sqm-leaderboard-view.d.ts +6 -1
- package/dist/types/components/sqm-leaderboard/sqm-leaderboard.d.ts +48 -12
- package/dist/types/components/sqm-leaderboard/useLeaderboard.d.ts +6 -0
- package/dist/types/components/sqm-text/sqm-text.d.ts +3 -4
- package/dist/types/components.d.ts +79 -9
- 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/ShadowViewAddon-8f268346.js +0 -1
- package/dist/mint-components/p-70c41f97.system.js +0 -1
- package/dist/mint-components/p-c571bc61.system.entry.js +0 -1
- package/dist/mint-components/p-f219e877.system.entry.js +0 -1
|
@@ -1502,6 +1502,26 @@ export namespace Components {
|
|
|
1502
1502
|
* @uiName Unknown user text
|
|
1503
1503
|
*/
|
|
1504
1504
|
"anonymousUser": string;
|
|
1505
|
+
/**
|
|
1506
|
+
* Changes the background color of the leaderboard.
|
|
1507
|
+
* @uiName Background Color
|
|
1508
|
+
* @uiWidget color
|
|
1509
|
+
* @uiGroup Style
|
|
1510
|
+
*/
|
|
1511
|
+
"background"?: string;
|
|
1512
|
+
/**
|
|
1513
|
+
* Changes the border color of the table rows.
|
|
1514
|
+
* @uiName Border Color
|
|
1515
|
+
* @uiWidget color
|
|
1516
|
+
* @uiGroup Style
|
|
1517
|
+
*/
|
|
1518
|
+
"borderColor"?: string;
|
|
1519
|
+
/**
|
|
1520
|
+
* Leaderboard border radius in pixels.
|
|
1521
|
+
* @uiName Border Radius
|
|
1522
|
+
* @uiGroup Style
|
|
1523
|
+
*/
|
|
1524
|
+
"borderRadius"?: number;
|
|
1505
1525
|
/**
|
|
1506
1526
|
* @undocumented
|
|
1507
1527
|
* @uiType object
|
|
@@ -1570,15 +1590,31 @@ export namespace Components {
|
|
|
1570
1590
|
* @uiName Stats column heading
|
|
1571
1591
|
*/
|
|
1572
1592
|
"statsheading": string;
|
|
1593
|
+
/**
|
|
1594
|
+
* Text color of the leaderboard.
|
|
1595
|
+
* @uiName Text Color
|
|
1596
|
+
* @uiWidget color
|
|
1597
|
+
* @uiGroup Style
|
|
1598
|
+
*/
|
|
1599
|
+
"textColor"?: string;
|
|
1573
1600
|
/**
|
|
1574
1601
|
* @uiName User column heading
|
|
1575
1602
|
*/
|
|
1576
1603
|
"usersheading": string;
|
|
1577
1604
|
/**
|
|
1605
|
+
* Changes the background color of the viewing user row in the leaderboard.
|
|
1606
|
+
* @uiName Viewing User Highlight Color
|
|
1578
1607
|
* @uiWidget color
|
|
1579
|
-
* @
|
|
1608
|
+
* @uiGroup Style
|
|
1580
1609
|
*/
|
|
1581
|
-
"viewingUserHighlightColor"
|
|
1610
|
+
"viewingUserHighlightColor"?: string;
|
|
1611
|
+
/**
|
|
1612
|
+
* Changes the text color of the viewing user row in the leaderboard.
|
|
1613
|
+
* @uiName Viewing User Text Color
|
|
1614
|
+
* @uiWidget color
|
|
1615
|
+
* @uiGroup Style
|
|
1616
|
+
*/
|
|
1617
|
+
"viewingUserHighlightTextColor"?: string;
|
|
1582
1618
|
/**
|
|
1583
1619
|
* @uiName Viewing user text
|
|
1584
1620
|
*/
|
|
@@ -5871,9 +5907,8 @@ export namespace Components {
|
|
|
5871
5907
|
"fontSize"?: number;
|
|
5872
5908
|
/**
|
|
5873
5909
|
* @uiName Text Color
|
|
5874
|
-
* @
|
|
5875
|
-
* @
|
|
5876
|
-
* @uiEnumNames ["Primary", "Secondary", "Text"]
|
|
5910
|
+
* @uiWidget color
|
|
5911
|
+
* @format color
|
|
5877
5912
|
*/
|
|
5878
5913
|
"textColor"?: string;
|
|
5879
5914
|
}
|
|
@@ -8535,6 +8570,26 @@ declare namespace LocalJSX {
|
|
|
8535
8570
|
* @uiName Unknown user text
|
|
8536
8571
|
*/
|
|
8537
8572
|
"anonymousUser"?: string;
|
|
8573
|
+
/**
|
|
8574
|
+
* Changes the background color of the leaderboard.
|
|
8575
|
+
* @uiName Background Color
|
|
8576
|
+
* @uiWidget color
|
|
8577
|
+
* @uiGroup Style
|
|
8578
|
+
*/
|
|
8579
|
+
"background"?: string;
|
|
8580
|
+
/**
|
|
8581
|
+
* Changes the border color of the table rows.
|
|
8582
|
+
* @uiName Border Color
|
|
8583
|
+
* @uiWidget color
|
|
8584
|
+
* @uiGroup Style
|
|
8585
|
+
*/
|
|
8586
|
+
"borderColor"?: string;
|
|
8587
|
+
/**
|
|
8588
|
+
* Leaderboard border radius in pixels.
|
|
8589
|
+
* @uiName Border Radius
|
|
8590
|
+
* @uiGroup Style
|
|
8591
|
+
*/
|
|
8592
|
+
"borderRadius"?: number;
|
|
8538
8593
|
/**
|
|
8539
8594
|
* @undocumented
|
|
8540
8595
|
* @uiType object
|
|
@@ -8603,15 +8658,31 @@ declare namespace LocalJSX {
|
|
|
8603
8658
|
* @uiName Stats column heading
|
|
8604
8659
|
*/
|
|
8605
8660
|
"statsheading"?: string;
|
|
8661
|
+
/**
|
|
8662
|
+
* Text color of the leaderboard.
|
|
8663
|
+
* @uiName Text Color
|
|
8664
|
+
* @uiWidget color
|
|
8665
|
+
* @uiGroup Style
|
|
8666
|
+
*/
|
|
8667
|
+
"textColor"?: string;
|
|
8606
8668
|
/**
|
|
8607
8669
|
* @uiName User column heading
|
|
8608
8670
|
*/
|
|
8609
8671
|
"usersheading"?: string;
|
|
8610
8672
|
/**
|
|
8673
|
+
* Changes the background color of the viewing user row in the leaderboard.
|
|
8674
|
+
* @uiName Viewing User Highlight Color
|
|
8611
8675
|
* @uiWidget color
|
|
8612
|
-
* @
|
|
8676
|
+
* @uiGroup Style
|
|
8613
8677
|
*/
|
|
8614
8678
|
"viewingUserHighlightColor"?: string;
|
|
8679
|
+
/**
|
|
8680
|
+
* Changes the text color of the viewing user row in the leaderboard.
|
|
8681
|
+
* @uiName Viewing User Text Color
|
|
8682
|
+
* @uiWidget color
|
|
8683
|
+
* @uiGroup Style
|
|
8684
|
+
*/
|
|
8685
|
+
"viewingUserHighlightTextColor"?: string;
|
|
8615
8686
|
/**
|
|
8616
8687
|
* @uiName Viewing user text
|
|
8617
8688
|
*/
|
|
@@ -12880,9 +12951,8 @@ declare namespace LocalJSX {
|
|
|
12880
12951
|
"fontSize"?: number;
|
|
12881
12952
|
/**
|
|
12882
12953
|
* @uiName Text Color
|
|
12883
|
-
* @
|
|
12884
|
-
* @
|
|
12885
|
-
* @uiEnumNames ["Primary", "Secondary", "Text"]
|
|
12954
|
+
* @uiWidget color
|
|
12955
|
+
* @format color
|
|
12886
12956
|
*/
|
|
12887
12957
|
"textColor"?: string;
|
|
12888
12958
|
}
|
package/docs/docs.docx
CHANGED
|
Binary file
|