New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

stellar-ui-plus

Package Overview
Dependencies
Maintainers
0
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stellar-ui-plus - npm Package Compare versions

Comparing version 1.17.4 to 1.17.5

2

package.json
{
"name": "stellar-ui-plus",
"version": "1.17.4",
"version": "1.17.5",
"description": "",

@@ -5,0 +5,0 @@ "author": "",

@@ -1,14 +0,14 @@

import { ref } from 'vue';
import { reactive } from 'vue';
const color = reactive({
steThemeColor: '#0090FF',
defaultColor: '#0090FF',
});
// 主题色内容
export function useColorStore() {
const color = ref({
steThemeColor: '#0090FF',
defaultColor: '#0090FF',
});
const getColor = () => {
return color.value;
return color;
};
const setColor = value => {
Object.assign(color.value, value);
console.log('color', color.value);
const setColor = (value: any) => {
Object.assign(color, value);
console.log('color', color);
};

@@ -15,0 +15,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc