@synergy-design-system/vue 2.31.0-numeric.1 → 2.31.0-numeric.2
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/components/SynVueInput.vue.d.ts +36 -0
- package/dist/components/SynVueInput.vue.js +3 -0
- package/package.json +2 -2
- package/src/components/SynVueAlert.vue +1 -1
- package/src/components/SynVueBadge.vue +1 -1
- package/src/components/SynVueBreadcrumb.vue +1 -1
- package/src/components/SynVueBreadcrumbItem.vue +1 -1
- package/src/components/SynVueButton.vue +1 -1
- package/src/components/SynVueButtonGroup.vue +1 -1
- package/src/components/SynVueCard.vue +1 -1
- package/src/components/SynVueCheckbox.vue +1 -1
- package/src/components/SynVueDetails.vue +1 -1
- package/src/components/SynVueDialog.vue +1 -1
- package/src/components/SynVueDivider.vue +1 -1
- package/src/components/SynVueDrawer.vue +1 -1
- package/src/components/SynVueDropdown.vue +1 -1
- package/src/components/SynVueFile.vue +1 -0
- package/src/components/SynVueIcon.vue +1 -1
- package/src/components/SynVueIconButton.vue +1 -1
- package/src/components/SynVueInput.vue +22 -1
- package/src/components/SynVueMenu.vue +1 -1
- package/src/components/SynVueMenuItem.vue +1 -1
- package/src/components/SynVueMenuLabel.vue +1 -1
- package/src/components/SynVueNavItem.vue +1 -0
- package/src/components/SynVueOption.vue +1 -1
- package/src/components/SynVuePopup.vue +1 -1
- package/src/components/SynVuePrioNav.vue +1 -0
- package/src/components/SynVueProgressBar.vue +1 -1
- package/src/components/SynVueProgressRing.vue +1 -1
- package/src/components/SynVueRadio.vue +1 -1
- package/src/components/SynVueRadioButton.vue +1 -1
- package/src/components/SynVueRadioGroup.vue +1 -1
- package/src/components/SynVueRangeTick.vue +1 -1
- package/src/components/SynVueSelect.vue +1 -1
- package/src/components/SynVueSpinner.vue +1 -1
- package/src/components/SynVueSwitch.vue +1 -1
- package/src/components/SynVueTab.vue +1 -1
- package/src/components/SynVueTabGroup.vue +1 -1
- package/src/components/SynVueTabPanel.vue +1 -1
- package/src/components/SynVueTag.vue +1 -1
- package/src/components/SynVueTextarea.vue +1 -1
- package/src/components/SynVueTooltip.vue +1 -1
- package/src/components/SynVueValidate.vue +1 -1
|
@@ -139,12 +139,23 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
139
139
|
*/
|
|
140
140
|
inputmode?: SynInput["inputmode"];
|
|
141
141
|
/**
|
|
142
|
+
* The minimal amount of fraction digits to use for numeric values.
|
|
143
|
+
Used to format the number when the input type is `number` and `NumericStrategy.enableNumberFormat` is set to `true`.
|
|
144
|
+
*/
|
|
145
|
+
minFractionDigits?: SynInput["minFractionDigits"];
|
|
146
|
+
/**
|
|
147
|
+
* The maximal amount of fraction digits to use for numeric values.
|
|
148
|
+
Used to format the number when the input type is `number` and `NumericStrategy.enableNumberFormat` is set to `true`.
|
|
149
|
+
*/
|
|
150
|
+
maxFractionDigits?: SynInput["maxFractionDigits"];
|
|
151
|
+
/**
|
|
142
152
|
* Defines the strategy for handling numbers in the numeric input.
|
|
143
153
|
This is used to determine how the input behaves when the user interacts with it.
|
|
144
154
|
|
|
145
155
|
Includes the following configuration options:
|
|
146
156
|
|
|
147
157
|
- **autoClamp**: If true, the input will clamp the value to the min and max attributes.
|
|
158
|
+
- **enableNumberFormat**: If true, the input will format the value using a `NumberFormatter`.
|
|
148
159
|
- **noStepAlign**: If true, the input will not align the value to the step attribute.
|
|
149
160
|
- **noStepValidation**: If true, the input will not validate the value against the step attribute.
|
|
150
161
|
|
|
@@ -155,11 +166,18 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
155
166
|
- Values are clamped to the nearest min or max value.
|
|
156
167
|
- Stepping is inclusive to the provided min and max values.
|
|
157
168
|
- Provided stepping is no longer used in validation.
|
|
169
|
+
- Advanced number formatting is enabled.
|
|
158
170
|
- An object that matches the `NumericStrategy` type.
|
|
159
171
|
* Note this can only be set via `property`, not as an `attribute`!
|
|
160
172
|
*/
|
|
161
173
|
numericStrategy?: SynInput["numericStrategy"];
|
|
162
174
|
/**
|
|
175
|
+
* Optional options that should be passed to the `NumberFormatter` when formatting the value.
|
|
176
|
+
This is used to format the number when the input type is `number` and `NumericStrategy.enableNumberFormat` is set to `true`.
|
|
177
|
+
Note this can only be set via `property`, not as an `attribute`!
|
|
178
|
+
*/
|
|
179
|
+
numberFormatterOptions?: SynInput["numberFormatterOptions"];
|
|
180
|
+
/**
|
|
163
181
|
* Support for two way data binding
|
|
164
182
|
*/
|
|
165
183
|
modelValue?: SynInput["value"];
|
|
@@ -307,12 +325,23 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
307
325
|
*/
|
|
308
326
|
inputmode?: SynInput["inputmode"];
|
|
309
327
|
/**
|
|
328
|
+
* The minimal amount of fraction digits to use for numeric values.
|
|
329
|
+
Used to format the number when the input type is `number` and `NumericStrategy.enableNumberFormat` is set to `true`.
|
|
330
|
+
*/
|
|
331
|
+
minFractionDigits?: SynInput["minFractionDigits"];
|
|
332
|
+
/**
|
|
333
|
+
* The maximal amount of fraction digits to use for numeric values.
|
|
334
|
+
Used to format the number when the input type is `number` and `NumericStrategy.enableNumberFormat` is set to `true`.
|
|
335
|
+
*/
|
|
336
|
+
maxFractionDigits?: SynInput["maxFractionDigits"];
|
|
337
|
+
/**
|
|
310
338
|
* Defines the strategy for handling numbers in the numeric input.
|
|
311
339
|
This is used to determine how the input behaves when the user interacts with it.
|
|
312
340
|
|
|
313
341
|
Includes the following configuration options:
|
|
314
342
|
|
|
315
343
|
- **autoClamp**: If true, the input will clamp the value to the min and max attributes.
|
|
344
|
+
- **enableNumberFormat**: If true, the input will format the value using a `NumberFormatter`.
|
|
316
345
|
- **noStepAlign**: If true, the input will not align the value to the step attribute.
|
|
317
346
|
- **noStepValidation**: If true, the input will not validate the value against the step attribute.
|
|
318
347
|
|
|
@@ -323,11 +352,18 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
323
352
|
- Values are clamped to the nearest min or max value.
|
|
324
353
|
- Stepping is inclusive to the provided min and max values.
|
|
325
354
|
- Provided stepping is no longer used in validation.
|
|
355
|
+
- Advanced number formatting is enabled.
|
|
326
356
|
- An object that matches the `NumericStrategy` type.
|
|
327
357
|
* Note this can only be set via `property`, not as an `attribute`!
|
|
328
358
|
*/
|
|
329
359
|
numericStrategy?: SynInput["numericStrategy"];
|
|
330
360
|
/**
|
|
361
|
+
* Optional options that should be passed to the `NumberFormatter` when formatting the value.
|
|
362
|
+
This is used to format the number when the input type is `number` and `NumericStrategy.enableNumberFormat` is set to `true`.
|
|
363
|
+
Note this can only be set via `property`, not as an `attribute`!
|
|
364
|
+
*/
|
|
365
|
+
numberFormatterOptions?: SynInput["numberFormatterOptions"];
|
|
366
|
+
/**
|
|
331
367
|
* Support for two way data binding
|
|
332
368
|
*/
|
|
333
369
|
modelValue?: SynInput["value"];
|
|
@@ -33,7 +33,10 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
33
33
|
enterkeyhint: {},
|
|
34
34
|
spellcheck: {},
|
|
35
35
|
inputmode: {},
|
|
36
|
+
minFractionDigits: {},
|
|
37
|
+
maxFractionDigits: {},
|
|
36
38
|
numericStrategy: {},
|
|
39
|
+
numberFormatterOptions: {},
|
|
37
40
|
modelValue: {}
|
|
38
41
|
},
|
|
39
42
|
emits: ["syn-blur", "syn-change", "syn-clear", "syn-focus", "syn-input", "syn-invalid", "syn-clamp", "update:modelValue"],
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"url": "https://www.sick.com"
|
|
5
5
|
},
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@synergy-design-system/components": "^2.31.0-numeric.
|
|
7
|
+
"@synergy-design-system/components": "^2.31.0-numeric.2"
|
|
8
8
|
},
|
|
9
9
|
"description": "Vue3 wrappers for the Synergy Design System",
|
|
10
10
|
"exports": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"directory": "packages/vue"
|
|
41
41
|
},
|
|
42
42
|
"type": "module",
|
|
43
|
-
"version": "2.31.0-numeric.
|
|
43
|
+
"version": "2.31.0-numeric.2",
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
46
46
|
"@vue/tsconfig": "^0.7.0",
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Alerts are used to display important messages inline or as toast notifications.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-alert--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Badges are used to draw attention and display statuses or counts.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-badge--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Breadcrumbs provide a group of links so users can easily navigate a website's hierarchy.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-breadcrumb--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Breadcrumb Items are used inside [breadcrumbs](/components/breadcrumb) to represent different links.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-breadcrumb-item--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Buttons represent actions that are available to the user.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-button--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Button groups can be used to group related buttons into sections.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-button-group--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Cards can be used to group related subjects in a container.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-card--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Checkboxes allow the user to toggle an option on or off.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-checkbox--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Details show a brief summary and expand to show additional content.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-details--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Dialogs, sometimes called "modals", appear above the page and require the user's immediate attention.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-dialog--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Dividers are used to visually separate or group elements.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-divider--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Drawers slide in from a container to expose additional options and information.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-drawer--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Dropdowns expose additional content that "drops down" in a panel.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-dropdown--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Icons are symbols that can be used to represent various options within an application.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-icon--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Icons buttons are simple, icon-only buttons that can be used for actions and in toolbars.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-icon-button--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Inputs collect data from the user.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-input--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -233,6 +233,18 @@ keyboard on supportive devices.
|
|
|
233
233
|
*/
|
|
234
234
|
inputmode?: SynInput['inputmode'];
|
|
235
235
|
|
|
236
|
+
/**
|
|
237
|
+
* The minimal amount of fraction digits to use for numeric values.
|
|
238
|
+
Used to format the number when the input type is `number` and `NumericStrategy.enableNumberFormat` is set to `true`.
|
|
239
|
+
*/
|
|
240
|
+
minFractionDigits?: SynInput['minFractionDigits'];
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* The maximal amount of fraction digits to use for numeric values.
|
|
244
|
+
Used to format the number when the input type is `number` and `NumericStrategy.enableNumberFormat` is set to `true`.
|
|
245
|
+
*/
|
|
246
|
+
maxFractionDigits?: SynInput['maxFractionDigits'];
|
|
247
|
+
|
|
236
248
|
/**
|
|
237
249
|
* Defines the strategy for handling numbers in the numeric input.
|
|
238
250
|
This is used to determine how the input behaves when the user interacts with it.
|
|
@@ -240,6 +252,7 @@ This is used to determine how the input behaves when the user interacts with it.
|
|
|
240
252
|
Includes the following configuration options:
|
|
241
253
|
|
|
242
254
|
- **autoClamp**: If true, the input will clamp the value to the min and max attributes.
|
|
255
|
+
- **enableNumberFormat**: If true, the input will format the value using a `NumberFormatter`.
|
|
243
256
|
- **noStepAlign**: If true, the input will not align the value to the step attribute.
|
|
244
257
|
- **noStepValidation**: If true, the input will not validate the value against the step attribute.
|
|
245
258
|
|
|
@@ -250,11 +263,19 @@ You may provide this as one of the following values:
|
|
|
250
263
|
- Values are clamped to the nearest min or max value.
|
|
251
264
|
- Stepping is inclusive to the provided min and max values.
|
|
252
265
|
- Provided stepping is no longer used in validation.
|
|
266
|
+
- Advanced number formatting is enabled.
|
|
253
267
|
- An object that matches the `NumericStrategy` type.
|
|
254
268
|
* Note this can only be set via `property`, not as an `attribute`!
|
|
255
269
|
*/
|
|
256
270
|
numericStrategy?: SynInput['numericStrategy'];
|
|
257
271
|
|
|
272
|
+
/**
|
|
273
|
+
* Optional options that should be passed to the `NumberFormatter` when formatting the value.
|
|
274
|
+
This is used to format the number when the input type is `number` and `NumericStrategy.enableNumberFormat` is set to `true`.
|
|
275
|
+
Note this can only be set via `property`, not as an `attribute`!
|
|
276
|
+
*/
|
|
277
|
+
numberFormatterOptions?: SynInput['numberFormatterOptions'];
|
|
278
|
+
|
|
258
279
|
/**
|
|
259
280
|
* Support for two way data binding
|
|
260
281
|
*/
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Menus provide a list of options for the user to choose from.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-menu--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Menu items provide options for the user to pick from in a menu.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-menu-item--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Menu labels are used to describe a group of menu items.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-menu-label--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Flexible button / link component that can be used to quickly build navigations.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-nav-item--docs
|
|
10
11
|
* Takes one of 3 forms:
|
|
11
12
|
* - button (default),
|
|
12
13
|
* - link (overrides button if a 'href' is provided),
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Options define the selectable items within various form controls such as [select](/components/select).
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-option--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Popup is a utility that lets you declaratively anchor "popup" containers to another element.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-popup--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
* together. It will automatically group all items not visible in the viewport into a custom
|
|
12
12
|
* priority menu.
|
|
13
13
|
*
|
|
14
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-prio-nav--docs
|
|
14
15
|
* @example
|
|
15
16
|
* <syn-prio-nav>
|
|
16
17
|
* <syn-nav-item current horizontal>Item 1</syn-nav-item>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Progress bars are used to show the status of an ongoing operation.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-progress-bar--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Progress rings are used to show the progress of a determinate operation in a circular fashion.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-progress-ring--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Radios allow the user to select a single option from a group.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-radio--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Radios buttons allow the user to select a single option from a group using a button-like control.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-radio-button--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Radio groups are used to group multiple [radios](/components/radio) or [radio buttons](/components/radio-button) so they function as a single form control.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-radio-group--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Ticks visually improve positioning on range sliders.
|
|
10
|
-
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-range--docs
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-range-tick--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
*
|
|
13
13
|
* @slot - The tick's label
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Selects allow you to choose items from a menu of predefined options.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-select--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Spinners are used to show the progress of an indeterminate operation.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-spinner--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Switches allow the user to toggle an option on or off.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-switch--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Tabs are used inside [tab groups](/components/tab-group) to represent and activate [tab panels](/components/tab-panel).
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-tab--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Tab groups organize content into a container that shows one section at a time.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-tab-group--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Tab panels are used inside [tab groups](/components/tab-group) to display tabbed content.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-tab-panel--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Tags are used as labels to organize things or to indicate a selection.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-tag--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Textareas collect data from the user and allow multiple lines of text.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-textarea--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* @summary Tooltips display additional information based on a specific action.
|
|
10
|
-
* @documentation https://synergy.
|
|
10
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-tooltip--docs
|
|
11
11
|
* @status stable
|
|
12
12
|
* @since 2.0
|
|
13
13
|
*
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* @summary Validate provides form field validation messages in a unified way.
|
|
10
10
|
* It does this by using [the native browser validation](https://developer.mozilla.org/en-US/docs/Learn/Forms/Form_validation)
|
|
11
11
|
* and showing the validation message in a consistent, user defined way.
|
|
12
|
-
*
|
|
12
|
+
* @documentation https://synergy-design-system.github.io/?path=/docs/components-syn-validate--docs
|
|
13
13
|
* @dependency syn-alert
|
|
14
14
|
*
|
|
15
15
|
* @slot - The form field that should be validated.
|