@indielayer/ui 1.10.0 → 1.10.1

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/lib/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "1.10.0";
1
+ declare const _default: "1.10.1";
2
2
  export default _default;
package/lib/version.js CHANGED
@@ -1,4 +1,4 @@
1
- const e = "1.10.0";
1
+ const e = "1.10.1";
2
2
  export {
3
3
  e as default
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indielayer/ui",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "Indielayer UI Components with Tailwind CSS build for Vue 3",
5
5
  "author": {
6
6
  "name": "João Teixeira",
@@ -201,10 +201,13 @@ const theme: ButtonTheme = {
201
201
  }))
202
202
  if (props.disabled) {
203
203
  vars.push(css.variables({
204
- bg: color[100],
204
+ bg: gray[100],
205
+ border: gray[300],
206
+ text: gray[400],
205
207
  dark: {
206
- text: color[700],
207
- bg: color[900],
208
+ text: gray[700],
209
+ border: gray[700],
210
+ bg: gray[800],
208
211
  },
209
212
  }))
210
213
  } else {
@@ -1,6 +1,6 @@
1
1
  <script lang="ts">
2
2
  const selectProps = {
3
- ...useColors.props('primary'),
3
+ ...useColors.props('secondary'),
4
4
  ...useCommon.props(),
5
5
  ...useInteractive.props(),
6
6
  ...useInputtable.props(),
@@ -9,7 +9,7 @@ const theme: TableHeadTheme = {
9
9
 
10
10
  return classes
11
11
  },
12
- row: 'text-sm text-secondary-600 dark:text-secondary-200 border-b',
12
+ row: 'text-sm text-secondary-700 dark:text-secondary-200 border-b',
13
13
  },
14
14
  }
15
15
 
@@ -3,7 +3,7 @@ import type { TableHeaderTheme } from '../TableHeader.vue'
3
3
  const theme: TableHeaderTheme = {
4
4
  classes: {
5
5
  th: ({ props }) => {
6
- const classes = ['relative py-3 font-semibold text-xs px-3']
6
+ const classes = ['relative p-2.5 font-medium']
7
7
 
8
8
  if (props.sortable) classes.push('cursor-pointer hover:text-secondary-800 dark:hover:text-secondary-300 transition-colors duration-150 ease-in-out')
9
9
 
@@ -1,7 +1,7 @@
1
1
  <script lang="ts">
2
2
  const tagProps = {
3
3
  ...useCommon.props(),
4
- ...useColors.props('slate'),
4
+ ...useColors.props('secondary'),
5
5
  tag: {
6
6
  type: String,
7
7
  default: 'span',
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export default '1.10.0'
1
+ export default '1.10.1'