@mekari/pixel3-theme 0.4.2 → 0.4.3-dev.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/fonts.d.mts CHANGED
@@ -3,6 +3,7 @@ declare const globalFontface: {
3
3
  src: string[];
4
4
  fontStyle: string;
5
5
  fontWeight: string;
6
+ fontDisplay: "swap";
6
7
  }[];
7
8
  };
8
9
 
package/dist/fonts.d.ts CHANGED
@@ -3,6 +3,7 @@ declare const globalFontface: {
3
3
  src: string[];
4
4
  fontStyle: string;
5
5
  fontWeight: string;
6
+ fontDisplay: "swap";
6
7
  }[];
7
8
  };
8
9
 
package/dist/index.js CHANGED
@@ -8187,8 +8187,8 @@ var globalFontface = {
8187
8187
  'url("https://cdn.mekari.design/fonts/Inter/Inter-Regular.ttf") format("truetype")'
8188
8188
  ],
8189
8189
  fontStyle: "normal",
8190
- fontWeight: "400"
8191
- // fontDisplay: 'swap'
8190
+ fontWeight: "400",
8191
+ fontDisplay: "swap"
8192
8192
  },
8193
8193
  {
8194
8194
  src: [
@@ -8196,8 +8196,8 @@ var globalFontface = {
8196
8196
  'url("https://cdn.mekari.design/fonts/Inter/Inter-Italic.ttf") format("truetype")'
8197
8197
  ],
8198
8198
  fontStyle: "italic",
8199
- fontWeight: "400"
8200
- // fontDisplay: 'swap'
8199
+ fontWeight: "400",
8200
+ fontDisplay: "swap"
8201
8201
  },
8202
8202
  {
8203
8203
  src: [
@@ -8205,8 +8205,8 @@ var globalFontface = {
8205
8205
  'url("https://cdn.mekari.design/fonts/Inter/Inter-SemiBold.ttf") format("truetype")'
8206
8206
  ],
8207
8207
  fontStyle: "normal",
8208
- fontWeight: "600"
8209
- // fontDisplay: 'swap'
8208
+ fontWeight: "600",
8209
+ fontDisplay: "swap"
8210
8210
  },
8211
8211
  {
8212
8212
  src: [
@@ -8214,8 +8214,8 @@ var globalFontface = {
8214
8214
  'url("https://cdn.mekari.design/fonts/Inter/Inter-SemiBoldItalic.ttf") format("truetype")'
8215
8215
  ],
8216
8216
  fontStyle: "italic",
8217
- fontWeight: "600"
8218
- // fontDisplay: 'swap'
8217
+ fontWeight: "600",
8218
+ fontDisplay: "swap"
8219
8219
  }
8220
8220
  ]
8221
8221
  };
package/dist/index.mjs CHANGED
@@ -8161,8 +8161,8 @@ var globalFontface = {
8161
8161
  'url("https://cdn.mekari.design/fonts/Inter/Inter-Regular.ttf") format("truetype")'
8162
8162
  ],
8163
8163
  fontStyle: "normal",
8164
- fontWeight: "400"
8165
- // fontDisplay: 'swap'
8164
+ fontWeight: "400",
8165
+ fontDisplay: "swap"
8166
8166
  },
8167
8167
  {
8168
8168
  src: [
@@ -8170,8 +8170,8 @@ var globalFontface = {
8170
8170
  'url("https://cdn.mekari.design/fonts/Inter/Inter-Italic.ttf") format("truetype")'
8171
8171
  ],
8172
8172
  fontStyle: "italic",
8173
- fontWeight: "400"
8174
- // fontDisplay: 'swap'
8173
+ fontWeight: "400",
8174
+ fontDisplay: "swap"
8175
8175
  },
8176
8176
  {
8177
8177
  src: [
@@ -8179,8 +8179,8 @@ var globalFontface = {
8179
8179
  'url("https://cdn.mekari.design/fonts/Inter/Inter-SemiBold.ttf") format("truetype")'
8180
8180
  ],
8181
8181
  fontStyle: "normal",
8182
- fontWeight: "600"
8183
- // fontDisplay: 'swap'
8182
+ fontWeight: "600",
8183
+ fontDisplay: "swap"
8184
8184
  },
8185
8185
  {
8186
8186
  src: [
@@ -8188,8 +8188,8 @@ var globalFontface = {
8188
8188
  'url("https://cdn.mekari.design/fonts/Inter/Inter-SemiBoldItalic.ttf") format("truetype")'
8189
8189
  ],
8190
8190
  fontStyle: "italic",
8191
- fontWeight: "600"
8192
- // fontDisplay: 'swap'
8191
+ fontWeight: "600",
8192
+ fontDisplay: "swap"
8193
8193
  }
8194
8194
  ]
8195
8195
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mekari/pixel3-theme",
3
3
  "description": "Theme for mekari pixel 3",
4
- "version": "0.4.2",
4
+ "version": "0.4.3-dev.0",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -9,13 +9,13 @@
9
9
  "src"
10
10
  ],
11
11
  "dependencies": {
12
- "@pandacss/dev": "^0.54.0"
12
+ "@pandacss/dev": "1.3.0"
13
13
  },
14
14
  "peerDependencies": {
15
15
  "vue": "^3.4.9"
16
16
  },
17
17
  "devDependencies": {
18
- "@pandacss/types": "^0.54.0",
18
+ "@pandacss/types": "1.3.0",
19
19
  "vue": "^3.4.9"
20
20
  },
21
21
  "publishConfig": {
package/src/fonts.ts CHANGED
@@ -6,8 +6,8 @@ export const globalFontface = {
6
6
  'url("https://cdn.mekari.design/fonts/Inter/Inter-Regular.ttf") format("truetype")'
7
7
  ],
8
8
  fontStyle: 'normal',
9
- fontWeight: '400'
10
- // fontDisplay: 'swap'
9
+ fontWeight: '400',
10
+ fontDisplay: 'swap' as const
11
11
  },
12
12
  {
13
13
  src: [
@@ -15,8 +15,8 @@ export const globalFontface = {
15
15
  'url("https://cdn.mekari.design/fonts/Inter/Inter-Italic.ttf") format("truetype")'
16
16
  ],
17
17
  fontStyle: 'italic',
18
- fontWeight: '400'
19
- // fontDisplay: 'swap'
18
+ fontWeight: '400',
19
+ fontDisplay: 'swap' as const
20
20
  },
21
21
  {
22
22
  src: [
@@ -24,8 +24,8 @@ export const globalFontface = {
24
24
  'url("https://cdn.mekari.design/fonts/Inter/Inter-SemiBold.ttf") format("truetype")'
25
25
  ],
26
26
  fontStyle: 'normal',
27
- fontWeight: '600'
28
- // fontDisplay: 'swap'
27
+ fontWeight: '600',
28
+ fontDisplay: 'swap' as const
29
29
  },
30
30
  {
31
31
  src: [
@@ -33,8 +33,8 @@ export const globalFontface = {
33
33
  'url("https://cdn.mekari.design/fonts/Inter/Inter-SemiBoldItalic.ttf") format("truetype")'
34
34
  ],
35
35
  fontStyle: 'italic',
36
- fontWeight: '600'
37
- // fontDisplay: 'swap'
36
+ fontWeight: '600',
37
+ fontDisplay: 'swap' as const
38
38
  }
39
39
  ]
40
40
  }