@sme.up/ketchup 11.0.0-SNAPSHOT-20241031093946 → 11.0.0-SNAPSHOT-20241031094059
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/dist/cjs/ketchup.cjs.js +1 -1
- package/dist/cjs/kup-autocomplete_28.cjs.entry.js +20 -2
- package/dist/cjs/kup-autocomplete_28.cjs.entry.js.map +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/components/kup-tab-bar/kup-tab-bar-declarations.js +13 -0
- package/dist/collection/components/kup-tab-bar/kup-tab-bar-declarations.js.map +1 -1
- package/dist/collection/components/kup-tab-bar/kup-tab-bar.css +21 -0
- package/dist/collection/components/kup-tab-bar/kup-tab-bar.js +34 -2
- package/dist/collection/components/kup-tab-bar/kup-tab-bar.js.map +1 -1
- package/dist/components/kup-autocomplete2.js +21 -2
- package/dist/components/kup-autocomplete2.js.map +1 -1
- package/dist/esm/ketchup.js +1 -1
- package/dist/esm/kup-autocomplete_28.entry.js +20 -2
- package/dist/esm/kup-autocomplete_28.entry.js.map +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/ketchup/ketchup.esm.js +1 -1
- package/dist/ketchup/ketchup.esm.js.map +1 -1
- package/dist/ketchup/{p-a55d2c8b.entry.js → p-cbf20461.entry.js} +2 -2
- package/dist/ketchup/p-cbf20461.entry.js.map +1 -0
- package/dist/types/components/kup-tab-bar/kup-tab-bar-declarations.d.ts +13 -1
- package/dist/types/components/kup-tab-bar/kup-tab-bar.d.ts +6 -1
- package/dist/types/components.d.ts +12 -2
- package/package.json +1 -1
- package/dist/ketchup/p-a55d2c8b.entry.js.map +0 -1
|
@@ -8,7 +8,19 @@ export declare enum KupTabBarProps {
|
|
|
8
8
|
customStyle = "Custom style of the component.",
|
|
9
9
|
data = "List of elements.",
|
|
10
10
|
ripple = "When enabled displays Material's ripple effect on item headers.",
|
|
11
|
-
toolbar = "when true, it will show the toolbar activation icon"
|
|
11
|
+
toolbar = "when true, it will show the toolbar activation icon",
|
|
12
|
+
variant = "Variant of the component. It is either flat or contained"
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Styling options for the f-button component.
|
|
16
|
+
* @enum {string}
|
|
17
|
+
* @property {string} FLAT - Flat style: no background nor borders.
|
|
18
|
+
* @property {string} CONTAINED - Background and active field as background.
|
|
19
|
+
|
|
20
|
+
*/
|
|
21
|
+
export declare enum KupTabbarStyling {
|
|
22
|
+
FLAT = "flat",
|
|
23
|
+
CONTAINED = "contained"
|
|
12
24
|
}
|
|
13
25
|
/**
|
|
14
26
|
* The object of a single radio.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '../../stencil-public-runtime';
|
|
2
|
-
import { KupTabBarNode, KupTabBarEventPayload } from './kup-tab-bar-declarations';
|
|
2
|
+
import { KupTabBarNode, KupTabBarEventPayload, KupTabbarStyling } from './kup-tab-bar-declarations';
|
|
3
3
|
import { GenericObject } from '../../types/GenericTypes';
|
|
4
4
|
import { KupDataNode } from '../../managers/kup-data/kup-data-declarations';
|
|
5
5
|
import { KupToolbarItemClickEventPayload } from '../../components/kup-toolbar/kup-toolbar-declarations';
|
|
@@ -21,6 +21,11 @@ export declare class KupTabBar {
|
|
|
21
21
|
* @default null
|
|
22
22
|
*/
|
|
23
23
|
data: KupTabBarNode[];
|
|
24
|
+
/**
|
|
25
|
+
* List of elements.
|
|
26
|
+
* @default KupTabbarStyling.FLAT
|
|
27
|
+
*/
|
|
28
|
+
variant: KupTabbarStyling;
|
|
24
29
|
/**
|
|
25
30
|
* Defaults at false. When set to true, the component is dense.
|
|
26
31
|
* @default false
|
|
@@ -56,7 +56,7 @@ import { KupRadioChangeEventPayload } from "./components/kup-radio/kup-radio-dec
|
|
|
56
56
|
import { KupRatingClickEventPayload } from "./components/kup-rating/kup-rating-declarations";
|
|
57
57
|
import { FSwitchSizing } from "./f-components/f-switch/f-switch-declarations";
|
|
58
58
|
import { KupSwitchEventPayload } from "./components/kup-switch/kup-switch-declarations";
|
|
59
|
-
import { KupTabBarEventPayload, KupTabBarNode } from "./components/kup-tab-bar/kup-tab-bar-declarations";
|
|
59
|
+
import { KupTabBarEventPayload, KupTabBarNode, KupTabbarStyling } from "./components/kup-tab-bar/kup-tab-bar-declarations";
|
|
60
60
|
import { KupToolbarClickEventPayload, KupToolbarItemClickEventPayload } from "./components/kup-toolbar/kup-toolbar-declarations";
|
|
61
61
|
import { KupTextFieldEventPayload } from "./components/kup-text-field/kup-text-field-declarations";
|
|
62
62
|
import { KupTimePickerEventPayload } from "./components/kup-time-picker/kup-time-picker-declarations";
|
|
@@ -114,7 +114,7 @@ export { KupRadioChangeEventPayload } from "./components/kup-radio/kup-radio-dec
|
|
|
114
114
|
export { KupRatingClickEventPayload } from "./components/kup-rating/kup-rating-declarations";
|
|
115
115
|
export { FSwitchSizing } from "./f-components/f-switch/f-switch-declarations";
|
|
116
116
|
export { KupSwitchEventPayload } from "./components/kup-switch/kup-switch-declarations";
|
|
117
|
-
export { KupTabBarEventPayload, KupTabBarNode } from "./components/kup-tab-bar/kup-tab-bar-declarations";
|
|
117
|
+
export { KupTabBarEventPayload, KupTabBarNode, KupTabbarStyling } from "./components/kup-tab-bar/kup-tab-bar-declarations";
|
|
118
118
|
export { KupToolbarClickEventPayload, KupToolbarItemClickEventPayload } from "./components/kup-toolbar/kup-toolbar-declarations";
|
|
119
119
|
export { KupTextFieldEventPayload } from "./components/kup-text-field/kup-text-field-declarations";
|
|
120
120
|
export { KupTimePickerEventPayload } from "./components/kup-time-picker/kup-time-picker-declarations";
|
|
@@ -3887,6 +3887,11 @@ export namespace Components {
|
|
|
3887
3887
|
* @default null
|
|
3888
3888
|
*/
|
|
3889
3889
|
"toolbarData": KupDataNode[];
|
|
3890
|
+
/**
|
|
3891
|
+
* List of elements.
|
|
3892
|
+
* @default KupTabbarStyling.FLAT
|
|
3893
|
+
*/
|
|
3894
|
+
"variant": KupTabbarStyling;
|
|
3890
3895
|
}
|
|
3891
3896
|
interface KupTaskGantt {
|
|
3892
3897
|
"barProps": KupPlannerTaskGanttProps['barProps'];
|
|
@@ -9074,6 +9079,11 @@ declare namespace LocalJSX {
|
|
|
9074
9079
|
* @default null
|
|
9075
9080
|
*/
|
|
9076
9081
|
"toolbarData"?: KupDataNode[];
|
|
9082
|
+
/**
|
|
9083
|
+
* List of elements.
|
|
9084
|
+
* @default KupTabbarStyling.FLAT
|
|
9085
|
+
*/
|
|
9086
|
+
"variant"?: KupTabbarStyling;
|
|
9077
9087
|
}
|
|
9078
9088
|
interface KupTaskGantt {
|
|
9079
9089
|
"barProps"?: KupPlannerTaskGanttProps['barProps'];
|