@sme.up/ketchup2 2.0.0-SNAPSHOT-20250521143045 → 2.0.0-SNAPSHOT-20250521153648

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.
Files changed (31) hide show
  1. package/dist/assets/layoutAssets.d.ts +6 -0
  2. package/dist/assets/layoutAssets.d.ts.map +1 -0
  3. package/dist/assets/svg/arrow_left.svg +1 -0
  4. package/dist/assets/svg/menu.svg +1 -0
  5. package/dist/assets/svg/power_settings_new.svg +1 -0
  6. package/dist/assets/svg/refresh.svg +1 -0
  7. package/dist/basic-components/button/button-types.d.ts +28 -9
  8. package/dist/basic-components/button/button-types.d.ts.map +1 -1
  9. package/dist/basic-components/button/button.d.ts.map +1 -1
  10. package/dist/basic-components/textfield/textfield-types.d.ts +4 -0
  11. package/dist/basic-components/textfield/textfield-types.d.ts.map +1 -1
  12. package/dist/basic-components/textfield/textfield.d.ts.map +1 -1
  13. package/dist/components/app-bar/app-bar-types.d.ts +20 -0
  14. package/dist/components/app-bar/app-bar-types.d.ts.map +1 -0
  15. package/dist/components/app-bar/app-bar.d.ts +3 -0
  16. package/dist/components/app-bar/app-bar.d.ts.map +1 -0
  17. package/dist/components/app-bar/app-bar.data.d.ts +155 -0
  18. package/dist/components/app-bar/app-bar.data.d.ts.map +1 -0
  19. package/dist/functional-components/layout/layout-utils.d.ts +19 -0
  20. package/dist/functional-components/layout/layout-utils.d.ts.map +1 -0
  21. package/dist/functional-components/layout/layout.d.ts.map +1 -1
  22. package/dist/index.d.ts +3 -0
  23. package/dist/index.d.ts.map +1 -1
  24. package/dist/ketchup2.cjs.js +14 -14
  25. package/dist/ketchup2.css +1 -1
  26. package/dist/ketchup2.es.js +3325 -3165
  27. package/dist/types/data-structures.d.ts +4 -0
  28. package/dist/types/data-structures.d.ts.map +1 -1
  29. package/dist/utils/array.d.ts +8 -0
  30. package/dist/utils/array.d.ts.map +1 -0
  31. package/package.json +2 -2
@@ -0,0 +1,6 @@
1
+ import { LayoutProps } from '../functional-components/layout/layout-types';
2
+ export declare const defaultLayout: LayoutProps;
3
+ export declare const complexLayout: LayoutProps;
4
+ export declare const gridLayout: LayoutProps;
5
+ export declare const columnsLayout: LayoutProps;
6
+ //# sourceMappingURL=layoutAssets.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"layoutAssets.d.ts","sourceRoot":"","sources":["../../src/assets/layoutAssets.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,8CAA8C,CAAA;AAG1E,eAAO,MAAM,aAAa,EAAE,WA8D3B,CAAA;AAED,eAAO,MAAM,aAAa,EAAE,WAmlB3B,CAAA;AAED,eAAO,MAAM,UAAU,EAAE,WAgHxB,CAAA;AAED,eAAO,MAAM,aAAa,EAAE,WAwG3B,CAAA"}
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="0 0 24 24"><path d="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z" /></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M6 36h36v-4H6v4zm0-10h36v-4H6v4zm0-14v4h36v-4H6z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M26 6h-4v20h4V6zm9.67 4.33l-2.83 2.83C35.98 15.73 38 19.62 38 24c0 7.73-6.27 14-14 14s-14-6.27-14-14c0-4.38 2.02-8.27 5.16-10.84l-2.83-2.83C8.47 13.63 6 18.52 6 24c0 9.94 8.06 18 18 18s18-8.06 18-18c0-5.48-2.47-10.37-6.33-13.67z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><path d="M35.3 12.7C32.41 9.8 28.42 8 24 8 15.16 8 8.02 15.16 8.02 24S15.16 40 24 40c7.45 0 13.69-5.1 15.46-12H35.3c-1.65 4.66-6.07 8-11.3 8-6.63 0-12-5.37-12-12s5.37-12 12-12c3.31 0 6.28 1.38 8.45 3.55L26 22h14V8l-4.7 4.7z"/></svg>
@@ -2,27 +2,46 @@ import { buttonVariant } from '../../types/global';
2
2
  import { StringCellBindProps } from '../cell/cell-types';
