ids-enterprise-wc 1.15.9-patch.15 → 1.15.9-patch.16
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-FBCH7PA2-full.js → ids-chunk-A7EAZCL6-full.js} +49 -16
- package/chunks/ids-chunk-A7EAZCL6-full.js.map +7 -0
- package/chunks/{ids-chunk-MPM4WSFS-full.js → ids-chunk-ETJKDQAM-full.js} +2 -2
- package/chunks/{ids-chunk-SZQQA2OO-full.js → ids-chunk-GHWD4TOS-full.js} +3 -3
- package/chunks/ids-chunk-GHWD4TOS-full.js.map +7 -0
- package/chunks/{ids-chunk-JW7OJNH5-full.js → ids-chunk-GL7SUNG4-full.js} +2 -2
- package/chunks/{ids-chunk-VES77P3L-full.js → ids-chunk-QQ742HQ7-full.js} +25 -9
- package/chunks/ids-chunk-QQ742HQ7-full.js.map +7 -0
- package/chunks/{ids-chunk-55BKFJ74-full.js → ids-chunk-ZSEJSVUD-full.js} +9 -5
- package/chunks/{ids-chunk-55BKFJ74-full.js.map → ids-chunk-ZSEJSVUD-full.js.map} +2 -2
- package/components/ids-accordion/ids-accordion.css +93 -9
- package/components/ids-button/ids-button.css +392 -43
- package/components/ids-calendar/ids-calendar.css +265 -190
- package/components/ids-calendar/ids-calendar.js +1 -1
- package/components/ids-card/ids-card.css +4 -344
- package/components/ids-data-grid/ids-data-grid-cell.js +1 -1
- package/components/ids-data-grid/ids-data-grid-editors.js +1 -1
- package/components/ids-data-grid/ids-data-grid-filters.js +3 -3
- package/components/ids-data-grid/ids-data-grid-header.js +1 -1
- package/components/ids-data-grid/ids-data-grid-row.js +2 -2
- package/components/ids-data-grid/ids-data-grid.js +6 -6
- package/components/ids-date-picker/ids-date-picker-popup.js +1 -1
- package/components/ids-date-picker/ids-date-picker.css +389 -31
- package/components/ids-date-picker/ids-date-picker.js +1 -1
- package/components/ids-hyperlink/ids-hyperlink.css +15 -188
- package/components/ids-layout-flex/ids-layout-flex.css +69 -6
- package/components/ids-layout-grid/ids-layout-grid.css +21300 -10
- package/components/ids-menu/ids-menu.css +3 -337
- package/components/ids-module-nav/ids-module-nav.css +476 -29
- package/components/ids-swappable/ids-swappable.css +84 -19
- package/components/ids-tabs/ids-tabs.css +470 -264
- package/components/ids-tag/ids-tag.css +8 -152
- package/components/ids-trigger-field/ids-trigger-field.css +1681 -1165
- package/components/ids-week-view/ids-week-view.js +1 -1
- package/custom-elements.json +1068 -1062
- package/enterprise-wc.all.iife.js +75 -25
- package/enterprise-wc.all.iife.js.map +2 -2
- package/enterprise-wc.js +6 -6
- package/package.json +1 -1
- package/vscode.html-custom-data.json +1 -1
- package/chunks/ids-chunk-FBCH7PA2-full.js.map +0 -7
- package/chunks/ids-chunk-SZQQA2OO-full.js.map +0 -7
- package/chunks/ids-chunk-VES77P3L-full.js.map +0 -7
- /package/chunks/{ids-chunk-MPM4WSFS-full.js.map → ids-chunk-ETJKDQAM-full.js.map} +0 -0
- /package/chunks/{ids-chunk-JW7OJNH5-full.js.map → ids-chunk-GL7SUNG4-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 */
|