@trackunit/css-tailwind 0.0.27 → 0.0.29

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/css-tailwind",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "main": "./index.cjs",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -8,7 +8,7 @@
8
8
  "types": "./src/index.d.ts",
9
9
  "dependencies": {
10
10
  "@trackunit/ui-design-tokens": "0.0.53",
11
- "@trackunit/css-component-tokens": "0.0.12",
11
+ "@trackunit/css-component-tokens": "0.0.13",
12
12
  "@trackunit/css-tailwind-custom-properties-plugin": "0.0.5",
13
13
  "@trackunit/css-core": "0.0.66"
14
14
  },
@@ -156,14 +156,16 @@ var AsComponentTokenDefinition = (designTokens) => designTokens;
156
156
  // libs/css/component-tokens/src/component-tokens/components/BaseInput.tokens.ts
157
157
  var BaseInputTokenDefinition = AsComponentTokenDefinition({
158
158
  DEFAULT: {
159
- border: { borderRadius: "var(--border-radius-DEFAULT)", borderWidth: "1px" },
159
+ border: { borderRadius: "var(--border-radius-lg)", borderWidth: "1px" },
160
160
  shadow: { boxShadow: "var(--box-shadow-sm)" },
161
- background: { backgroundColor: "white" }
161
+ background: { backgroundColor: "white" },
162
+ prefix: { borderRightWidth: "1px" }
162
163
  },
163
164
  "theme-marketing": {
164
165
  border: { borderRadius: "70px", borderWidth: "0px" },
165
166
  shadow: { boxShadow: "none" },
166
- background: { backgroundColor: "rgb(var(--color-stone-50))" }
167
+ background: { backgroundColor: "rgb(var(--color-stone-50))" },
168
+ prefix: { borderRightWidth: "0px" }
167
169
  }
168
170
  });
169
171
  var BaseInput_tokens_default = BaseInputTokenDefinition;
@@ -264,8 +266,8 @@ var SearchTokenDefinition = AsComponentTokenDefinition({
264
266
  borderColor: "rgb(var(--color-slate-400))",
265
267
  boxShadow: "var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)"
266
268
  },
267
- widen: { borderBottomColor: "rgb(var(--color-white-DEFAULT))" },
268
- "widen-focus": { borderBottomColor: "rgb(var(--color-black-DEFAULT))" },
269
+ widen: { borderBottomColor: "rgb(var(--color-gray-400))" },
270
+ "widen-focus": { borderBottomColor: "rgb(var(--color-gray-400))" },
269
271
  prefix: {
270
272
  color: "rgb(var(--color-slate-400))",
271
273
  cursor: "default"