codexly-ui 0.0.31 → 0.0.32
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/fesm2022/codexly-ui.mjs +5 -4
- package/fesm2022/codexly-ui.mjs.map +1 -1
- package/index.d.ts +3 -3
- package/package.json +29 -29
package/index.d.ts
CHANGED
|
@@ -977,7 +977,7 @@ declare class ClxBadgeComponent {
|
|
|
977
977
|
declare class ClxButtonComponent {
|
|
978
978
|
readonly variant: _angular_core.InputSignal<ClxButtonVariant>;
|
|
979
979
|
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
980
|
-
readonly size: _angular_core.InputSignal<"
|
|
980
|
+
readonly size: _angular_core.InputSignal<"xxs" | "xs" | "sm" | "md" | "lg">;
|
|
981
981
|
readonly shape: _angular_core.InputSignal<ClxShape>;
|
|
982
982
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
983
983
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -1152,7 +1152,7 @@ interface ClxChartOptions {
|
|
|
1152
1152
|
declare class ClxChartComponent implements AfterViewInit, OnDestroy {
|
|
1153
1153
|
canvasRef: ElementRef<HTMLCanvasElement>;
|
|
1154
1154
|
type: _angular_core.InputSignal<ClxChartType>;
|
|
1155
|
-
data: _angular_core.InputSignal<ChartData<keyof chart_js.ChartTypeRegistry, (number |
|
|
1155
|
+
data: _angular_core.InputSignal<ChartData<keyof chart_js.ChartTypeRegistry, (number | [number, number] | chart_js.Point | chart_js.BubbleDataPoint | null)[], unknown>>;
|
|
1156
1156
|
options: _angular_core.InputSignal<node_modules_chart_js_dist_types_utils._DeepPartialObject<chart_js.CoreChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.ElementChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.PluginChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.DatasetChartOptions<keyof chart_js.ChartTypeRegistry> & chart_js.ScaleChartOptions<keyof chart_js.ChartTypeRegistry>>>;
|
|
1157
1157
|
height: _angular_core.InputSignal<string | number>;
|
|
1158
1158
|
ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
@@ -1511,7 +1511,7 @@ declare class ClxEditorComponent implements AfterViewInit, OnDestroy, ControlVal
|
|
|
1511
1511
|
readonly placeholder: _angular_core.InputSignal<string>;
|
|
1512
1512
|
readonly color: _angular_core.InputSignal<ClxColorInput>;
|
|
1513
1513
|
readonly size: _angular_core.InputSignal<ClxEditorSize>;
|
|
1514
|
-
readonly status: _angular_core.InputSignal<"
|
|
1514
|
+
readonly status: _angular_core.InputSignal<"error" | "default" | "success">;
|
|
1515
1515
|
readonly statusMessage: _angular_core.InputSignal<string>;
|
|
1516
1516
|
readonly hint: _angular_core.InputSignal<string>;
|
|
1517
1517
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "codexly-ui",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^20.3.0",
|
|
6
|
-
"@angular/core": "^20.3.0",
|
|
7
|
-
"@angular/router": "^20.3.0",
|
|
8
|
-
"@angular/forms": "^20.3.0",
|
|
9
|
-
"@angular/cdk": "^20.0.0",
|
|
10
|
-
"rxjs": "^7.0.0"
|
|
11
|
-
},
|
|
12
|
-
"dependencies": {
|
|
13
|
-
"tslib": "^2.3.0"
|
|
14
|
-
},
|
|
15
|
-
"sideEffects": false,
|
|
16
|
-
"exports": {
|
|
17
|
-
"./assets/*": {
|
|
18
|
-
"default": "./assets/*"
|
|
19
|
-
},
|
|
20
|
-
"./package.json": {
|
|
21
|
-
"default": "./package.json"
|
|
22
|
-
},
|
|
23
|
-
".": {
|
|
24
|
-
"types": "./index.d.ts",
|
|
25
|
-
"default": "./fesm2022/codexly-ui.mjs"
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"module": "fesm2022/codexly-ui.mjs",
|
|
29
|
-
"typings": "index.d.ts"
|
|
1
|
+
{
|
|
2
|
+
"name": "codexly-ui",
|
|
3
|
+
"version": "0.0.32",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^20.3.0",
|
|
6
|
+
"@angular/core": "^20.3.0",
|
|
7
|
+
"@angular/router": "^20.3.0",
|
|
8
|
+
"@angular/forms": "^20.3.0",
|
|
9
|
+
"@angular/cdk": "^20.0.0",
|
|
10
|
+
"rxjs": "^7.0.0"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"tslib": "^2.3.0"
|
|
14
|
+
},
|
|
15
|
+
"sideEffects": false,
|
|
16
|
+
"exports": {
|
|
17
|
+
"./assets/*": {
|
|
18
|
+
"default": "./assets/*"
|
|
19
|
+
},
|
|
20
|
+
"./package.json": {
|
|
21
|
+
"default": "./package.json"
|
|
22
|
+
},
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./index.d.ts",
|
|
25
|
+
"default": "./fesm2022/codexly-ui.mjs"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"module": "fesm2022/codexly-ui.mjs",
|
|
29
|
+
"typings": "index.d.ts"
|
|
30
30
|
}
|