3
3
  export interface ButtonProps extends StringCellBindProps {
4
4
  /**
5
- * Icon name to display alongside the text
5
+ * Name of the icon to display alongside the button text
6
+ * @optional
6
7
  */
7
8
  icon?: string;
8
9
  /**
9
10
  * Color and style variant of the button
10
- * @defaultValue 'primary'
11
+ * @default 'primary'
11
12
  */
12
13
  variant?: buttonVariant;
13
14
  /**
14
- * Visual type of the button (raised or ghost)
15
- * @defaultValue 'raised'
16
- */
17
- type?: Type;
15
+ * Visual appearance style of the button
16
+ * - 'raised': Button with shadow and elevation
17
+ * - 'ghost': Minimal button with outline or subtle background
18
+ * @default 'raised'
19
+ */
20
+ appearance?: "raised" | "ghost" | "outlined";
21
+ /**
22
+ * Whether to display the button text
23
+ * @default true
24
+ * @optional
25
+ */
18
26
  showText?: boolean;
27
+ /**
28
+ * Whether to display the button icon
29
+ * @default true
30
+ * @optional
31
+ */
19
32
  showIcon?: boolean;
33
+ /**
34
+ * Whether the button should expand to fill the available width
35
+ * @default false
36
+ * @optional
37
+ */
20
38
  fullWidth?: boolean;
21
39
  /**
22
- * While true the button will show a spinner
40
+ * Loading state of the button
41
+ * When true, displays a spinner and disables interaction
42
+ * @default false
43
+ * @optional
23
44
  */
24
45
  loading?: boolean;
25
46
  }
26
- type Type = "raised" | "ghost";
27
- export {};
28
47
  //# sourceMappingURL=button-types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"button-types.d.ts","sourceRoot":"","sources":["../../../src/basic-components/button/button-types.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAA;AAClD,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAA;AAExD,MAAM,WAAW,WAAY,SAAQ,mBAAmB;IACtD;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;OAGG;IACH,OAAO,CAAC,EAAE,aAAa,CAAC;IAEtB;;;KAGC;IACD,IAAI,CAAC,EAAE,IAAI,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAED,KAAK,IAAI,GAAG,QAAQ,GAAG,OAAO,CAAA"}
