@policystudio/policy-studio-ui-vue 1.1.90-beta.45 → 1.1.90-beta.46

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.
@@ -1,6 +1,6 @@
1
1
  @import url("https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Round");
2
2
  /*
3
- ! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com
3
+ ! tailwindcss v3.4.7 | MIT License | https://tailwindcss.com
4
4
  */
5
5
  /*
6
6
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
@@ -6339,12 +6339,6 @@ video {
6339
6339
  gap: 0.75rem;
6340
6340
  }
6341
6341
 
6342
- .psui-space-x-0 > :not([hidden]) ~ :not([hidden]) {
6343
- --tw-space-x-reverse: 0;
6344
- margin-right: calc(0px * var(--tw-space-x-reverse));
6345
- margin-left: calc(0px * (1 - var(--tw-space-x-reverse)));
6346
- }
6347
-
6348
6342
  .psui-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) {
6349
6343
  --tw-space-x-reverse: 0;
6350
6344
  margin-right: calc(0.125rem * var(--tw-space-x-reverse));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@policystudio/policy-studio-ui-vue",
3
- "version": "1.1.90-beta.45",
3
+ "version": "1.1.90-beta.46",
4
4
  "description": "Policy Studio UI",
5
5
  "author": "Policy Studio Team",
6
6
  "scripts": {
@@ -19,9 +19,9 @@
19
19
  <inline-svg
20
20
  v-else
21
21
  :src="icon"
22
- :width="size"
23
- :height="size"
24
- :stroke="getColor"
22
+ :width="width ? width : size"
23
+ :height="height ? height : size"
24
+ :stroke="stroke ? stroke : disableStroke ? null : getColor"
25
25
  :fill="getColor"
26
26
  />
27
27
  </div>
@@ -104,6 +104,18 @@ const props = defineProps({
104
104
  type: String,
105
105
  default: 'more_horiz',
106
106
  },
107
+ disableStroke: {
108
+ type: Boolean,
109
+ default: false,
110
+ },
111
+ width: {
112
+ type: [Number, String],
113
+ default: 24,
114
+ },
115
+ height: {
116
+ type: [Number, String],
117
+ default: 24,
118
+ },
107
119
  })
108
120
 
109
121
  const finishedImageLoad = ref(false)