@marigold/theme-rui 0.0.4 → 0.1.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.
Files changed (2) hide show
  1. package/dist/styles.css +15 -16
  2. package/package.json +7 -6
package/dist/styles.css CHANGED
@@ -4,8 +4,8 @@
4
4
  [data-theme="rui"], [data-theme="rui"] :host {
5
5
  --font-sans: 'Inter', system-ui, sans-serif;
6
6
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
7
- --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
8
- "Liberation Mono", "Courier New", monospace;
7
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
8
+ "Courier New", monospace;
9
9
  --color-red-50: oklch(0.971 0.013 17.38);
10
10
  --color-red-100: oklch(0.936 0.032 17.717);
11
11
  --color-red-200: oklch(0.885 0.062 18.334);
@@ -326,12 +326,9 @@
326
326
  --shadow-2xs: 0 1px rgb(0 0 0 / 0.05);
327
327
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
328
328
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
329
- --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1),
330
- 0 2px 4px -2px rgb(0 0 0 / 0.1);
331
- --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
332
- 0 4px 6px -4px rgb(0 0 0 / 0.1);
333
- --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
334
- 0 8px 10px -6px rgb(0 0 0 / 0.1);
329
+ --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
330
+ --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
331
+ --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
335
332
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
336
333
  --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05);
337
334
  --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05);
@@ -1209,6 +1206,9 @@
1209
1206
  [data-theme="rui"] .w-96 {
1210
1207
  width: calc(var(--spacing) * 96);
1211
1208
  }
1209
+ [data-theme="rui"] .w-\[30px\] {
1210
+ width: 30px;
1211
+ }
1212
1212
  [data-theme="rui"] .w-\[200px\] {
1213
1213
  width: 200px;
1214
1214
  }
@@ -1218,9 +1218,6 @@
1218
1218
  [data-theme="rui"] .w-\[24px\] {
1219
1219
  width: 24px;
1220
1220
  }
1221
- [data-theme="rui"] .w-\[30px\] {
1222
- width: 30px;
1223
- }
1224
1221
  [data-theme="rui"] .w-\[360px\] {
1225
1222
  width: 360px;
1226
1223
  }
@@ -1346,6 +1343,9 @@
1346
1343
  [data-theme="rui"] .-rotate-90 {
1347
1344
  rotate: calc(90deg * -1);
1348
1345
  }
1346
+ [data-theme="rui"] .rotate-180 {
1347
+ rotate: 180deg;
1348
+ }
1349
1349
  [data-theme="rui"] .cursor-alias {
1350
1350
  cursor: alias;
1351
1351
  }
@@ -1708,6 +1708,10 @@
1708
1708
  border-style: var(--tw-border-style);
1709
1709
  border-width: 4px;
1710
1710
  }
1711
+ [data-theme="rui"] .border-b {
1712
+ border-bottom-style: var(--tw-border-style);
1713
+ border-bottom-width: 1px;
1714
+ }
1711
1715
  [data-theme="rui"] .border-none {
1712
1716
  --tw-border-style: none;
1713
1717
  border-style: none;
@@ -3043,11 +3047,6 @@
3043
3047
  display: none;
3044
3048
  }
3045
3049
  }
3046
- [data-theme="rui"] .group-aria-expanded\:rotate-90 {
3047
- [data-theme="rui"] &:is(:where(.group)[aria-expanded="true"] *) {
3048
- rotate: 90deg;
3049
- }
3050
- }
3051
3050
  [data-theme="rui"] .group-aria-selected\/cell\:font-semibold {
3052
3051
  [data-theme="rui"] &:is(:where(.group\/cell)[aria-selected="true"] *) {
3053
3052
  --tw-font-weight: var(--font-weight-semibold);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marigold/theme-rui",
3
- "version": "0.0.4",
3
+ "version": "0.1.0",
4
4
  "description": "Marigold RUI Theme",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -21,7 +21,8 @@
21
21
  "require": "./dist/*.js",
22
22
  "import": "./dist/*.mjs"
23
23
  },
24
- "./styles.css": "./dist/styles.css"
24
+ "./styles.css": "./dist/styles.css",
25
+ "./theme.css": "./dist/theme.css"
25
26
  },
26
27
  "typesVersions": {
27
28
  "*": {
@@ -40,16 +41,16 @@
40
41
  "directory": "themes/theme-rui"
41
42
  },
42
43
  "devDependencies": {
43
- "@tailwindcss/postcss": "4.0.0",
44
+ "@tailwindcss/postcss": "4.0.6",
44
45
  "cssnano": "7.0.6",
45
46
  "postcss-cli": "11.0.0",
46
- "tailwindcss": "4.0.0",
47
+ "tailwindcss": "4.0.6",
47
48
  "tsup": "8.3.5",
48
49
  "@marigold/tsconfig": "0.4.0"
49
50
  },
50
51
  "dependencies": {
51
- "@marigold/components": "11.0.2",
52
- "@marigold/system": "11.0.2"
52
+ "@marigold/system": "11.1.1",
53
+ "@marigold/components": "11.1.1"
53
54
  },
54
55
  "scripts": {
55
56
  "build": "NODE_ENV=production tsup && postcss -o dist/styles.css src/styles.css && cp src/theme.css dist/theme.css"