@synergy-design-system/vue 2.31.0-numeric.1 → 2.31.0-numeric.3
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 +34 -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/SynVueCombobox.vue +2 -0
- 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 +21 -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 +2 -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,6 +139,16 @@ 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`.
|
|
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`.
|
|
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
|
|
|
@@ -155,11 +165,18 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
155
165
|
- Values are clamped to the nearest min or max value.
|
|
156
166
|
- Stepping is inclusive to the provided min and max values.
|
|
157
167
|
- Provided stepping is no longer used in validation.
|
|
168
|
+
- Advanced number formatting is enabled.
|
|
158
169
|
- An object that matches the `NumericStrategy` type.
|
|
159
170
|
* Note this can only be set via `property`, not as an `attribute`!
|
|
160
171
|
*/
|
|
161
172
|
numericStrategy?: SynInput["numericStrategy"];
|
|
162
173
|
/**
|
|
174
|
+
* Optional options that should be passed to the `NumberFormatter` when formatting the value.
|
|
175
|
+
This is used to format the number when the input type is `number`.
|
|
176
|
+
Note this can only be set via `property`, not as an `attribute`!
|
|
177
|
+
*/
|
|
178
|
+
numberFormatterOptions?: SynInput["numberFormatterOptions"];
|
|
179
|
+
/**
|
|
163
180
|
* Support for two way data binding
|
|
164
181
|
*/
|
|
165
182
|
modelValue?: SynInput["value"];
|
|
@@ -307,6 +324,16 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
307
324
|
*/
|
|
308
325
|
inputmode?: SynInput["inputmode"];
|
|
309
326
|
/**
|
|
327
|
+
* The minimal amount of fraction digits to use for numeric values.
|
|
328
|
+
Used to format the number when the input type is `number`.
|
|
329
|
+
*/
|
|
330
|
+
minFractionDigits?: SynInput["minFractionDigits"];
|
|
331
|
+
/**
|
|
332
|
+
* The maximal amount of fraction digits to use for numeric values.
|
|
333
|
+
Used to format the number when the input type is `number`.
|
|
334
|
+
*/
|
|
335
|
+
maxFractionDigits?: SynInput["maxFractionDigits"];
|
|
336
|
+
/**
|
|
310
337
|
* Defines the strategy for handling numbers in the numeric input.
|
|
311
338
|
This is used to determine how the input behaves when the user interacts with it.
|
|
312
339
|
|
|
@@ -323,11 +350,18 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
323
350
|
- Values are clamped to the nearest min or max value.
|
|
324
351
|
- Stepping is inclusive to the provided min and max values.
|
|
325
352
|
- Provided stepping is no longer used in validation.
|
|
353
|
+
- Advanced number formatting is enabled.
|
|
326
354
|
- An object that matches the `NumericStrategy` type.
|
|
327
355
|
* Note this can only be set via `property`, not as an `attribute`!
|
|
328
356
|
*/
|
|
329
357
|
numericStrategy?: SynInput["numericStrategy"];
|
|
330
358
|
/**
|
|
359
|
+
* Optional options that should be passed to the `NumberFormatter` when formatting the value.
|
|
360
|
+
This is used to format the number when the input type is `number`.
|
|
361
|
+
Note this can only be set via `property`, not as an `attribute`!
|
|
362
|
+
*/
|
|
363
|
+
numberFormatterOptions?: SynInput["numberFormatterOptions"];
|
|
364
|
+
/**
|
|
331
365
|
* Support for two way data binding
|
|
332
366
|
*/
|
|
333
367
|
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.3"
|
|
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.3",
|
|
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
|
*
|
|
@@ -51,6 +51,8 @@
|
|
|
51
51
|
* @csspart filtered-listbox - The container that wraps the filtered options.
|
|
52
52
|
* @csspart clear-button - The clear button.
|
|
53
53
|
* @csspart expand-icon - The container that wraps the expand icon.
|
|
54
|
+
* @csspart popup - The popup's exported `popup` part.
|
|
55
|
+
* Use this to target the tooltip's popup container.
|
|
54
56
|
*
|
|
55
57
|
* @animation combobox.show - The animation to use when showing the combobox.
|
|
56
58
|
* @animation combobox.hide - The animation to use when hiding the combobox.
|
|
@@ -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`.
|
|
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`.
|
|
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.
|
|
@@ -250,11 +262,19 @@ You may provide this as one of the following values:
|
|
|
250
262
|
- Values are clamped to the nearest min or max value.
|
|
251
263
|
- Stepping is inclusive to the provided min and max values.
|
|
252
264
|
- Provided stepping is no longer used in validation.
|
|
265
|
+
- Advanced number formatting is enabled.
|
|
253
266
|
- An object that matches the `NumericStrategy` type.
|
|
254
267
|
* Note this can only be set via `property`, not as an `attribute`!
|
|
255
268
|
*/
|
|
256
269
|
numericStrategy?: SynInput['numericStrategy'];
|
|
257
270
|
|
|
271
|
+
/**
|
|
272
|
+
* Optional options that should be passed to the `NumberFormatter` when formatting the value.
|
|
273
|
+
This is used to format the number when the input type is `number`.
|
|
274
|
+
Note this can only be set via `property`, not as an `attribute`!
|
|
275
|
+
*/
|
|
276
|
+
numberFormatterOptions?: SynInput['numberFormatterOptions'];
|
|
277
|
+
|
|
258
278
|
/**
|
|
259
279
|
* Support for two way data binding
|
|
260
280
|
*/
|
|
@@ -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
|
*
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
* @csspart tag__remove-button__base - The tag's remove button base part.
|
|
52
52
|
* @csspart clear-button - The clear button.
|
|
53
53
|
* @csspart expand-icon - The container that wraps the expand icon.
|
|
54
|
+
* @csspart popup - The popup's exported `popup` part. Use this to target the tooltip's popup container.
|
|
54
55
|
*/
|
|
55
56
|
import { computed, ref } from 'vue';
|
|
56
57
|
import '@synergy-design-system/components/components/select/select.js';
|
|
@@ -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.
|