@synergy-design-system/tokens 2.20.1 → 2.21.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 +7 -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 +1 -1
- package/dist/themes/light.css +1 -1
- package/package.json +1 -1
- package/src/figma-tokens/_docs.json +41 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@synergy-design-system/tokens-v2.21.0](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/2.20.1...tokens/2.21.0) (2025-07-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* ✨ Add restricted options to syn-combobox ([#914](https://github.com/synergy-design-system/synergy-design-system/issues/914)) ([d1b2e4d](https://github.com/synergy-design-system/synergy-design-system/commit/d1b2e4d0d63bf9f132fa179cc3954e9b21b4ea72))
|
|
7
|
+
|
|
1
8
|
# [@synergy-design-system/tokens-v2.20.1](https://github.com/synergy-design-system/synergy-design-system/compare/tokens/2.20.0...tokens/2.20.1) (2025-06-20)
|
|
2
9
|
|
|
3
10
|
|
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
package/dist/themes/light.css
CHANGED
package/package.json
CHANGED
|
@@ -3333,6 +3333,46 @@
|
|
|
3333
3333
|
"type": "text"
|
|
3334
3334
|
}
|
|
3335
3335
|
},
|
|
3336
|
+
"multiple": {
|
|
3337
|
+
"title": {
|
|
3338
|
+
"value": "Multiple",
|
|
3339
|
+
"type": "text"
|
|
3340
|
+
},
|
|
3341
|
+
"description": {
|
|
3342
|
+
"value": "To allow multiple options to be selected, use the multiple attribute. It’s a good practice to use clearable when this option is enabled. To set multiple values at once, set value to a space-delimited list of values. \n\nUse the max-options-visible attribute to define the maximum number of selected options that will be visible. After the maximum, \"+n\" will be shown to indicate the number of additional items that are selected.",
|
|
3343
|
+
"type": "text"
|
|
3344
|
+
}
|
|
3345
|
+
},
|
|
3346
|
+
"initial-values": {
|
|
3347
|
+
"title": {
|
|
3348
|
+
"value": "Setting initial values",
|
|
3349
|
+
"type": "text"
|
|
3350
|
+
},
|
|
3351
|
+
"description": {
|
|
3352
|
+
"value": "Use the value attribute to set the initial selection.\n\nWhen using multiple, the value attribute uses space-delimited values to select more than one option. Because of this, <syn-option> values cannot contain spaces. If you’re accessing the value property through Javascript, it will be an array.",
|
|
3353
|
+
"type": "text"
|
|
3354
|
+
}
|
|
3355
|
+
},
|
|
3356
|
+
"restrict-options": {
|
|
3357
|
+
"title": {
|
|
3358
|
+
"value": "Restrict options",
|
|
3359
|
+
"type": "text"
|
|
3360
|
+
},
|
|
3361
|
+
"description": {
|
|
3362
|
+
"value": "This restricts the combobox to only allow selections from the available options. Users cannot enter custom values that are not in the list.",
|
|
3363
|
+
"type": "text"
|
|
3364
|
+
}
|
|
3365
|
+
},
|
|
3366
|
+
"no-results": {
|
|
3367
|
+
"title": {
|
|
3368
|
+
"value": "No results found",
|
|
3369
|
+
"type": "text"
|
|
3370
|
+
},
|
|
3371
|
+
"description": {
|
|
3372
|
+
"value": "A “No results found” message is displayed, when the search term doesn’t match the options.",
|
|
3373
|
+
"type": "text"
|
|
3374
|
+
}
|
|
3375
|
+
},
|
|
3336
3376
|
"size": {
|
|
3337
3377
|
"title": {
|
|
3338
3378
|
"value": "Sizes",
|
|
@@ -4057,4 +4097,4 @@
|
|
|
4057
4097
|
}
|
|
4058
4098
|
}
|
|
4059
4099
|
}
|
|
4060
|
-
}
|
|
4100
|
+
}
|