@telefonica/mistica 15.16.4 → 15.18.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/css/mistica.css +1 -1
- package/css/roboto.css +102 -34
- package/dist/box.d.ts +1 -0
- package/dist/box.js +11 -10
- package/dist/callout.d.ts +1 -0
- package/dist/callout.js +10 -10
- package/dist/card.d.ts +6 -1
- package/dist/card.js +375 -365
- package/dist/chip.d.ts +1 -0
- package/dist/chip.js +25 -26
- package/dist/dialog.d.ts +1 -0
- package/dist/dialog.js +65 -62
- package/dist/feedback.js +58 -52
- package/dist/generated/mistica-icons/icon-box-star-filled.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-box-star-filled.js +121 -0
- package/dist/generated/mistica-icons/icon-box-star-light.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-box-star-light.js +117 -0
- package/dist/generated/mistica-icons/icon-box-star-regular.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-box-star-regular.js +117 -0
- package/dist/generated/mistica-icons/icon-high-priority-filled.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-high-priority-filled.js +111 -0
- package/dist/generated/mistica-icons/icon-high-priority-light.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-high-priority-light.js +111 -0
- package/dist/generated/mistica-icons/icon-high-priority-regular.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-high-priority-regular.js +111 -0
- package/dist/generated/mistica-icons/icon-mms-filled.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-mms-filled.js +122 -0
- package/dist/generated/mistica-icons/icon-mms-light.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-mms-light.js +134 -0
- package/dist/generated/mistica-icons/icon-mms-regular.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-mms-regular.js +134 -0
- package/dist/generated/mistica-icons/icon-vivo-valoriza-filled.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-vivo-valoriza-filled.js +111 -0
- package/dist/generated/mistica-icons/icon-vivo-valoriza-light.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-vivo-valoriza-light.js +117 -0
- package/dist/generated/mistica-icons/icon-vivo-valoriza-regular.d.ts +4 -0
- package/dist/generated/mistica-icons/icon-vivo-valoriza-regular.js +117 -0
- package/dist/generated/mistica-icons/icons-keywords.js +31 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +48 -0
- package/dist/inline.css-mistica.js +11 -8
- package/dist/inline.css.d.ts +1 -0
- package/dist/inline.js +12 -12
- package/dist/list.d.ts +1 -0
- package/dist/list.js +163 -157
- package/dist/package-version.js +1 -1
- package/dist/popover.d.ts +1 -0
- package/dist/popover.js +9 -7
- package/dist/select.js +103 -95
- package/dist/skins/blau.js +96 -8
- package/dist/skins/defaults.js +98 -10
- package/dist/skins/movistar.js +94 -6
- package/dist/skins/o2-new.js +95 -7
- package/dist/skins/o2.js +94 -6
- package/dist/skins/skin-contract.css-mistica.js +42 -10
- package/dist/skins/skin-contract.css.d.ts +32 -0
- package/dist/skins/telefonica.js +96 -8
- package/dist/skins/tu.js +94 -6
- package/dist/skins/types/index.d.ts +36 -28
- package/dist/skins/vivo-new.js +95 -7
- package/dist/skins/vivo.js +94 -6
- package/dist/snackbar-context.js +23 -22
- package/dist/snackbar.d.ts +1 -0
- package/dist/snackbar.js +63 -57
- package/dist/theme-context-provider.js +91 -63
- package/dist/theme-context.css-mistica.js +452 -0
- package/dist/theme-context.css.d.ts +432 -0
- package/dist/theme-context.css.ts.vanilla.css-mistica.js +11 -0
- package/dist/tooltip.d.ts +1 -0
- package/dist/tooltip.js +110 -110
- package/dist-es/box.js +17 -16
- package/dist-es/callout.js +38 -38
- package/dist-es/card.js +492 -482
- package/dist-es/chip.js +49 -50
- package/dist-es/dialog.js +78 -75
- package/dist-es/feedback.js +96 -89
- package/dist-es/generated/mistica-icons/icon-box-star-filled.js +112 -0
- package/dist-es/generated/mistica-icons/icon-box-star-light.js +108 -0
- package/dist-es/generated/mistica-icons/icon-box-star-regular.js +108 -0
- package/dist-es/generated/mistica-icons/icon-high-priority-filled.js +102 -0
- package/dist-es/generated/mistica-icons/icon-high-priority-light.js +102 -0
- package/dist-es/generated/mistica-icons/icon-high-priority-regular.js +102 -0
- package/dist-es/generated/mistica-icons/icon-mms-filled.js +113 -0
- package/dist-es/generated/mistica-icons/icon-mms-light.js +125 -0
- package/dist-es/generated/mistica-icons/icon-mms-regular.js +125 -0
- package/dist-es/generated/mistica-icons/icon-vivo-valoriza-filled.js +102 -0
- package/dist-es/generated/mistica-icons/icon-vivo-valoriza-light.js +108 -0
- package/dist-es/generated/mistica-icons/icon-vivo-valoriza-regular.js +108 -0
- package/dist-es/generated/mistica-icons/icons-keywords.js +31 -0
- package/dist-es/index.js +1563 -1551
- package/dist-es/inline.css-mistica.js +3 -3
- package/dist-es/inline.js +23 -23
- package/dist-es/list.js +225 -219
- package/dist-es/package-version.js +1 -1
- package/dist-es/popover.js +26 -24
- package/dist-es/select.js +146 -138
- package/dist-es/skins/blau.js +96 -8
- package/dist-es/skins/defaults.js +97 -9
- package/dist-es/skins/movistar.js +94 -6
- package/dist-es/skins/o2-new.js +95 -7
- package/dist-es/skins/o2.js +94 -6
- package/dist-es/skins/skin-contract.css-mistica.js +42 -10
- package/dist-es/skins/telefonica.js +98 -10
- package/dist-es/skins/tu.js +94 -6
- package/dist-es/skins/vivo-new.js +95 -7
- package/dist-es/skins/vivo.js +94 -6
- package/dist-es/snackbar-context.js +25 -24
- package/dist-es/snackbar.js +91 -85
- package/dist-es/style.css +1 -1
- package/dist-es/theme-context-provider.js +133 -105
- package/dist-es/theme-context.css-mistica.js +432 -0
- package/dist-es/theme-context.css.ts.vanilla.css-mistica.js +2 -0
- package/dist-es/tooltip.js +149 -149
- package/package.json +2 -3
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "default", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function() {
|
|
9
|
+
return m;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
const _jsxruntime = require("react/jsx-runtime");
|
|
13
|
+
const _themevariantcontext = require("../../theme-variant-context.js");
|
|
14
|
+
const _skincontractcssmistica = require("../../skins/skin-contract.css-mistica.js");
|
|
15
|
+
function _define_property(obj, key, value) {
|
|
16
|
+
if (key in obj) {
|
|
17
|
+
Object.defineProperty(obj, key, {
|
|
18
|
+
value: value,
|
|
19
|
+
enumerable: true,
|
|
20
|
+
configurable: true,
|
|
21
|
+
writable: true
|
|
22
|
+
});
|
|
23
|
+
} else {
|
|
24
|
+
obj[key] = value;
|
|
25
|
+
}
|
|
26
|
+
return obj;
|
|
27
|
+
}
|
|
28
|
+
function _object_spread(target) {
|
|
29
|
+
for(var i = 1; i < arguments.length; i++){
|
|
30
|
+
var source = arguments[i] != null ? arguments[i] : {};
|
|
31
|
+
var ownKeys = Object.keys(source);
|
|
32
|
+
if (typeof Object.getOwnPropertySymbols === "function") {
|
|
33
|
+
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
34
|
+
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
35
|
+
}));
|
|
36
|
+
}
|
|
37
|
+
ownKeys.forEach(function(key) {
|
|
38
|
+
_define_property(target, key, source[key]);
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
return target;
|
|
42
|
+
}
|
|
43
|
+
function ownKeys(object, enumerableOnly) {
|
|
44
|
+
var keys = Object.keys(object);
|
|
45
|
+
if (Object.getOwnPropertySymbols) {
|
|
46
|
+
var symbols = Object.getOwnPropertySymbols(object);
|
|
47
|
+
if (enumerableOnly) {
|
|
48
|
+
symbols = symbols.filter(function(sym) {
|
|
49
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
keys.push.apply(keys, symbols);
|
|
53
|
+
}
|
|
54
|
+
return keys;
|
|
55
|
+
}
|
|
56
|
+
function _object_spread_props(target, source) {
|
|
57
|
+
source = source != null ? source : {};
|
|
58
|
+
if (Object.getOwnPropertyDescriptors) {
|
|
59
|
+
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
60
|
+
} else {
|
|
61
|
+
ownKeys(Object(source)).forEach(function(key) {
|
|
62
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
return target;
|
|
66
|
+
}
|
|
67
|
+
function _object_without_properties(source, excluded) {
|
|
68
|
+
if (source == null) return {};
|
|
69
|
+
var target = _object_without_properties_loose(source, excluded);
|
|
70
|
+
var key, i;
|
|
71
|
+
if (Object.getOwnPropertySymbols) {
|
|
72
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
73
|
+
for(i = 0; i < sourceSymbolKeys.length; i++){
|
|
74
|
+
key = sourceSymbolKeys[i];
|
|
75
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
76
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
77
|
+
target[key] = source[key];
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
return target;
|
|
81
|
+
}
|
|
82
|
+
function _object_without_properties_loose(source, excluded) {
|
|
83
|
+
if (source == null) return {};
|
|
84
|
+
var target = {};
|
|
85
|
+
var sourceKeys = Object.keys(source);
|
|
86
|
+
var key, i;
|
|
87
|
+
for(i = 0; i < sourceKeys.length; i++){
|
|
88
|
+
key = sourceKeys[i];
|
|
89
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
90
|
+
target[key] = source[key];
|
|
91
|
+
}
|
|
92
|
+
return target;
|
|
93
|
+
}
|
|
94
|
+
const e = (_param)=>{
|
|
95
|
+
var { color: r, size: c = 24 } = _param, i = _object_without_properties(_param, [
|
|
96
|
+
"color",
|
|
97
|
+
"size"
|
|
98
|
+
]);
|
|
99
|
+
const t = (0, _themevariantcontext.useIsInverseVariant)(), l = r !== null && r !== void 0 ? r : t ? _skincontractcssmistica.vars.colors.inverse : _skincontractcssmistica.vars.colors.neutralHigh;
|
|
100
|
+
return /* @__PURE__ */ (0, _jsxruntime.jsxs)("svg", _object_spread_props(_object_spread({
|
|
101
|
+
width: c,
|
|
102
|
+
height: c,
|
|
103
|
+
viewBox: "0 0 24 24",
|
|
104
|
+
role: "presentation"
|
|
105
|
+
}, i), {
|
|
106
|
+
children: [
|
|
107
|
+
/* @__PURE__ */ (0, _jsxruntime.jsx)("path", {
|
|
108
|
+
fill: l,
|
|
109
|
+
d: "M17.335 14.98a.3.3 0 0 1 .12-.059h.006c.283-.072.562-.138.858-.206l.043-.01c.283-.066.605-.142.92-.223.612-.154 1.005-.8.86-1.414l-.038-.162c-.04-.175-.087-.373-.15-.56l-.013-.033a1.2 1.2 0 0 0-.57-.59c-.25-.126-.54-.161-.818-.101-.308.07-.621.143-.898.209l-.075.017-.327.077q.067-.059.122-.117c.668-.689.896-1.746.568-2.63a2.58 2.58 0 0 0-1.265-1.407 2.67 2.67 0 0 0-1.897-.19 2.64 2.64 0 0 0-1.456 1.013c-.741 1.014-.564 2.508.392 3.334l-.346-.081-.117-.028a37 37 0 0 0-.87-.199h-.004a1.23 1.23 0 0 0-.845.132 1.2 1.2 0 0 0-.55.653l-.007.024a8 8 0 0 0-.175.721l-.003.022c-.039.294.033.592.204.836.168.243.42.416.711.49.305.075.617.148.895.213l.019.004c.284.066.578.136.865.205a.4.4 0 0 1 .134.063.1.1 0 0 1 .02.02l.005.032c.003.014-.005.037-.012.054a.7.7 0 0 1-.11.162q-.245.3-.494.6l-.052.063c-.423.512-.861 1.043-1.293 1.574-.21.247-.305.58-.262.916.044.339.222.64.49.827.05.035.1.078.163.13l.016.013c.059.049.124.104.196.156a1.25 1.25 0 0 0 1.779-.24q.292-.355.594-.715l.023-.029.716-.863.012-.015a.3.3 0 0 1 .061-.062q.022.018.045.046.267.317.536.644c.297.358.603.728.916 1.093.201.236.493.38.82.405q.05.003.098.004c.299 0 .586-.104.8-.29.048-.04.1-.081.17-.134l.007-.005c.064-.048.136-.102.207-.162a1.3 1.3 0 0 0 .404-.559 1.2 1.2 0 0 0-.218-1.169l-1.843-2.239a.8.8 0 0 1-.104-.156.1.1 0 0 1-.01-.038l.004-.028s.004-.015.027-.035zm1.03 3.742a4 4 0 0 0-.211.166.4.4 0 0 1-.296.088.38.38 0 0 1-.264-.122 73 73 0 0 1-.894-1.067l-.028-.034q-.258-.314-.526-.633a1.1 1.1 0 0 0-.303-.256.76.76 0 0 0-.37-.1.7.7 0 0 0-.172.02l-.027.008-.025.01a1.13 1.13 0 0 0-.482.365c-.242.295-.487.588-.723.872l-.003.004-.608.733-.019.024a.4.4 0 0 1-.17.138.43.43 0 0 1-.223.035h-.017a.46.46 0 0 1-.228-.107 3 3 0 0 1-.162-.13l-.009-.007c-.053-.044-.132-.111-.218-.171a.37.37 0 0 1-.148-.261.36.36 0 0 1 .075-.283l.007-.008c.426-.523.863-1.053 1.286-1.566l.065-.077.49-.594c.095-.114.382-.457.293-.898-.066-.426-.437-.665-.765-.75-.3-.073-.599-.144-.888-.211h-.006c-.315-.076-.6-.142-.885-.212a.4.4 0 0 1-.236-.161.38.38 0 0 1-.065-.253c.043-.226.104-.453.152-.623a.4.4 0 0 1 .174-.2.42.42 0 0 1 .282-.045c.28.06.554.125.847.196l.118.027c.309.074.64.152.97.217a.68.68 0 0 0 .742-.268c.154-.218.203-.557-.035-.823l-.024-.023c-.112-.107-.238-.189-.329-.249l-.007-.004a2 2 0 0 1-.224-.161l-.013-.013c-.641-.545-.767-1.572-.274-2.243l.004-.005c.24-.34.598-.588 1.006-.699a1.85 1.85 0 0 1 1.315.134c.403.204.711.546.866.962.222.595.065 1.31-.39 1.778l-.006.006c-.06.065-.14.123-.248.196l-.047.032a3 3 0 0 0-.32.234.65.65 0 0 0-.216.617c.04.22.184.403.38.488a.7.7 0 0 0 .397.06c.05-.006.096-.015.124-.021l.01-.002.056-.01.03-.005q.436-.1.87-.204l.027-.006q.437-.104.887-.207a.42.42 0 0 1 .277.035.4.4 0 0 1 .18.176c.045.137.076.271.113.426v.005l.048.199c.04.176-.09.384-.269.43-.307.078-.624.152-.902.216l-.033.008c-.289.068-.586.136-.882.212-.302.073-.683.314-.758.746-.09.423.189.767.282.882l1.846 2.242.004.005a.4.4 0 0 1 .086.18.37.37 0 0 1-.015.194l-.002.005a.5.5 0 0 1-.16.2q-.079.066-.174.136l-.007.004z"
|
|
110
|
+
}),
|
|
111
|
+
/* @__PURE__ */ (0, _jsxruntime.jsx)("path", {
|
|
112
|
+
fill: l,
|
|
113
|
+
d: "M10.982 2.037c-.481-.105-.986.014-1.497.352-.248.165-.485.422-.726.784q-.263.4-.52.955c-.119.257-.234.536-.334.805-.1-.27-.216-.55-.335-.806a7.5 7.5 0 0 0-.52-.955c-.24-.362-.477-.62-.727-.785-.51-.335-1.013-.454-1.495-.35-.48.104-.892.418-1.223.934-.33.516-.445 1.02-.345 1.497q.073.346.291.648c-.86.096-1.535.797-1.55 1.671L2 6.795v13.703c.017.933.785 1.67 1.728 1.682h16.544c.943-.013 1.711-.75 1.728-1.682V6.787c-.017-.933-.785-1.67-1.728-1.682h-8.007q.21-.297.282-.637c.1-.478-.015-.982-.345-1.498h.002c-.33-.515-.742-.83-1.222-.933M7.096 5.105H4.795a1 1 0 0 1-.166-.087q-.486-.322-.568-.717c-.055-.26.023-.56.233-.89.208-.326.447-.52.707-.575a1 1 0 0 1 .164-.017q.326 0 .707.251c.287.19.626.687.956 1.402a11 11 0 0 1 .268.633m3.915 0H8.713a10 10 0 0 1 .267-.632c.332-.714.67-1.212.956-1.402q.482-.316.871-.235c.26.055.5.249.708.575q.316.495.233.89-.083.394-.569.716-.071.046-.168.088m-.031 3.097-2.192-2.28h11.476c.517.01.908.407.918.877v13.687c-.01.47-.4.868-.918.877H3.736c-.517-.009-.908-.406-.918-.877V6.8c.01-.47.4-.868.918-.876h3.131L4.676 8.202a.409.409 0 1 0 .59.567l2.562-2.665 2.562 2.665a.409.409 0 1 0 .59-.567"
|
|
114
|
+
})
|
|
115
|
+
]
|
|
116
|
+
}));
|
|
117
|
+
}, m = e;
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "default", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function() {
|
|
9
|
+
return v;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
const _jsxruntime = require("react/jsx-runtime");
|
|
13
|
+
const _themevariantcontext = require("../../theme-variant-context.js");
|
|
14
|
+
const _skincontractcssmistica = require("../../skins/skin-contract.css-mistica.js");
|
|
15
|
+
function _define_property(obj, key, value) {
|
|
16
|
+
if (key in obj) {
|
|
17
|
+
Object.defineProperty(obj, key, {
|
|
18
|
+
value: value,
|
|
19
|
+
enumerable: true,
|
|
20
|
+
configurable: true,
|
|
21
|
+
writable: true
|
|
22
|
+
});
|
|
23
|
+
} else {
|
|
24
|
+
obj[key] = value;
|
|
25
|
+
}
|
|
26
|
+
return obj;
|
|
27
|
+
}
|
|
28
|
+
function _object_spread(target) {
|
|
29
|
+
for(var i = 1; i < arguments.length; i++){
|
|
30
|
+
var source = arguments[i] != null ? arguments[i] : {};
|
|
31
|
+
var ownKeys = Object.keys(source);
|
|
32
|
+
if (typeof Object.getOwnPropertySymbols === "function") {
|
|
33
|
+
ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) {
|
|
34
|
+
return Object.getOwnPropertyDescriptor(source, sym).enumerable;
|
|
35
|
+
}));
|
|
36
|
+
}
|
|
37
|
+
ownKeys.forEach(function(key) {
|
|
38
|
+
_define_property(target, key, source[key]);
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
return target;
|
|
42
|
+
}
|
|
43
|
+
function ownKeys(object, enumerableOnly) {
|
|
44
|
+
var keys = Object.keys(object);
|
|
45
|
+
if (Object.getOwnPropertySymbols) {
|
|
46
|
+
var symbols = Object.getOwnPropertySymbols(object);
|
|
47
|
+
if (enumerableOnly) {
|
|
48
|
+
symbols = symbols.filter(function(sym) {
|
|
49
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
50
|
+
});
|
|
51
|
+
}
|
|
52
|
+
keys.push.apply(keys, symbols);
|
|
53
|
+
}
|
|
54
|
+
return keys;
|
|
55
|
+
}
|
|
56
|
+
function _object_spread_props(target, source) {
|
|
57
|
+
source = source != null ? source : {};
|
|
58
|
+
if (Object.getOwnPropertyDescriptors) {
|
|
59
|
+
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
60
|
+
} else {
|
|
61
|
+
ownKeys(Object(source)).forEach(function(key) {
|
|
62
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
return target;
|
|
66
|
+
}
|
|
67
|
+
function _object_without_properties(source, excluded) {
|
|
68
|
+
if (source == null) return {};
|
|
69
|
+
var target = _object_without_properties_loose(source, excluded);
|
|
70
|
+
var key, i;
|
|
71
|
+
if (Object.getOwnPropertySymbols) {
|
|
72
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
73
|
+
for(i = 0; i < sourceSymbolKeys.length; i++){
|
|
74
|
+
key = sourceSymbolKeys[i];
|
|
75
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
76
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
77
|
+
target[key] = source[key];
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
return target;
|
|
81
|
+
}
|
|
82
|
+
function _object_without_properties_loose(source, excluded) {
|
|
83
|
+
if (source == null) return {};
|
|
84
|
+
var target = {};
|
|
85
|
+
var sourceKeys = Object.keys(source);
|
|
86
|
+
var key, i;
|
|
87
|
+
for(i = 0; i < sourceKeys.length; i++){
|
|
88
|
+
key = sourceKeys[i];
|
|
89
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
90
|
+
target[key] = source[key];
|
|
91
|
+
}
|
|
92
|
+
return target;
|
|
93
|
+
}
|
|
94
|
+
const n = (_param)=>{
|
|
95
|
+
var { color: r, size: c = 24 } = _param, e = _object_without_properties(_param, [
|
|
96
|
+
"color",
|
|
97
|
+
"size"
|
|
98
|
+
]);
|
|
99
|
+
const i = (0, _themevariantcontext.useIsInverseVariant)(), l = r !== null && r !== void 0 ? r : i ? _skincontractcssmistica.vars.colors.inverse : _skincontractcssmistica.vars.colors.neutralHigh;
|
|
100
|
+
return /* @__PURE__ */ (0, _jsxruntime.jsxs)("svg", _object_spread_props(_object_spread({
|
|
101
|
+
width: c,
|
|
102
|
+
height: c,
|
|
103
|
+
viewBox: "0 0 24 24",
|
|
104
|
+
role: "presentation"
|
|
105
|
+
}, e), {
|
|
106
|
+
children: [
|
|
107
|
+
/* @__PURE__ */ (0, _jsxruntime.jsx)("path", {
|
|
108
|
+
fill: l,
|
|
109
|
+
d: "m18.148 15.236.002.001-.04.01c-.26.06-.505.117-.751.179l.004.005 1.741 2.115a1.33 1.33 0 0 1 .239 1.292c-.103.3-.3.492-.44.611a4 4 0 0 1-.185.147l-.02.014-.007.006c-.065.049-.111.084-.15.118a1.34 1.34 0 0 1-.989.316 1.3 1.3 0 0 1-.909-.45c-.294-.343-.583-.691-.861-1.028l-.006-.008-.4-.482-.592.714-.027.033-.067.081-.073.087-.417.503a1.36 1.36 0 0 1-.541.435 1.4 1.4 0 0 1-.698.112 1.35 1.35 0 0 1-.709-.282 4 4 0 0 1-.169-.134l-.023-.02-.018-.015a2 2 0 0 0-.142-.113 1.32 1.32 0 0 1-.543-.915c-.047-.371.059-.741.292-1.016.405-.497.817-.996 1.216-1.48l.522-.632.007-.008.003-.004.003-.004c-.2-.05-.405-.098-.606-.145l-.155-.037-.04-.009-.19-.045h-.002l-.634-.152c-.321-.08-.6-.273-.786-.54a1.32 1.32 0 0 1-.224-.927l.004-.026c.049-.262.116-.514.17-.703l.009-.028c.108-.31.324-.568.61-.728.28-.157.61-.209.929-.146q.348.076.677.154c-.59-.866-.609-2.073.022-2.937a2.7 2.7 0 0 1 1.482-1.03 2.7 2.7 0 0 1 1.932.196c.6.303 1.058.813 1.29 1.436.284.765.162 1.655-.297 2.338l.65-.15c.306-.066.626-.027.902.11.279.14.502.371.628.654l.016.04c.066.192.111.383.15.553l.006.02.019.08.013.053c.162.681-.275 1.4-.954 1.57a38 38 0 0 1-.83.201zm-.262-1.13-.001.002.03-.007c.257-.06.542-.127.817-.197.069-.017.129-.11.114-.175l-.033-.136-.011-.05-.006-.023c-.03-.131-.057-.243-.093-.354a.2.2 0 0 0-.076-.069.2.2 0 0 0-.135-.016q-.342.078-.68.158l-.155.037-.025.006-.163.038-.661.154-.035.007q-.017.001-.033.006l-.015.003-.01.002a1 1 0 0 1-.135.023.83.83 0 0 1-.481-.075.81.81 0 0 1-.465-.6.81.81 0 0 1 .272-.768c.107-.093.225-.17.319-.233l.044-.03c.09-.06.155-.107.2-.155l.007-.007c.38-.392.512-.986.328-1.48a1.48 1.48 0 0 0-.726-.805 1.55 1.55 0 0 0-1.106-.112 1.53 1.53 0 0 0-.843.587c-.413.563-.308 1.415.223 1.867l.016.014c.041.038.095.073.177.127l.012.008c.1.065.226.148.345.26l.028.029c.303.335.244.755.055 1.023a.83.83 0 0 1-.907.33 26 26 0 0 1-.915-.204l-.112-.027-.063-.015c-.252-.06-.491-.117-.734-.169a.2.2 0 0 0-.132.022.17.17 0 0 0-.075.082 7 7 0 0 0-.135.555.16.16 0 0 0 .029.1.2.2 0 0 0 .111.076c.268.066.536.129.833.198q.421.097.847.202c.37.094.792.37.868.866.066.328-.041.668-.32 1.002l-.524.633c-.399.482-.81.981-1.215 1.479l-.01.01c-.021.027-.031.072-.025.12a.16.16 0 0 0 .058.111c.088.063.168.129.22.173l.007.006q.079.067.145.116c.07.053.102.062.114.064h.018a.2.2 0 0 0 .118-.017.2.2 0 0 0 .081-.066l.021-.028q.195-.238.384-.463l.181-.219.015-.018q.341-.41.686-.827a1.25 1.25 0 0 1 .534-.403l.073-.024a1 1 0 0 1 .21-.026c.15 0 .304.041.444.12q.182.101.34.285.245.294.482.581l.043.051c.273.33.557.671.843 1.006.022.026.067.044.117.048a.2.2 0 0 0 .139-.036c.072-.063.143-.116.201-.16l.009-.006.005-.004q.087-.064.154-.12c.075-.065.093-.096.096-.106a.2.2 0 0 0 .009-.091.17.17 0 0 0-.039-.08l-1.75-2.127h-.002c-.102-.128-.41-.507-.305-.997.086-.495.518-.77.86-.853.28-.072.562-.138.836-.2z"
|
|
110
|
+
}),
|
|
111
|
+
/* @__PURE__ */ (0, _jsxruntime.jsx)("path", {
|
|
112
|
+
fill: l,
|
|
113
|
+
d: "M10.97 2.04c.56.116 1.035.46 1.412 1.024h-.002c.385.577.517 1.152.395 1.71q-.079.364-.297.681h7.631c1.005.014 1.872.776 1.89 1.797l.001.011V20.18c-.02 1.022-.886 1.784-1.89 1.797H3.89c-1.005-.013-1.872-.775-1.89-1.797L2 20.17V7.251c.016-.84.603-1.503 1.37-1.721a1.9 1.9 0 0 1-.35-.754c-.121-.554.015-1.145.395-1.711.325-.485.9-1.063 1.805-1.063.432 0 .87.14 1.305.415.397.251.767.693 1.132 1.352q.12.22.24.466.118-.247.24-.469c.365-.658.735-1.1 1.132-1.351.574-.364 1.146-.49 1.7-.375M9.913 3.432c-.27.172-.595.629-.914 1.287a10 10 0 0 0-.304.702c.25.015.516.02.765.016.767-.013 1.34-.115 1.611-.286q.456-.289.53-.633.075-.341-.22-.784c-.393-.59-.86-.685-1.468-.302m-4.69-.23c-.305 0-.569.176-.806.531q-.295.443-.22.785.076.343.53.632c.272.17.844.273 1.611.286.25.004.515 0 .766-.016a9 9 0 0 0-.305-.702c-.318-.658-.643-1.115-.914-1.287q-.36-.229-.662-.229m4.14 3.456 1.773 1.774a.601.601 0 0 1-.85.85L7.911 6.906 5.536 9.281a.601.601 0 0 1-.85-.85L6.46 6.657H3.903c-.423.008-.692.312-.7.613v12.891c.008.301.277.606.7.613h16.194c.423-.007.692-.312.7-.613V7.271c-.008-.302-.277-.606-.7-.614z"
|
|
114
|
+
})
|
|
115
|
+
]
|
|
116
|
+
}));
|
|
117
|
+
}, v = n;
|
|
@@ -661,6 +661,14 @@ const e = {
|
|
|
661
661
|
"localiza\xe7\xe3o da caixa",
|
|
662
662
|
"Kistenposition"
|
|
663
663
|
],
|
|
664
|
+
"box-star": [
|
|
665
|
+
"benef\xedcios resgatados",
|
|
666
|
+
"benef\xedcios",
|
|
667
|
+
"benefits redeemed",
|
|
668
|
+
"benefits",
|
|
669
|
+
"beneficios",
|
|
670
|
+
"Vortaile"
|
|
671
|
+
],
|
|
664
672
|
brain: [
|
|
665
673
|
"mind",
|
|
666
674
|
"intellect",
|
|
@@ -2397,6 +2405,14 @@ const e = {
|
|
|
2397
2405
|
"bolha rom\xe2ntica",
|
|
2398
2406
|
"Herzblase"
|
|
2399
2407
|
],
|
|
2408
|
+
"high-priority": [
|
|
2409
|
+
"urgent",
|
|
2410
|
+
"important",
|
|
2411
|
+
"critical",
|
|
2412
|
+
"alta prioridad",
|
|
2413
|
+
"alta prioridade",
|
|
2414
|
+
"Hohe Priorit\xe4t"
|
|
2415
|
+
],
|
|
2400
2416
|
hockey: [
|
|
2401
2417
|
"ice hockey",
|
|
2402
2418
|
"hockey sport",
|
|
@@ -2940,6 +2956,13 @@ const e = {
|
|
|
2940
2956
|
"millennials",
|
|
2941
2957
|
"Millennials"
|
|
2942
2958
|
],
|
|
2959
|
+
mms: [
|
|
2960
|
+
"multimedia message service",
|
|
2961
|
+
"mms",
|
|
2962
|
+
"servicio de mensajes multimedia",
|
|
2963
|
+
"servi\xe7o de mensagens multim\xeddia",
|
|
2964
|
+
"Multimedia-Nachrichtendienst"
|
|
2965
|
+
],
|
|
2943
2966
|
"mobile-add-user": [
|
|
2944
2967
|
"add user on mobile",
|
|
2945
2968
|
"mobile user addition",
|
|
@@ -4691,6 +4714,14 @@ const e = {
|
|
|
4691
4714
|
"detec\xe7\xe3o de v\xedrus",
|
|
4692
4715
|
"Virenscan"
|
|
4693
4716
|
],
|
|
4717
|
+
"vivo-valoriza": [
|
|
4718
|
+
"vivo valoriza",
|
|
4719
|
+
"vivo rewards",
|
|
4720
|
+
"vivo loyalty program",
|
|
4721
|
+
"vivo valoriza",
|
|
4722
|
+
"vivo recompensas",
|
|
4723
|
+
"vivo Treueprogramm"
|
|
4724
|
+
],
|
|
4694
4725
|
vod: [
|
|
4695
4726
|
"video on demand",
|
|
4696
4727
|
"streaming video",
|
package/dist/index.d.ts
CHANGED
|
@@ -358,6 +358,9 @@ export { default as IconBoxLocationFilled } from './generated/mistica-icons/icon
|
|
|
358
358
|
export { default as IconBoxLocationLight } from './generated/mistica-icons/icon-box-location-light';
|
|
359
359
|
export { default as IconBoxLocationRegular } from './generated/mistica-icons/icon-box-location-regular';
|
|
360
360
|
export { default as IconBoxRegular } from './generated/mistica-icons/icon-box-regular';
|
|
361
|
+
export { default as IconBoxStarFilled } from './generated/mistica-icons/icon-box-star-filled';
|
|
362
|
+
export { default as IconBoxStarLight } from './generated/mistica-icons/icon-box-star-light';
|
|
363
|
+
export { default as IconBoxStarRegular } from './generated/mistica-icons/icon-box-star-regular';
|
|
361
364
|
export { default as IconBrainFilled } from './generated/mistica-icons/icon-brain-filled';
|
|
362
365
|
export { default as IconBrainLight } from './generated/mistica-icons/icon-brain-light';
|
|
363
366
|
export { default as IconBrainRegular } from './generated/mistica-icons/icon-brain-regular';
|
|
@@ -974,6 +977,9 @@ export { default as IconHeartBubbleRegular } from './generated/mistica-icons/ico
|
|
|
974
977
|
export { default as IconHeartFilled } from './generated/mistica-icons/icon-heart-filled';
|
|
975
978
|
export { default as IconHeartLight } from './generated/mistica-icons/icon-heart-light';
|
|
976
979
|
export { default as IconHeartRegular } from './generated/mistica-icons/icon-heart-regular';
|
|
980
|
+
export { default as IconHighPriorityFilled } from './generated/mistica-icons/icon-high-priority-filled';
|
|
981
|
+
export { default as IconHighPriorityLight } from './generated/mistica-icons/icon-high-priority-light';
|
|
982
|
+
export { default as IconHighPriorityRegular } from './generated/mistica-icons/icon-high-priority-regular';
|
|
977
983
|
export { default as IconHockeyFilled } from './generated/mistica-icons/icon-hockey-filled';
|
|
978
984
|
export { default as IconHockeyLight } from './generated/mistica-icons/icon-hockey-light';
|
|
979
985
|
export { default as IconHockeyRegular } from './generated/mistica-icons/icon-hockey-regular';
|
|
@@ -1166,6 +1172,9 @@ export { default as IconMicrophoneRegular } from './generated/mistica-icons/icon
|
|
|
1166
1172
|
export { default as IconMillenialsFilled } from './generated/mistica-icons/icon-millenials-filled';
|
|
1167
1173
|
export { default as IconMillenialsLight } from './generated/mistica-icons/icon-millenials-light';
|
|
1168
1174
|
export { default as IconMillenialsRegular } from './generated/mistica-icons/icon-millenials-regular';
|
|
1175
|
+
export { default as IconMmsFilled } from './generated/mistica-icons/icon-mms-filled';
|
|
1176
|
+
export { default as IconMmsLight } from './generated/mistica-icons/icon-mms-light';
|
|
1177
|
+
export { default as IconMmsRegular } from './generated/mistica-icons/icon-mms-regular';
|
|
1169
1178
|
export { default as IconMobileAddUserFilled } from './generated/mistica-icons/icon-mobile-add-user-filled';
|
|
1170
1179
|
export { default as IconMobileAddUserLight } from './generated/mistica-icons/icon-mobile-add-user-light';
|
|
1171
1180
|
export { default as IconMobileAddUserRegular } from './generated/mistica-icons/icon-mobile-add-user-regular';
|
|
@@ -1802,6 +1811,9 @@ export { default as IconVirusRegular } from './generated/mistica-icons/icon-viru
|
|
|
1802
1811
|
export { default as IconVirusScanFilled } from './generated/mistica-icons/icon-virus-scan-filled';
|
|
1803
1812
|
export { default as IconVirusScanLight } from './generated/mistica-icons/icon-virus-scan-light';
|
|
1804
1813
|
export { default as IconVirusScanRegular } from './generated/mistica-icons/icon-virus-scan-regular';
|
|
1814
|
+
export { default as IconVivoValorizaFilled } from './generated/mistica-icons/icon-vivo-valoriza-filled';
|
|
1815
|
+
export { default as IconVivoValorizaLight } from './generated/mistica-icons/icon-vivo-valoriza-light';
|
|
1816
|
+
export { default as IconVivoValorizaRegular } from './generated/mistica-icons/icon-vivo-valoriza-regular';
|
|
1805
1817
|
export { default as IconVodFilled } from './generated/mistica-icons/icon-vod-filled';
|
|
1806
1818
|
export { default as IconVodLight } from './generated/mistica-icons/icon-vod-light';
|
|
1807
1819
|
export { default as IconVodRegular } from './generated/mistica-icons/icon-vod-regular';
|
package/dist/index.js
CHANGED
|
@@ -876,6 +876,15 @@ _export(exports, {
|
|
|
876
876
|
IconBoxRegular: function() {
|
|
877
877
|
return _iconboxregular.default;
|
|
878
878
|
},
|
|
879
|
+
IconBoxStarFilled: function() {
|
|
880
|
+
return _iconboxstarfilled.default;
|
|
881
|
+
},
|
|
882
|
+
IconBoxStarLight: function() {
|
|
883
|
+
return _iconboxstarlight.default;
|
|
884
|
+
},
|
|
885
|
+
IconBoxStarRegular: function() {
|
|
886
|
+
return _iconboxstarregular.default;
|
|
887
|
+
},
|
|
879
888
|
IconBrainFilled: function() {
|
|
880
889
|
return _iconbrainfilled.default;
|
|
881
890
|
},
|
|
@@ -2733,6 +2742,15 @@ _export(exports, {
|
|
|
2733
2742
|
IconHeartRegular: function() {
|
|
2734
2743
|
return _iconheartregular.default;
|
|
2735
2744
|
},
|
|
2745
|
+
IconHighPriorityFilled: function() {
|
|
2746
|
+
return _iconhighpriorityfilled.default;
|
|
2747
|
+
},
|
|
2748
|
+
IconHighPriorityLight: function() {
|
|
2749
|
+
return _iconhighprioritylight.default;
|
|
2750
|
+
},
|
|
2751
|
+
IconHighPriorityRegular: function() {
|
|
2752
|
+
return _iconhighpriorityregular.default;
|
|
2753
|
+
},
|
|
2736
2754
|
IconHockeyFilled: function() {
|
|
2737
2755
|
return _iconhockeyfilled.default;
|
|
2738
2756
|
},
|
|
@@ -3312,6 +3330,15 @@ _export(exports, {
|
|
|
3312
3330
|
IconMillenialsRegular: function() {
|
|
3313
3331
|
return _iconmillenialsregular.default;
|
|
3314
3332
|
},
|
|
3333
|
+
IconMmsFilled: function() {
|
|
3334
|
+
return _iconmmsfilled.default;
|
|
3335
|
+
},
|
|
3336
|
+
IconMmsLight: function() {
|
|
3337
|
+
return _iconmmslight.default;
|
|
3338
|
+
},
|
|
3339
|
+
IconMmsRegular: function() {
|
|
3340
|
+
return _iconmmsregular.default;
|
|
3341
|
+
},
|
|
3315
3342
|
IconMobileAddUserFilled: function() {
|
|
3316
3343
|
return _iconmobileadduserfilled.default;
|
|
3317
3344
|
},
|
|
@@ -5229,6 +5256,15 @@ _export(exports, {
|
|
|
5229
5256
|
IconVirusScanRegular: function() {
|
|
5230
5257
|
return _iconvirusscanregular.default;
|
|
5231
5258
|
},
|
|
5259
|
+
IconVivoValorizaFilled: function() {
|
|
5260
|
+
return _iconvivovalorizafilled.default;
|
|
5261
|
+
},
|
|
5262
|
+
IconVivoValorizaLight: function() {
|
|
5263
|
+
return _iconvivovalorizalight.default;
|
|
5264
|
+
},
|
|
5265
|
+
IconVivoValorizaRegular: function() {
|
|
5266
|
+
return _iconvivovalorizaregular.default;
|
|
5267
|
+
},
|
|
5232
5268
|
IconVodFilled: function() {
|
|
5233
5269
|
return _iconvodfilled.default;
|
|
5234
5270
|
},
|
|
@@ -6226,6 +6262,9 @@ const _iconboxlocationfilled = /*#__PURE__*/ _interop_require_default(require(".
|
|
|
6226
6262
|
const _iconboxlocationlight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-box-location-light.js"));
|
|
6227
6263
|
const _iconboxlocationregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-box-location-regular.js"));
|
|
6228
6264
|
const _iconboxregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-box-regular.js"));
|
|
6265
|
+
const _iconboxstarfilled = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-box-star-filled.js"));
|
|
6266
|
+
const _iconboxstarlight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-box-star-light.js"));
|
|
6267
|
+
const _iconboxstarregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-box-star-regular.js"));
|
|
6229
6268
|
const _iconbrainfilled = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-brain-filled.js"));
|
|
6230
6269
|
const _iconbrainlight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-brain-light.js"));
|
|
6231
6270
|
const _iconbrainregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-brain-regular.js"));
|
|
@@ -6842,6 +6881,9 @@ const _iconheartbubbleregular = /*#__PURE__*/ _interop_require_default(require("
|
|
|
6842
6881
|
const _iconheartfilled = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-heart-filled.js"));
|
|
6843
6882
|
const _iconheartlight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-heart-light.js"));
|
|
6844
6883
|
const _iconheartregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-heart-regular.js"));
|
|
6884
|
+
const _iconhighpriorityfilled = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-high-priority-filled.js"));
|
|
6885
|
+
const _iconhighprioritylight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-high-priority-light.js"));
|
|
6886
|
+
const _iconhighpriorityregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-high-priority-regular.js"));
|
|
6845
6887
|
const _iconhockeyfilled = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-hockey-filled.js"));
|
|
6846
6888
|
const _iconhockeylight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-hockey-light.js"));
|
|
6847
6889
|
const _iconhockeyregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-hockey-regular.js"));
|
|
@@ -7034,6 +7076,9 @@ const _iconmicrophoneregular = /*#__PURE__*/ _interop_require_default(require(".
|
|
|
7034
7076
|
const _iconmillenialsfilled = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-millenials-filled.js"));
|
|
7035
7077
|
const _iconmillenialslight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-millenials-light.js"));
|
|
7036
7078
|
const _iconmillenialsregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-millenials-regular.js"));
|
|
7079
|
+
const _iconmmsfilled = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-mms-filled.js"));
|
|
7080
|
+
const _iconmmslight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-mms-light.js"));
|
|
7081
|
+
const _iconmmsregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-mms-regular.js"));
|
|
7037
7082
|
const _iconmobileadduserfilled = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-mobile-add-user-filled.js"));
|
|
7038
7083
|
const _iconmobileadduserlight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-mobile-add-user-light.js"));
|
|
7039
7084
|
const _iconmobileadduserregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-mobile-add-user-regular.js"));
|
|
@@ -7670,6 +7715,9 @@ const _iconvirusregular = /*#__PURE__*/ _interop_require_default(require("./gene
|
|
|
7670
7715
|
const _iconvirusscanfilled = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-virus-scan-filled.js"));
|
|
7671
7716
|
const _iconvirusscanlight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-virus-scan-light.js"));
|
|
7672
7717
|
const _iconvirusscanregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-virus-scan-regular.js"));
|
|
7718
|
+
const _iconvivovalorizafilled = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-vivo-valoriza-filled.js"));
|
|
7719
|
+
const _iconvivovalorizalight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-vivo-valoriza-light.js"));
|
|
7720
|
+
const _iconvivovalorizaregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-vivo-valoriza-regular.js"));
|
|
7673
7721
|
const _iconvodfilled = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-vod-filled.js"));
|
|
7674
7722
|
const _iconvodlight = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-vod-light.js"));
|
|
7675
7723
|
const _iconvodregular = /*#__PURE__*/ _interop_require_default(require("./generated/mistica-icons/icon-vod-regular.js"));
|
|
@@ -10,31 +10,34 @@ function _export(target, all) {
|
|
|
10
10
|
}
|
|
11
11
|
_export(exports, {
|
|
12
12
|
fullWidth: function() {
|
|
13
|
-
return
|
|
13
|
+
return v;
|
|
14
14
|
},
|
|
15
15
|
inline: function() {
|
|
16
|
-
return
|
|
16
|
+
return k;
|
|
17
17
|
},
|
|
18
18
|
marginInline: function() {
|
|
19
|
-
return
|
|
19
|
+
return r;
|
|
20
20
|
},
|
|
21
21
|
noFullWidth: function() {
|
|
22
|
-
return
|
|
22
|
+
return n;
|
|
23
23
|
},
|
|
24
24
|
stringSpace: function() {
|
|
25
25
|
return b;
|
|
26
26
|
},
|
|
27
|
-
|
|
27
|
+
stringSpaceWithWrap: function() {
|
|
28
28
|
return e;
|
|
29
29
|
},
|
|
30
|
-
|
|
30
|
+
vars: function() {
|
|
31
31
|
return f;
|
|
32
|
+
},
|
|
33
|
+
wrap: function() {
|
|
34
|
+
return i;
|
|
32
35
|
}
|
|
33
36
|
});
|
|
34
37
|
require("./inline.css.ts.vanilla.css-mistica.js");
|
|
35
|
-
var
|
|
38
|
+
var v = "kkfbnv6", k = "kkfbnv5", r = "kkfbnv4", n = "kkfbnv8", b = "kkfbnv9", e = "kkfbnva", f = {
|
|
36
39
|
space: "var(--kkfbnv0)",
|
|
37
40
|
spaceMobile: "var(--kkfbnv1)",
|
|
38
41
|
spaceTablet: "var(--kkfbnv2)",
|
|
39
42
|
spaceDesktop: "var(--kkfbnv3)"
|
|
40
|
-
},
|
|
43
|
+
}, i = "kkfbnv7";
|
package/dist/inline.css.d.ts
CHANGED
package/dist/inline.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
Object.defineProperty(exports, "default", {
|
|
7
7
|
enumerable: true,
|
|
8
8
|
get: function() {
|
|
9
|
-
return
|
|
9
|
+
return q;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
12
|
const _jsxruntime = require("react/jsx-runtime");
|
|
@@ -116,7 +116,7 @@ function _object_spread_props(target, source) {
|
|
|
116
116
|
}
|
|
117
117
|
return target;
|
|
118
118
|
}
|
|
119
|
-
const i = (t)=>typeof t == "number" ? `${t}px` : `space-${t}`,
|
|
119
|
+
const i = (t)=>typeof t == "number" ? `${t}px` : `space-${t}`, D = (t)=>{
|
|
120
120
|
if (typeof t == "number" || typeof t == "string") return {
|
|
121
121
|
[_inlinecssmistica.vars.space]: i(t)
|
|
122
122
|
};
|
|
@@ -125,25 +125,25 @@ const i = (t)=>typeof t == "number" ? `${t}px` : `space-${t}`, A = (t)=>{
|
|
|
125
125
|
[_inlinecssmistica.vars.spaceDesktop]: i(t.desktop)
|
|
126
126
|
};
|
|
127
127
|
return t.tablet && (e[_inlinecssmistica.vars.spaceTablet] = i(t.tablet)), e;
|
|
128
|
-
},
|
|
129
|
-
let { space: t, className: e, children:
|
|
130
|
-
const { platformOverrides:
|
|
128
|
+
}, R = (param)=>{
|
|
129
|
+
let { space: t, className: e, children: m, role: o, alignItems: p = "stretch", "aria-labelledby": f, fullWidth: c, wrap: l, dataAttributes: d } = param;
|
|
130
|
+
const { platformOverrides: s } = (0, _hooks.useTheme)(), u = typeof t == "string";
|
|
131
131
|
return /* @__PURE__ */ (0, _jsxruntime.jsx)("div", _object_spread_props(_object_spread({
|
|
132
132
|
className: (0, _classnames.default)(e, _inlinecssmistica.inline, (0, _sprinklescssmistica.sprinkles)({
|
|
133
|
-
alignItems:
|
|
134
|
-
}),
|
|
135
|
-
style: (0, _css.applyCssVars)(
|
|
133
|
+
alignItems: p
|
|
134
|
+
}), l ? _inlinecssmistica.wrap : c ? _inlinecssmistica.fullWidth : _inlinecssmistica.noFullWidth, u ? l ? _inlinecssmistica.stringSpaceWithWrap : _inlinecssmistica.stringSpace : _inlinecssmistica.marginInline),
|
|
135
|
+
style: (0, _css.applyCssVars)(D(t)),
|
|
136
136
|
role: o,
|
|
137
|
-
"aria-labelledby":
|
|
137
|
+
"aria-labelledby": f
|
|
138
138
|
}, (0, _dom.getPrefixedDataAttributes)(d, "Inline")), {
|
|
139
|
-
children: _react.Children.map(
|
|
139
|
+
children: _react.Children.map(m, (n)=>n || n === 0 ? /* @__PURE__ */ (0, _jsxruntime.jsx)("div", {
|
|
140
140
|
role: o === "list" ? "listitem" : void 0,
|
|
141
141
|
style: {
|
|
142
142
|
// Hack to fix https://jira.tid.es/browse/WEB-1683
|
|
143
143
|
// In iOS the inline component sometimes cuts the last line of the content
|
|
144
|
-
paddingBottom: (0, _platform.isIos)(
|
|
144
|
+
paddingBottom: (0, _platform.isIos)(s) && !(0, _platform.isRunningAcceptanceTest)(s) ? 1 : void 0
|
|
145
145
|
},
|
|
146
146
|
children: n
|
|
147
147
|
}) : null)
|
|
148
148
|
}));
|
|
149
|
-
},
|
|
149
|
+
}, q = R;
|
package/dist/list.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ interface CommonProps {
|
|
|
30
30
|
}
|
|
31
31
|
interface ContentProps extends CommonProps {
|
|
32
32
|
headlineRef?: React.Ref<HTMLDivElement>;
|
|
33
|
+
rightRef?: React.Ref<HTMLDivElement>;
|
|
33
34
|
extraRef?: React.Ref<HTMLDivElement>;
|
|
34
35
|
control?: React.ReactNode;
|
|
35
36
|
/** This id is to link the title with the related control */
|