@policystudio/policy-studio-ui-vue 1.1.90-beta.51 → 1.1.90-beta.53
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
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
@layer components {
|
|
2
2
|
.psui-el-date-card {
|
|
3
3
|
@apply psui-flex psui-flex-col psui-bg-blue-60 psui-text-blue-20 psui-text-small psui-font-bold psui-text-center psui-overflow-hidden psui-rounded;
|
|
4
|
-
width: 61px;
|
|
5
4
|
|
|
6
|
-
&-month-day,
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
&-month-day, &-year {
|
|
6
|
+
@apply psui-text-small;
|
|
7
|
+
padding: 4px 8px;
|
|
9
8
|
}
|
|
10
|
-
|
|
9
|
+
|
|
11
10
|
&-year {
|
|
12
11
|
@apply psui-bg-blue-50 psui-w-full psui-font-bold;
|
|
13
12
|
}
|
|
@@ -49,6 +49,10 @@
|
|
|
49
49
|
import { getParentVueComponentByName } from '../../util/GeneralFunctions.js'
|
|
50
50
|
import { ref, computed, getCurrentInstance } from 'vue'
|
|
51
51
|
|
|
52
|
+
defineExpose({
|
|
53
|
+
toggle: () => toggle()
|
|
54
|
+
})
|
|
55
|
+
|
|
52
56
|
const localOpened = ref(null)
|
|
53
57
|
|
|
54
58
|
const props = defineProps({
|