1
+ {"version":3,"file":"button-types.d.ts","sourceRoot":"","sources":["../../../src/basic-components/button/button-types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAA;AAClD,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAA;AAExD,MAAM,WAAW,WAAY,SAAQ,mBAAmB;IACtD;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd;;;OAGG;IACH,OAAO,CAAC,EAAE,aAAa,CAAC;IAExB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,QAAQ,GAAG,OAAO,GAAG,UAAU,CAAC;IAE7C;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IAEnB;;;;OAIG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IAEpB;;;;;OAKG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB"}
@@ -1 +1 @@
1
- {"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/basic-components/button/button.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAG5C,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAwDxC,CAAA"}
1
+ {"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/basic-components/button/button.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAG5C,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CA0ExC,CAAA"}
@@ -9,6 +9,10 @@ export interface TextfieldProps extends StringCellBindProps {
9
9
  sizing?: Sizing;
10
10
  state?: State;
11
11
  variant?: string;
12
+ /**
13
+ * It manages the textfield border as outlined or base
14
+ */
15
+ appearance?: "base" | "outlined";
12
16
  rotatedShapeIcon?: boolean;
13
17
  ref?: React.Ref<HTMLDivElement>;
14
18
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"textfield-types.d.ts","sourceRoot":"","sources":["../../../src/basic-components/textfield/textfield-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAA;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAA;AAExD,MAAM,WAAW,cAAe,SAAQ,mBAAmB;IACzD,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE,KAAK,CAAA;IACb,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;IAE/B;;;OAGG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;IACtC,gBAAgB,CAAC,EAAE,MAAM,IAAI,CAAA;IAC7B,SAAS,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,aAAa,KAAK,IAAI,CAAA;IAC5C,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;CACf"}
1
+ {"version":3,"file":"textfield-types.d.ts","sourceRoot":"","sources":["../../../src/basic-components/textfield/textfield-types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAA;AACzB,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAA;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAA;AAExD,MAAM,WAAW,cAAe,SAAQ,mBAAmB;IACzD,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,KAAK,CAAC,EAAE,KAAK,CAAA;IACb,OAAO,CAAC,EAAE,MAAM,CAAA;IAEhB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,UAAU,CAAA;IAChC,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,cAAc,CAAC,CAAA;IAE/B;;;OAGG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,gBAAgB,CAAC,CAAA;IACtC,gBAAgB,CAAC,EAAE,MAAM,IAAI,CAAA;IAC7B,SAAS,CAAC,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,aAAa,KAAK,IAAI,CAAA;IAC5C,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;;OAGG;IACH,UAAU,CAAC,EAAE,OAAO,CAAA;IAEpB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;CACf"}
@@ -1 +1 @@
1
- {"version":3,"file":"textfield.d.ts","sourceRoot":"","sources":["../../../src/basic-components/textfield/textfield.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAGlD,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CA+E9C,CAAA"}
1
+ {"version":3,"file":"textfield.d.ts","sourceRoot":"","sources":["../../../src/basic-components/textfield/textfield.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAA;AAGlD,eAAO,MAAM,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,cAAc,CAgF9C,CAAA"}
@@ -0,0 +1,20 @@
1
+ import { CellProps } from '../../basic-components/cell/cell-types';
2
+ import { DataCell, DataTable } from '../../types/data-structures';
3
+ export interface AppBarProps {
4
+ /**
5
+ * Data table with grid appbar data
6
+ */
7
+ data: DataTable;
8
+ /**
9
+ * onClick function on appbar
10
+ */
11
+ onClick?: (data: DataCell) => void;
12
+ /**
13
+ * onEnter function on appbar due to spotlight shape
14
+ */
15
+ onEnter?: (data: DataCell) => void;
16
+ }
17
+ export interface AppBarState {
18
+ [cellId: string]: CellProps;
19
+ }
20
+ //# sourceMappingURL=app-bar-types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app-bar-types.d.ts","sourceRoot":"","sources":["../../../src/components/app-bar/app-bar-types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAA;AAClE,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,6BAA6B,CAAA;AAEjE,MAAM,WAAW,WAAW;IAC1B;;OAEG;IACH,IAAI,EAAE,SAAS,CAAA;IAEf;;OAEG;IACH,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE,QAAQ,KAAK,IAAI,CAAA;IAEhC;;KAEC;IACH,OAAO,CAAC,EAAE,CAAC,IAAI,EAAE,QAAQ,KAAK,IAAI,CAAA;CACnC;AAED,MAAM,WAAW,WAAW;IAC1B,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAA;CAC5B"}
@@ -0,0 +1,3 @@
1
+ import { AppBarProps } from './app-bar-types';
2
+ export declare const AppBar: React.FC<AppBarProps>;
3
+ //# sourceMappingURL=app-bar.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app-bar.d.ts","sourceRoot":"","sources":["../../../src/components/app-bar/app-bar.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAe,MAAM,iBAAiB,CAAA;AAK1D,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CAmExC,CAAA"}
@@ -0,0 +1,155 @@
1
+ /**
2
+ * AppBar JSON to be used inside appbar stories and cabled webup
3
+ */
4
+ export declare const appBarData: {
5
+ columns: {
6
+ name: string;
7
+ title: string;
8
+ visible: boolean;
9
+ }[];
10
+ rows: {
11
+ id: string;
12
+ cells: {
13
+ MENU: {
14
+ obj: {
15
+ t: string;
16
+ p: string;
17
+ k: string;
18
+ };
19
+ fun: string;
20
+ icon: string;
21
+ data: {
22
+ variant: string;
23
+ appearance: string;
24
+ sizing: string;
25
+ };
26
+ shape: "BTN";
27
+ };
28
+ BACK: {
29
+ obj: {
30
+ t: string;
31
+ p: string;
32
+ k: string;
33
+ };
34
+ fun: string;
35
+ icon: string;
36
+ data: {
37
+ variant: string;
38
+ appearance: string;
39
+ sizing: string;
40
+ };
41
+ shape: "BTN";
42
+ };
43
+ REFRESH: {
44
+ obj: {
45
+ t: string;
46
+ p: string;
47
+ k: string;
48
+ };
49
+ fun: string;
50
+ icon: string;
51
+ data: {
52
+ variant: string;
53
+ appearance: string;
54
+ sizing: string;
55
+ };
56
+ shape: "BTN";
57
+ };
58
+ LOGO: {
59
+ obj: {
60
+ t: string;
61
+ p: string;
62
+ k: string;
63
+ };
64
+ fun: string;
65
+ icon: string;
66
+ data: {
67
+ width: string;
68
+ };
69
+ shape: "ICO";
70
+ };
71
+ SPOTLIGHT: {
72
+ obj: {
73
+ t: string;
74
+ p: string;
75
+ k: string;
76
+ };
77
+ data: {
78
+ sizing: string;
79
+ appearance: string;
80
+ };
81
+ fun: string;
82
+ icon: string;
83
+ shape: "SPL";
84
+ };
85
+ COMPANYICON: {
86
+ obj: {
87
+ t: string;
88
+ p: string;
89
+ k: string;
90
+ };
91
+ fun: string;
92
+ icon: string;
93
+ shape: "ICO";
94
+ };
95
+ COMPANYCHIP: {
96
+ obj: {
97
+ t: string;
98
+ p: string;
99
+ k: string;
100
+ };
101
+ fun: string;
102
+ icon: string;
103
+ shape: "CHI";
104
+ };
105
+ LOGOUT: {
106
+ obj: {
107
+ t: string;
108
+ p: string;
109
+ k: string;
110
+ };
111
+ data: {
112
+ variant: string;
113
+ appearance: string;
114
+ sizing: string;
115
+ };
116
+ shape: "BTN";
117
+ icon: string;
118
+ };
119
+ };
120
+ layout: {
121
+ horizontal: boolean;
122
+ sections: {
123
+ id: string;
124
+ horizontal: boolean;
125
+ hdsp: string;
126
+ sections: ({
127
+ id: string;
128
+ horizontal: boolean;
129
+ sections: {
130
+ id: string;
131
+ sections: never[];
132
+ vdsp: string;
133
+ horizontal: boolean;
134
+ content: {
135
+ id: string;
136
+ }[];
137
+ }[];
138
+ hdsp?: undefined;
139
+ vdsp?: undefined;
140
+ content?: undefined;
141
+ } | {
142
+ id: string;
143
+ horizontal: boolean;
144
+ sections: never[];
145
+ hdsp: string;
146
+ vdsp: string;
147
+ content: {
148
+ id: string;
149
+ }[];
150
+ })[];
151
+ }[];
152
+ };
153
+ }[];
154
+ };
155
+ //# sourceMappingURL=app-bar.data.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app-bar.data.d.ts","sourceRoot":"","sources":["../../../src/components/app-bar/app-bar.data.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwNlB,CAAA"}
@@ -0,0 +1,19 @@
1
+ import { DataLayoutSection } from '../../types/data-structures';
2
+ import { LayoutCells } from './layout-types';
3
+ /**
4
+ * Maps layout sections into subsections based on layout parameters such as columns.
5
+ * @param {DataLayoutSection[]} sections - Layout sections to map
6
+ * @param {LayoutCells} cells - Layout cells to render
7
+ * @returns {DataLayoutSection[]} New sections array to handle
8
+ */
9
+ export declare const mapSections: (sections: DataLayoutSection[], cells: LayoutCells) => DataLayoutSection[];
10
+ /**
11
+ * Retrieves the grid template value for a set of layout subsections and returns a CSS style object.
12
+ * @param {DataLayoutSection[]} sections - Array of layout subsections used to generate the grid template string
13
+ * @param {string} ccsVarName - The Smeup CSS variable name to assign (e.g., "--smp-grid-template-cols")
14
+ * @returns {{[gridTemplateKey: string]: string}} An object containing the CSS variable name as the key and the generated grid template string as the value
15
+ */
16
+ export declare const getSectionGridTemplateStyleString: (sections: DataLayoutSection[], ccsVarName: string) => {
17
+ [x: string]: string;
18
+ };
19
+ //# sourceMappingURL=layout-utils.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"layout-utils.d.ts","sourceRoot":"","sources":["../../../src/functional-components/layout/layout-utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,iBAAiB,EAAE,MAAM,6BAA6B,CAAA;AAEhF,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAE5C;;;;;GAKG;AACH,eAAO,MAAM,WAAW,GACtB,UAAU,iBAAiB,EAAE,EAC7B,OAAO,WAAW,KACjB,iBAAiB,EAsCnB,CAAA;AAED;;;;;GAKG;AACH,eAAO,MAAM,iCAAiC,GAC5C,UAAU,iBAAiB,EAAE,EAC7B,YAAY,MAAM;;CASnB,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"layout.d.ts","sourceRoot":"","sources":["../../../src/functional-components/layout/layout.tsx"],"names":[],"mappings":"AAIA,OAAO,EAEL,WAAW,EAEZ,MAAM,gBAAgB,CAAA;AAGvB,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CA2GxC,CAAA"}
1
+ {"version":3,"file":"layout.d.ts","sourceRoot":"","sources":["../../../src/functional-components/layout/layout.tsx"],"names":[],"mappings":"AAUA,OAAO,EAEL,WAAW,EAEZ,MAAM,gBAAgB,CAAA;AAIvB,eAAO,MAAM,MAAM,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CA6IxC,CAAA"}
package/dist/index.d.ts CHANGED
@@ -1,4 +1,7 @@
1
1
  /** Components */
2
+ /** App Bar */
3
+ export { AppBar } from './components/app-bar/app-bar';
4
+ export { type AppBarProps } from './components/app-bar/app-bar-types';
2
5
  /** Dash List */
3
6
  export { DashList } from './components/dash-list/dash-list';
4
7
  export { type DashListProps } from './components/dash-list/dash-list-types';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,aAAa;AACb,OAAO,oBAAoB,CAAA;AAC3B,OAAO,sBAAsB,CAAA;AAE7B,iBAAiB;AACjB,gBAAgB;AAChB,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAA;AAC3D,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,wCAAwC,CAAA;AAE3E,YAAY;AACZ,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAA;AAChD,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,gCAAgC,CAAA;AAEhE,uBAAuB;AACvB,gBAAgB;AAChB,OAAO,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAA;AAClE,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,8CAA8C,CAAA;AAElF,eAAe;AACf,OAAO,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAA;AAC/D,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,4CAA4C,CAAA;AAE/E,eAAe;AACf,OAAO,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAA;AAC/D,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,4CAA4C,CAAA;AAE/E,mBAAmB;AACnB,OAAO,EAAE,YAAY,EAAE,MAAM,8CAA8C,CAAA;AAC3E,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,oDAAoD,CAAA;AAE3F,kBAAkB;AAClB,OAAO,EAAE,UAAU,EAAE,MAAM,4CAA4C,CAAA;AACvE,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,kDAAkD,CAAA;AAEvF,WAAW;AACX,OAAO,EAAE,IAAI,EAAE,MAAM,8BAA8B,CAAA;AACnD,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,oCAAoC,CAAA;AAEnE,aAAa;AACb,OAAO,EAAE,MAAM,EAAE,MAAM,kCAAkC,CAAA;AACzD,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,wCAAwC,CAAA;AAEzE,aAAa;AACb,OAAO,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAA;AAC/D,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,4CAA4C,CAAA;AAE/E,qBAAqB;AACrB,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,aAAa;AACb,OAAO,oBAAoB,CAAA;AAC3B,OAAO,sBAAsB,CAAA;AAE7B,iBAAiB;AACjB,cAAc;AACd,OAAO,EAAE,MAAM,EAAE,MAAM,8BAA8B,CAAA;AACrD,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,oCAAoC,CAAA;AAErE,gBAAgB;AAChB,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAA;AAC3D,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,wCAAwC,CAAA;AAE3E,YAAY;AACZ,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAA;AAChD,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,gCAAgC,CAAA;AAEhE,uBAAuB;AACvB,gBAAgB;AAChB,OAAO,EAAE,SAAS,EAAE,MAAM,wCAAwC,CAAA;AAClE,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,8CAA8C,CAAA;AAElF,eAAe;AACf,OAAO,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAA;AAC/D,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,4CAA4C,CAAA;AAE/E,eAAe;AACf,OAAO,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAA;AAC/D,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,4CAA4C,CAAA;AAE/E,mBAAmB;AACnB,OAAO,EAAE,YAAY,EAAE,MAAM,8CAA8C,CAAA;AAC3E,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,oDAAoD,CAAA;AAE3F,kBAAkB;AAClB,OAAO,EAAE,UAAU,EAAE,MAAM,4CAA4C,CAAA;AACvE,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,kDAAkD,CAAA;AAEvF,WAAW;AACX,OAAO,EAAE,IAAI,EAAE,MAAM,8BAA8B,CAAA;AACnD,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,oCAAoC,CAAA;AAEnE,aAAa;AACb,OAAO,EAAE,MAAM,EAAE,MAAM,kCAAkC,CAAA;AACzD,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,wCAAwC,CAAA;AAEzE,aAAa;AACb,OAAO,EAAE,QAAQ,EAAE,MAAM,sCAAsC,CAAA;AAC/D,OAAO,EAAE,KAAK,aAAa,EAAE,MAAM,4CAA4C,CAAA;AAE/E,qBAAqB;AACrB,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA"}