@policystudio/policy-studio-ui-vue 1.1.90-beta.20 → 1.1.90-beta.21
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/package.json +2 -3
- package/src/components/accordion/PsAccordionItem.vue +1 -1
- package/src/components/badges-and-tags/PsBadgeWithIcon.vue +1 -1
- package/src/components/badges-and-tags/PsCardInfos.vue +0 -1
- package/src/components/badges-and-tags/PsChartLegend.vue +0 -1
- package/src/components/badges-and-tags/PsClimateZoneBadge.vue +0 -1
- package/src/components/badges-and-tags/PsCostEffectBar.vue +1 -1
- package/src/components/badges-and-tags/PsDateCardInfo.vue +1 -1
- package/src/components/badges-and-tags/PsMiniTag.vue +1 -1
- package/src/components/badges-and-tags/PsProgressBar.vue +1 -1
- package/src/components/badges-and-tags/PsTagScope.vue +1 -1
- package/src/components/badges-and-tags/PsTestimonialCard.vue +0 -1
- package/src/components/buttons/PsButton.vue +1 -1
- package/src/components/chips/PsChips.vue +1 -1
- package/src/components/controls/PsCheckbox.vue +1 -1
- package/src/components/controls/PsCheckboxSimple.vue +1 -1
- package/src/components/controls/PsDraggable.vue +1 -1
- package/src/components/controls/PsInlineSelector.vue +0 -1
- package/src/components/controls/PsRadioButton.vue +1 -1
- package/src/components/controls/PsRadioButtonSimple.vue +1 -1
- package/src/components/controls/PsSlider.vue +1 -1
- package/src/components/controls/PsSwitch.vue +1 -1
- package/src/components/controls/PsToggle.vue +0 -1
- package/src/components/data-graphics/PsBarChart.vue +0 -1
- package/src/components/datatable/PsDataTable.vue +1 -1
- package/src/components/datatable/PsDataTableItem.vue +0 -1
- package/src/components/forms/PsDropdown.vue +1 -1
- package/src/components/forms/PsDropdownList.vue +1 -1
- package/src/components/forms/PsInput.vue +1 -2
- package/src/components/forms/PsInputSelect.vue +1 -1
- package/src/components/forms/PsInputTextArea.vue +1 -1
- package/src/components/navigations/PsBreadcrumb.vue +0 -1
- package/src/components/notifications/PsDialog.vue +1 -1
- package/src/components/notifications/PsSimpleAlert.vue +0 -1
- package/src/components/notifications/PsToast.vue +1 -1
- package/src/components/table-results/PsTableResults.vue +1 -1
- package/src/components/table-results/PsTableResultsBody.vue +1 -1
- package/src/components/table-results/PsTableResultsHead.vue +1 -1
- package/src/components/table-results/PsTableResultsHeadComparison.vue +1 -1
- package/src/components/table-results/PsTableResultsHeadFlexible.vue +1 -1
- package/src/components/table-results/PsTableResultsRow.vue +1 -1
- package/src/components/tabs/PsTabHeader.vue +1 -1
- package/src/components/tooltip/PsDialogTooltip.vue +1 -1
- package/src/components/tooltip/PsRichTooltip.vue +0 -1
- package/src/components/tooltip/PsTooltip.vue +1 -1
- package/src/components/ui/PsIcon.vue +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@policystudio/policy-studio-ui-vue",
|
|
3
|
-
"version": "1.1.90-beta.
|
|
3
|
+
"version": "1.1.90-beta.21",
|
|
4
4
|
"description": "Policy Studio UI",
|
|
5
5
|
"author": "Policy Studio Team",
|
|
6
6
|
"scripts": {
|
|
@@ -46,8 +46,7 @@
|
|
|
46
46
|
"webpack": "^5.89.0"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
49
|
-
"node": "20.11.0"
|
|
50
|
-
"npm": "10.2.4"
|
|
49
|
+
"node": "20.11.0"
|
|
51
50
|
},
|
|
52
51
|
"keywords": [
|
|
53
52
|
"vue",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
|
|
48
48
|
<script setup>
|
|
49
49
|
import { getParentVueComponentByName } from '../../util/GeneralFunctions.js'
|
|
50
|
-
import {
|
|
50
|
+
import { ref, computed, getCurrentInstance } from 'vue'
|
|
51
51
|
|
|
52
52
|
const localOpened = ref(null)
|
|
53
53
|
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
<script setup>
|
|
55
55
|
//FIGMA CONTROLS & SELECTORS https://www.figma.com/file/Tto8hrNlSfuPcwd1pfqogF/%E2%9A%A1%EF%B8%8F-Design-System?node-id=1768%3A64852
|
|
56
56
|
import { randomString } from '../../util/GeneralFunctions.js'
|
|
57
|
-
import {
|
|
57
|
+
import { computed, useAttrs } from 'vue'
|
|
58
58
|
|
|
59
59
|
const emit = defineEmits(['change', 'click'])
|
|
60
60
|
|
|
@@ -86,7 +86,6 @@
|
|
|
86
86
|
</template>
|
|
87
87
|
|
|
88
88
|
<script setup>
|
|
89
|
-
import { defineProps, defineEmits } from 'vue'
|
|
90
89
|
|
|
91
90
|
const emit = defineEmits([
|
|
92
91
|
'drag-start-group',
|
|
@@ -106,6 +105,7 @@ defineProps({
|
|
|
106
105
|
*/
|
|
107
106
|
getColumns: {
|
|
108
107
|
type: Object,
|
|
108
|
+
default: () => ({})
|
|
109
109
|
},
|
|
110
110
|
/**
|
|
111
111
|
* It sets the module which will be used to set getters and actions.
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
|
|
20
20
|
<script setup>
|
|
21
21
|
//FIGMA CONTROLS & SELECTORS https://www.figma.com/file/Tto8hrNlSfuPcwd1pfqogF/%E2%9A%A1%EF%B8%8F-Design-System?node-id=1768%3A64852
|
|
22
|
-
import {
|
|
22
|
+
import { computed } from 'vue'
|
|
23
23
|
|
|
24
24
|
const props = defineProps({
|
|
25
25
|
inputId: {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
<script setup>
|
|
19
19
|
//FIGMA CONTROLS & SELECTORS https://www.figma.com/file/Tto8hrNlSfuPcwd1pfqogF/%E2%9A%A1%EF%B8%8F-Design-System?node-id=1768%3A64852
|
|
20
|
-
import {
|
|
20
|
+
import { computed } from 'vue'
|
|
21
21
|
|
|
22
22
|
const emit = defineEmits('change', 'update:value')
|
|
23
23
|
|
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
|
|
18
18
|
<script setup>
|
|
19
19
|
//FIGMA CONTROLS & SELECTORS https://www.figma.com/file/Tto8hrNlSfuPcwd1pfqogF/%E2%9A%A1%EF%B8%8F-Design-System?node-id=1768%3A64852
|
|
20
|
-
import { defineProps, defineEmits } from 'vue'
|
|
21
20
|
|
|
22
21
|
const emit = defineEmits(['change', 'update:selected'])
|
|
23
22
|
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
|
|
52
52
|
import { randomString, getParentScrollableEl } from '../../util/GeneralFunctions.js'
|
|
53
53
|
|
|
54
|
-
import {
|
|
54
|
+
import { ref, onBeforeUnmount, defineEmits, defineExpose } from 'vue'
|
|
55
55
|
|
|
56
56
|
defineExpose({
|
|
57
57
|
close:() => close()
|
|
@@ -55,7 +55,6 @@
|
|
|
55
55
|
class="material-icons psui-text-red-20 material-icons-sharp"
|
|
56
56
|
>error</span>
|
|
57
57
|
<slot
|
|
58
|
-
v-else
|
|
59
58
|
name="append"
|
|
60
59
|
/>
|
|
61
60
|
</div>
|
|
@@ -72,7 +71,7 @@
|
|
|
72
71
|
|
|
73
72
|
<script setup>
|
|
74
73
|
import PsRichTooltip from '../tooltip/PsRichTooltip.vue'
|
|
75
|
-
import {
|
|
74
|
+
import { ref, computed, useAttrs, defineEmits } from 'vue'
|
|
76
75
|
|
|
77
76
|
const props = defineProps({
|
|
78
77
|
/**
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
<script setup>
|
|
32
32
|
// Figma - 3. Inline Dialog https://www.figma.com/file/Tto8hrNlSfuPcwd1pfqogF/%E2%9A%A1%EF%B8%8F-Design-System?node-id=3694%3A55841
|
|
33
33
|
|
|
34
|
-
import {
|
|
34
|
+
import { computed } from 'vue'
|
|
35
35
|
|
|
36
36
|
const props = defineProps({
|
|
37
37
|
/**
|
|
@@ -350,7 +350,7 @@ import PsTooltip from '../tooltip/PsTooltip.vue'
|
|
|
350
350
|
import PsSwitch from '../controls/PsSwitch.vue'
|
|
351
351
|
import tailwindConfig from '../../../tailwind.config'
|
|
352
352
|
|
|
353
|
-
import {
|
|
353
|
+
import { ref, computed, watch, onMounted, onBeforeUnmount, defineEmits, getCurrentInstance } from 'vue'
|
|
354
354
|
|
|
355
355
|
const props = defineProps({
|
|
356
356
|
/**
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
import tailwindConfig from '../../../tailwind.config.js'
|
|
29
29
|
import imageLoader from '../../util/imageLoader.js'
|
|
30
30
|
|
|
31
|
-
import {
|
|
31
|
+
import { ref, computed, watch, onMounted } from 'vue'
|
|
32
32
|
|
|
33
33
|
const props = defineProps({
|
|
34
34
|
/**
|