@vcmap/ui 6.0.0-rc.2 → 6.0.0-rc.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.
Files changed (178) hide show
  1. package/build/build.js +40 -60
  2. package/build/buildHelpers.js +2 -8
  3. package/build/info/conf.json +1 -1
  4. package/config/projects.config.json +2 -1
  5. package/config/splashscreen.config.json +45 -0
  6. package/dist/.htaccess +7 -0
  7. package/dist/assets/@mdi/font/README.md +25 -0
  8. package/dist/assets/@mdi/font/css/materialdesignicons.min-7a4f6be0.css +3 -0
  9. package/dist/assets/@mdi/font/css/materialdesignicons.min.css.map +16 -0
  10. package/dist/assets/@mdi/font/fonts/materialdesignicons-webfont.woff2 +0 -0
  11. package/dist/assets/cesium.js +1 -1
  12. package/dist/assets/{core.cbf44a.js → core-72f21835.js} +673 -641
  13. package/dist/assets/core.js +1 -1
  14. package/dist/assets/{ol.86e93c.js → ol-2d33bc8b.js} +42505 -44282
  15. package/dist/assets/ol.js +1 -1
  16. package/dist/assets/ui-2ab43a16.css +1 -0
  17. package/dist/assets/{ui.7c276c.js → ui-2ab43a16.js} +12026 -12100
  18. package/dist/assets/ui.js +1 -1
  19. package/dist/assets/vue.js +1 -1
  20. package/dist/assets/{vuetify.4d18fe.css → vuetify-760ced3b.css} +1 -1
  21. package/dist/assets/{vuetify.4d18fe.js → vuetify-760ced3b.js} +5720 -5662
  22. package/dist/assets/vuetify.js +1 -1
  23. package/dist/index.html +11 -10
  24. package/index.d.ts +7 -5
  25. package/index.html +5 -5
  26. package/index.js +3 -3
  27. package/lib/olLib.js +84 -23
  28. package/package.json +5 -5
  29. package/plugins/@vcmap-show-case/flight-component-example/src/FlightExample.vue +41 -1
  30. package/plugins/@vcmap-show-case/form-inputs-example/src/FormInputsExample.vue +70 -30
  31. package/plugins/@vcmap-show-case/form-inputs-example/src/exampleActions.js +7 -11
  32. package/plugins/@vcmap-show-case/form-inputs-example/src/index.js +2 -2
  33. package/plugins/@vcmap-show-case/list-example/src/ListExample.vue +21 -8
  34. package/plugins/@vcmap-show-case/style-input-example/src/StyleExample.vue +29 -90
  35. package/public/assets/@mdi/font/README.md +25 -0
  36. package/public/assets/@mdi/font/css/materialdesignicons.min.css +2 -2
  37. package/public/assets/@mdi/font/css/materialdesignicons.min.css.map +16 -0
  38. package/public/assets/@mdi/font/fonts/materialdesignicons-webfont.woff2 +0 -0
  39. package/src/actions/actionHelper.js +20 -20
  40. package/src/actions/flightActions.js +5 -5
  41. package/src/actions/listActions.d.ts +0 -7
  42. package/src/actions/listActions.js +4 -20
  43. package/src/actions/stateRefAction.js +2 -2
  44. package/src/application/VcsApp.vue +52 -27
  45. package/src/application/VcsApp.vue.d.ts +1 -0
  46. package/src/application/VcsAttributions.vue +2 -13
  47. package/src/application/VcsAttributionsFooter.vue +10 -11
  48. package/src/application/VcsPositionDisplay.vue +8 -23
  49. package/src/application/VcsPositionDisplay.vue.d.ts +0 -1
  50. package/src/application/VcsSettings.vue +10 -17
  51. package/src/application/VcsSplashScreen.vue +25 -42
  52. package/src/application/VcsSplashScreen.vue.d.ts +0 -2
  53. package/src/application/VcsTextPage.vue +12 -43
  54. package/src/application/VcsTextPage.vue.d.ts +4 -8
  55. package/src/application/VcsTextPageFooter.vue +22 -40
  56. package/src/components/extent/VcsExtentEditor.vue +1 -1
  57. package/src/components/flight/VcsFlightAnchorsComponent.vue +63 -36
  58. package/src/components/flight/VcsFlightComponent.vue +16 -21
  59. package/src/components/flight/VcsFlightPlayer.vue +27 -5
  60. package/src/components/form-inputs-controls/VcsCheckbox.vue +9 -5
  61. package/src/components/form-inputs-controls/VcsCoordinate.vue +13 -1
  62. package/src/components/form-inputs-controls/VcsCoordinate.vue.d.ts +5 -2
  63. package/src/components/form-inputs-controls/VcsDatePicker.vue +34 -60
  64. package/src/components/form-inputs-controls/VcsDatePicker.vue.d.ts +1 -63
  65. package/src/components/form-inputs-controls/VcsFileInput.vue +17 -18
  66. package/src/components/form-inputs-controls/VcsFileInput.vue.d.ts +1 -0
  67. package/src/components/form-inputs-controls/VcsLabel.vue +1 -1
  68. package/src/components/form-inputs-controls/VcsRadio.vue +17 -3
  69. package/src/components/form-inputs-controls/VcsRadio.vue.d.ts +1 -0
  70. package/src/components/form-inputs-controls/VcsSelect.vue +39 -27
  71. package/src/components/form-inputs-controls/VcsSelect.vue.d.ts +5 -2
  72. package/src/components/form-inputs-controls/VcsSlider.vue +14 -1
  73. package/src/components/form-inputs-controls/VcsSlider.vue.d.ts +5 -2
  74. package/src/components/form-inputs-controls/VcsTextArea.vue +26 -22
  75. package/src/components/form-inputs-controls/VcsTextArea.vue.d.ts +1 -0
  76. package/src/components/form-inputs-controls/VcsTextField.vue +6 -4
  77. package/src/components/form-inputs-controls/VcsWizardStep.vue +1 -1
  78. package/src/components/form-inputs-controls/vcsTextField.scss +8 -8
  79. package/src/components/form-output/VcsFormattedNumber.vue +15 -1
  80. package/src/components/form-output/VcsFormattedNumber.vue.d.ts +9 -0
  81. package/src/components/lists/VcsActionList.vue +7 -7
  82. package/src/components/lists/VcsList.vue +10 -17
  83. package/src/components/lists/VcsList.vue.d.ts +3 -7
  84. package/src/components/lists/VcsListItem.vue +51 -21
  85. package/src/components/lists/VcsListItem.vue.d.ts +11 -5
  86. package/src/components/section/VcsExpansionPanel.vue +101 -0
  87. package/src/components/section/VcsExpansionPanel.vue.d.ts +19 -0
  88. package/src/components/style/MenuWrapper.vue +24 -26
  89. package/src/components/style/MenuWrapper.vue.d.ts +4 -4
  90. package/src/components/style/VcsFillMenu.vue +9 -16
  91. package/src/components/style/VcsFillMenu.vue.d.ts +0 -18
  92. package/src/components/style/VcsFillSelector.vue +13 -16
  93. package/src/components/style/VcsImageMenu.vue +8 -25
  94. package/src/components/style/VcsImageMenu.vue.d.ts +0 -27
  95. package/src/components/style/VcsImageSelector.vue +102 -167
  96. package/src/components/style/VcsImageSelector.vue.d.ts +15 -15
  97. package/src/components/style/VcsStrokeMenu.vue +8 -15
  98. package/src/components/style/VcsStrokeMenu.vue.d.ts +0 -18
  99. package/src/components/style/VcsStrokeSelector.vue +11 -18
  100. package/src/components/style/VcsTextMenu.vue +9 -12
  101. package/src/components/style/VcsTextMenu.vue.d.ts +0 -9
  102. package/src/components/style/VcsTextSelector.vue +79 -95
  103. package/src/components/style/VcsTextSelector.vue.d.ts +20 -22
  104. package/src/components/style/VcsVectorStyleComponent.vue +7 -18
  105. package/src/components/style/VcsVectorStyleComponent.vue.d.ts +1 -1
  106. package/src/components/style/composables.d.ts +0 -14
  107. package/src/components/style/composables.js +0 -49
  108. package/src/components/vector-properties/VcsFeatureEditingWindow.vue +39 -6
  109. package/src/components/vector-properties/VcsVectorPropertiesComponent.vue +1 -1
  110. package/src/components/viewpoint/VcsViewpointComponent.vue +21 -8
  111. package/src/components/viewpoint/VcsViewpointEditor.vue +1 -0
  112. package/src/contentTree/contentTreeItem.d.ts +2 -2
  113. package/src/contentTree/contentTreeItem.js +7 -7
  114. package/src/featureInfo/featureInfo.js +8 -10
  115. package/src/init.d.ts +5 -38
  116. package/src/init.js +19 -18
  117. package/src/legend/StyleLegendItem.vue +4 -9
  118. package/src/legend/VcsLegend.vue +28 -54
  119. package/src/manager/buttonManager.js +4 -4
  120. package/src/manager/collectionManager/CollectionComponent.vue +17 -42
  121. package/src/manager/collectionManager/CollectionComponent.vue.d.ts +4 -2
  122. package/src/manager/collectionManager/CollectionComponentContent.vue +7 -6
  123. package/src/manager/collectionManager/CollectionComponentContent.vue.d.ts +3 -1
  124. package/src/manager/collectionManager/CollectionComponentList.vue +10 -8
  125. package/src/manager/collectionManager/CollectionComponentList.vue.d.ts +4 -2
  126. package/src/manager/collectionManager/CollectionComponentProvider.vue +1 -1
  127. package/src/manager/collectionManager/CollectionComponentStandalone.vue +3 -2
  128. package/src/manager/collectionManager/CollectionManager.vue +1 -1
  129. package/src/manager/collectionManager/collectionComponentClass.js +6 -9
  130. package/src/manager/collectionManager/collectionManager.js +10 -10
  131. package/src/manager/collectionManager/editorCollectionComponentClass.js +4 -4
  132. package/src/manager/contextMenu/contextMenuManager.js +2 -2
  133. package/src/manager/navbarManager.js +2 -2
  134. package/src/manager/panel/panelManager.js +3 -3
  135. package/src/manager/toolbox/toolboxManager.js +10 -10
  136. package/src/manager/window/windowManager.d.ts +2 -2
  137. package/src/manager/window/windowManager.js +4 -4
  138. package/src/search/search.js +2 -2
  139. package/src/siteConfig.js +1 -1
  140. package/src/state.js +4 -4
  141. package/src/vcsUiApp.d.ts +14 -10
  142. package/src/vcsUiApp.js +1 -1
  143. package/src/vuePlugins/vuetify.d.ts +2 -0
  144. package/src/vuePlugins/vuetify.js +11 -0
  145. package/dist/assets/@mdi/font/css/materialdesignicons.css.map +0 -16
  146. package/dist/assets/@mdi/font/css/materialdesignicons.min.e3f476.css +0 -3
  147. package/dist/assets/index-8eGauqjA.js +0 -1
  148. package/dist/assets/ui.7c276c.css +0 -1
  149. package/public/assets/@mdi/font/css/materialdesignicons.css.map +0 -16
  150. package/src/application/VcsCustomScreen.vue +0 -45
  151. package/src/application/VcsCustomScreen.vue.d.ts +0 -15
  152. /package/dist/assets/{cesium.0b750d.js → cesium-cb4dbfba.js} +0 -0
  153. /package/dist/assets/{favicon-128.4c4ce5.png → favicon-128-4c4ce5df.png} +0 -0
  154. /package/dist/assets/{favicon-180.5b99c0.png → favicon-180-4c4ce5df.png} +0 -0
  155. /package/dist/assets/{favicon-192.0e205e.png → favicon-192-4c4ce5df.png} +0 -0
  156. /package/dist/assets/{favicon-32.6b9add.png → favicon-32-4c4ce5df.png} +0 -0
  157. /package/dist/assets/{favicon.d5ec97.svg → favicon-4c4ce5df.svg} +0 -0
  158. /package/dist/assets/font/{TitilliumWeb-Regular.9ca076.woff2 → TitilliumWeb-Regular-9ca076be.woff2} +0 -0
  159. /package/dist/assets/style/{icon-marker.70960f.png → icon-marker-70960f05.png} +0 -0
  160. /package/dist/assets/style/{icon-marker-blue.534e37.png → icon-marker-blue-534e374b.png} +0 -0
  161. /package/dist/assets/style/{icon-marker-green.0b6a92.png → icon-marker-green-0b6a92bc.png} +0 -0
  162. /package/dist/assets/style/{icon-marker-o.036477.png → icon-marker-o-036477fa.png} +0 -0
  163. /package/dist/assets/style/{icon-marker-o-blue.7b6d62.png → icon-marker-o-blue-7b6d6279.png} +0 -0
  164. /package/dist/assets/style/{icon-marker-o-green.c863c0.png → icon-marker-o-green-c863c0fa.png} +0 -0
  165. /package/dist/assets/style/{icon-marker-o-red.93ff58.png → icon-marker-o-red-93ff58df.png} +0 -0
  166. /package/dist/assets/style/{icon-marker-red.313d03.png → icon-marker-red-313d03e8.png} +0 -0
  167. /package/dist/assets/style/{icon-pin.b7ce77.png → icon-pin-b7ce771e.png} +0 -0
  168. /package/dist/assets/style/{icon-pin-blue.7be369.png → icon-pin-blue-7be369a3.png} +0 -0
  169. /package/dist/assets/style/{icon-pin-green.cbb935.png → icon-pin-green-cbb935fe.png} +0 -0
  170. /package/dist/assets/style/{icon-pin-red.3f25b2.png → icon-pin-red-3f25b245.png} +0 -0
  171. /package/dist/assets/{vue.a3cd64.js → vue-03b265aa.js} +0 -0
  172. /package/public/assets/{favicon-128.png → favicon-128-4c4ce5df.png} +0 -0
  173. /package/public/assets/{favicon-180.png → favicon-180-4c4ce5df.png} +0 -0
  174. /package/public/assets/{favicon-192.png → favicon-192-4c4ce5df.png} +0 -0
  175. /package/public/assets/{favicon-32.png → favicon-32-4c4ce5df.png} +0 -0
  176. /package/public/assets/{favicon.svg → favicon-4c4ce5df.svg} +0 -0
  177. /package/src/components/{form-inputs-controls → section}/VcsFormSection.vue +0 -0
  178. /package/src/components/{form-inputs-controls → section}/VcsFormSection.vue.d.ts +0 -0
