@synergy-design-system/tokens 2.4.0 → 2.6.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 +14 -0
- package/dist/js/index.d.ts +1 -1
- package/dist/js/index.js +1 -1
- package/dist/scss/_tokens.scss +1 -1
- package/dist/themes/dark.css +2 -2
- package/dist/themes/light.css +2 -2
- package/package.json +1 -1
- package/src/figma-tokens/_docs.json +165 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@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
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* ✨ create syn-file ([#563](https://github.com/synergy-design-system/synergy-design-system/issues/563)) ([181f121](https://github.com/synergy-design-system/synergy-design-system/commit/181f121ee87e43ba0381ec4288470d3414467d8e))
|
|
7
|
+
|
|
8
|
+
# [@synergy-design-system/tokens-v2.5.0](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/2.4.0...tokens/2.5.0) (2024-07-11)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* ✨ add table stylings ([#522](https://github.com/synergy-design-system/synergy-design-system/issues/522)) ([18a030b](https://github.com/synergy-design-system/synergy-design-system/commit/18a030be92344a9f0d038e5518c8347f0fbebb4e))
|
|
14
|
+
|
|
1
15
|
# [@synergy-design-system/tokens-v2.4.0](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/2.3.1...tokens/2.4.0) (2024-07-01)
|
|
2
16
|
|
|
3
17
|
|
package/dist/js/index.d.ts
CHANGED
package/dist/js/index.js
CHANGED
package/dist/scss/_tokens.scss
CHANGED
package/dist/themes/dark.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @synergy-design-system/tokens version 2.
|
|
2
|
+
* @synergy-design-system/tokens version 2.5.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
* Do not edit directly
|
|
5
|
-
* Generated on Mon,
|
|
5
|
+
* Generated on Mon, 19 Aug 2024 09:21:35 GMT
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
:root, .syn-theme-dark {
|
package/dist/themes/light.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @synergy-design-system/tokens version 2.
|
|
2
|
+
* @synergy-design-system/tokens version 2.5.0
|
|
3
3
|
* SICK Global UX Foundation
|
|
4
4
|
* Do not edit directly
|
|
5
|
-
* Generated on Mon,
|
|
5
|
+
* Generated on Mon, 19 Aug 2024 09:21:35 GMT
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
8
|
:root, .syn-theme-light {
|
package/package.json
CHANGED
|
@@ -960,6 +960,108 @@
|
|
|
960
960
|
}
|
|
961
961
|
}
|
|
962
962
|
},
|
|
963
|
+
"file": {
|
|
964
|
+
"default": {
|
|
965
|
+
"title": {
|
|
966
|
+
"value": "File",
|
|
967
|
+
"type": "text"
|
|
968
|
+
},
|
|
969
|
+
"description": {
|
|
970
|
+
"value": "File control is a component with which a user can select a local file. It shows the value of the selected file.",
|
|
971
|
+
"type": "text"
|
|
972
|
+
}
|
|
973
|
+
},
|
|
974
|
+
"label": {
|
|
975
|
+
"title": {
|
|
976
|
+
"value": "Labels",
|
|
977
|
+
"type": "text"
|
|
978
|
+
},
|
|
979
|
+
"description": {
|
|
980
|
+
"value": "Use the label attribute to give the file selector an accessible label. For labels that contain HTML, use the label slot instead.",
|
|
981
|
+
"type": "text"
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
"help-text": {
|
|
985
|
+
"title": {
|
|
986
|
+
"value": "Help Text",
|
|
987
|
+
"type": "text"
|
|
988
|
+
},
|
|
989
|
+
"description": {
|
|
990
|
+
"value": "Add descriptive help text to a file selector with the help-text attribute. For help texts that contain HTML, use the help-text slot instead.",
|
|
991
|
+
"type": "text"
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
"multiple": {
|
|
995
|
+
"title": {
|
|
996
|
+
"value": "Multiple",
|
|
997
|
+
"type": "text"
|
|
998
|
+
},
|
|
999
|
+
"description": {
|
|
1000
|
+
"value": "Use the multiple attribute to allow the selection of multiple files.\n\nFigma only: Override the button/droparea and value text directly, to indicate that multiple files are uploaded (“file” -> “files”)",
|
|
1001
|
+
"type": "text"
|
|
1002
|
+
}
|
|
1003
|
+
},
|
|
1004
|
+
"hide-value": {
|
|
1005
|
+
"title": {
|
|
1006
|
+
"value": "Hide Value",
|
|
1007
|
+
"type": "text"
|
|
1008
|
+
},
|
|
1009
|
+
"description": {
|
|
1010
|
+
"value": "There might be situations, where you don’t want to show the selected value (e. g. when something is automatically uploading).",
|
|
1011
|
+
"type": "text"
|
|
1012
|
+
}
|
|
1013
|
+
},
|
|
1014
|
+
"disabled": {
|
|
1015
|
+
"title": {
|
|
1016
|
+
"value": "Disabled",
|
|
1017
|
+
"type": "text"
|
|
1018
|
+
},
|
|
1019
|
+
"description": {
|
|
1020
|
+
"value": "Use the disabled attribute to disable a file input.",
|
|
1021
|
+
"type": "text"
|
|
1022
|
+
}
|
|
1023
|
+
},
|
|
1024
|
+
"sizes": {
|
|
1025
|
+
"title": {
|
|
1026
|
+
"value": "Sizes",
|
|
1027
|
+
"type": "text"
|
|
1028
|
+
},
|
|
1029
|
+
"description": {
|
|
1030
|
+
"value": "Use the size attribute to change a file uploads size.",
|
|
1031
|
+
"type": "text"
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
"droparea": {
|
|
1035
|
+
"title": {
|
|
1036
|
+
"value": "Droparea",
|
|
1037
|
+
"type": "text"
|
|
1038
|
+
},
|
|
1039
|
+
"description": {
|
|
1040
|
+
"value": "Use the droparea attribute to switch to a full-width button with a drop area.",
|
|
1041
|
+
"type": "text"
|
|
1042
|
+
}
|
|
1043
|
+
},
|
|
1044
|
+
"focus": {
|
|
1045
|
+
"title": {
|
|
1046
|
+
"value": "Focus / Active",
|
|
1047
|
+
"type": "text"
|
|
1048
|
+
},
|
|
1049
|
+
"description": {
|
|
1050
|
+
"value": "The focus event gives the user feedback that the Dropzone has been focused by the keyboard interaction and that the syn-file component is ready for use.",
|
|
1051
|
+
"type": "text"
|
|
1052
|
+
}
|
|
1053
|
+
},
|
|
1054
|
+
"invalid": {
|
|
1055
|
+
"title": {
|
|
1056
|
+
"value": "Invalid",
|
|
1057
|
+
"type": "text"
|
|
1058
|
+
},
|
|
1059
|
+
"description": {
|
|
1060
|
+
"value": "The invalid status is used to warn the user that the syn-file is invalid. For example, if the entry of text is mandatory and nothing has been entered or if a text has been entered that does not have the correct format.",
|
|
1061
|
+
"type": "text"
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
},
|
|
963
1065
|
"format-bytes": {
|
|
964
1066
|
"description": {
|
|
965
1067
|
"value": "Formats a number as a human readable bytes value.",
|
|
@@ -2514,6 +2616,16 @@
|
|
|
2514
2616
|
"value": "Contact Form",
|
|
2515
2617
|
"type": "text"
|
|
2516
2618
|
}
|
|
2619
|
+
},
|
|
2620
|
+
"table": {
|
|
2621
|
+
"title": {
|
|
2622
|
+
"value": "Table",
|
|
2623
|
+
"type": "text"
|
|
2624
|
+
},
|
|
2625
|
+
"description": {
|
|
2626
|
+
"value": "These examples demonstrate the usage of the syn-table-cell component in various contexts. The examples are intended solely for illustrating how syn-table-cell can be used to style tables.",
|
|
2627
|
+
"type": "text"
|
|
2628
|
+
}
|
|
2517
2629
|
}
|
|
2518
2630
|
},
|
|
2519
2631
|
"nav-item": {
|
|
@@ -2751,6 +2863,58 @@
|
|
|
2751
2863
|
"type": "text"
|
|
2752
2864
|
}
|
|
2753
2865
|
}
|
|
2866
|
+
},
|
|
2867
|
+
"table": {
|
|
2868
|
+
"default": {
|
|
2869
|
+
"title": {
|
|
2870
|
+
"value": "Table-cell",
|
|
2871
|
+
"type": "text"
|
|
2872
|
+
},
|
|
2873
|
+
"description": {
|
|
2874
|
+
"value": "The syn-table-cell component offers basic styling for table cells. A table can be created by combining several cell components into columns and rows.\n\n DEV: Instead of a component we have multiple classes, to apply the table styling. More complex tables, such as applying the shadow styling and adding scrolling behavior, require additional CSS and JavaScript Code. See the table templates for examples.",
|
|
2875
|
+
"type": "text"
|
|
2876
|
+
}
|
|
2877
|
+
},
|
|
2878
|
+
"header": {
|
|
2879
|
+
"title": {
|
|
2880
|
+
"value": "Header",
|
|
2881
|
+
"type": "text"
|
|
2882
|
+
},
|
|
2883
|
+
"description": {
|
|
2884
|
+
"value": "Use the cell header attribute to help the user identify the top of the table. Table header can be used as column header and row Header, but not at the same time.",
|
|
2885
|
+
"type": "text"
|
|
2886
|
+
}
|
|
2887
|
+
},
|
|
2888
|
+
"alternating": {
|
|
2889
|
+
"title": {
|
|
2890
|
+
"value": "Alternating",
|
|
2891
|
+
"type": "text"
|
|
2892
|
+
},
|
|
2893
|
+
"description": {
|
|
2894
|
+
"value": "The alternating attribute helps the user to visually separate the rows, even when scrolling horizontally, and helps to compare the data.",
|
|
2895
|
+
"type": "text"
|
|
2896
|
+
}
|
|
2897
|
+
},
|
|
2898
|
+
"border": {
|
|
2899
|
+
"title": {
|
|
2900
|
+
"value": "Border",
|
|
2901
|
+
"type": "text"
|
|
2902
|
+
},
|
|
2903
|
+
"description": {
|
|
2904
|
+
"value": "Use the border attribute to define different borders in a cell. Borders can also be combined.",
|
|
2905
|
+
"type": "text"
|
|
2906
|
+
}
|
|
2907
|
+
},
|
|
2908
|
+
"scroll": {
|
|
2909
|
+
"title": {
|
|
2910
|
+
"value": "Scrolling Behaviour",
|
|
2911
|
+
"type": "text"
|
|
2912
|
+
},
|
|
2913
|
+
"description": {
|
|
2914
|
+
"value": "If the table contains a scrolling behavior the table cell gets a shadow.",
|
|
2915
|
+
"type": "text"
|
|
2916
|
+
}
|
|
2917
|
+
}
|
|
2754
2918
|
}
|
|
2755
2919
|
},
|
|
2756
2920
|
"assets": {
|
|
@@ -3135,4 +3299,4 @@
|
|
|
3135
3299
|
}
|
|
3136
3300
|
}
|
|
3137
3301
|
}
|
|
3138
|
-
}
|
|
3302
|
+
}
|