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

@codady/axui

Package Overview
Dependencies
Maintainers
1
Versions
179
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codady/axui - npm Package Compare versions

Comparing version 0.0.10 to 0.0.11

src/scripts/global/error.js

31

dist/js/ax.cjs.js

@@ -6,3 +6,3 @@ 'use strict';

*/
var zhCN = {
var lang = {
name: 'axui',

@@ -12,2 +12,23 @@ };

/**
* @since Last modified: 2023-11-04 16:45:09
* @name ax
* @author AXUI development team <3217728223@qq.com>
* @license MIT license
* @description Namespaces.Tool functions, plug-ins, and modules start with "ax.*", Such as ax.getDom () and new ax.popup ().
* @typedef {(number|string)} ax
* @property {string} version - Framework version number
* @property {Object} lang - Frame language package
* @property {boolean} immediate=true - Is it immediately executed after loading
* @see {@link https://www.axui.cn|Official website}
* @see {@link https://github.com/axui/axui/issues|github issues}
* @see {@link https://gitee.com/axui/axui/issues|Gitee issues}
* @issue QQ Group No.1:952502085
*/
const ax = {
version: 'v3.0.0',
lang,
immediate: true
};
/**
* @since Last modified: 2023-11-04 09:11:37

@@ -190,7 +211,5 @@ * @function trim

/**
* Last modified: 2023-11-04 14:08:17
* Last modified: 2023-11-04 16:20:46
*/
const ax = {
version: 'v3.0.0',
lang: zhCN,
Object.assign(ax, {
trim: trim,

@@ -203,4 +222,4 @@ getObjType: getObjType,

more: more,
};
});
module.exports = ax;
/**
* Last modified: 2023-11-04 09:11:51
*/
var zhCN = {
var lang = {
name: 'axui',

@@ -9,2 +9,23 @@ };

/**
* @since Last modified: 2023-11-04 16:45:09
* @name ax
* @author AXUI development team <3217728223@qq.com>
* @license MIT license
* @description Namespaces.Tool functions, plug-ins, and modules start with "ax.*", Such as ax.getDom () and new ax.popup ().
* @typedef {(number|string)} ax
* @property {string} version - Framework version number
* @property {Object} lang - Frame language package
* @property {boolean} immediate=true - Is it immediately executed after loading
* @see {@link https://www.axui.cn|Official website}
* @see {@link https://github.com/axui/axui/issues|github issues}
* @see {@link https://gitee.com/axui/axui/issues|Gitee issues}
* @issue QQ Group No.1:952502085
*/
const ax = {
version: 'v3.0.0',
lang,
immediate: true
};
/**
* @since Last modified: 2023-11-04 09:11:37

@@ -187,7 +208,5 @@ * @function trim

/**
* Last modified: 2023-11-04 14:08:17
* Last modified: 2023-11-04 16:20:46
*/
const ax = {
version: 'v3.0.0',
lang: zhCN,
Object.assign(ax, {
trim: trim,

@@ -200,4 +219,4 @@ getObjType: getObjType,

more: more,
};
});
export { ax as default };

@@ -10,3 +10,3 @@ (function (global, factory) {

*/
var zhCN = {
var lang = {
name: 'axui',

@@ -16,2 +16,23 @@ };

/**
* @since Last modified: 2023-11-04 16:45:09
* @name ax
* @author AXUI development team <3217728223@qq.com>
* @license MIT license
* @description Namespaces.Tool functions, plug-ins, and modules start with "ax.*", Such as ax.getDom () and new ax.popup ().
* @typedef {(number|string)} ax
* @property {string} version - Framework version number
* @property {Object} lang - Frame language package
* @property {boolean} immediate=true - Is it immediately executed after loading
* @see {@link https://www.axui.cn|Official website}
* @see {@link https://github.com/axui/axui/issues|github issues}
* @see {@link https://gitee.com/axui/axui/issues|Gitee issues}
* @issue QQ Group No.1:952502085
*/
const ax = {
version: 'v3.0.0',
lang,
immediate: true
};
/**
* @since Last modified: 2023-11-04 09:11:37

@@ -194,7 +215,5 @@ * @function trim

/**
* Last modified: 2023-11-04 14:08:17
* Last modified: 2023-11-04 16:20:46
*/
const ax = {
version: 'v3.0.0',
lang: zhCN,
Object.assign(ax, {
trim: trim,

@@ -207,3 +226,3 @@ getObjType: getObjType,

more: more,
};
});

@@ -210,0 +229,0 @@ return ax;

3

package.json
{
"name": "@codady/axui",
"version": "0.0.10",
"version": "0.0.11",
"keywords": [

@@ -39,3 +39,2 @@ "javascript",

"dependencies": {
"@codady/axui": "^0.0.9",
"clean-css": "^5.3.2",

@@ -42,0 +41,0 @@ "clean-css-cli": "^5.6.2",

/**
* @since Last modified: 2023-11-04 09:11:45
* @since Last modified: 2023-11-04 16:45:09
* @name ax

@@ -7,2 +7,6 @@ * @author AXUI development team <3217728223@qq.com>

* @description Namespaces.Tool functions, plug-ins, and modules start with "ax.*", Such as ax.getDom () and new ax.popup ().
* @typedef {(number|string)} ax
* @property {string} version - Framework version number
* @property {Object} lang - Frame language package
* @property {boolean} immediate=true - Is it immediately executed after loading
* @see {@link https://www.axui.cn|Official website}

@@ -14,4 +18,8 @@ * @see {@link https://github.com/axui/axui/issues|github issues}

'use strict';
export const ax = {
import lang from '../lang/zh-CN';
const ax = {
version: 'v3.0.0',
lang,
immediate: true
};
export default ax;
/**
* @since Last modified: 2023-11-04 09:11:45
* @since Last modified: 2023-11-04 16:45:09
* @name ax

@@ -7,2 +7,6 @@ * @author AXUI development team <3217728223@qq.com>

* @description Namespaces.Tool functions, plug-ins, and modules start with "ax.*", Such as ax.getDom () and new ax.popup ().
* @typedef {(number|string)} ax
* @property {string} version - Framework version number
* @property {Object} lang - Frame language package
* @property {boolean} immediate=true - Is it immediately executed after loading
* @see {@link https://www.axui.cn|Official website}

@@ -14,4 +18,8 @@ * @see {@link https://github.com/axui/axui/issues|github issues}

'use strict';
export const ax: any = {
import lang from '../lang/zh-CN';
const ax = {
version: 'v3.0.0',
lang,
immediate:true
}
export default ax;
/**
* Last modified: 2023-11-04 14:08:17
* Last modified: 2023-11-04 16:20:46
*/
'use strict';
/*
import './lang/zh-CN';
import './utils/trim';
import { getObjType } from './utils/getObjType';
import './utils/getSelectorType';
import './utils/renderTpl';
import {isEmpty} from './utils/isEmpty';
ax.isEmpty = isEmpty;
import './utils/getDom';
import './modules/more';
console.log('AXUI version:', ax.version);
console.log(ax.isEmpty([]));
*/
import zhCN from './lang/zh-CN';
import ax from './global/namespace';
import trim from './utils/trim';

@@ -26,5 +13,3 @@ import getObjType from './utils/getObjType';

import more from './modules/more';
const ax = {
version: 'v3.0.0',
lang: zhCN,
Object.assign(ax, {
trim: trim,

@@ -37,7 +22,3 @@ getObjType: getObjType,

more: more,
};
/* import getDom from '@codady/axui/src/scripts/utils/getDom';
const x ={
you:getDom,
} */
});
export default ax;
/**
* Last modified: 2023-11-04 14:08:17
* Last modified: 2023-11-04 16:20:46
*/
'use strict'
/*
import './lang/zh-CN';
import './utils/trim';
import { getObjType } from './utils/getObjType';
import './utils/getSelectorType';
import './utils/renderTpl';
import {isEmpty} from './utils/isEmpty';
ax.isEmpty = isEmpty;
import './utils/getDom';
import './modules/more';
console.log('AXUI version:', ax.version);
console.log(ax.isEmpty([]));
*/
import zhCN from './lang/zh-CN';
import enUS from './lang/en-US';
import ax from './global/namespace';
import trim from './utils/trim';

@@ -27,5 +13,3 @@ import getObjType from './utils/getObjType';

import more from './modules/more';
const ax = {
version: 'v3.0.0',
lang: zhCN,
Object.assign(ax, {
trim: trim,

@@ -38,7 +22,3 @@ getObjType: getObjType,

more: more,
}
/* import getDom from '@codady/axui/src/scripts/utils/getDom';
const x ={
you:getDom,
} */
});
export default ax;
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