@synergy-design-system/tokens 2.6.0 → 2.7.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [@synergy-design-system/tokens-v2.7.0](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/2.6.0...tokens/2.7.0) (2024-08-23)
2
+
3
+
4
+ ### Features
5
+
6
+ * ✨ syn-range ([#551](https://github.com/synergy-design-system/synergy-design-system/issues/551)) ([ee0f1fa](https://github.com/synergy-design-system/synergy-design-system/commit/ee0f1fa27dbaf8fe2fac840fba9cc2274715e377))
7
+
1
8
  # [@synergy-design-system/tokens-v2.6.0](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/2.5.0...tokens/2.6.0) (2024-08-19)
2
9
 
3
10
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.5.0
2
+ * @synergy-design-system/tokens version 2.6.0
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
 
package/dist/js/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.5.0
2
+ * @synergy-design-system/tokens version 2.6.0
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.5.0
2
+ * @synergy-design-system/tokens version 2.6.0
3
3
  * SICK Global UX Foundation
4
4
  */
5
5
  $SynFontSizeXSmall: var(--syn-font-size-x-small) !default;
@@ -1,8 +1,8 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.5.0
2
+ * @synergy-design-system/tokens version 2.6.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly
5
- * Generated on Mon, 19 Aug 2024 09:21:35 GMT
5
+ * Generated on Fri, 23 Aug 2024 07:34:05 GMT
6
6
  */
7
7
 
8
8
  :root, .syn-theme-dark {
@@ -1,8 +1,8 @@
1
1
  /**
2
- * @synergy-design-system/tokens version 2.5.0
2
+ * @synergy-design-system/tokens version 2.6.0
3
3
  * SICK Global UX Foundation
4
4
  * Do not edit directly
5
- * Generated on Mon, 19 Aug 2024 09:21:35 GMT
5
+ * Generated on Fri, 23 Aug 2024 07:34:05 GMT
6
6
  */
7
7
 
8
8
  :root, .syn-theme-light {
package/package.json CHANGED
@@ -101,7 +101,7 @@
101
101
  },
102
102
  "type": "module",
103
103
  "types": "./dist/js/index.d.ts",
104
- "version": "2.6.0",
104
+ "version": "2.7.0",
105
105
  "scripts": {
106
106
  "build": "pnpm clean && node scripts/build.js",
107
107
  "clean": "rimraf build",
@@ -1775,13 +1775,197 @@
1775
1775
  }
1776
1776
  },
1777
1777
  "range": {
1778
- "description": {
1779
- "value": "Ranges allow the user to select a single value within a given range using a slider.",
1780
- "type": "text"
1778
+ "default": {
1779
+ "description": {
1780
+ "value": "Ranges allow the user to select values within a given range using a thumb.",
1781
+ "type": "text"
1782
+ },
1783
+ "title": {
1784
+ "value": "Range",
1785
+ "type": "text"
1786
+ }
1781
1787
  },
1782
- "title": {
1783
- "value": "Range",
1784
- "type": "text"
1788
+ "labels": {
1789
+ "description": {
1790
+ "value": "Use the label attribute to give the range an accessible label. For labels that contain HTML, use the label slot instead.",
1791
+ "type": "text"
1792
+ },
1793
+ "title": {
1794
+ "value": "Labels",
1795
+ "type": "text"
1796
+ }
1797
+ },
1798
+ "help-text": {
1799
+ "description": {
1800
+ "value": "Add descriptive help text to a range with the help-text attribute. For help texts that contain HTML, use the help-text slot instead.",
1801
+ "type": "text"
1802
+ },
1803
+ "title": {
1804
+ "value": "Help Text",
1805
+ "type": "text"
1806
+ }
1807
+ },
1808
+ "focus": {
1809
+ "title": {
1810
+ "value": "Focus / Active",
1811
+ "type": "text"
1812
+ },
1813
+ "description": {
1814
+ "value": "The focus event gives the user feedback that the Range has been focused by the keyboard interaction or active click from the user.",
1815
+ "type": "text"
1816
+ }
1817
+ },
1818
+ "size": {
1819
+ "title": {
1820
+ "value": "Sizes",
1821
+ "type": "text"
1822
+ },
1823
+ "description": {
1824
+ "value": "Use the size attribute to change a range’s size.",
1825
+ "type": "text"
1826
+ }
1827
+ },
1828
+ "invalid": {
1829
+ "title": {
1830
+ "value": "Invalid",
1831
+ "type": "text"
1832
+ },
1833
+ "description": {
1834
+ "value": "The invalid status is used to warn the user that the input is invalid. As range validation is not supported by the browser, you will need to implement your own validation logic.",
1835
+ "type": "text"
1836
+ }
1837
+ },
1838
+ "disabled": {
1839
+ "description": {
1840
+ "value": "Use the disabled attribute to disable a range.",
1841
+ "type": "text"
1842
+ },
1843
+ "title": {
1844
+ "value": "Disabled",
1845
+ "type": "text"
1846
+ }
1847
+ },
1848
+ "prefix-suffix": {
1849
+ "description": {
1850
+ "value": "Add any element to the start and end of range items using the prefix and suffix slots.",
1851
+ "type": "text"
1852
+ },
1853
+ "title": {
1854
+ "value": "Prefix and Suffix",
1855
+ "type": "text"
1856
+ }
1857
+ },
1858
+ "custom-track-colors": {
1859
+ "description": {
1860
+ "value": "You can customize the active and inactive portions of the track using the --track-color-active and --track-color-inactive custom properties.",
1861
+ "type": "text"
1862
+ },
1863
+ "title": {
1864
+ "value": "Custom Track Colors",
1865
+ "type": "text"
1866
+ }
1867
+ },
1868
+ "custom-track-offset": {
1869
+ "description": {
1870
+ "value": "You can customize the initial offset of the active track using the --track-active-offset custom property.",
1871
+ "type": "text"
1872
+ },
1873
+ "title": {
1874
+ "value": "Custom Track Offset",
1875
+ "type": "text"
1876
+ }
1877
+ },
1878
+ "multi-knob": {
1879
+ "description": {
1880
+ "value": "You can add multiple range-thumbs to your range.",
1881
+ "type": "text"
1882
+ },
1883
+ "title": {
1884
+ "value": "Multi thumb",
1885
+ "type": "text"
1886
+ }
1887
+ },
1888
+ "multi-knob-restrict-movement": {
1889
+ "description": {
1890
+ "value": "You can prevent the thumbs from overlapping by listening to the provided `syn-move` event.",
1891
+ "type": "text"
1892
+ },
1893
+ "title": {
1894
+ "value": "Multi thumb with restricted movement",
1895
+ "type": "text"
1896
+ }
1897
+ },
1898
+ "ticks": {
1899
+ "default": {
1900
+ "description": {
1901
+ "value": "Use the ticks slot to insert ticks or groups with ticks to improve positioning.",
1902
+ "type": "text"
1903
+ },
1904
+ "title": {
1905
+ "value": "Ticks",
1906
+ "type": "text"
1907
+ }
1908
+ },
1909
+ "label": {
1910
+ "title": {
1911
+ "value": "Labels",
1912
+ "type": "text"
1913
+ },
1914
+ "description": {
1915
+ "value": "Use the default slot to give the tick a label.",
1916
+ "type": "text"
1917
+ }
1918
+ },
1919
+ "grouping": {
1920
+ "title": {
1921
+ "value": "Grouping",
1922
+ "type": "text"
1923
+ },
1924
+ "description": {
1925
+ "value": "Grouping multiple ticks can be used as a scale. This can be used for uneven distributions as well.",
1926
+ "type": "text"
1927
+ }
1928
+ },
1929
+ "subdivision": {
1930
+ "title": {
1931
+ "value": "Subdivision Ticks",
1932
+ "type": "text"
1933
+ },
1934
+ "description": {
1935
+ "value": "It is possible to divide the space between major ticks for finer scale readings.",
1936
+ "type": "text"
1937
+ }
1938
+ }
1939
+ },
1940
+ "tooltip-placement": {
1941
+ "description": {
1942
+ "value": "By default, the tooltip is shown on top. Set tooltip-placement to bottom to show it below the range.",
1943
+ "type": "text"
1944
+ },
1945
+ "title": {
1946
+ "value": "Tooltip Placement",
1947
+ "type": "text"
1948
+ }
1949
+ },
1950
+ "tooltip-disabled": {
1951
+ "description": {
1952
+ "value": "To disable the tooltip, set tooltip-placement to none.",
1953
+ "type": "text"
1954
+ },
1955
+ "title": {
1956
+ "value": "Disable the Tooltip",
1957
+ "type": "text"
1958
+ }
1959
+ },
1960
+ "tooltip-formatter": {
1961
+ "description": {
1962
+ "value": "You can change the tooltip’s content by setting the tooltipFormatter property to a function that accepts the range’s value as an argument.",
1963
+ "type": "text"
1964
+ },
1965
+ "title": {
1966
+ "value": "Custom Tooltip Formatter",
1967
+ "type": "text"
1968
+ }
1785
1969
  }
1786
1970
  },
1787
1971
  "rating": {