aril 0.0.4 → 0.0.5
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aril",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^17.1.0",
|
|
6
6
|
"@angular/core": "^17.1.0",
|
|
@@ -174,18 +174,18 @@
|
|
|
174
174
|
"esm": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
175
175
|
"default": "./fesm2022/aril-ui-text.mjs"
|
|
176
176
|
},
|
|
177
|
-
"./ui/textArea": {
|
|
178
|
-
"types": "./ui/textArea/index.d.ts",
|
|
179
|
-
"esm2022": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
180
|
-
"esm": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
181
|
-
"default": "./fesm2022/aril-ui-textArea.mjs"
|
|
182
|
-
},
|
|
183
177
|
"./ui/tree": {
|
|
184
178
|
"types": "./ui/tree/index.d.ts",
|
|
185
179
|
"esm2022": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
186
180
|
"esm": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
187
181
|
"default": "./fesm2022/aril-ui-tree.mjs"
|
|
188
182
|
},
|
|
183
|
+
"./ui/textArea": {
|
|
184
|
+
"types": "./ui/textArea/index.d.ts",
|
|
185
|
+
"esm2022": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
186
|
+
"esm": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
187
|
+
"default": "./fesm2022/aril-ui-textArea.mjs"
|
|
188
|
+
},
|
|
189
189
|
"./ui/treeTable": {
|
|
190
190
|
"types": "./ui/treeTable/index.d.ts",
|
|
191
191
|
"esm2022": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
@@ -10,17 +10,17 @@ $colors: (
|
|
|
10
10
|
"bluegray": #64748B,
|
|
11
11
|
"purple": #A855F7,
|
|
12
12
|
"red": #FF3D32,
|
|
13
|
-
"primary": $
|
|
13
|
+
"primary": $primary500
|
|
14
14
|
);
|
|
15
15
|
|
|
16
16
|
//shades
|
|
17
17
|
$shade000:rgba(255,255,255,.87) !default; //text color
|
|
18
18
|
$shade100:rgba(255,255,255,.60) !default; //text secondary color
|
|
19
|
-
$shade500:#
|
|
20
|
-
$shade600:#
|
|
21
|
-
$shade700:#
|
|
22
|
-
$shade800:#
|
|
23
|
-
$shade900:#
|
|
19
|
+
$shade500:#6b7280 !default;
|
|
20
|
+
$shade600:#424b57 !default; //input bg, border, divider
|
|
21
|
+
$shade700:#374151 !default; //menu bg
|
|
22
|
+
$shade800:#1f2937 !default; //elevated surface
|
|
23
|
+
$shade900:#111827 !default; //ground surface
|
|
24
24
|
|
|
25
25
|
$hoverBg:rgba(255,255,255,.03) !default;
|
|
26
26
|
|
|
@@ -665,7 +665,7 @@ $menuitemFocusBg:$shade600 !default;
|
|
|
665
665
|
$menuitemTextActiveColor:$highlightTextColor !default;
|
|
666
666
|
$menuitemIconActiveColor:$highlightTextColor !default;
|
|
667
667
|
$menuitemActiveBg:$highlightBg !default;
|
|
668
|
-
$menuitemActiveFocusBg:$
|
|
668
|
+
$menuitemActiveFocusBg:$highlightFocusBg !default;
|
|
669
669
|
$menuitemSubmenuIconFontSize:.875rem !default;
|
|
670
670
|
$submenuHeaderMargin:0 !default;
|
|
671
671
|
$submenuHeaderPadding:.75rem 1.25rem !default;
|
|
@@ -857,34 +857,34 @@ $imagePreviewActionIconBorderRadius:50% !default;
|
|
|
857
857
|
--text-color-secondary:#{$shade100};
|
|
858
858
|
--primary-color:#{$primaryColor};
|
|
859
859
|
--primary-color-text:#{$primaryTextColor};
|
|
860
|
-
--surface-0: #
|
|
861
|
-
--surface-50: #
|
|
862
|
-
--surface-100: #
|
|
863
|
-
--surface-200: #
|
|
864
|
-
--surface-300: #
|
|
865
|
-
--surface-400: #
|
|
866
|
-
--surface-500: #
|
|
867
|
-
--surface-600: #
|
|
868
|
-
--surface-700: #
|
|
869
|
-
--surface-800: #
|
|
860
|
+
--surface-0: #111827;
|
|
861
|
+
--surface-50: #1f2937;
|
|
862
|
+
--surface-100: #374151;
|
|
863
|
+
--surface-200: #4b5563;
|
|
864
|
+
--surface-300: #6b7280;
|
|
865
|
+
--surface-400: #9ca3af;
|
|
866
|
+
--surface-500: #d1d5db;
|
|
867
|
+
--surface-600: #e5e7eb;
|
|
868
|
+
--surface-700: #f3f4f6;
|
|
869
|
+
--surface-800: #f9fafb;
|
|
870
870
|
--surface-900: #ffffff;
|
|
871
|
-
--gray-50: #
|
|
872
|
-
--gray-100: #
|
|
873
|
-
--gray-200: #
|
|
874
|
-
--gray-300: #
|
|
875
|
-
--gray-400: #
|
|
876
|
-
--gray-500: #
|
|
877
|
-
--gray-600: #
|
|
878
|
-
--gray-700: #
|
|
879
|
-
--gray-800: #
|
|
880
|
-
--gray-900: #
|
|
871
|
+
--gray-50: #f9fafb;
|
|
872
|
+
--gray-100: #f3f4f6;
|
|
873
|
+
--gray-200: #e5e7eb;
|
|
874
|
+
--gray-300: #d1d5db;
|
|
875
|
+
--gray-400: #9ca3af;
|
|
876
|
+
--gray-500: #6b7280;
|
|
877
|
+
--gray-600: #4b5563;
|
|
878
|
+
--gray-700: #374151;
|
|
879
|
+
--gray-800: #1f2937;
|
|
880
|
+
--gray-900: #111827;
|
|
881
881
|
--content-padding:#{$panelContentPadding};
|
|
882
882
|
--inline-spacing:#{$inlineSpacing};
|
|
883
883
|
--border-radius:#{$borderRadius};
|
|
884
|
-
--surface-ground:#
|
|
885
|
-
--surface-section:#
|
|
886
|
-
--surface-card:#
|
|
887
|
-
--surface-overlay:#
|
|
884
|
+
--surface-ground:#111827;
|
|
885
|
+
--surface-section:#111827;
|
|
886
|
+
--surface-card:#1f2937;
|
|
887
|
+
--surface-overlay:#1f2937;
|
|
888
888
|
--surface-border:rgba(255,255,255,.1);
|
|
889
889
|
--surface-hover:rgba(255,255,255,.03);
|
|
890
890
|
--focus-ring: #{$focusShadow};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
$primaryColor: #
|
|
2
|
-
$primaryLightColor: #
|
|
3
|
-
$primaryLighterColor: #
|
|
4
|
-
$primaryLightestColor: rgba(
|
|
1
|
+
$primaryColor: #818cf8 !default;
|
|
2
|
+
$primaryLightColor: #a5b4fc !default;
|
|
3
|
+
$primaryLighterColor: #c7d2fe !default;
|
|
4
|
+
$primaryLightestColor: rgba(129, 140, 248, .2) !default;
|
|
5
5
|
$primaryTextColor: #030712 !default;
|
|
6
|
-
$primary500: #
|
|
6
|
+
$primary500: #6366f1 !default;
|
|
7
7
|
|
|
8
|
-
$highlightBg:rgba(
|
|
8
|
+
$highlightBg:rgba(129, 140, 248, .16) !default;
|
|
9
9
|
$highlightTextColor: rgba(255, 255, 255, 0.87) !default;
|
|
10
10
|
$highlightFocusBg: rgba($primaryColor, 0.24) !default;
|
|
11
11
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
$primaryColor: #
|
|
2
|
-
$primaryLightColor: #
|
|
3
|
-
$
|
|
4
|
-
$
|
|
5
|
-
$primaryTextColor: #
|
|
6
|
-
$primary500: #
|
|
1
|
+
$primaryColor: #818cf8 !default;
|
|
2
|
+
$primaryLightColor: #a5b4fc !default;
|
|
3
|
+
$primaryLighterColor: #c7d2fe !default;
|
|
4
|
+
$primaryLightestColor: rgba(129, 140, 248, .2) !default;
|
|
5
|
+
$primaryTextColor: #030712 !default;
|
|
6
|
+
$primary500: #6366f1 !default;
|
|
7
7
|
|
|
8
|
-
$highlightBg:
|
|
9
|
-
$highlightTextColor:
|
|
8
|
+
$highlightBg:rgba(129, 140, 248, .16) !default;
|
|
9
|
+
$highlightTextColor: rgba(255, 255, 255, 0.87) !default;
|
|
10
10
|
$highlightFocusBg: rgba($primaryColor, 0.24) !default;
|
|
11
11
|
|
|
12
12
|
@import '../_variables';
|