@indice/ng-components 0.5.0-beta.10 → 0.5.0
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/README.md +4 -4
- package/fesm2022/indice-ng-components.mjs +138 -116
- package/fesm2022/indice-ng-components.mjs.map +1 -1
- package/index.d.ts +13 -4
- package/package.json +1 -1
- package/src/assets/styles/advanced-search.css +39 -39
- package/src/assets/styles/avatar-initials.css +35 -35
- package/src/assets/styles/base.css +36 -36
- package/src/assets/styles/cards.css +84 -84
- package/src/assets/styles/collapsible-panel.css +23 -23
- package/src/assets/styles/combobox.css +27 -27
- package/src/assets/styles/components.css +34 -34
- package/src/assets/styles/date-picker.component.css +68 -68
- package/src/assets/styles/drop-down-menu.css +48 -48
- package/src/assets/styles/form-layout.css +51 -51
- package/src/assets/styles/indice-ng-icons-inline.css +2286 -2286
- package/src/assets/styles/language-selection.component.css +10 -10
- package/src/assets/styles/list-view.css +62 -62
- package/src/assets/styles/modal.css +182 -182
- package/src/assets/styles/model-view-layout.css +47 -47
- package/src/assets/styles/nav-links.css +64 -64
- package/src/assets/styles/notifications-indicator.component.css +37 -37
- package/src/assets/styles/pager.css +31 -31
- package/src/assets/styles/progress-bar.component.css +15 -15
- package/src/assets/styles/shell-layout.css +250 -250
- package/src/assets/styles/shell-sidebar-layout.css +122 -122
- package/src/assets/styles/shell-sidebar.css +31 -31
- package/src/assets/styles/side-pane.css +48 -48
- package/src/assets/styles/side-view-layout.css +56 -56
- package/src/assets/styles/stepper.css +169 -169
- package/src/assets/styles/tab-group.css +27 -27
- package/src/assets/styles/toast.css +70 -70
- package/src/assets/styles/toggle-button.component.css +51 -51
- package/src/assets/styles/toggle-buttons-list.component.css +44 -44
- package/src/assets/styles/toggle.css +23 -23
- package/src/assets/styles/view-layout.css +89 -89
- package/src/styles.css +49 -49
- package/src/tailwindcss.css +1 -1
|
@@ -1,68 +1,68 @@
|
|
|
1
|
-
.datepicker-container {
|
|
2
|
-
@apply relative rounded-lg inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 border border-gray-300;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.datepicker-input {
|
|
6
|
-
@apply w-full rounded-lg text-sm text-gray-900 pt-2 pl-2 pb-2 placeholder-gray-500 outline-none border-0 focus:outline-none focus:ring-0;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.datepicker-button {
|
|
10
|
-
@apply mr-1 text-xs focus:outline-none inline-flex items-center justify-center w-6 h-6 text-gray-800 hover:text-gray-900;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.datepicker-background {
|
|
14
|
-
@apply bg-gray-100 mt-10 rounded-lg shadow-md p-4 left-0 z-50 w-full;
|
|
15
|
-
}
|
|
16
|
-
.datepicker-btn-wrapper {
|
|
17
|
-
@apply flex justify-between items-center mb-2;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.datepicker-selected-month {
|
|
21
|
-
@apply text-lg font-bold text-gray-800;
|
|
22
|
-
}
|
|
23
|
-
.datepicker-selected-year {
|
|
24
|
-
@apply ml-1 text-lg text-gray-600 font-normal;
|
|
25
|
-
}
|
|
26
|
-
.datepicker-nav-btn {
|
|
27
|
-
@apply transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25;
|
|
28
|
-
}
|
|
29
|
-
.datepicker-nav-btn svg {
|
|
30
|
-
@apply h-6 w-6 text-gray-500 inline-flex;
|
|
31
|
-
}
|
|
32
|
-
.datepicker-wrapper {
|
|
33
|
-
@apply flex flex-wrap mb-3 -mx-1;
|
|
34
|
-
}
|
|
35
|
-
.datepicker-day-name {
|
|
36
|
-
@apply text-gray-800 font-medium text-center text-sm uppercase;
|
|
37
|
-
}
|
|
38
|
-
.datepicker-content-wrapper {
|
|
39
|
-
@apply flex flex-wrap -mx-1 items-center;
|
|
40
|
-
}
|
|
41
|
-
.datepicker-year {
|
|
42
|
-
@apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
|
|
43
|
-
}
|
|
44
|
-
.datepicker-year.selected {
|
|
45
|
-
@apply bg-gray-700 text-white font-medium;
|
|
46
|
-
}
|
|
47
|
-
.datepicker-year.not-selected {
|
|
48
|
-
@apply text-gray-800 hover:bg-gray-800;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.datepicker-blank-days {
|
|
52
|
-
@apply text-center border p-1 border-transparent text-sm opacity-50;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.datepicker-days {
|
|
56
|
-
@apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.datepicker-days.selected {
|
|
60
|
-
@apply bg-gray-700 text-white font-medium;
|
|
61
|
-
}
|
|
62
|
-
.datepicker-days.not-selected {
|
|
63
|
-
@apply text-gray-800 hover:bg-gray-800;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.datepicker-days.out-of-range{
|
|
67
|
-
@apply cursor-not-allowed opacity-25;
|
|
68
|
-
}
|
|
1
|
+
.datepicker-container {
|
|
2
|
+
@apply relative rounded-lg inline-flex items-center bg-white text-gray-400 focus-within:text-gray-600 border border-gray-300;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.datepicker-input {
|
|
6
|
+
@apply w-full rounded-lg text-sm text-gray-900 pt-2 pl-2 pb-2 placeholder-gray-500 outline-none border-0 focus:outline-none focus:ring-0;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.datepicker-button {
|
|
10
|
+
@apply mr-1 text-xs focus:outline-none inline-flex items-center justify-center w-6 h-6 text-gray-800 hover:text-gray-900;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.datepicker-background {
|
|
14
|
+
@apply bg-gray-100 mt-10 rounded-lg shadow-md p-4 left-0 z-50 w-full;
|
|
15
|
+
}
|
|
16
|
+
.datepicker-btn-wrapper {
|
|
17
|
+
@apply flex justify-between items-center mb-2;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.datepicker-selected-month {
|
|
21
|
+
@apply text-lg font-bold text-gray-800;
|
|
22
|
+
}
|
|
23
|
+
.datepicker-selected-year {
|
|
24
|
+
@apply ml-1 text-lg text-gray-600 font-normal;
|
|
25
|
+
}
|
|
26
|
+
.datepicker-nav-btn {
|
|
27
|
+
@apply transition ease-in-out duration-100 inline-flex cursor-pointer hover:bg-gray-200 p-1 rounded-full disabled:opacity-25;
|
|
28
|
+
}
|
|
29
|
+
.datepicker-nav-btn svg {
|
|
30
|
+
@apply h-6 w-6 text-gray-500 inline-flex;
|
|
31
|
+
}
|
|
32
|
+
.datepicker-wrapper {
|
|
33
|
+
@apply flex flex-wrap mb-3 -mx-1;
|
|
34
|
+
}
|
|
35
|
+
.datepicker-day-name {
|
|
36
|
+
@apply text-gray-800 font-medium text-center text-sm uppercase;
|
|
37
|
+
}
|
|
38
|
+
.datepicker-content-wrapper {
|
|
39
|
+
@apply flex flex-wrap -mx-1 items-center;
|
|
40
|
+
}
|
|
41
|
+
.datepicker-year {
|
|
42
|
+
@apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
|
|
43
|
+
}
|
|
44
|
+
.datepicker-year.selected {
|
|
45
|
+
@apply bg-gray-700 text-white font-medium;
|
|
46
|
+
}
|
|
47
|
+
.datepicker-year.not-selected {
|
|
48
|
+
@apply text-gray-800 hover:bg-gray-800;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.datepicker-blank-days {
|
|
52
|
+
@apply text-center border p-1 border-transparent text-sm opacity-50;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.datepicker-days {
|
|
56
|
+
@apply cursor-pointer text-center hover:text-white text-sm rounded-md leading-loose transition ease-in-out duration-100;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.datepicker-days.selected {
|
|
60
|
+
@apply bg-gray-700 text-white font-medium;
|
|
61
|
+
}
|
|
62
|
+
.datepicker-days.not-selected {
|
|
63
|
+
@apply text-gray-800 hover:bg-gray-800;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.datepicker-days.out-of-range{
|
|
67
|
+
@apply cursor-not-allowed opacity-25;
|
|
68
|
+
}
|
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
.dropdown-container {
|
|
2
|
-
@apply relative w-auto;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.dropdown-button {
|
|
6
|
-
@apply bg-white block w-full rounded-lg border pl-3 py-1.5 pr-10 ring-0 placeholder:text-gray-300 focus:border-gray-500 hover:border-gray-400
|
|
7
|
-
text-sm leading-6 disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:border-gray-300;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.dropdown-selected-text {
|
|
11
|
-
@apply truncate w-full inline-flex items-start place-items-center;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.dropdown-button-icon {
|
|
15
|
-
@apply absolute inset-y-0 right-1 flex items-center pointer-events-none;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.dropdown-arrow {
|
|
19
|
-
@apply h-5 w-5 text-gray-600;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.dropdown-ul {
|
|
23
|
-
@apply absolute z-50 mt-1 w-auto bg-white shadow max-h-60 rounded-lg py-1 text-xs ring-1 ring-gray-300 ring-black/5 focus:outline-none overflow-x-hidden;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.dropdown-li {
|
|
27
|
-
@apply text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9 hover:bg-gray-100 min-w-max;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.dropdown-li-selected {
|
|
31
|
-
@apply text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9 min-w-max;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.dropdown-li-text {
|
|
35
|
-
@apply font-normal truncate inline-flex items-center ;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.dropdown-li-selected-text {
|
|
39
|
-
@apply font-semibold truncate inline-flex items-center ;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.dropdown-li-selected-indicator-container {
|
|
43
|
-
@apply text-gray-600 absolute inset-y-0 right-0 flex items-center pr-4;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.dropdown-li-selected-indicator {
|
|
47
|
-
@apply h-5 w-5;
|
|
48
|
-
}
|
|
1
|
+
.dropdown-container {
|
|
2
|
+
@apply relative w-auto;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.dropdown-button {
|
|
6
|
+
@apply bg-white block w-full rounded-lg border pl-3 py-1.5 pr-10 ring-0 placeholder:text-gray-300 focus:border-gray-500 hover:border-gray-400
|
|
7
|
+
text-sm leading-6 disabled:cursor-not-allowed disabled:bg-gray-50 disabled:text-gray-500 disabled:border-gray-300;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.dropdown-selected-text {
|
|
11
|
+
@apply truncate w-full inline-flex items-start place-items-center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.dropdown-button-icon {
|
|
15
|
+
@apply absolute inset-y-0 right-1 flex items-center pointer-events-none;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.dropdown-arrow {
|
|
19
|
+
@apply h-5 w-5 text-gray-600;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.dropdown-ul {
|
|
23
|
+
@apply absolute z-50 mt-1 w-auto bg-white shadow max-h-60 rounded-lg py-1 text-xs ring-1 ring-gray-300 ring-black/5 focus:outline-none overflow-x-hidden;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.dropdown-li {
|
|
27
|
+
@apply text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9 hover:bg-gray-100 min-w-max;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.dropdown-li-selected {
|
|
31
|
+
@apply text-gray-900 cursor-default select-none relative py-2 pl-3 pr-9 min-w-max;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.dropdown-li-text {
|
|
35
|
+
@apply font-normal truncate inline-flex items-center ;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.dropdown-li-selected-text {
|
|
39
|
+
@apply font-semibold truncate inline-flex items-center ;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.dropdown-li-selected-indicator-container {
|
|
43
|
+
@apply text-gray-600 absolute inset-y-0 right-0 flex items-center pr-4;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.dropdown-li-selected-indicator {
|
|
47
|
+
@apply h-5 w-5;
|
|
48
|
+
}
|
|
@@ -1,51 +1,51 @@
|
|
|
1
|
-
.form-layout-container {
|
|
2
|
-
@apply bg-white shadow-sm border border-gray-200 rounded-xl;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.form-header {
|
|
6
|
-
@apply px-4 py-4 bg-gray-50 rounded-t-xl h-24 sm:flex sm:items-center sm:justify-between;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.form-header-inner {
|
|
10
|
-
@apply flex-1 min-w-0;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.form-header-image {
|
|
14
|
-
@apply w-12 h-12;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.form-title {
|
|
18
|
-
@apply text-lg leading-6 font-medium text-gray-900;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.form-subtitle {
|
|
22
|
-
@apply mt-1 max-w-2xl text-sm text-gray-500;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.form-header-actions {
|
|
26
|
-
@apply mt-4 flex md:mt-0 md:ml-4;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.form-content-container {
|
|
30
|
-
@apply px-4 py-4;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.form-content-container-inner {
|
|
34
|
-
@apply flex flex-col pt-4;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.form-header-search-input {
|
|
38
|
-
@apply block w-60 bg-gray-50 rounded-md text-sm text-gray-900 placeholder-gray-500 outline-none;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
.field-label {
|
|
42
|
-
@apply block text-sm py-2 font-medium text-gray-500;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.field-info {
|
|
46
|
-
@apply mt-2 text-xs text-gray-400 py-2;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.form-actions {
|
|
50
|
-
@apply -mx-4 -mb-4 mt-4 px-4 sm:px-6 py-3 bg-gray-100 text-gray-700 text-right flex justify-end rounded-b-xl;
|
|
51
|
-
}
|
|
1
|
+
.form-layout-container {
|
|
2
|
+
@apply bg-white shadow-sm border border-gray-200 rounded-xl;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.form-header {
|
|
6
|
+
@apply px-4 py-4 bg-gray-50 rounded-t-xl h-24 sm:flex sm:items-center sm:justify-between;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.form-header-inner {
|
|
10
|
+
@apply flex-1 min-w-0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.form-header-image {
|
|
14
|
+
@apply w-12 h-12;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.form-title {
|
|
18
|
+
@apply text-lg leading-6 font-medium text-gray-900;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.form-subtitle {
|
|
22
|
+
@apply mt-1 max-w-2xl text-sm text-gray-500;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.form-header-actions {
|
|
26
|
+
@apply mt-4 flex md:mt-0 md:ml-4;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.form-content-container {
|
|
30
|
+
@apply px-4 py-4;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.form-content-container-inner {
|
|
34
|
+
@apply flex flex-col pt-4;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.form-header-search-input {
|
|
38
|
+
@apply block w-60 bg-gray-50 rounded-md text-sm text-gray-900 placeholder-gray-500 outline-none;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.field-label {
|
|
42
|
+
@apply block text-sm py-2 font-medium text-gray-500;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.field-info {
|
|
46
|
+
@apply mt-2 text-xs text-gray-400 py-2;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.form-actions {
|
|
50
|
+
@apply -mx-4 -mb-4 mt-4 px-4 sm:px-6 py-3 bg-gray-100 text-gray-700 text-right flex justify-end rounded-b-xl;
|
|
51
|
+
}
|