pukaad-ui-lib 1.54.0 → 1.56.0

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/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
3
  "configKey": "pukaadUI",
4
- "version": "1.54.0",
4
+ "version": "1.56.0",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -80,8 +80,12 @@ const getAlignmentClass = (alignment = "start") => {
80
80
  :class="
81
81
  getAlignmentClass(header.alinement || props.headerAlinement)
82
82
  "
83
+ :style="{
84
+ width: header.width ? typeof header.width === 'number' ? `${header.width}px` : header.width : void 0,
85
+ minWidth: header.minWidth ? typeof header.minWidth === 'number' ? `${header.minWidth}px` : header.minWidth : void 0
86
+ }"
83
87
  >
84
- <div class="flex items-center gap-2">
88
+ <div class="flex items-center gap-2 text-gray font-body-medium">
85
89
  <span>{{ header.label }}</span>
86
90
  <button
87
91
  v-if="header.sort !== false && !props.disabledSort"
@@ -29,7 +29,7 @@ const forwardedProps = useForwardProps(delegatedProps);
29
29
  >
30
30
  <slot />
31
31
  <SelectIcon as-child>
32
- <Icon name="lucide:chevron-down" class="size-4 opacity-50" />
32
+ <Icon name="lucide:chevron-down" size="16" class="text-gray" />
33
33
  </SelectIcon>
34
34
  </SelectTrigger>
35
35
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pukaad-ui-lib",
3
- "version": "1.54.0",
3
+ "version": "1.56.0",
4
4
  "description": "pukaad-ui for MeMSG",
5
5
  "repository": {
6
6
  "type": "git",