@quaffui/quaff 1.0.0-alpha1 → 1.0.0-beta1

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.
@@ -3,6 +3,7 @@
3
3
  @forward "image";
4
4
  @forward "layout";
5
5
  @forward "menu";
6
+ @forward "responsive";
6
7
  @forward "selection";
7
8
  @forward "spaces";
8
9
  @forward "table";
@@ -0,0 +1,56 @@
1
+ @use "sass:map";
2
+ @use "$css/variables";
3
+
4
+ @mixin xs {
5
+ @media only screen and (max-width: #{map.get(variables.$breakpoints, sm) - 1px}) {
6
+ @content;
7
+ }
8
+ }
9
+
10
+ @mixin sm {
11
+ @media only screen and (min-width: #{map.get(variables.$breakpoints, sm)}) and (max-width: #{map.get(variables.$breakpoints, md) - 1px}) {
12
+ @content;
13
+ }
14
+ }
15
+
16
+ @mixin md {
17
+ @media only screen and (min-width: #{map.get(variables.$breakpoints, md)}) and (max-width: #{map.get(variables.$breakpoints, lg) - 1px}) {
18
+ @content;
19
+ }
20
+ }
21
+
22
+ @mixin lg {
23
+ @media only screen and (min-width: #{map.get(variables.$breakpoints, lg)}) and (max-width: #{map.get(variables.$breakpoints, xl) - 1px}) {
24
+ @content;
25
+ }
26
+ }
27
+
28
+ @mixin xl {
29
+ @media only screen and (min-width: #{map.get(variables.$breakpoints, xl)}) {
30
+ @content;
31
+ }
32
+ }
33
+
34
+ @mixin up-to-sm {
35
+ @media only screen and (max-width: #{map.get(variables.$breakpoints, sm) - 1px}) {
36
+ @content;
37
+ }
38
+ }
39
+
40
+ @mixin up-to-md {
41
+ @media only screen and (max-width: #{map.get(variables.$breakpoints, md) - 1px}) {
42
+ @content;
43
+ }
44
+ }
45
+
46
+ @mixin up-to-lg {
47
+ @media only screen and (max-width: #{map.get(variables.$breakpoints, lg) - 1px}) {
48
+ @content;
49
+ }
50
+ }
51
+
52
+ @mixin up-to-xl {
53
+ @media only screen and (max-width: #{map.get(variables.$breakpoints, xl) - 1px}) {
54
+ @content;
55
+ }
56
+ }
@@ -84,6 +84,9 @@
84
84
 
85
85
  &--filled &__wrapper {
86
86
  background-color: var(--surface-container-highest);
87
+ }
88
+
89
+ &--filled:not(&--rounded) &__wrapper {
87
90
  border-top-left-radius: 0.25rem;
88
91
  border-top-right-radius: 0.25rem;
89
92
  }
@@ -1,2 +1,2 @@
1
- declare const _default: "1.0.0-alpha1";
1
+ declare const _default: "1.0.0-beta1";
2
2
  export default _default;
@@ -1 +1 @@
1
- export default "1.0.0-alpha1";
1
+ export default "1.0.0-beta1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quaffui/quaff",
3
- "version": "1.0.0-alpha1",
3
+ "version": "1.0.0-beta1",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "open": "vite dev --open",
@@ -33,7 +33,7 @@
33
33
  "!dist/**/*.spec.*"
34
34
  ],
35
35
  "peerDependencies": {
36
- "shiki": "^1.23.0"
36
+ "shiki": "^3.4.2"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@fontsource/roboto": "^5.2.5",
@@ -43,29 +43,29 @@
43
43
  "@sveltejs/vite-plugin-svelte": "^5.0.3",
44
44
  "@types/prettier": "^3.0.0",
45
45
  "@types/prismjs": "^1.26.5",
46
- "@typescript-eslint/eslint-plugin": "^8.32.1",
47
- "@typescript-eslint/parser": "^8.32.1",
48
- "bun-types": "^1.2.13",
49
- "eslint": "^9.27.0",
46
+ "@typescript-eslint/eslint-plugin": "^8.33.0",
47
+ "@typescript-eslint/parser": "^8.33.0",
48
+ "bun-types": "^1.2.15",
49
+ "eslint": "^9.28.0",
50
50
  "eslint-config-prettier": "^10.1.5",
51
- "eslint-plugin-import-x": "^4.12.2",
52
- "eslint-plugin-svelte": "^3.8.1",
51
+ "eslint-plugin-import-x": "^4.15.0",
52
+ "eslint-plugin-svelte": "^3.9.0",
53
53
  "eslint-plugin-unicorn": "^59.0.1",
54
54
  "estree-walker": "^3.0.3",
55
- "globals": "^16.1.0",
55
+ "globals": "^16.2.0",
56
56
  "magic-string": "^0.30.17",
57
- "material-symbols": "^0.31.3",
57
+ "material-symbols": "^0.31.4",
58
58
  "prettier": "^3.5.3",
59
59
  "prettier-plugin-svelte": "^3.4.0",
60
60
  "publint": "^0.3.12",
61
- "sass": "^1.89.0",
62
- "svelte": "^5.30.2",
61
+ "sass": "^1.89.1",
62
+ "svelte": "^5.33.11",
63
63
  "svelte-check": "^4.2.1",
64
64
  "svelte-eslint-parser": "^1.2.0",
65
65
  "tslib": "^2.8.1",
66
66
  "typescript": "^5.8.3",
67
67
  "vite": "^6.3.5",
68
- "vitest": "^3.1.3"
68
+ "vitest": "^3.1.4"
69
69
  },
70
70
  "svelte": "./dist/index.js",
71
71
  "types": "./dist/index.d.ts",