@nuralyui/select 0.1.1 → 0.1.3

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.
@@ -1,93 +0,0 @@
1
- import { css } from 'lit';
2
- /**
3
- * CSS custom properties for select component (light theme defaults)
4
- * These are the local component defaults that can be overridden globally
5
- */
6
- export const selectVariables = css `
7
- :host {
8
- /* Layout and sizing */
9
- --hybrid-select-local-width: 300px;
10
- --hybrid-select-local-min-height: 40px;
11
- --hybrid-select-local-padding-top: 8px;
12
- --hybrid-select-local-padding-bottom: 8px;
13
- --hybrid-select-local-padding-left: 12px;
14
- --hybrid-select-local-padding-right: 12px;
15
- --hybrid-select-local-wrapper-margin: 0;
16
- --hybrid-select-local-border-radius: 6px;
17
- --hybrid-select-local-border-width: 1px;
18
-
19
- /* Colors - Light theme defaults */
20
- --hybrid-select-local-background-color: #ffffff;
21
- --hybrid-select-local-border-color: #d9d9d9;
22
- --hybrid-select-local-text-color: #262626;
23
- --hybrid-select-local-placeholder-color: #8c8c8c;
24
- --hybrid-select-local-hover-border-color: #1677ff;
25
- --hybrid-select-local-focus-border-color: #1677ff;
26
- --hybrid-select-local-error-border-color: #da1e28;
27
- --hybrid-select-local-warning-border-color: #f0c300;
28
- --hybrid-select-local-success-border-color: #52c41a;
29
-
30
- /* Dropdown colors */
31
- --hybrid-select-local-dropdown-background: #ffffff;
32
- --hybrid-select-local-dropdown-border-color: #d9d9d9;
33
- --hybrid-select-local-dropdown-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08);
34
- --hybrid-select-local-dropdown-z-index: 9999;
35
- --hybrid-select-local-option-hover-background: #f5f5f5;
36
- --hybrid-select-local-option-selected-background: #e6f7ff;
37
- --hybrid-select-local-option-selected-color: #1677ff;
38
-
39
- /* Typography */
40
- --hybrid-select-local-font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
41
- --hybrid-select-local-font-size: 14px;
42
- --hybrid-select-local-line-height: 1.5;
43
- --hybrid-select-local-placeholder-font-size: 14px;
44
- --hybrid-select-local-option-font-size: 14px;
45
-
46
- /* Icon settings */
47
- --hybrid-select-local-icon-size: 16px;
48
- --hybrid-select-local-icon-color: #8c8c8c;
49
- --hybrid-select-local-icon-hover-color: #1677ff;
50
- --hybrid-select-local-arrow-icon-size: 12px;
51
-
52
- /* Sizes */
53
- --hybrid-select-local-small-height: 24px;
54
- --hybrid-select-local-small-font-size: 12px;
55
- --hybrid-select-local-small-padding: 4px 8px;
56
-
57
- --hybrid-select-local-medium-height: 32px;
58
- --hybrid-select-local-medium-font-size: 14px;
59
- --hybrid-select-local-medium-padding: 4px 12px;
60
-
61
- --hybrid-select-local-large-height: 40px;
62
- --hybrid-select-local-large-font-size: 16px;
63
- --hybrid-select-local-large-padding: 6px 12px;
64
-
65
- /* States */
66
- --hybrid-select-local-disabled-opacity: 0.5;
67
- --hybrid-select-local-disabled-background: #f5f5f5;
68
- --hybrid-select-local-disabled-border-color: #d9d9d9;
69
- --hybrid-select-local-disabled-text-color: #8c8c8c;
70
-
71
- /* Animation and transitions */
72
- --hybrid-select-local-transition-duration: 0.2s;
73
- --hybrid-select-local-transition-timing: ease-in-out;
74
- --hybrid-select-local-dropdown-animation-duration: 0.15s;
75
-
76
- /* Multi-select specific */
77
- --hybrid-select-local-tag-background: #f0f0f0;
78
- --hybrid-select-local-tag-color: #262626;
79
- --hybrid-select-local-tag-border-radius: 4px;
80
- --hybrid-select-local-tag-padding: 2px 6px;
81
- --hybrid-select-local-tag-margin: 2px;
82
- --hybrid-select-local-tag-close-color: #8c8c8c;
83
- --hybrid-select-local-tag-close-hover-color: #da1e28;
84
-
85
- /* Validation message */
86
- --hybrid-select-local-message-font-size: 12px;
87
- --hybrid-select-local-message-margin-top: 4px;
88
- --hybrid-select-local-error-message-color: #da1e28;
89
- --hybrid-select-local-warning-message-color: #f0c300;
90
- --hybrid-select-local-success-message-color: #52c41a;
91
- }
92
- `;
93
- //# sourceMappingURL=select.style.variables.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"select.style.variables.js","sourceRoot":"","sources":["../../../src/components/select/select.style.variables.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE1B;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAAG,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsFjC,CAAC","sourcesContent":["import { css } from 'lit';\n\n/**\n * CSS custom properties for select component (light theme defaults)\n * These are the local component defaults that can be overridden globally\n */\nexport const selectVariables = css`\n :host {\n /* Layout and sizing */\n --hybrid-select-local-width: 300px;\n --hybrid-select-local-min-height: 40px;\n --hybrid-select-local-padding-top: 8px;\n --hybrid-select-local-padding-bottom: 8px;\n --hybrid-select-local-padding-left: 12px;\n --hybrid-select-local-padding-right: 12px;\n --hybrid-select-local-wrapper-margin: 0;\n --hybrid-select-local-border-radius: 6px;\n --hybrid-select-local-border-width: 1px;\n \n /* Colors - Light theme defaults */\n --hybrid-select-local-background-color: #ffffff;\n --hybrid-select-local-border-color: #d9d9d9;\n --hybrid-select-local-text-color: #262626;\n --hybrid-select-local-placeholder-color: #8c8c8c;\n --hybrid-select-local-hover-border-color: #1677ff;\n --hybrid-select-local-focus-border-color: #1677ff;\n --hybrid-select-local-error-border-color: #da1e28;\n --hybrid-select-local-warning-border-color: #f0c300;\n --hybrid-select-local-success-border-color: #52c41a;\n \n /* Dropdown colors */\n --hybrid-select-local-dropdown-background: #ffffff;\n --hybrid-select-local-dropdown-border-color: #d9d9d9;\n --hybrid-select-local-dropdown-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08);\n --hybrid-select-local-dropdown-z-index: 9999;\n --hybrid-select-local-option-hover-background: #f5f5f5;\n --hybrid-select-local-option-selected-background: #e6f7ff;\n --hybrid-select-local-option-selected-color: #1677ff;\n \n /* Typography */\n --hybrid-select-local-font-family: Inter, ui-sans-serif, system-ui, -apple-system, \"Segoe UI\", Roboto, Ubuntu, Cantarell, \"Noto Sans\", sans-serif;\n --hybrid-select-local-font-size: 14px;\n --hybrid-select-local-line-height: 1.5;\n --hybrid-select-local-placeholder-font-size: 14px;\n --hybrid-select-local-option-font-size: 14px;\n \n /* Icon settings */\n --hybrid-select-local-icon-size: 16px;\n --hybrid-select-local-icon-color: #8c8c8c;\n --hybrid-select-local-icon-hover-color: #1677ff;\n --hybrid-select-local-arrow-icon-size: 12px;\n \n /* Sizes */\n --hybrid-select-local-small-height: 24px;\n --hybrid-select-local-small-font-size: 12px;\n --hybrid-select-local-small-padding: 4px 8px;\n \n --hybrid-select-local-medium-height: 32px;\n --hybrid-select-local-medium-font-size: 14px;\n --hybrid-select-local-medium-padding: 4px 12px;\n \n --hybrid-select-local-large-height: 40px;\n --hybrid-select-local-large-font-size: 16px;\n --hybrid-select-local-large-padding: 6px 12px;\n \n /* States */\n --hybrid-select-local-disabled-opacity: 0.5;\n --hybrid-select-local-disabled-background: #f5f5f5;\n --hybrid-select-local-disabled-border-color: #d9d9d9;\n --hybrid-select-local-disabled-text-color: #8c8c8c;\n \n /* Animation and transitions */\n --hybrid-select-local-transition-duration: 0.2s;\n --hybrid-select-local-transition-timing: ease-in-out;\n --hybrid-select-local-dropdown-animation-duration: 0.15s;\n \n /* Multi-select specific */\n --hybrid-select-local-tag-background: #f0f0f0;\n --hybrid-select-local-tag-color: #262626;\n --hybrid-select-local-tag-border-radius: 4px;\n --hybrid-select-local-tag-padding: 2px 6px;\n --hybrid-select-local-tag-margin: 2px;\n --hybrid-select-local-tag-close-color: #8c8c8c;\n --hybrid-select-local-tag-close-hover-color: #da1e28;\n \n /* Validation message */\n --hybrid-select-local-message-font-size: 12px;\n --hybrid-select-local-message-margin-top: 4px;\n --hybrid-select-local-error-message-color: #da1e28;\n --hybrid-select-local-warning-message-color: #f0c300;\n --hybrid-select-local-success-message-color: #52c41a;\n }\n`;\n"]}