@pisell/materials 6.0.16 → 6.0.17
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +2 -2
- package/build/lowcode/preview.js +13 -21
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +21 -35
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +21 -35
- package/dist/umd/materials.min.css +1 -0
- package/dist/umd/materials.min.js +1 -0
- package/dist/umd/static/DotsSix.57d66266.svg +1 -0
- package/dist/umd/static/arrow-left.e542294f.svg +1 -0
- package/dist/umd/static/arrow-right.763f03e0.svg +1 -0
- package/dist/umd/static/filter-lines.04a54ae9.svg +1 -0
- package/dist/umd/static/help-circle.31c9be40.svg +1 -0
- package/dist/umd/static/switch-vertical-01.7ebe3ba8.svg +1 -0
- package/es/components/Pagination/index.d.ts +1 -1
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +3 -3
- package/es/components/dataSourceComponents/fields/Input/WithMode.d.ts +1 -0
- package/es/components/dataSourceComponents/fields/Input/WithMode.js +605 -5
- package/es/components/dataSourceComponents/fields/Input/WithMode.less +96 -0
- package/es/components/dataSourceComponents/fields/Input/type.d.ts +1 -0
- package/es/components/dataSourceComponents/fields/index.d.ts +1 -1
- package/es/components/iconfont/index.d.ts +1 -0
- package/es/components/iconfont/index.js +1 -1
- package/lib/components/Pagination/index.d.ts +1 -1
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +3 -3
- package/lib/components/dataSourceComponents/fields/Input/WithMode.d.ts +1 -0
- package/lib/components/dataSourceComponents/fields/Input/WithMode.js +383 -1
- package/lib/components/dataSourceComponents/fields/Input/WithMode.less +96 -0
- package/lib/components/dataSourceComponents/fields/Input/type.d.ts +1 -0
- package/lib/components/dataSourceComponents/fields/index.d.ts +1 -1
- package/lib/components/iconfont/index.d.ts +1 -0
- package/lib/components/iconfont/index.js +1 -1
- package/lowcode/_utils/defaultSchema.ts +18 -0
- package/lowcode/form-item-input/meta.ts +1 -0
- package/lowcode/form-item-input/snippets.ts +1 -0
- package/package.json +3 -3
|
@@ -35,7 +35,7 @@ module.exports = __toCommonJS(iconfont_exports);
|
|
|
35
35
|
var import_icons = require("@ant-design/icons");
|
|
36
36
|
var import_react = __toESM(require("react"));
|
|
37
37
|
var MyIcon = (0, import_icons.createFromIconfontCN)({
|
|
38
|
-
scriptUrl: "https://static.pisellcdn.com/
|
|
38
|
+
scriptUrl: "https://static.pisellcdn.com/pisell2iconfont1.3.js"
|
|
39
39
|
// 在 iconfont.cn 上生成
|
|
40
40
|
});
|
|
41
41
|
var IconFont = (props) => {
|
|
@@ -119,6 +119,24 @@ export const generalItemMap = {
|
|
|
119
119
|
},
|
|
120
120
|
supportVariable: true,
|
|
121
121
|
},
|
|
122
|
+
enableQRScanner: {
|
|
123
|
+
name: 'enableQRScanner',
|
|
124
|
+
title: {
|
|
125
|
+
label: {
|
|
126
|
+
type: 'i18n',
|
|
127
|
+
'en-US': 'Enable QR Scanner',
|
|
128
|
+
'zh-CN': '启用扫码',
|
|
129
|
+
},
|
|
130
|
+
tip: {
|
|
131
|
+
type: 'i18n',
|
|
132
|
+
'en-US': 'Enable QR Scanner',
|
|
133
|
+
'zh-CN': '启用扫码',
|
|
134
|
+
},
|
|
135
|
+
},
|
|
136
|
+
propType: 'bool',
|
|
137
|
+
defaultValue: false,
|
|
138
|
+
setter: 'BoolSetter',
|
|
139
|
+
},
|
|
122
140
|
tooltip: {
|
|
123
141
|
name: 'tooltip',
|
|
124
142
|
title: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pisell/materials",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.17",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"module": "./es/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
"react-virtualized-auto-sizer": "^1.0.20",
|
|
68
68
|
"react-window": "^1.8.10",
|
|
69
69
|
"styled-components": "^6.0.0-rc.3",
|
|
70
|
-
"@pisell/
|
|
70
|
+
"@pisell/utils": "1.0.42",
|
|
71
71
|
"@pisell/date-picker": "1.0.100",
|
|
72
|
-
"@pisell/
|
|
72
|
+
"@pisell/icon": "0.0.11"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
75
|
"react": "^18.0.0",
|