@jetlinks-web/components 2.0.29 → 2.0.31
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/es/CardSelect/style/index.css +24 -0
- package/es/CardSelect/style/index.less +26 -0
- package/es/FullPage/FullPage.js +1 -1
- package/es/Search/Advanced/SaveHistory.js +1 -1
- package/es/Search/Item.js +1 -1
- package/es/Search/Search.js +1 -1
- package/es/style/index.css +20 -0
- package/es/style/index.less +1 -0
- package/es/style.js +2 -1
- package/lib/CardSelect/style/index.css +24 -0
- package/lib/CardSelect/style/index.less +26 -0
- package/lib/FullPage/FullPage.js +1 -1
- package/lib/Search/Advanced/SaveHistory.js +1 -1
- package/lib/Search/Item.js +1 -1
- package/lib/Search/Search.js +1 -1
- package/lib/style/components.less +1 -0
- package/lib/style/index.css +20 -0
- package/lib/style/index.less +1 -0
- package/lib/style.js +2 -1
- package/package.json +3 -3
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
2
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
3
|
+
/* stylelint-disable */
|
|
4
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
5
|
+
.j-card-select {
|
|
6
|
+
display: grid;
|
|
7
|
+
gap: 12px;
|
|
8
|
+
}
|
|
9
|
+
.j-card-select .j-card-select-item {
|
|
10
|
+
padding: 12px;
|
|
11
|
+
border: 1px solid #e6e6e6;
|
|
12
|
+
border-radius: 2px;
|
|
13
|
+
cursor: pointer;
|
|
14
|
+
}
|
|
15
|
+
.j-card-select .j-card-select-item.active {
|
|
16
|
+
border-color: #1890ff;
|
|
17
|
+
}
|
|
18
|
+
.j-card-select .j-card-select-item.disabled {
|
|
19
|
+
cursor: not-allowed;
|
|
20
|
+
opacity: 0.75;
|
|
21
|
+
}
|
|
22
|
+
.j-card-select .j-card-select-item .j-card-select-describe {
|
|
23
|
+
color: #263237;
|
|
24
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@import '../../style/variable.less';
|
|
2
|
+
|
|
3
|
+
.j-card-select {
|
|
4
|
+
display: grid;
|
|
5
|
+
gap: 12px;
|
|
6
|
+
|
|
7
|
+
.j-card-select-item {
|
|
8
|
+
padding: 12px;
|
|
9
|
+
border: 1px solid #e6e6e6;
|
|
10
|
+
border-radius: @border-radius-base;
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
|
|
13
|
+
&.active {
|
|
14
|
+
border-color: @primary-color;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.disabled {
|
|
18
|
+
cursor: not-allowed;
|
|
19
|
+
opacity: 0.75;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.j-card-select-describe {
|
|
23
|
+
color: @text-color-subtitle;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
package/es/FullPage/FullPage.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
} */
|
|
7
7
|
import { defineComponent as _defineComponent } from 'vue';
|
|
8
8
|
import { unref as _unref, renderSlot as _renderSlot, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
9
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
9
|
+
const _withScopeId = n => (_pushScopeId("data-v-1715741796205"), n = n(), _popScopeId(), n);
|
|
10
10
|
const _hoisted_1 = { class: "full-page-warp-content" };
|
|
11
11
|
import { ref } from 'vue';
|
|
12
12
|
import { useElementBounding } from '@vueuse/core';
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
} */
|
|
22
22
|
import { defineComponent as _defineComponent } from 'vue';
|
|
23
23
|
import { unref as _unref, createVNode as _createVNode, withCtx as _withCtx, createTextVNode as _createTextVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createBlock as _createBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
24
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
24
|
+
const _withScopeId = n => (_pushScopeId("data-v-1715741797619"), n = n(), _popScopeId(), n);
|
|
25
25
|
const _hoisted_1 = {
|
|
26
26
|
key: 0,
|
|
27
27
|
style: { "width": "240px" }
|
package/es/Search/Item.js
CHANGED
|
@@ -78,7 +78,7 @@ function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]
|
|
|
78
78
|
} */
|
|
79
79
|
import { defineComponent as _defineComponent } from 'vue';
|
|
80
80
|
import { unref as _unref, openBlock as _openBlock, createBlock as _createBlock, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, createElementBlock as _createElementBlock, createVNode as _createVNode, Fragment as _Fragment, normalizeStyle as _normalizeStyle, mergeProps as _mergeProps, resolveDynamicComponent as _resolveDynamicComponent, withCtx as _withCtx, createElementVNode as _createElementVNode, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
81
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
81
|
+
const _withScopeId = n => (_pushScopeId("data-v-1715741797070"), n = n(), _popScopeId(), n);
|
|
82
82
|
const _hoisted_1 = { class: "JSearch-item" };
|
|
83
83
|
const _hoisted_2 = {
|
|
84
84
|
key: 0,
|
package/es/Search/Search.js
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
} */
|
|
37
37
|
import { defineComponent as _defineComponent } from 'vue';
|
|
38
38
|
import { renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, createVNode as _createVNode, unref as _unref, withCtx as _withCtx, createBlock as _createBlock, renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, normalizeClass as _normalizeClass, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
39
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
39
|
+
const _withScopeId = n => (_pushScopeId("data-v-1715741797172"), n = n(), _popScopeId(), n);
|
|
40
40
|
const _hoisted_1 = { class: "JSearch-content simple" };
|
|
41
41
|
const _hoisted_2 = { class: "JSearch-items" };
|
|
42
42
|
import { Button, Row, Col, Form, FormItemRest, } from 'ant-design-vue';
|
package/es/style/index.css
CHANGED
|
@@ -721,3 +721,23 @@
|
|
|
721
721
|
width: 0;
|
|
722
722
|
flex-grow: 1;
|
|
723
723
|
}
|
|
724
|
+
.j-card-select {
|
|
725
|
+
display: grid;
|
|
726
|
+
gap: 12px;
|
|
727
|
+
}
|
|
728
|
+
.j-card-select .j-card-select-item {
|
|
729
|
+
padding: 12px;
|
|
730
|
+
border: 1px solid #e6e6e6;
|
|
731
|
+
border-radius: 2px;
|
|
732
|
+
cursor: pointer;
|
|
733
|
+
}
|
|
734
|
+
.j-card-select .j-card-select-item.active {
|
|
735
|
+
border-color: #1890ff;
|
|
736
|
+
}
|
|
737
|
+
.j-card-select .j-card-select-item.disabled {
|
|
738
|
+
cursor: not-allowed;
|
|
739
|
+
opacity: 0.75;
|
|
740
|
+
}
|
|
741
|
+
.j-card-select .j-card-select-item .j-card-select-describe {
|
|
742
|
+
color: #263237;
|
|
743
|
+
}
|
package/es/style/index.less
CHANGED
package/es/style.js
CHANGED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
2
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
3
|
+
/* stylelint-disable */
|
|
4
|
+
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
|
|
5
|
+
.j-card-select {
|
|
6
|
+
display: grid;
|
|
7
|
+
gap: 12px;
|
|
8
|
+
}
|
|
9
|
+
.j-card-select .j-card-select-item {
|
|
10
|
+
padding: 12px;
|
|
11
|
+
border: 1px solid #e6e6e6;
|
|
12
|
+
border-radius: 2px;
|
|
13
|
+
cursor: pointer;
|
|
14
|
+
}
|
|
15
|
+
.j-card-select .j-card-select-item.active {
|
|
16
|
+
border-color: #1890ff;
|
|
17
|
+
}
|
|
18
|
+
.j-card-select .j-card-select-item.disabled {
|
|
19
|
+
cursor: not-allowed;
|
|
20
|
+
opacity: 0.75;
|
|
21
|
+
}
|
|
22
|
+
.j-card-select .j-card-select-item .j-card-select-describe {
|
|
23
|
+
color: #263237;
|
|
24
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@import '../../style/variable.less';
|
|
2
|
+
|
|
3
|
+
.j-card-select {
|
|
4
|
+
display: grid;
|
|
5
|
+
gap: 12px;
|
|
6
|
+
|
|
7
|
+
.j-card-select-item {
|
|
8
|
+
padding: 12px;
|
|
9
|
+
border: 1px solid #e6e6e6;
|
|
10
|
+
border-radius: @border-radius-base;
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
|
|
13
|
+
&.active {
|
|
14
|
+
border-color: @primary-color;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.disabled {
|
|
18
|
+
cursor: not-allowed;
|
|
19
|
+
opacity: 0.75;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.j-card-select-describe {
|
|
23
|
+
color: @text-color-subtitle;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
package/lib/FullPage/FullPage.js
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
} */
|
|
7
7
|
import { defineComponent as _defineComponent } from 'vue';
|
|
8
8
|
import { unref as _unref, renderSlot as _renderSlot, createElementVNode as _createElementVNode, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
9
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
9
|
+
const _withScopeId = n => (_pushScopeId("data-v-1715741796198"), n = n(), _popScopeId(), n);
|
|
10
10
|
const _hoisted_1 = { class: "full-page-warp-content" };
|
|
11
11
|
import { ref } from 'vue';
|
|
12
12
|
import { useElementBounding } from '@vueuse/core';
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
} */
|
|
22
22
|
import { defineComponent as _defineComponent } from 'vue';
|
|
23
23
|
import { unref as _unref, createVNode as _createVNode, withCtx as _withCtx, createTextVNode as _createTextVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createBlock as _createBlock, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
24
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
24
|
+
const _withScopeId = n => (_pushScopeId("data-v-1715741797603"), n = n(), _popScopeId(), n);
|
|
25
25
|
const _hoisted_1 = {
|
|
26
26
|
key: 0,
|
|
27
27
|
style: { "width": "240px" }
|
package/lib/Search/Item.js
CHANGED
|
@@ -78,7 +78,7 @@ function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]
|
|
|
78
78
|
} */
|
|
79
79
|
import { defineComponent as _defineComponent } from 'vue';
|
|
80
80
|
import { unref as _unref, openBlock as _openBlock, createBlock as _createBlock, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, createElementBlock as _createElementBlock, createVNode as _createVNode, Fragment as _Fragment, normalizeStyle as _normalizeStyle, mergeProps as _mergeProps, resolveDynamicComponent as _resolveDynamicComponent, withCtx as _withCtx, createElementVNode as _createElementVNode, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
81
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
81
|
+
const _withScopeId = n => (_pushScopeId("data-v-1715741797002"), n = n(), _popScopeId(), n);
|
|
82
82
|
const _hoisted_1 = { class: "JSearch-item" };
|
|
83
83
|
const _hoisted_2 = {
|
|
84
84
|
key: 0,
|
package/lib/Search/Search.js
CHANGED
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
} */
|
|
37
37
|
import { defineComponent as _defineComponent } from 'vue';
|
|
38
38
|
import { renderList as _renderList, Fragment as _Fragment, openBlock as _openBlock, createElementBlock as _createElementBlock, createVNode as _createVNode, unref as _unref, withCtx as _withCtx, createBlock as _createBlock, renderSlot as _renderSlot, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, normalizeStyle as _normalizeStyle, createElementVNode as _createElementVNode, normalizeClass as _normalizeClass, pushScopeId as _pushScopeId, popScopeId as _popScopeId } from "vue";
|
|
39
|
-
const _withScopeId = n => (_pushScopeId("data-v-
|
|
39
|
+
const _withScopeId = n => (_pushScopeId("data-v-1715741797150"), n = n(), _popScopeId(), n);
|
|
40
40
|
const _hoisted_1 = { class: "JSearch-content simple" };
|
|
41
41
|
const _hoisted_2 = { class: "JSearch-items" };
|
|
42
42
|
import { Button, Row, Col, Form, FormItemRest, } from 'ant-design-vue';
|
package/lib/style/index.css
CHANGED
|
@@ -721,3 +721,23 @@
|
|
|
721
721
|
width: 0;
|
|
722
722
|
flex-grow: 1;
|
|
723
723
|
}
|
|
724
|
+
.j-card-select {
|
|
725
|
+
display: grid;
|
|
726
|
+
gap: 12px;
|
|
727
|
+
}
|
|
728
|
+
.j-card-select .j-card-select-item {
|
|
729
|
+
padding: 12px;
|
|
730
|
+
border: 1px solid #e6e6e6;
|
|
731
|
+
border-radius: 2px;
|
|
732
|
+
cursor: pointer;
|
|
733
|
+
}
|
|
734
|
+
.j-card-select .j-card-select-item.active {
|
|
735
|
+
border-color: #1890ff;
|
|
736
|
+
}
|
|
737
|
+
.j-card-select .j-card-select-item.disabled {
|
|
738
|
+
cursor: not-allowed;
|
|
739
|
+
opacity: 0.75;
|
|
740
|
+
}
|
|
741
|
+
.j-card-select .j-card-select-item .j-card-select-describe {
|
|
742
|
+
color: #263237;
|
|
743
|
+
}
|
package/lib/style/index.less
CHANGED
package/lib/style.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetlinks-web/components",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.31",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -134,9 +134,9 @@
|
|
|
134
134
|
"webpack-dev-server": "^4.0.0",
|
|
135
135
|
"webpack-merge": "^5.0.0",
|
|
136
136
|
"webpackbar": "^5.0.2",
|
|
137
|
+
"@jetlinks-web/hooks": "^1.0.13",
|
|
137
138
|
"@jetlinks-web/constants": "^1.0.2",
|
|
138
|
-
"@jetlinks-web/utils": "^1.0.7"
|
|
139
|
-
"@jetlinks-web/hooks": "^1.0.13"
|
|
139
|
+
"@jetlinks-web/utils": "^1.0.7"
|
|
140
140
|
},
|
|
141
141
|
"publishConfig": {
|
|
142
142
|
"registry": "https://registry.npmjs.org/",
|