@juo/orion-extensions 0.10.2 → 0.11.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/cs-CkBa54eD.js +89 -0
- package/dist/de-CPRJRab0.js +89 -0
- package/dist/es-CQoo17kt.js +89 -0
- package/dist/extensions.js +197 -116
- package/dist/fr-DzCAo5LI.js +89 -0
- package/dist/hu-ywN6j-km.js +89 -0
- package/dist/nl-BhpUGLYx.js +89 -0
- package/dist/pl-sN_bBWgE.js +89 -0
- package/dist/pt-BYE93EVG.js +89 -0
- package/dist/sk-DQZc55Jx.js +89 -0
- package/dist/sl-CUzueLNl.js +89 -0
- package/dist/style.css +59 -11
- package/package.json +3 -3
package/dist/style.css
CHANGED
|
@@ -10,17 +10,57 @@
|
|
|
10
10
|
--white: var(--theme-white, oklch(100% 0 0));
|
|
11
11
|
--black: var(--theme-black, oklch(0% 0 0));
|
|
12
12
|
|
|
13
|
-
/* Semantic Colors
|
|
14
|
-
--success-
|
|
15
|
-
--success-
|
|
16
|
-
--
|
|
17
|
-
--
|
|
18
|
-
--
|
|
19
|
-
--
|
|
20
|
-
--
|
|
21
|
-
--
|
|
22
|
-
--
|
|
23
|
-
--
|
|
13
|
+
/* Semantic Colors — Success */
|
|
14
|
+
--success-25: var(--theme-success-25, oklch(98.5% 0.015 145));
|
|
15
|
+
--success-50: var(--theme-success-50, oklch(96.5% 0.025 145));
|
|
16
|
+
--success-100: var(--theme-success-100, oklch(94% 0.04 145));
|
|
17
|
+
--success-200: var(--theme-success-200, oklch(89% 0.06 145));
|
|
18
|
+
--success-300: var(--theme-success-300, oklch(80% 0.08 145));
|
|
19
|
+
--success-400: var(--theme-success-400, oklch(68% 0.10 145));
|
|
20
|
+
--success-500: var(--theme-success-500, oklch(60% 0.12 145));
|
|
21
|
+
--success-600: var(--theme-success-600, oklch(52% 0.13 145));
|
|
22
|
+
--success-700: var(--theme-success-700, oklch(42% 0.12 145));
|
|
23
|
+
--success-800: var(--theme-success-800, oklch(30% 0.10 145));
|
|
24
|
+
--success-900: var(--theme-success-900, oklch(18% 0.06 145));
|
|
25
|
+
|
|
26
|
+
/* Semantic Colors — Warning */
|
|
27
|
+
--warning-25: var(--theme-warning-25, oklch(98.5% 0.015 85));
|
|
28
|
+
--warning-50: var(--theme-warning-50, oklch(96.5% 0.025 85));
|
|
29
|
+
--warning-100: var(--theme-warning-100, oklch(94% 0.04 85));
|
|
30
|
+
--warning-200: var(--theme-warning-200, oklch(89% 0.06 85));
|
|
31
|
+
--warning-300: var(--theme-warning-300, oklch(80% 0.09 85));
|
|
32
|
+
--warning-400: var(--theme-warning-400, oklch(68% 0.11 85));
|
|
33
|
+
--warning-500: var(--theme-warning-500, oklch(60% 0.12 85));
|
|
34
|
+
--warning-600: var(--theme-warning-600, oklch(52% 0.12 85));
|
|
35
|
+
--warning-700: var(--theme-warning-700, oklch(42% 0.10 85));
|
|
36
|
+
--warning-800: var(--theme-warning-800, oklch(30% 0.08 85));
|
|
37
|
+
--warning-900: var(--theme-warning-900, oklch(18% 0.05 85));
|
|
38
|
+
|
|
39
|
+
/* Semantic Colors — Error */
|
|
40
|
+
--error-25: var(--theme-error-25, oklch(98.5% 0.015 25));
|
|
41
|
+
--error-50: var(--theme-error-50, oklch(96.5% 0.025 25));
|
|
42
|
+
--error-100: var(--theme-error-100, oklch(93% 0.04 25));
|
|
43
|
+
--error-200: var(--theme-error-200, oklch(88% 0.06 25));
|
|
44
|
+
--error-300: var(--theme-error-300, oklch(78% 0.10 25));
|
|
45
|
+
--error-400: var(--theme-error-400, oklch(66% 0.13 25));
|
|
46
|
+
--error-500: var(--theme-error-500, oklch(58% 0.15 25));
|
|
47
|
+
--error-600: var(--theme-error-600, oklch(52% 0.15 25));
|
|
48
|
+
--error-700: var(--theme-error-700, oklch(42% 0.13 25));
|
|
49
|
+
--error-800: var(--theme-error-800, oklch(30% 0.10 25));
|
|
50
|
+
--error-900: var(--theme-error-900, oklch(18% 0.06 25));
|
|
51
|
+
|
|
52
|
+
/* Semantic Colors — Info */
|
|
53
|
+
--info-25: var(--theme-info-25, oklch(98.5% 0.015 230));
|
|
54
|
+
--info-50: var(--theme-info-50, oklch(96.5% 0.02 230));
|
|
55
|
+
--info-100: var(--theme-info-100, oklch(94% 0.03 230));
|
|
56
|
+
--info-200: var(--theme-info-200, oklch(89% 0.05 230));
|
|
57
|
+
--info-300: var(--theme-info-300, oklch(80% 0.07 230));
|
|
58
|
+
--info-400: var(--theme-info-400, oklch(68% 0.09 230));
|
|
59
|
+
--info-500: var(--theme-info-500, oklch(58% 0.10 230));
|
|
60
|
+
--info-600: var(--theme-info-600, oklch(50% 0.10 230));
|
|
61
|
+
--info-700: var(--theme-info-700, oklch(42% 0.09 230));
|
|
62
|
+
--info-800: var(--theme-info-800, oklch(30% 0.07 230));
|
|
63
|
+
--info-900: var(--theme-info-900, oklch(18% 0.04 230));
|
|
24
64
|
|
|
25
65
|
/* Callout Colors */
|
|
26
66
|
--callout-25: var(--theme-callout-25, oklch(98.5% 0 0));
|
|
@@ -1245,6 +1285,14 @@ video {
|
|
|
1245
1285
|
.transform {
|
|
1246
1286
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1247
1287
|
}
|
|
1288
|
+
@keyframes pulse {
|
|
1289
|
+
50% {
|
|
1290
|
+
opacity: .5;
|
|
1291
|
+
}
|
|
1292
|
+
}
|
|
1293
|
+
.animate-pulse {
|
|
1294
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1295
|
+
}
|
|
1248
1296
|
@keyframes spin {
|
|
1249
1297
|
to {
|
|
1250
1298
|
transform: rotate(360deg);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juo/orion-extensions",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.11.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"tailwind-merge": "3.2.0",
|
|
44
44
|
"tailwindcss": "3.3.5",
|
|
45
45
|
"vue": "3.5.13",
|
|
46
|
-
"@juo/customer-ui": "0.
|
|
47
|
-
"@juo/orion-core": "0.
|
|
46
|
+
"@juo/customer-ui": "0.3.0",
|
|
47
|
+
"@juo/orion-core": "0.17.0"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"dev": "vite build -w",
|