ids-enterprise-wc 1.15.9-patch.5 → 1.15.9-patch.7
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/chunks/ids-chunk-4MSGTAOV-full.js +12 -0
- package/chunks/ids-chunk-4MSGTAOV-full.js.map +7 -0
- package/chunks/{ids-chunk-7URDZKCS-full.js → ids-chunk-7IP7SLQZ-full.js} +28 -2
- package/chunks/ids-chunk-7IP7SLQZ-full.js.map +7 -0
- package/chunks/{ids-chunk-LZU34NYE-full.js → ids-chunk-CSOF2USI-full.js} +12 -2
- package/chunks/{ids-chunk-LZU34NYE-full.js.map → ids-chunk-CSOF2USI-full.js.map} +2 -2
- package/chunks/{ids-chunk-FW4DOBQU-full.js → ids-chunk-FPEINRXY-full.js} +6 -10
- package/chunks/ids-chunk-FPEINRXY-full.js.map +7 -0
- package/chunks/{ids-chunk-UEVOEMEM-full.js → ids-chunk-HZO4QUAW-full.js} +358 -34
- package/chunks/ids-chunk-HZO4QUAW-full.js.map +7 -0
- package/chunks/{ids-chunk-HGKIZXDQ-full.js → ids-chunk-RLOOHWYV-full.js} +2 -2
- package/components/ids-button/ids-button.css +392 -43
- package/components/ids-checkbox/ids-checkbox.css +7 -580
- package/components/ids-data-grid/ids-data-grid-cell.js +1 -1
- package/components/ids-data-grid/ids-data-grid-column.d.ts +1 -0
- package/components/ids-data-grid/ids-data-grid-column.js +7 -0
- package/components/ids-data-grid/ids-data-grid-filters.js +2 -2
- package/components/ids-data-grid/ids-data-grid-header.d.ts +6 -2
- package/components/ids-data-grid/ids-data-grid-header.js +1 -1
- package/components/ids-data-grid/ids-data-grid-row.d.ts +6 -0
- package/components/ids-data-grid/ids-data-grid-row.js +2 -2
- package/components/ids-data-grid/ids-data-grid.d.ts +18 -1
- package/components/ids-data-grid/ids-data-grid.js +6 -5
- package/components/ids-date-picker/ids-date-picker.css +31 -389
- package/components/ids-layout-grid/ids-layout-grid.css +10 -21300
- package/components/ids-list-box/ids-list-box.css +66 -98
- package/components/ids-menu/ids-menu.css +335 -11
- package/components/ids-module-nav/ids-module-nav.css +24 -2465
- package/components/ids-tag/ids-tag.css +8 -152
- package/components/ids-toolbar/ids-toolbar.css +12 -122
- package/components/ids-trigger-field/ids-trigger-field.css +1681 -1165
- package/custom-elements.json +2090 -1869
- package/enterprise-wc.all.iife.js +395 -39
- package/enterprise-wc.all.iife.js.map +3 -3
- package/enterprise-wc.js +6 -5
- package/package.json +1 -1
- package/vscode.html-custom-data.json +1 -1
- package/chunks/ids-chunk-7URDZKCS-full.js.map +0 -7
- package/chunks/ids-chunk-FW4DOBQU-full.js.map +0 -7
- package/chunks/ids-chunk-UEVOEMEM-full.js.map +0 -7
- /package/chunks/{ids-chunk-HGKIZXDQ-full.js.map → ids-chunk-RLOOHWYV-full.js.map} +0 -0
|
@@ -1,155 +1,11 @@
|
|
|
1
|
-
/* Ids Tag Component */
|
|
2
|
-
|
|
3
|
-
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
border: 1px solid var(--ids-tag-color-border);
|
|
7
|
-
border-radius: var(--ids-tag-border-radius);
|
|
8
|
-
font-family: var(--ids-font-family-default), var(--ids-font-family-system-sans);
|
|
9
|
-
font-size: var(--ids-tag-font-size-default);
|
|
10
|
-
color: var(--ids-tag-color-text-default);
|
|
11
|
-
white-space: nowrap;
|
|
12
|
-
box-sizing: border-box;
|
|
13
|
-
display: inline-flex;
|
|
14
|
-
align-items: center;
|
|
15
|
-
justify-content: center;
|
|
16
|
-
margin-inline-end: var(--ids-tag-margin-inline-end);
|
|
17
|
-
padding-inline: var(--ids-space-xs);
|
|
18
|
-
height: var(--ids-tag-height);
|
|
19
|
-
contain: content;
|
|
20
|
-
}
|
|
21
|
-
.ids-tag.secondary {
|
|
22
|
-
background-color: var(--ids-tag-secondary-color-background);
|
|
23
|
-
border-color: var(--ids-tag-secondary-color-border);
|
|
24
|
-
}
|
|
25
|
-
.ids-tag.info {
|
|
26
|
-
background-color: var(--ids-tag-color-background-info);
|
|
27
|
-
border-color: var(--ids-tag-color-border-info);
|
|
28
|
-
color: var(--ids-tag-color-text-info);
|
|
29
|
-
}
|
|
30
|
-
.ids-tag.success {
|
|
31
|
-
background-color: var(--ids-tag-color-background-success);
|
|
32
|
-
border-color: var(--ids-tag-color-border-success);
|
|
33
|
-
color: var(--ids-tag-color-text-success);
|
|
34
|
-
}
|
|
35
|
-
.ids-tag.warning {
|
|
36
|
-
background-color: var(--ids-tag-color-background-warning);
|
|
37
|
-
border-color: var(--ids-tag-color-border-warning);
|
|
38
|
-
color: var(--ids-tag-color-text-warning);
|
|
39
|
-
}
|
|
40
|
-
.ids-tag.caution {
|
|
41
|
-
background-color: var(--ids-tag-color-background-caution);
|
|
42
|
-
border-color: var(--ids-tag-color-border-caution);
|
|
43
|
-
color: var(--ids-tag-color-text-caution);
|
|
44
|
-
}
|
|
45
|
-
.ids-tag.error {
|
|
46
|
-
background-color: var(--ids-tag-color-background-error);
|
|
47
|
-
border-color: var(--ids-tag-color-border-error);
|
|
48
|
-
color: var(--ids-tag-color-text-error);
|
|
49
|
-
}
|
|
50
|
-
.ids-tag.purple {
|
|
51
|
-
background-color: var(--ids-tag-color-background-purple);
|
|
52
|
-
border-color: var(--ids-tag-color-border-purple);
|
|
53
|
-
color: var(--ids-tag-color-text-purple);
|
|
54
|
-
}
|
|
55
|
-
.ids-tag.teal {
|
|
56
|
-
background-color: var(--ids-tag-color-background-teal);
|
|
57
|
-
border-color: var(--ids-tag-color-border-teal);
|
|
58
|
-
color: var(--ids-tag-color-text-teal);
|
|
59
|
-
}
|
|
60
|
-
.ids-tag.focusable {
|
|
61
|
-
cursor: var(--ids-cursor-pointer);
|
|
62
|
-
}
|
|
63
|
-
.ids-tag.focusable:focus {
|
|
64
|
-
cursor: var(--ids-cursor-pointer);
|
|
65
|
-
border-color: var(--ids-color-border-focus);
|
|
66
|
-
outline: var(--ids-outline-none);
|
|
67
|
-
box-shadow: var(--ids-shadow-focus);
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
:host([dismissible]) .ids-tag {
|
|
71
|
-
cursor: var(--ids-cursor-default);
|
|
1
|
+
/* Ids Tag List Component */
|
|
2
|
+
:root {
|
|
3
|
+
margin: var(--ids-tag-list-margin);
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-wrap: wrap;
|
|
72
6
|
}
|
|
73
7
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
:host(.disabled) ::slotted(ids-icon),
|
|
79
|
-
:host([disabled]) ::slotted(ids-icon) {
|
|
80
|
-
cursor: var(--ids-cursor-default);
|
|
81
|
-
color: var(--ids-tag-color-text-disabled);
|
|
82
|
-
}
|
|
83
|
-
:host(.disabled) .ids-tag,
|
|
84
|
-
:host([disabled]) .ids-tag {
|
|
85
|
-
opacity: var(--ids-tag-disabled-opacity);
|
|
86
|
-
}
|
|
87
|
-
:host(.disabled) .ids-tag, :host(.disabled) .ids-tag.info, :host(.disabled) .ids-tag.success, :host(.disabled) .ids-tag.warning, :host(.disabled) .ids-tag.caution, :host(.disabled) .ids-tag.error,
|
|
88
|
-
:host([disabled]) .ids-tag,
|
|
89
|
-
:host([disabled]) .ids-tag.info,
|
|
90
|
-
:host([disabled]) .ids-tag.success,
|
|
91
|
-
:host([disabled]) .ids-tag.warning,
|
|
92
|
-
:host([disabled]) .ids-tag.caution,
|
|
93
|
-
:host([disabled]) .ids-tag.error {
|
|
94
|
-
background-color: var(--ids-input-color-background-readonly);
|
|
95
|
-
border-color: var(--ids-input-color-background-readonly);
|
|
96
|
-
color: var(--ids-tag-color-text-disabled);
|
|
97
|
-
}
|
|
98
|
-
:host(.disabled) .ids-tag ::slotted(ids-icon), :host(.disabled) .ids-tag.info ::slotted(ids-icon), :host(.disabled) .ids-tag.success ::slotted(ids-icon), :host(.disabled) .ids-tag.warning ::slotted(ids-icon), :host(.disabled) .ids-tag.caution ::slotted(ids-icon), :host(.disabled) .ids-tag.error ::slotted(ids-icon),
|
|
99
|
-
:host([disabled]) .ids-tag ::slotted(ids-icon),
|
|
100
|
-
:host([disabled]) .ids-tag.info ::slotted(ids-icon),
|
|
101
|
-
:host([disabled]) .ids-tag.success ::slotted(ids-icon),
|
|
102
|
-
:host([disabled]) .ids-tag.warning ::slotted(ids-icon),
|
|
103
|
-
:host([disabled]) .ids-tag.caution ::slotted(ids-icon),
|
|
104
|
-
:host([disabled]) .ids-tag.error ::slotted(ids-icon) {
|
|
105
|
-
cursor: var(--ids-cursor-default);
|
|
106
|
-
color: var(--ids-tag-color-text-disabled);
|
|
107
|
-
}
|
|
108
|
-
:host(.disabled) .ids-tag.secondary,
|
|
109
|
-
:host([disabled]) .ids-tag.secondary {
|
|
110
|
-
background-color: var(--ids-input-color-background-default);
|
|
111
|
-
border-color: var(--ids-color-text-disabled);
|
|
112
|
-
color: var(--ids-tag-secondary-color-text-disabled);
|
|
113
|
-
}
|
|
114
|
-
:host(.disabled) .ids-tag.secondary ::slotted(ids-icon),
|
|
115
|
-
:host([disabled]) .ids-tag.secondary ::slotted(ids-icon) {
|
|
116
|
-
color: var(--ids-tag-secondary-color-text-disabled);
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
::slotted(ids-icon) {
|
|
120
|
-
cursor: var(--ids-cursor-pointer);
|
|
121
|
-
align-self: center;
|
|
122
|
-
display: inline-flex;
|
|
123
|
-
padding-inline-start: var(--ids-space-2xs);
|
|
124
|
-
padding-top: var(--ids-space-3xs);
|
|
125
|
-
color: currentColor;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
::slotted(ids-icon:hover) {
|
|
129
|
-
color: var(--ids-tag-color-icon-hover);
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
:host(.multiselect-tag) .ids-tag {
|
|
133
|
-
background-color: var(--ids-input-color-background-default);
|
|
134
|
-
border-color: var(--ids-input-color-border-default);
|
|
135
|
-
margin-bottom: var(--ids-space-2xs);
|
|
136
|
-
opacity: 1;
|
|
137
|
-
padding-inline: 2px;
|
|
138
|
-
padding-inline-end: 8px;
|
|
139
|
-
}
|
|
140
|
-
:host(.multiselect-tag) .ids-tag.ellipsis {
|
|
141
|
-
max-width: 100%;
|
|
142
|
-
padding-inline-start: 12px;
|
|
143
|
-
padding-inline-end: var(--ids-space-sm);
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
:host([disabled].multiselect-tag) .ids-tag {
|
|
147
|
-
background-color: var(--ids-input-color-background-default);
|
|
148
|
-
border-color: var(--ids-color-text-disabled);
|
|
149
|
-
color: var(--ids-color-text-disabled);
|
|
150
|
-
pointer-events: none;
|
|
151
|
-
}
|
|
152
|
-
:host([disabled].multiselect-tag) ::slotted(ids-icon) {
|
|
153
|
-
color: var(--ids-color-text-disabled);
|
|
8
|
+
::slotted(.ids-tag) {
|
|
9
|
+
margin: var(--ids-tag-list-margin);
|
|
154
10
|
}
|
|
155
|
-
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
11
|
+
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VSb290IjoiL2J1aWxkcy9pbmZvci1kZXNpZ24vZW50ZXJwcmlzZS13Yy9zcmMvY29tcG9uZW50cy9pZHMtdGFnIiwic291cmNlcyI6WyJpZHMtdGFnLWxpc3Quc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtBQUNBO0VBQ0U7RUFDQTtFQUNBOzs7QUFJRjtFQUNFIiwic291cmNlc0NvbnRlbnQiOlsiLyogSWRzIFRhZyBMaXN0IENvbXBvbmVudCAqL1xuOmhvc3Qge1xuICBtYXJnaW46IHZhcigtLWlkcy10YWctbGlzdC1tYXJnaW4pO1xuICBkaXNwbGF5OiBmbGV4O1xuICBmbGV4LXdyYXA6IHdyYXA7XG59XG5cbi8vIElkcyB0YWcgaGFzIGl0cyBvd24gbWFyZ2luLWlubGluZS1lbmRcbjo6c2xvdHRlZCguaWRzLXRhZykge1xuICBtYXJnaW46IHZhcigtLWlkcy10YWctbGlzdC1tYXJnaW4pO1xufVxuIl19 */
|
|
@@ -1,130 +1,20 @@
|
|
|
1
|
-
/* Ids Toolbar
|
|
1
|
+
/* Ids Toolbar More Actions Component */
|
|
2
2
|
:root {
|
|
3
|
-
display: flex;
|
|
3
|
+
display: inline-flex;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
ids-toolbar-section + ids-toolbar-section[type=buttonset] {
|
|
8
|
-
padding-inline-start: 10px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.ids-toolbar-section {
|
|
12
|
-
padding-block: 4px;
|
|
13
|
-
white-space: nowrap;
|
|
14
|
-
width: auto;
|
|
15
|
-
overflow: hidden;
|
|
16
|
-
text-overflow: ellipsis;
|
|
17
|
-
}
|
|
18
|
-
.ids-toolbar-section ::slotted(*) {
|
|
19
|
-
transition: opacity var(--ids-motion-duration) var(--ids-motion-ease);
|
|
20
|
-
opacity: 1;
|
|
21
|
-
}
|
|
22
|
-
@media (width <= 375px) {
|
|
23
|
-
.ids-toolbar-section ::slotted(*) {
|
|
24
|
-
font-size: 20px;
|
|
25
|
-
inset-inline-end: 8px;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
@media (width <= 344px) {
|
|
29
|
-
.ids-toolbar-section ::slotted(*) {
|
|
30
|
-
grid-template-columns: 1fr;
|
|
31
|
-
font-size: 20px;
|
|
32
|
-
inset-inline-end: 8px;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
.ids-toolbar-section ::slotted([overflowed]) {
|
|
36
|
-
opacity: 0;
|
|
37
|
-
pointer-events: none;
|
|
38
|
-
}
|
|
39
|
-
.ids-toolbar-section ::slotted(ids-theme-switcher) {
|
|
40
|
-
margin-top: -2px;
|
|
41
|
-
}
|
|
42
|
-
.ids-toolbar-section.buttonset {
|
|
43
|
-
display: flex;
|
|
44
|
-
}
|
|
45
|
-
.ids-toolbar-section.buttonset ::slotted(ids-button:not(:first-child):not([no-padding])),
|
|
46
|
-
.ids-toolbar-section.buttonset ::slotted(ids-menu-button:not(:first-child):not([no-padding])),
|
|
47
|
-
.ids-toolbar-section.buttonset button:not(:first-child):not([no-padding]) {
|
|
6
|
+
:host(:not([no-padding])), .more:not([no-padding]) {
|
|
48
7
|
margin-inline-start: 2px;
|
|
49
8
|
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
display: inline-block;
|
|
55
|
-
}
|
|
56
|
-
.ids-toolbar-section.title, .ids-toolbar-section.buttonset {
|
|
57
|
-
padding-inline-start: var(--ids-space-xs);
|
|
58
|
-
padding-inline-end: var(--ids-space-xs);
|
|
59
|
-
}
|
|
60
|
-
.ids-toolbar-section.fluid {
|
|
61
|
-
display: flex;
|
|
62
|
-
flex-grow: 1;
|
|
63
|
-
align-items: center;
|
|
64
|
-
}
|
|
65
|
-
.ids-toolbar-section.search {
|
|
66
|
-
margin-block-start: 2px;
|
|
67
|
-
padding-inline-start: 4px;
|
|
68
|
-
padding-inline-end: 4px;
|
|
69
|
-
}
|
|
70
|
-
.ids-toolbar-section.inactive > * {
|
|
71
|
-
visibility: hidden;
|
|
72
|
-
pointer-events: none;
|
|
73
|
-
}
|
|
74
|
-
.ids-toolbar-section.inactive ::slotted(*) {
|
|
75
|
-
visibility: hidden;
|
|
76
|
-
pointer-events: none;
|
|
77
|
-
}
|
|
78
|
-
@media (width <= 450px) {
|
|
79
|
-
.ids-toolbar-section.searchfield-expanded:not(.buttonset):not(.search):not(.button),
|
|
80
|
-
.ids-toolbar-section.searchfield-expanded ::slotted(ids-button) {
|
|
81
|
-
width: 0;
|
|
82
|
-
visibility: hidden;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
.ids-toolbar-section {
|
|
86
|
-
display: flex;
|
|
87
|
-
}
|
|
88
|
-
.ids-toolbar-section:not(.favor) {
|
|
89
|
-
flex: 0 1 auto;
|
|
90
|
-
}
|
|
91
|
-
.ids-toolbar-section:not(.favor).title, .ids-toolbar-section:not(.favor).buttonset {
|
|
92
|
-
flex: 1 1 auto;
|
|
93
|
-
}
|
|
94
|
-
.ids-toolbar-section.title, .ids-toolbar-section.buttonset, .ids-toolbar-section.fluid {
|
|
95
|
-
flex: 1 0 auto;
|
|
96
|
-
}
|
|
97
|
-
.ids-toolbar-section.title:not(.favor):not(.fluid), .ids-toolbar-section.buttonset:not(.favor):not(.fluid), .ids-toolbar-section.fluid:not(.favor):not(.fluid) {
|
|
98
|
-
flex: 0 1 auto;
|
|
99
|
-
overflow-x: hidden;
|
|
100
|
-
overflow-y: auto;
|
|
101
|
-
text-overflow: ellipsis;
|
|
102
|
-
}
|
|
103
|
-
.ids-toolbar-section.title.static, .ids-toolbar-section.buttonset.static, .ids-toolbar-section.fluid.static {
|
|
104
|
-
flex-grow: 0 0 auto;
|
|
105
|
-
}
|
|
106
|
-
.ids-toolbar-section.favor {
|
|
107
|
-
flex: 2 0 auto;
|
|
108
|
-
}
|
|
109
|
-
.ids-toolbar-section.favor.title:not(.static), .ids-toolbar-section.favor.buttonset:not(.static) {
|
|
110
|
-
flex-grow: 2 0 auto;
|
|
111
|
-
}
|
|
112
|
-
.ids-toolbar-section.align-start {
|
|
113
|
-
justify-content: flex-start;
|
|
114
|
-
}
|
|
115
|
-
.ids-toolbar-section.align-center {
|
|
116
|
-
justify-content: center;
|
|
117
|
-
}
|
|
118
|
-
.ids-toolbar-section.align-center-even {
|
|
119
|
-
justify-content: space-around;
|
|
120
|
-
}
|
|
121
|
-
.ids-toolbar-section.align-end {
|
|
122
|
-
flex: 0 0 auto;
|
|
123
|
-
justify-content: flex-end;
|
|
9
|
+
|
|
10
|
+
::slotted(ids-separator) {
|
|
11
|
+
align-self: center;
|
|
12
|
+
justify-self: center;
|
|
124
13
|
}
|
|
125
14
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
15
|
+
.ids-toolbar-more-actions {
|
|
16
|
+
padding-inline-end: 1px;
|
|
17
|
+
white-space: nowrap;
|
|
18
|
+
width: auto;
|
|
129
19
|
}
|
|
130
|
-
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
20
|
+
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VSb290IjoiL2J1aWxkcy9pbmZvci1kZXNpZ24vZW50ZXJwcmlzZS13Yy9zcmMvY29tcG9uZW50cy9pZHMtdG9vbGJhciIsInNvdXJjZXMiOlsiaWRzLXRvb2xiYXItbW9yZS1hY3Rpb25zLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7QUFFQTtFQUNFOzs7QUFHRjtFQUNFOzs7QUFHRjtFQUNFO0VBQ0E7OztBQUdGO0VBQ0U7RUFDQTtFQUNBIiwic291cmNlc0NvbnRlbnQiOlsiLyogSWRzIFRvb2xiYXIgTW9yZSBBY3Rpb25zIENvbXBvbmVudCAqL1xuXG46aG9zdCB7XG4gIGRpc3BsYXk6IGlubGluZS1mbGV4O1xufVxuXG46aG9zdCg6bm90KFtuby1wYWRkaW5nXSkpLCAubW9yZTpub3QoW25vLXBhZGRpbmddKSB7XG4gIG1hcmdpbi1pbmxpbmUtc3RhcnQ6IDJweDtcbn1cblxuOjpzbG90dGVkKGlkcy1zZXBhcmF0b3IpIHtcbiAgYWxpZ24tc2VsZjogY2VudGVyO1xuICBqdXN0aWZ5LXNlbGY6IGNlbnRlcjtcbn1cblxuLmlkcy10b29sYmFyLW1vcmUtYWN0aW9ucyB7XG4gIHBhZGRpbmctaW5saW5lLWVuZDogMXB4O1xuICB3aGl0ZS1zcGFjZTogbm93cmFwO1xuICB3aWR0aDogYXV0bztcbn1cbiJdfQ== */
|