@vcmap/ui 6.0.0-rc.2 → 6.0.0-rc.5
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/build/build.js +40 -60
- package/build/buildHelpers.js +62 -19
- package/build/bundle.js +1 -1
- package/build/info/conf.json +1 -1
- package/build/info/publish.js +25 -31
- package/build/lintTypes.js +5 -0
- package/config/base.config.json +2 -1
- package/config/dev.config.json +7 -1
- package/config/projects.config.json +2 -1
- package/config/splashscreen.config.json +45 -0
- package/config/www.config.json +25 -22
- package/dist/.htaccess +7 -0
- package/dist/assets/@mdi/font/README.md +25 -0
- package/dist/assets/@mdi/font/css/materialdesignicons.min-680621ca.css +3 -0
- package/dist/assets/@mdi/font/css/materialdesignicons.min.css.map +16 -0
- package/dist/assets/@mdi/font/fonts/materialdesignicons-webfont.woff2 +0 -0
- package/dist/assets/{cesium.0b750d.js → cesium-126f111a.js} +272 -385
- package/dist/assets/cesium.js +1 -1
- package/dist/assets/{core.cbf44a.js → core-1c8b8674.js} +2015 -2019
- package/dist/assets/core.js +1 -1
- package/dist/assets/{ol.86e93c.js → ol-27f9b3f3.js} +42521 -44394
- package/dist/assets/ol.js +1 -1
- package/dist/assets/ui-7214428e.css +1 -0
- package/dist/assets/{ui.7c276c.js → ui-7214428e.js} +13968 -13907
- package/dist/assets/ui.js +1 -1
- package/dist/assets/vue-c78a5f76.js +6083 -0
- package/dist/assets/vue.js +1 -1
- package/dist/assets/{vuetify.4d18fe.css → vuetify-88a2fabe.css} +2 -2
- package/dist/assets/{vuetify.4d18fe.js → vuetify-88a2fabe.js} +7793 -7940
- package/dist/assets/vuetify.js +1 -1
- package/dist/index.html +11 -10
- package/index.d.ts +11 -11
- package/index.html +5 -5
- package/index.js +9 -7
- package/lib/olLib.js +84 -23
- package/package.json +19 -19
- package/plugins/@vcmap-show-case/flight-component-example/src/FlightExample.vue +41 -1
- package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +71 -32
- package/plugins/@vcmap-show-case/form-inputs-example/src/exampleActions.js +7 -11
- package/plugins/@vcmap-show-case/form-inputs-example/src/index.js +2 -2
- package/plugins/@vcmap-show-case/list-example/src/ListExample.vue +21 -8
- package/plugins/@vcmap-show-case/project-selector/src/ModulesListComponent.vue +18 -11
- package/plugins/@vcmap-show-case/search-example/src/index.js +1 -0
- package/plugins/@vcmap-show-case/search-example/src/searchImpl.js +35 -5
- package/plugins/@vcmap-show-case/style-input-example/src/StyleExample.vue +29 -90
- package/plugins/@vcmap-show-case/toolbox-example/src/index.js +2 -1
- package/plugins/package.json +3 -23
- package/public/assets/@mdi/font/README.md +25 -0
- package/public/assets/@mdi/font/css/materialdesignicons.min.css +2 -2
- package/public/assets/@mdi/font/css/materialdesignicons.min.css.map +16 -0
- package/public/assets/@mdi/font/fonts/materialdesignicons-webfont.woff2 +0 -0
- package/src/actions/StyleSelector.vue +1 -1
- package/src/actions/actionHelper.js +33 -22
- package/src/actions/flightActions.js +5 -5
- package/src/actions/listActions.d.ts +4 -11
- package/src/actions/listActions.js +6 -22
- package/src/actions/stateRefAction.js +2 -2
- package/src/application/VcsApp.vue +147 -57
- package/src/application/VcsApp.vue.d.ts +298 -4
- package/src/application/VcsAttributions.vue +2 -13
- package/src/application/VcsAttributionsFooter.vue +10 -11
- package/src/application/VcsContainer.vue +26 -9
- package/src/application/VcsContainer.vue.d.ts +237 -0
- package/src/application/VcsMainMap.vue +7 -7
- package/src/application/VcsMainMap.vue.d.ts +2 -2
- package/src/application/VcsNavbar.vue +5 -1
- package/src/application/VcsPositionDisplay.vue +8 -23
- package/src/application/VcsPositionDisplay.vue.d.ts +0 -1
- package/src/application/VcsSettings.vue +10 -17
- package/src/application/VcsSplashScreen.vue +21 -40
- package/src/application/VcsSplashScreen.vue.d.ts +0 -2
- package/src/application/VcsTextPage.vue +12 -43
- package/src/application/VcsTextPage.vue.d.ts +4 -8
- package/src/application/VcsTextPageFooter.vue +23 -40
- package/src/components/buttons/VcsActionButtonList.vue +59 -3
- package/src/components/buttons/VcsActionButtonList.vue.d.ts +28 -0
- package/src/components/extent/VcsExtentEditor.vue +1 -1
- package/src/components/flight/VcsFlightAnchorsComponent.vue +63 -36
- package/src/components/flight/VcsFlightComponent.vue +16 -21
- package/src/components/flight/VcsFlightPlayer.vue +27 -5
- package/src/components/form-inputs-controls/VcsCheckbox.vue +9 -5
- package/src/components/form-inputs-controls/VcsChipArrayInput.vue +15 -13
- package/src/components/form-inputs-controls/VcsChipArrayInput.vue.d.ts +3 -4
- package/src/components/form-inputs-controls/VcsCoordinate.vue +17 -4
- package/src/components/form-inputs-controls/VcsCoordinate.vue.d.ts +5 -2
- package/src/components/form-inputs-controls/VcsDatePicker.vue +34 -60
- package/src/components/form-inputs-controls/VcsDatePicker.vue.d.ts +1 -63
- package/src/components/form-inputs-controls/VcsFileInput.vue +17 -18
- package/src/components/form-inputs-controls/VcsFileInput.vue.d.ts +1 -0
- package/src/components/form-inputs-controls/VcsLabel.vue +1 -1
- package/src/components/form-inputs-controls/VcsRadio.vue +17 -3
- package/src/components/form-inputs-controls/VcsRadio.vue.d.ts +1 -0
- package/src/components/form-inputs-controls/VcsSelect.vue +40 -31
- package/src/components/form-inputs-controls/VcsSelect.vue.d.ts +5 -2
- package/src/components/form-inputs-controls/VcsSlider.vue +13 -1
- package/src/components/form-inputs-controls/VcsSlider.vue.d.ts +1 -0
- package/src/components/form-inputs-controls/VcsTextArea.vue +27 -26
- package/src/components/form-inputs-controls/VcsTextArea.vue.d.ts +1 -0
- package/src/components/form-inputs-controls/VcsTextField.vue +20 -4
- package/src/components/form-inputs-controls/VcsTextField.vue.d.ts +9 -0
- package/src/components/form-inputs-controls/VcsWizardStep.vue +3 -6
- package/src/components/form-inputs-controls/vcsTextField.scss +9 -12
- package/src/components/form-output/VcsFormattedNumber.vue +21 -5
- package/src/components/form-output/VcsFormattedNumber.vue.d.ts +9 -0
- package/src/components/form-output/VcsMarkdown.vue +15 -12
- package/src/components/form-output/VcsMarkdown.vue.d.ts +1 -0
- package/src/components/form-output/markdownHelper.d.ts +30 -0
- package/src/components/form-output/markdownHelper.js +398 -0
- package/src/components/import/VcsFileDrop.vue +8 -5
- package/src/components/import/VcsImportComponent.vue +4 -3
- package/src/components/import/VcsImportComponent.vue.d.ts +1 -2
- package/src/components/lists/VcsActionList.vue +11 -7
- package/src/components/lists/VcsList.vue +30 -52
- package/src/components/lists/VcsList.vue.d.ts +14 -59
- package/src/components/lists/{VcsListItem.vue → VcsListItemComponent.vue} +68 -22
- package/src/components/lists/VcsListItemComponent.vue.d.ts +69 -0
- package/src/components/lists/VcsTreeview.vue +43 -16
- package/src/components/lists/VcsTreeview.vue.d.ts +14 -3
- package/src/components/lists/VcsTreeviewLeaf.vue +15 -6
- package/src/components/lists/VcsTreeviewSearchbar.vue +2 -2
- package/src/components/notification/VcsHelp.vue +1 -1
- package/src/components/notification/VcsHelp.vue.d.ts +3 -2
- package/src/components/section/VcsExpansionPanel.vue +101 -0
- package/src/components/section/VcsExpansionPanel.vue.d.ts +19 -0
- package/src/components/{form-inputs-controls → section}/VcsFormSection.vue +10 -4
- package/src/components/{form-inputs-controls → section}/VcsFormSection.vue.d.ts +1 -2
- package/src/components/style/MenuWrapper.vue +24 -26
- package/src/components/style/MenuWrapper.vue.d.ts +4 -4
- package/src/components/style/VcsFillMenu.vue +9 -16
- package/src/components/style/VcsFillMenu.vue.d.ts +0 -18
- package/src/components/style/VcsFillSelector.vue +13 -16
- package/src/components/style/VcsImageMenu.vue +8 -25
- package/src/components/style/VcsImageMenu.vue.d.ts +0 -27
- package/src/components/style/VcsImageSelector.vue +102 -167
- package/src/components/style/VcsImageSelector.vue.d.ts +15 -15
- package/src/components/style/VcsStrokeMenu.vue +8 -15
- package/src/components/style/VcsStrokeMenu.vue.d.ts +0 -18
- package/src/components/style/VcsStrokeSelector.vue +11 -18
- package/src/components/style/VcsTextMenu.vue +9 -12
- package/src/components/style/VcsTextMenu.vue.d.ts +0 -9
- package/src/components/style/VcsTextSelector.vue +79 -95
- package/src/components/style/VcsTextSelector.vue.d.ts +20 -22
- package/src/components/style/VcsVectorStyleComponent.vue +8 -19
- package/src/components/style/VcsVectorStyleComponent.vue.d.ts +1 -1
- package/src/components/style/composables.d.ts +0 -14
- package/src/components/style/composables.js +0 -49
- package/src/components/tables/VcsDataTable.vue +28 -22
- package/src/components/tables/VcsTable.vue +45 -62
- package/src/components/tables/VcsTable.vue.d.ts +30 -17
- package/src/components/tables/VcsTableCell.vue +72 -0
- package/src/components/tables/VcsTableCell.vue.d.ts +13 -0
- package/src/components/vector-properties/VcsFeatureEditingWindow.vue +43 -9
- package/src/components/vector-properties/VcsFeatureTransforms.vue +5 -0
- package/src/components/vector-properties/VcsVectorPropertiesComponent.vue +1 -1
- package/src/components/viewpoint/VcsViewpointComponent.vue +23 -10
- package/src/components/viewpoint/VcsViewpointEditor.vue +2 -1
- package/src/contentTree/LayerTree.vue +9 -27
- package/src/contentTree/LayerTree.vue.d.ts +1 -1
- package/src/contentTree/contentTreeCollection.d.ts +1 -0
- package/src/contentTree/contentTreeCollection.js +45 -11
- package/src/contentTree/contentTreeItem.d.ts +2 -2
- package/src/contentTree/contentTreeItem.js +7 -7
- package/src/featureInfo/BalloonComponent.vue +14 -15
- package/src/featureInfo/MarkdownBalloonComponent.vue +4 -2
- package/src/featureInfo/MarkdownBalloonComponent.vue.d.ts +2 -2
- package/src/featureInfo/abstractFeatureInfoView.d.ts +6 -0
- package/src/featureInfo/abstractFeatureInfoView.js +15 -7
- package/src/featureInfo/featureInfo.d.ts +5 -5
- package/src/featureInfo/featureInfo.js +59 -41
- package/src/featureInfo/iframeFeatureInfoView.d.ts +8 -2
- package/src/featureInfo/iframeFeatureInfoView.js +15 -5
- package/src/featureInfo/markdownBalloonFeatureInfoView.d.ts +1 -1
- package/src/featureInfo/markdownBalloonFeatureInfoView.js +5 -5
- package/src/featureInfo/markdownFeatureInfoView.d.ts +1 -1
- package/src/featureInfo/markdownFeatureInfoView.js +9 -11
- package/src/featureInfo/tableFeatureInfoView.js +13 -4
- package/src/init.d.ts +5 -38
- package/src/init.js +19 -18
- package/src/legend/StyleLegendItem.vue +4 -9
- package/src/legend/VcsLegend.vue +28 -54
- package/src/manager/buttonManager.js +4 -4
- package/src/manager/collectionManager/CollectionComponent.vue +17 -42
- package/src/manager/collectionManager/CollectionComponent.vue.d.ts +4 -2
- package/src/manager/collectionManager/CollectionComponentContent.vue +7 -6
- package/src/manager/collectionManager/CollectionComponentContent.vue.d.ts +3 -1
- package/src/manager/collectionManager/CollectionComponentList.vue +11 -9
- package/src/manager/collectionManager/CollectionComponentList.vue.d.ts +6 -4
- package/src/manager/collectionManager/CollectionComponentProvider.vue +1 -1
- package/src/manager/collectionManager/CollectionComponentStandalone.vue +3 -2
- package/src/manager/collectionManager/CollectionManager.vue +1 -1
- package/src/manager/collectionManager/collectionComponentClass.d.ts +1 -1
- package/src/manager/collectionManager/collectionComponentClass.js +7 -10
- package/src/manager/collectionManager/collectionManager.js +10 -10
- package/src/manager/collectionManager/editorCollectionComponentClass.js +6 -5
- package/src/manager/contextMenu/contextMenuManager.js +2 -2
- package/src/manager/navbarManager.js +2 -2
- package/src/manager/panel/PanelComponent.vue +2 -9
- package/src/manager/panel/PanelManagerComponent.vue +7 -3
- package/src/manager/panel/panelHelper.js +3 -3
- package/src/manager/panel/panelManager.d.ts +9 -1
- package/src/manager/panel/panelManager.js +18 -6
- package/src/manager/toolbox/GroupToolboxComponent.vue +8 -4
- package/src/manager/toolbox/GroupToolboxComponent.vue.d.ts +1 -0
- package/src/manager/toolbox/SelectToolboxComponent.vue +7 -4
- package/src/manager/toolbox/SelectToolboxComponent.vue.d.ts +1 -0
- package/src/manager/toolbox/ToolboxManager.vue +9 -6
- package/src/manager/toolbox/ToolboxManager.vue.d.ts +1 -0
- package/src/manager/toolbox/toolboxManager.js +10 -10
- package/src/manager/window/WindowComponent.vue +12 -8
- package/src/manager/window/WindowComponentHeader.vue +29 -8
- package/src/manager/window/WindowComponentHeader.vue.d.ts +2 -0
- package/src/manager/window/WindowManager.vue +2 -2
- package/src/manager/window/windowManager.d.ts +2 -2
- package/src/manager/window/windowManager.js +4 -4
- package/src/navigation/MapNavigation.vue +20 -0
- package/src/navigation/locatorHelper.js +1 -1
- package/src/navigation/overviewMap.js +1 -1
- package/src/notifier/NotifierComponent.vue +18 -15
- package/src/search/ResultItem.vue +18 -6
- package/src/search/ResultsComponent.vue +31 -20
- package/src/search/ResultsComponent.vue.d.ts +2 -1
- package/src/search/SearchComponent.vue +8 -14
- package/src/search/SearchComponent.vue.d.ts +1 -0
- package/src/search/search.js +2 -2
- package/src/siteConfig.js +9 -9
- package/src/state.js +4 -4
- package/src/styles/_typography.scss +0 -2
- package/src/styles/main.scss +0 -4
- package/src/uiConfig.d.ts +300 -5
- package/src/uiConfig.js +28 -16
- package/src/vcsUiApp.d.ts +21 -17
- package/src/vcsUiApp.js +11 -10
- package/src/vuePlugins/vuetify.d.ts +2 -0
- package/src/vuePlugins/vuetify.js +14 -0
- package/dist/assets/@mdi/font/css/materialdesignicons.css.map +0 -16
- package/dist/assets/@mdi/font/css/materialdesignicons.min.e3f476.css +0 -3
- package/dist/assets/index-8eGauqjA.js +0 -1
- package/dist/assets/ui.7c276c.css +0 -1
- package/dist/assets/vue.a3cd64.js +0 -6096
- package/public/assets/@mdi/font/css/materialdesignicons.css.map +0 -16
- package/src/application/VcsCustomScreen.vue +0 -45
- package/src/application/VcsCustomScreen.vue.d.ts +0 -15
- package/src/application/markdownHelper.d.ts +0 -12
- package/src/application/markdownHelper.js +0 -70
- package/src/components/lists/VcsListItem.vue.d.ts +0 -21
- package/src/components/notification/VcsTooltip.vue +0 -156
- package/src/components/notification/VcsTooltip.vue.d.ts +0 -27
- package/src/featureInfo/MarkdownComponent.vue +0 -16
- package/src/featureInfo/MarkdownComponent.vue.d.ts +0 -7
- package/src/styles/_theming.scss +0 -73
- package/src/styles/settings.scss +0 -6
- package/src/styles/shades.scss +0 -4
- package/src/styles/variables.scss +0 -140
- package/src/styles/vcsFont.scss +0 -2
- package/src/styles/vcsGrid.scss +0 -3
- /package/dist/assets/{favicon-128.4c4ce5.png → favicon-128-4c4ce5df.png} +0 -0
- /package/dist/assets/{favicon-180.5b99c0.png → favicon-180-4c4ce5df.png} +0 -0
- /package/dist/assets/{favicon-192.0e205e.png → favicon-192-4c4ce5df.png} +0 -0
- /package/dist/assets/{favicon-32.6b9add.png → favicon-32-4c4ce5df.png} +0 -0
- /package/dist/assets/{favicon.d5ec97.svg → favicon-4c4ce5df.svg} +0 -0
- /package/dist/assets/font/{TitilliumWeb-Regular.9ca076.woff2 → TitilliumWeb-Regular-9ca076be.woff2} +0 -0
- /package/dist/assets/style/{icon-marker.70960f.png → icon-marker-70960f05.png} +0 -0
- /package/dist/assets/style/{icon-marker-blue.534e37.png → icon-marker-blue-534e374b.png} +0 -0
- /package/dist/assets/style/{icon-marker-green.0b6a92.png → icon-marker-green-0b6a92bc.png} +0 -0
- /package/dist/assets/style/{icon-marker-o.036477.png → icon-marker-o-036477fa.png} +0 -0
- /package/dist/assets/style/{icon-marker-o-blue.7b6d62.png → icon-marker-o-blue-7b6d6279.png} +0 -0
- /package/dist/assets/style/{icon-marker-o-green.c863c0.png → icon-marker-o-green-c863c0fa.png} +0 -0
- /package/dist/assets/style/{icon-marker-o-red.93ff58.png → icon-marker-o-red-93ff58df.png} +0 -0
- /package/dist/assets/style/{icon-marker-red.313d03.png → icon-marker-red-313d03e8.png} +0 -0
- /package/dist/assets/style/{icon-pin.b7ce77.png → icon-pin-b7ce771e.png} +0 -0
- /package/dist/assets/style/{icon-pin-blue.7be369.png → icon-pin-blue-7be369a3.png} +0 -0
- /package/dist/assets/style/{icon-pin-green.cbb935.png → icon-pin-green-cbb935fe.png} +0 -0
- /package/dist/assets/style/{icon-pin-red.3f25b2.png → icon-pin-red-3f25b245.png} +0 -0
- /package/public/assets/{favicon-128.png → favicon-128-4c4ce5df.png} +0 -0
- /package/public/assets/{favicon-180.png → favicon-180-4c4ce5df.png} +0 -0
- /package/public/assets/{favicon-192.png → favicon-192-4c4ce5df.png} +0 -0
- /package/public/assets/{favicon-32.png → favicon-32-4c4ce5df.png} +0 -0
- /package/public/assets/{favicon.svg → favicon-4c4ce5df.svg} +0 -0
@@ -17,15 +17,16 @@
|
|
17
17
|
<template v-for="slot of forwardSlots" #[slot]="scope">
|
18
18
|
<slot :name="slot" v-bind="scope ?? {}" />
|
19
19
|
</template>
|
20
|
-
<template #message="
|
20
|
+
<template #message="scope">
|
21
21
|
<v-tooltip
|
22
22
|
ref="errorTooltip"
|
23
23
|
:activator="checkbox"
|
24
|
-
v-if="message"
|
25
|
-
:text="$st(message)"
|
24
|
+
v-if="scope?.message"
|
25
|
+
:text="$st(scope?.message)"
|
26
26
|
content-class="bg-error"
|
27
27
|
:location="tooltipPosition"
|
28
28
|
/>
|
29
|
+
<slot name="message" v-bind="scope ?? {}"></slot>
|
29
30
|
</template>
|
30
31
|
<v-tooltip
|
31
32
|
v-if="tooltip && !errorTooltip"
|
@@ -37,9 +38,12 @@
|
|
37
38
|
</template>
|
38
39
|
<style lang="scss" scoped>
|
39
40
|
.v-input--density-compact :deep(.v-selection-control) {
|
40
|
-
--v-selection-control-size:
|
41
|
+
--v-selection-control-size: 20px;
|
41
42
|
--v-input-control-height: calc(var(--v-vcs-item-height) - 16px);
|
42
43
|
}
|
44
|
+
:deep(.v-input__control) {
|
45
|
+
height: calc(var(--v-vcs-item-height) - 8px);
|
46
|
+
}
|
43
47
|
// remove ripple effect
|
44
48
|
:deep(.v-selection-control__input::before) {
|
45
49
|
background-color: transparent;
|
@@ -83,7 +87,7 @@
|
|
83
87
|
const checkbox = ref();
|
84
88
|
const errorTooltip = ref();
|
85
89
|
const paddingProvided = usePadding(attrs);
|
86
|
-
const forwardSlots = useForwardSlots(slots, ['label']);
|
90
|
+
const forwardSlots = useForwardSlots(slots, ['label', 'message']);
|
87
91
|
return {
|
88
92
|
forwardSlots,
|
89
93
|
paddingProvided,
|
@@ -23,24 +23,22 @@
|
|
23
23
|
<div v-for="({ key, value }, index) in localValue" :key="key">
|
24
24
|
<v-chip
|
25
25
|
v-if="selected !== index"
|
26
|
-
v-bind="{ ...noListenerAttrs }"
|
27
26
|
size="small"
|
28
27
|
:disabled="disabled"
|
29
28
|
:closable="deletableChips"
|
30
29
|
@click="select(index)"
|
31
30
|
@click:close="remove(index)"
|
31
|
+
v-bind="{ ...noListenerAttrs }"
|
32
32
|
>
|
33
33
|
<span class="text-truncate d-inline-block">{{ value }}</span>
|
34
34
|
</v-chip>
|
35
35
|
<VcsTextField
|
36
36
|
v-else
|
37
|
-
v-bind="{ ...noListenerAttrs }"
|
38
37
|
rounded
|
39
38
|
filled
|
40
39
|
autofocus
|
41
40
|
hide-spin-buttons
|
42
|
-
:height="
|
43
|
-
v-model="editValue"
|
41
|
+
:height="itemHeight - 8"
|
44
42
|
@keydown.esc="selected = -1"
|
45
43
|
@blur="selected = -1"
|
46
44
|
@keydown.enter="submitChange($event)"
|
@@ -48,27 +46,27 @@
|
|
48
46
|
append-inner-icon="mdi-check"
|
49
47
|
:style="{ width: `${inputWidth}px` }"
|
50
48
|
class="py-0"
|
49
|
+
v-bind="{ ...noListenerAttrs }"
|
50
|
+
v-model="editValue"
|
51
51
|
/>
|
52
52
|
</div>
|
53
53
|
<div>
|
54
54
|
<v-chip
|
55
55
|
v-if="adding === false"
|
56
|
-
v-bind="{ ...noListenerAttrs }"
|
57
56
|
size="small"
|
58
57
|
:disabled="disabled"
|
59
58
|
@click="adding = true"
|
59
|
+
v-bind="{ ...noListenerAttrs }"
|
60
60
|
>
|
61
61
|
<v-icon>$vcsPlus</v-icon>
|
62
62
|
</v-chip>
|
63
63
|
<VcsTextField
|
64
64
|
v-else
|
65
|
-
v-bind="{ ...noListenerAttrs }"
|
66
65
|
rounded
|
67
66
|
filled
|
68
67
|
autofocus
|
69
68
|
hide-spin-buttons
|
70
|
-
:height="
|
71
|
-
v-model="newValue"
|
69
|
+
:height="itemHeight - 8"
|
72
70
|
@keydown.enter="add($event, newValue)"
|
73
71
|
@click:append-inner="add($event, newValue)"
|
74
72
|
@keydown.esc="cancel"
|
@@ -76,6 +74,8 @@
|
|
76
74
|
append-inner-icon="mdi-check"
|
77
75
|
:style="{ width: `${inputWidth}px` }"
|
78
76
|
class="py-0"
|
77
|
+
v-bind="{ ...noListenerAttrs }"
|
78
|
+
v-model="newValue"
|
79
79
|
/>
|
80
80
|
</div>
|
81
81
|
</div>
|
@@ -166,8 +166,8 @@
|
|
166
166
|
setup(props, { attrs, emit }) {
|
167
167
|
const selected = ref(-1);
|
168
168
|
const adding = ref(false);
|
169
|
-
const editValue = ref(
|
170
|
-
const newValue = ref(
|
169
|
+
const editValue = ref(null);
|
170
|
+
const newValue = ref(null);
|
171
171
|
const vcsChipArrayInput = ref();
|
172
172
|
const hasScrollbar = ref();
|
173
173
|
|
@@ -247,7 +247,7 @@
|
|
247
247
|
}
|
248
248
|
|
249
249
|
function cancel() {
|
250
|
-
newValue.value =
|
250
|
+
newValue.value = null;
|
251
251
|
adding.value = false;
|
252
252
|
}
|
253
253
|
|
@@ -271,7 +271,7 @@
|
|
271
271
|
vcsChipArrayInput.value.scrollLeft =
|
272
272
|
vcsChipArrayInput.value.scrollWidth;
|
273
273
|
}
|
274
|
-
newValue.value =
|
274
|
+
newValue.value = null;
|
275
275
|
adding.value = true;
|
276
276
|
}
|
277
277
|
|
@@ -279,6 +279,8 @@
|
|
279
279
|
|
280
280
|
const paddingProvided = usePadding(attrs);
|
281
281
|
|
282
|
+
const itemHeight = useItemHeight();
|
283
|
+
|
282
284
|
return {
|
283
285
|
paddingProvided,
|
284
286
|
localValue,
|
@@ -294,7 +296,7 @@
|
|
294
296
|
submitChange,
|
295
297
|
add,
|
296
298
|
cancel,
|
297
|
-
|
299
|
+
itemHeight,
|
298
300
|
};
|
299
301
|
},
|
300
302
|
};
|
@@ -29,8 +29,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
29
29
|
noListenerAttrs: import("vue").ComputedRef<Record<string, unknown>>;
|
30
30
|
selected: import("vue").Ref<number>;
|
31
31
|
adding: import("vue").Ref<boolean>;
|
32
|
-
editValue: import("vue").Ref<
|
33
|
-
newValue: import("vue").Ref<
|
32
|
+
editValue: import("vue").Ref<null>;
|
33
|
+
newValue: import("vue").Ref<null>;
|
34
34
|
vcsChipArrayInput: import("vue").Ref<any>;
|
35
35
|
hasScrollbar: import("vue").Ref<any>;
|
36
36
|
remove: (index: any) => void;
|
@@ -38,7 +38,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
38
38
|
submitChange: (e: any) => void;
|
39
39
|
add: (e: any, v: any) => Promise<void>;
|
40
40
|
cancel: () => void;
|
41
|
-
|
41
|
+
itemHeight: import("vue").ComputedRef<number>;
|
42
42
|
}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
43
43
|
modelValue: {
|
44
44
|
type: ArrayConstructor;
|
@@ -75,4 +75,3 @@ declare const _default: import("vue").DefineComponent<{
|
|
75
75
|
scrollDx: number;
|
76
76
|
}, {}>;
|
77
77
|
export default _default;
|
78
|
-
import { useItemHeight } from '../../vuePlugins/vuetify.js';
|
@@ -1,17 +1,26 @@
|
|
1
1
|
<template>
|
2
|
-
<v-row
|
2
|
+
<v-row
|
3
|
+
no-gutters
|
4
|
+
v-if="localValue"
|
5
|
+
class="vcs-coordinate"
|
6
|
+
:class="{
|
7
|
+
'py-1': !paddingProvided,
|
8
|
+
}"
|
9
|
+
>
|
3
10
|
<slot name="prepend" v-bind="{ ...$props }" />
|
4
11
|
<template v-for="(_, idx) in localValue">
|
5
|
-
<v-col :key="
|
12
|
+
<v-col :key="`coordinate-${idx}`" v-if="!hideZ || idx < 2">
|
6
13
|
<VcsTextField
|
7
|
-
:id="
|
14
|
+
:id="`coordinate-${idx}`"
|
8
15
|
:hide-spin-buttons="true"
|
9
16
|
type="number"
|
17
|
+
class="py-0"
|
10
18
|
:min="getRangeFromExtent(idx, extent)?.[0]"
|
11
19
|
:max="getRangeFromExtent(idx, extent)?.[1]"
|
12
20
|
:step="steps[idx]"
|
13
|
-
:prefix="prefixes[idx]"
|
14
21
|
:unit="units[idx]"
|
22
|
+
:prefix="prefixes[idx]"
|
23
|
+
force-prefix
|
15
24
|
:decimals="decimals[idx]"
|
16
25
|
v-bind="noListenerAttrs"
|
17
26
|
v-model="localValue[idx]"
|
@@ -33,6 +42,7 @@
|
|
33
42
|
import { between } from '../style/composables.js';
|
34
43
|
import { useProxiedComplexModel } from '../modelHelper.js';
|
35
44
|
import { removeListenersFromAttrs } from '../attrsHelpers.js';
|
45
|
+
import { usePadding } from '../composables.js';
|
36
46
|
|
37
47
|
/**
|
38
48
|
*
|
@@ -114,11 +124,14 @@
|
|
114
124
|
default: () => [[], [], []],
|
115
125
|
},
|
116
126
|
},
|
127
|
+
emits: ['update:modelValue'],
|
117
128
|
setup(props, { attrs, emit }) {
|
118
129
|
const localValue = useProxiedComplexModel(props, 'modelValue', emit);
|
119
130
|
const noListenerAttrs = computed(() => removeListenersFromAttrs(attrs));
|
131
|
+
const paddingProvided = usePadding(attrs);
|
120
132
|
|
121
133
|
return {
|
134
|
+
paddingProvided,
|
122
135
|
localValue,
|
123
136
|
noListenerAttrs,
|
124
137
|
getRangeFromExtent,
|
@@ -32,11 +32,12 @@ declare const _default: import("vue").DefineComponent<{
|
|
32
32
|
default: () => never[][];
|
33
33
|
};
|
34
34
|
}, {
|
35
|
+
paddingProvided: import("vue").ComputedRef<boolean>;
|
35
36
|
localValue: import("vue").Ref<any>;
|
36
37
|
noListenerAttrs: import("vue").ComputedRef<Record<string, unknown>>;
|
37
38
|
getRangeFromExtent: typeof getRangeFromExtent;
|
38
39
|
getRulesForAxis(idx: any): any[];
|
39
|
-
}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin,
|
40
|
+
}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
40
41
|
modelValue: {
|
41
42
|
type: ArrayConstructor;
|
42
43
|
default: () => number[];
|
@@ -69,7 +70,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
69
70
|
type: ArrayConstructor;
|
70
71
|
default: () => never[][];
|
71
72
|
};
|
72
|
-
}
|
73
|
+
}>> & {
|
74
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
75
|
+
}, {
|
73
76
|
modelValue: unknown[];
|
74
77
|
decimals: unknown[];
|
75
78
|
extent: unknown[];
|
@@ -1,47 +1,45 @@
|
|
1
1
|
<template>
|
2
|
-
<
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
2
|
+
<VcsTextField
|
3
|
+
:prepend-icon="icon"
|
4
|
+
class="vcs-date-picker"
|
5
|
+
readonly
|
6
|
+
v-bind="$attrs"
|
7
|
+
v-model="formattedDate"
|
8
8
|
>
|
9
|
-
<
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
v-bind="props"
|
17
|
-
v-model="formattedDate"
|
18
|
-
/>
|
19
|
-
</template>
|
20
|
-
<v-date-picker
|
21
|
-
v-model="date"
|
22
|
-
hide-header
|
23
|
-
@update:model-value="menuOpen = false"
|
24
|
-
color="primary"
|
9
|
+
<v-menu
|
10
|
+
activator="parent"
|
11
|
+
v-model="menuOpen"
|
12
|
+
:close-on-content-click="false"
|
13
|
+
transition="scale-transition"
|
14
|
+
max-width="290px"
|
15
|
+
min-width="290px"
|
25
16
|
>
|
26
|
-
<
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
17
|
+
<v-date-picker
|
18
|
+
v-model="localValue"
|
19
|
+
hide-header
|
20
|
+
@update:model-value="menuOpen = false"
|
21
|
+
color="primary"
|
22
|
+
>
|
23
|
+
<template #actions>
|
24
|
+
<v-btn color="primary" @click="goToToday">
|
25
|
+
{{ $t('datePicker.today') }}
|
26
|
+
</v-btn>
|
27
|
+
</template>
|
28
|
+
</v-date-picker>
|
29
|
+
</v-menu>
|
30
|
+
</VcsTextField>
|
33
31
|
</template>
|
34
32
|
<style lang="scss" scoped></style>
|
35
33
|
<script>
|
36
|
-
import { computed, ref
|
34
|
+
import { computed, ref } from 'vue';
|
37
35
|
import { VMenu, VDatePicker, VBtn } from 'vuetify/components';
|
38
36
|
import { useI18n } from 'vue-i18n';
|
39
|
-
import { getLogger } from '@vcsuite/logger';
|
40
37
|
import VcsTextField from './VcsTextField.vue';
|
38
|
+
import { useProxiedAtomicModel } from '../modelHelper.js';
|
41
39
|
|
42
40
|
/**
|
43
|
-
* @description stylized wrapper around {@link https://
|
44
|
-
* @vue-prop {
|
41
|
+
* @description stylized wrapper around {@link https://vuetifyjs.com/en/components/date-pickers/#internationalization}.
|
42
|
+
* @vue-prop {Date} modelValue - value of the date picker as a Date (changes to the Date Object are not tracked, handled as atomic value)
|
45
43
|
* @vue-prop {string} [icon] - specify optional prepend icon, defaults to mdi-calendar
|
46
44
|
*/
|
47
45
|
export default {
|
@@ -65,27 +63,14 @@
|
|
65
63
|
emits: ['update:modelValue'],
|
66
64
|
setup(props, { emit }) {
|
67
65
|
const i18n = useI18n();
|
68
|
-
const localValue =
|
66
|
+
const localValue = useProxiedAtomicModel(props, 'modelValue', emit);
|
69
67
|
const menuOpen = ref(false);
|
70
68
|
|
71
|
-
const isValid = (date) => !Number.isNaN(date.getTime());
|
72
|
-
const setFromValue = () => {
|
73
|
-
if (isValid(props.modelValue)) {
|
74
|
-
localValue.value = props.modelValue;
|
75
|
-
} else if (localValue.value) {
|
76
|
-
getLogger('VcsDatePicker').error(
|
77
|
-
'Invalid date provided: ',
|
78
|
-
props.modelValue,
|
79
|
-
);
|
80
|
-
}
|
81
|
-
};
|
82
|
-
onBeforeMount(() => setFromValue());
|
83
|
-
|
84
69
|
const formatDate = (date) => {
|
85
70
|
if (date) {
|
86
71
|
return new Intl.DateTimeFormat(i18n.locale.value, {
|
87
72
|
dateStyle: 'short',
|
88
|
-
}).format(
|
73
|
+
}).format(date);
|
89
74
|
}
|
90
75
|
return '';
|
91
76
|
};
|
@@ -93,27 +78,16 @@
|
|
93
78
|
localValue.value = new Date();
|
94
79
|
menuOpen.value = false;
|
95
80
|
};
|
96
|
-
watch(
|
97
|
-
() => props.modelValue,
|
98
|
-
() => setFromValue(),
|
99
|
-
);
|
100
81
|
const formattedDate = computed({
|
101
82
|
get: () => {
|
102
83
|
return formatDate(localValue.value);
|
103
84
|
},
|
104
85
|
set: () => {},
|
105
86
|
});
|
106
|
-
const date = computed({
|
107
|
-
get: () => localValue.value,
|
108
|
-
set: (nv) => {
|
109
|
-
localValue.value = nv;
|
110
|
-
emit('update:modelValue', localValue.value);
|
111
|
-
},
|
112
|
-
});
|
113
87
|
|
114
88
|
return {
|
115
89
|
formattedDate,
|
116
|
-
|
90
|
+
localValue,
|
117
91
|
menuOpen,
|
118
92
|
formatDate,
|
119
93
|
goToToday,
|
@@ -9,69 +9,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
9
9
|
};
|
10
10
|
}, {
|
11
11
|
formattedDate: import("vue").WritableComputedRef<string>;
|
12
|
-
|
13
|
-
toString: () => string;
|
14
|
-
toDateString: () => string;
|
15
|
-
toTimeString: () => string;
|
16
|
-
toLocaleString: {
|
17
|
-
(): string;
|
18
|
-
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
19
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
20
|
-
};
|
21
|
-
toLocaleDateString: {
|
22
|
-
(): string;
|
23
|
-
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
24
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
25
|
-
};
|
26
|
-
toLocaleTimeString: {
|
27
|
-
(): string;
|
28
|
-
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
29
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
30
|
-
};
|
31
|
-
valueOf: () => number;
|
32
|
-
getTime: () => number;
|
33
|
-
getFullYear: () => number;
|
34
|
-
getUTCFullYear: () => number;
|
35
|
-
getMonth: () => number;
|
36
|
-
getUTCMonth: () => number;
|
37
|
-
getDate: () => number;
|
38
|
-
getUTCDate: () => number;
|
39
|
-
getDay: () => number;
|
40
|
-
getUTCDay: () => number;
|
41
|
-
getHours: () => number;
|
42
|
-
getUTCHours: () => number;
|
43
|
-
getMinutes: () => number;
|
44
|
-
getUTCMinutes: () => number;
|
45
|
-
getSeconds: () => number;
|
46
|
-
getUTCSeconds: () => number;
|
47
|
-
getMilliseconds: () => number;
|
48
|
-
getUTCMilliseconds: () => number;
|
49
|
-
getTimezoneOffset: () => number;
|
50
|
-
setTime: (time: number) => number;
|
51
|
-
setMilliseconds: (ms: number) => number;
|
52
|
-
setUTCMilliseconds: (ms: number) => number;
|
53
|
-
setSeconds: (sec: number, ms?: number | undefined) => number;
|
54
|
-
setUTCSeconds: (sec: number, ms?: number | undefined) => number;
|
55
|
-
setMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
|
56
|
-
setUTCMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
|
57
|
-
setHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
|
58
|
-
setUTCHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
|
59
|
-
setDate: (date: number) => number;
|
60
|
-
setUTCDate: (date: number) => number;
|
61
|
-
setMonth: (month: number, date?: number | undefined) => number;
|
62
|
-
setUTCMonth: (month: number, date?: number | undefined) => number;
|
63
|
-
setFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
64
|
-
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
65
|
-
toUTCString: () => string;
|
66
|
-
toISOString: () => string;
|
67
|
-
toJSON: (key?: any) => string;
|
68
|
-
[Symbol.toPrimitive]: {
|
69
|
-
(hint: "default"): string;
|
70
|
-
(hint: "string"): string;
|
71
|
-
(hint: "number"): number;
|
72
|
-
(hint: string): string | number;
|
73
|
-
};
|
74
|
-
}>;
|
12
|
+
localValue: import("vue").Ref<any>;
|
75
13
|
menuOpen: import("vue").Ref<boolean>;
|
76
14
|
formatDate: (date: any) => string;
|
77
15
|
goToToday: () => void;
|
@@ -4,24 +4,29 @@
|
|
4
4
|
variant="outlined"
|
5
5
|
clear-icon="$close"
|
6
6
|
:hide-details="false"
|
7
|
+
color="primary vcs-file-input"
|
7
8
|
class="primary--placeholder"
|
8
9
|
:class="{
|
9
10
|
'py-1': !paddingProvided,
|
10
11
|
}"
|
11
12
|
v-bind="$attrs"
|
12
13
|
>
|
13
|
-
<template
|
14
|
+
<template v-for="slot of forwardSlots" #[slot]="scope">
|
15
|
+
<slot :name="slot" v-bind="scope ?? {}" />
|
16
|
+
</template>
|
17
|
+
<template #message="scope">
|
14
18
|
<v-tooltip
|
15
19
|
ref="errorTooltipRef"
|
16
20
|
:activator="fileInputRef"
|
17
|
-
v-if="message"
|
18
|
-
:text="$st(message)"
|
21
|
+
v-if="scope?.message"
|
22
|
+
:text="$st(scope?.message)"
|
19
23
|
content-class="bg-error"
|
20
24
|
:location="tooltipPosition"
|
21
25
|
/>
|
26
|
+
<slot name="message" v-bind="scope ?? {}"></slot>
|
22
27
|
</template>
|
23
|
-
<template #append-inner>
|
24
|
-
<slot name="append-inner"></slot>
|
28
|
+
<template #append-inner="scope">
|
29
|
+
<slot name="append-inner" v-bind="scope ?? {}"></slot>
|
25
30
|
<v-tooltip
|
26
31
|
:activator="fileInputRef"
|
27
32
|
v-if="tooltip && !errorTooltipRef"
|
@@ -29,14 +34,6 @@
|
|
29
34
|
:location="tooltipPosition"
|
30
35
|
/>
|
31
36
|
</template>
|
32
|
-
<template
|
33
|
-
v-for="slot of Object.keys($slots).filter(
|
34
|
-
(name) => name !== 'append-inner',
|
35
|
-
)"
|
36
|
-
#[slot]="scope"
|
37
|
-
>
|
38
|
-
<slot :name="slot" v-bind="scope" />
|
39
|
-
</template>
|
40
37
|
</v-file-input>
|
41
38
|
</template>
|
42
39
|
|
@@ -44,19 +41,19 @@
|
|
44
41
|
@import './vcsTextField.scss';
|
45
42
|
|
46
43
|
// set text overflow for file input
|
47
|
-
:deep(.v-
|
48
|
-
display:
|
49
|
-
max-width: 100%;
|
44
|
+
:deep(.v-field__input) {
|
45
|
+
display: unset;
|
50
46
|
overflow: hidden;
|
51
47
|
text-overflow: ellipsis;
|
52
48
|
white-space: nowrap;
|
49
|
+
line-height: calc(var(--v-vcs-item-height) - 9px);
|
53
50
|
}
|
54
51
|
</style>
|
55
52
|
|
56
53
|
<script>
|
57
54
|
import { ref } from 'vue';
|
58
55
|
import { VFileInput, VTooltip } from 'vuetify/components';
|
59
|
-
import { usePadding } from '../composables.js';
|
56
|
+
import { useForwardSlots, usePadding } from '../composables.js';
|
60
57
|
|
61
58
|
/**
|
62
59
|
* @description extends API of {@link https://vuetifyjs.com/en/api/v-file-input v-text-field}.
|
@@ -84,13 +81,15 @@
|
|
84
81
|
default: 'right',
|
85
82
|
},
|
86
83
|
},
|
87
|
-
setup(props, { attrs }) {
|
84
|
+
setup(props, { attrs, slots }) {
|
88
85
|
const fileInputRef = ref();
|
89
86
|
const errorTooltipRef = ref();
|
90
87
|
|
91
88
|
const paddingProvided = usePadding(attrs);
|
89
|
+
const forwardSlots = useForwardSlots(slots, ['append-inner', 'message']);
|
92
90
|
|
93
91
|
return {
|
92
|
+
forwardSlots,
|
94
93
|
paddingProvided,
|
95
94
|
fileInputRef,
|
96
95
|
errorTooltipRef,
|
@@ -8,6 +8,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
8
8
|
default: string;
|
9
9
|
};
|
10
10
|
}, {
|
11
|
+
forwardSlots: import("vue").ComputedRef<string[]>;
|
11
12
|
paddingProvided: import("vue").ComputedRef<boolean>;
|
12
13
|
fileInputRef: import("vue").Ref<any>;
|
13
14
|
errorTooltipRef: import("vue").Ref<any>;
|
@@ -1,5 +1,12 @@
|
|
1
1
|
<template>
|
2
|
-
<v-radio-group
|
2
|
+
<v-radio-group
|
3
|
+
ref="radioGroup"
|
4
|
+
class="vcs-radio"
|
5
|
+
:class="{
|
6
|
+
'py-1': !paddingProvided,
|
7
|
+
}"
|
8
|
+
v-bind="$attrs"
|
9
|
+
>
|
3
10
|
<v-radio
|
4
11
|
v-for="(item, idx) in items"
|
5
12
|
:id="`${$.uid}-${idx}`"
|
@@ -8,6 +15,7 @@
|
|
8
15
|
:disabled="$attrs.disabled ?? item.disabled ?? false"
|
9
16
|
:color="item?.color ?? undefined"
|
10
17
|
:error="!!errorTooltip"
|
18
|
+
class="pa-0"
|
11
19
|
:class="{
|
12
20
|
'flex-column': labelPosition !== 'right',
|
13
21
|
'label-top': labelPosition === 'top',
|
@@ -44,7 +52,6 @@
|
|
44
52
|
.v-input--density-compact :deep(.v-selection-control) {
|
45
53
|
--v-selection-control-size: calc(var(--v-vcs-item-height) - 8px);
|
46
54
|
--v-input-control-height: calc(var(--v-vcs-item-height) - 16px);
|
47
|
-
padding: 4px;
|
48
55
|
}
|
49
56
|
// remove ripple effect
|
50
57
|
:deep(.v-selection-control__input::before) {
|
@@ -58,10 +65,15 @@
|
|
58
65
|
:deep(.label-top > .v-selection-control__wrapper) {
|
59
66
|
order: 2;
|
60
67
|
}
|
68
|
+
:deep(.v-selection-control-group) {
|
69
|
+
row-gap: 8px;
|
70
|
+
column-gap: 8px;
|
71
|
+
}
|
61
72
|
</style>
|
62
73
|
<script>
|
63
74
|
import { ref } from 'vue';
|
64
75
|
import { VRadio, VRadioGroup, VTooltip } from 'vuetify/components';
|
76
|
+
import { usePadding } from '../composables.js';
|
65
77
|
|
66
78
|
/**
|
67
79
|
* @typedef {Object} VcsRadioItem
|
@@ -112,11 +124,13 @@
|
|
112
124
|
default: 'right',
|
113
125
|
},
|
114
126
|
},
|
115
|
-
setup() {
|
127
|
+
setup(props, { attrs }) {
|
116
128
|
const radioGroup = ref();
|
117
129
|
const errorTooltip = ref();
|
130
|
+
const paddingProvided = usePadding(attrs);
|
118
131
|
|
119
132
|
return {
|
133
|
+
paddingProvided,
|
120
134
|
radioGroup,
|
121
135
|
errorTooltip,
|
122
136
|
};
|
@@ -20,6 +20,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
20
20
|
default: string;
|
21
21
|
};
|
22
22
|
}, {
|
23
|
+
paddingProvided: import("vue").ComputedRef<boolean>;
|
23
24
|
radioGroup: import("vue").Ref<any>;
|
24
25
|
errorTooltip: import("vue").Ref<any>;
|
25
26
|
}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|