@brickclay-org/ui 0.0.78 → 0.0.80
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/index.d.ts
CHANGED
|
@@ -539,7 +539,7 @@ declare class BkButton {
|
|
|
539
539
|
static ɵcmp: i0.ɵɵComponentDeclaration<BkButton, "bk-button", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "leftIcon": { "alias": "leftIcon"; "required": false; }; "rightIcon": { "alias": "rightIcon"; "required": false; }; "iconAlt": { "alias": "iconAlt"; "required": false; }; "type": { "alias": "type"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; "textClass": { "alias": "textClass"; "required": false; }; "spinnerClass": { "alias": "spinnerClass"; "required": false; }; }, { "clicked": "clicked"; }, never, never, true, never>;
|
|
540
540
|
}
|
|
541
541
|
|
|
542
|
-
type IconButtonSize = 'xxsm' | 'xsm' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
|
542
|
+
type IconButtonSize = 'xxxsm' | 'xxsm' | 'xsm' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
|
|
543
543
|
type IconButtonVariant = 'primary' | 'secondary';
|
|
544
544
|
declare class BkIconButton {
|
|
545
545
|
icon: string;
|
package/package.json
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
|
|
30
30
|
/* --- SIZES (Square Dimensions) --- */
|
|
31
31
|
/* These specific heights match the calculated height of your text buttons */
|
|
32
|
-
|
|
32
|
+
.btn-icon.xxxsm { @apply p-1;}
|
|
33
33
|
.btn-icon.xxsm { @apply p-1.5;}
|
|
34
34
|
.btn-icon.xsm { @apply p-1.5;}
|
|
35
35
|
.btn-icon.sm { @apply p-2;}
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
|
|
41
41
|
/* --- ICON SIZING --- */
|
|
42
42
|
/* Ensures icons scale nicely within the square */
|
|
43
|
+
.btn-icon.xxxsm .icon { @apply size-[10px]; }
|
|
43
44
|
.btn-icon.xxsm .icon { @apply size-[14px]; }
|
|
44
45
|
.btn-icon.xsm .icon { @apply size-[18px]; }
|
|
45
46
|
.btn-icon.sm .icon { @apply size-[20px]; }
|