@@ -4,8 +4,8 @@
4
4
  <VcsSlider
5
5
  v-if="clock"
6
6
  type="number"
7
- v-model="clock.currentTime"
8
- @change="setTime"
7
+ :model-value="clock.currentTime"
8
+ @update:modelValue="setTime"
9
9
  :step="0"
10
10
  :min="clock.startTime"
11
11
  :max="clock.endTime"
@@ -25,7 +25,8 @@
25
25
  :has-update="btn.hasUpdate"
26
26
  :background="btn.background"
27
27
  @click.stop="btn.callback($event)"
28
- v-bind="{ ...$attrs, ...btn.listeners }"
28
+ v-bind="{ ...$attrs }"
29
+ v-on="btn.listeners ? btn.listeners : {}"
29
30
  />
30
31
  <span>{{ clockTime(clock.endTime) }}</span>
31
32
  </div>
@@ -49,6 +50,19 @@
49
50
  };
50
51
  }
51
52
 
53
+ /**
54
+ *
55
+ * @param {import("vue").Ref<Partial<import("@vcmap/core").FlightPlayerClock>>} clock
56
+ * @param {import("@vcmap/core").FlightPlayerClock} changed
57
+ */
58
+ function syncClocks(clock, changed) {
59
+ Object.keys(getDefaultClock()).forEach((key) => {
60
+ if (clock.value[key] !== changed[key]) {
61
+ clock.value[key] = changed[key];
62
+ }
63
+ });
64
+ }
65
+
52
66
  /**
53
67
  * @description A component for editing flight anchors.
54
68
  * Requires a flightInstance to be provided via vue-provide.
@@ -79,12 +93,19 @@
79
93
  flightInstance,
80
94
  );
81
95
 
96
+ let clockChangedListener = () => {};
82
97
  const playerChangedListener = app.flights.playerChanged.addEventListener(
83
98
  (player) => {
99
+ clockChangedListener();
84
100
  if (player?.flightInstanceName === flightInstance.name) {
85
101
  isCurrentPlayer.value = true;
86
102
  flightInstancePlayer = player;
87
- clock.value = player.clock;
103
+ syncClocks(clock, player.clock);
104
+ clockChangedListener = player.clock.changed.addEventListener(
105
+ (changed) => {
106
+ syncClocks(clock, changed);
107
+ },
108
+ );
88
109
  } else {
89
110
  isCurrentPlayer.value = false;
90
111
  flightInstancePlayer = undefined;
@@ -96,7 +117,7 @@
96
117
  onMounted(async () => {
97
118
  flightInstancePlayer =
98
119
  await app.flights.setPlayerForFlight(flightInstance);
99
- clock.value = flightInstancePlayer.clock;
120
+ syncClocks(clock, flightInstancePlayer.clock);
100
121
  });
101
122
 
102
123
  onUnmounted(() => {
@@ -114,6 +135,7 @@
114
135
  return `${mins}:${secs < 10 ? 0 : ''}${secs}`;
115
136
  },
116
137
  setTime(seconds) {
138
+ clock.value.currentTime = seconds;
117
139
  flightInstancePlayer?.goToTime(seconds);
118
140
  },
119
141
  };
@@ -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="{ 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: calc(var(--v-vcs-item-height) - 8px);
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,
@@ -1,5 +1,12 @@
1
1
  <template>
2
- <v-row no-gutters v-if="localValue">
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
12
  <v-col :key="`${prefixes[idx]}-coordinate`" v-if="!hideZ || idx < 2">
@@ -7,6 +14,7 @@
7
14
  :id="`${prefixes[idx]}-coordinate`"
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]"
@@ -33,6 +41,7 @@
33
41
  import { between } from '../style/composables.js';
34
42
  import { useProxiedComplexModel } from '../modelHelper.js';
35
43
  import { removeListenersFromAttrs } from '../attrsHelpers.js';
44
+ import { usePadding } from '../composables.js';
36
45
 
37
46
  /**
38
47
  *
@@ -114,11 +123,14 @@
114
123
  default: () => [[], [], []],
115
124
  },
116
125
  },
126
+ emits: ['update:modelValue'],
117
127
  setup(props, { attrs, emit }) {
118
128
  const localValue = useProxiedComplexModel(props, 'modelValue', emit);
119
129
  const noListenerAttrs = computed(() => removeListenersFromAttrs(attrs));
130
+ const paddingProvided = usePadding(attrs);
120
131
 
121
132
  return {
133
+ paddingProvided,
122
134
  localValue,
123
135
  noListenerAttrs,
124
136
  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, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
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
- <v-menu
3
- v-model="menuOpen"
4
- :close-on-content-click="false"
5
- transition="scale-transition"
6
- max-width="290px"
7
- min-width="290px"
2
+ <VcsTextField
3
+ :prepend-icon="icon"
4
+ class="vcs-date-picker"
5
+ readonly
6
+ v-bind="$attrs"
7
+ v-model="formattedDate"
8
8
  >
9
- <template #activator="{ props }">
10
- <VcsTextField
11
- :placeholder="formatDate(new Date().toISOString())"
12
- :prepend-icon="icon"
13
- readonly
14
- hide-details
15
- class="ma-0 py-1"
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
- <template #actions>
27
- <v-btn color="primary" @click="goToToday">
28
- {{ $t('datePicker.today') }}
29
- </v-btn>
30
- </template>
31
- </v-date-picker>
32
- </v-menu>
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, watch, onBeforeMount } from 'vue';
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://v15.vuetifyjs.com/en/components/date-pickers/#month-pickers-in-dialog-and-menu}.
44
- * @vue-prop {string} modelValue - value of the date picker in {@link https://tc39.es/ecma262/#sec-date-time-string-format | Date Time String Format}
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 = ref(props.modelValue);
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(Date.parse(date));
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
- date,
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
- date: import("vue").WritableComputedRef<{
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 #message="{ message }">
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-field__field) {
48
- display: inline-block;
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>;
@@ -5,7 +5,7 @@
5
5
  :class="{
6
6
  'vcs-label-required': required,
7
7
  'vcs-label-disabled': disabled,
8
- 'py-1': !paddingProvided,
8
+ 'pa-1': !paddingProvided,
9
9
  }"
10
10
  >
11
11
  <slot />
@@ -1,5 +1,12 @@
1
1
  <template>
2
- <v-radio-group v-bind="{ ...$attrs }" ref="radioGroup">
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<{