jfs-components 0.0.26 → 0.0.28
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/lib/commonjs/components/Carousel/Carousel.mdx +5 -1
- package/lib/commonjs/components/HStack/HStack.js +5 -5
- package/lib/commonjs/components/HStack/HStack.mdx +5 -5
- package/lib/commonjs/components/MoneyValue/MoneyValue.mdx +1 -1
- package/lib/commonjs/design-tokens/JFS Variables-variables-full.json +1 -1
- package/lib/commonjs/design-tokens/figma-variables-resolver.js +3 -9
- package/lib/commonjs/icons/registry.js +1 -1
- package/lib/module/components/Carousel/Carousel.mdx +5 -1
- package/lib/module/components/HStack/HStack.js +5 -5
- package/lib/module/components/HStack/HStack.mdx +5 -5
- package/lib/module/components/MoneyValue/MoneyValue.mdx +1 -1
- package/lib/module/design-tokens/JFS Variables-variables-full.json +1 -1
- package/lib/module/icons/registry.js +1 -1
- package/lib/typescript/icons/registry.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/.token-metadata.json +20 -8
- package/src/components/Carousel/Carousel.mdx +5 -1
- package/src/components/HStack/HStack.mdx +5 -5
- package/src/components/HStack/HStack.tsx +5 -5
- package/src/components/MoneyValue/MoneyValue.mdx +1 -1
- package/src/design-tokens/JFS Variables-variables-full.json +1 -1
- package/src/icons/registry.ts +1 -1
|
@@ -11,10 +11,10 @@ exports.modeMap = exports.keyMap = void 0;
|
|
|
11
11
|
exports.resolveVariable = resolveVariable;
|
|
12
12
|
exports.traceVariableCollections = traceVariableCollections;
|
|
13
13
|
exports.variableMap = void 0;
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
var _JFSVariablesVariablesFull = _interopRequireDefault(require("./JFS Variables-variables-full.json"));
|
|
15
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
16
16
|
// 🔧 Configure the imports to include all the json files then add them to the allVariableData array 🔧
|
|
17
|
-
const allVariableData = [
|
|
17
|
+
const allVariableData = [_JFSVariablesVariablesFull.default];
|
|
18
18
|
// 🔧 DO NOT EDIT BELOW THIS LINE 🔧
|
|
19
19
|
// Create comprehensive lookup maps
|
|
20
20
|
const variableMap = exports.variableMap = new Map();
|
|
@@ -333,10 +333,4 @@ function traceVariableCollections(variableName) {
|
|
|
333
333
|
}
|
|
334
334
|
return collections;
|
|
335
335
|
}
|
|
336
|
-
//# sourceMappingURL=figma-variables-resolver.js.mapm.modeId === collection.defaultModeId)?.name
|
|
337
|
-
});
|
|
338
|
-
}
|
|
339
|
-
}
|
|
340
|
-
return collections;
|
|
341
|
-
}
|
|
342
336
|
//# sourceMappingURL=figma-variables-resolver.js.map
|