@zeedhi/common 1.55.1 → 1.56.0

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": "@zeedhi/common",
3
- "version": "1.55.1",
3
+ "version": "1.56.0",
4
4
  "description": "Zeedhi Common",
5
5
  "author": "Zeedhi <zeedhi@teknisa.com>",
6
6
  "license": "ISC",
@@ -37,5 +37,5 @@
37
37
  "lodash.times": "^4.3.2",
38
38
  "mockdate": "^3.0.2"
39
39
  },
40
- "gitHead": "7788a732156c6f3dc76b2b5f536df5cdb83b1488"
40
+ "gitHead": "b8c326c0ff6cb648592ca9ed0d350353b15ed32e"
41
41
  }
@@ -1,14 +1,14 @@
1
- import scss from 'rollup-plugin-scss';
2
-
3
- export default {
4
- input: './src/styles/index.scss',
5
- output: {
6
- format: 'esm',
7
- },
8
- plugins: [
9
- scss({
10
- output: 'dist/style.css',
11
- outputStyle: 'compressed',
12
- }),
13
- ],
14
- };
1
+ import scss from 'rollup-plugin-scss';
2
+
3
+ export default {
4
+ input: './src/styles/index.scss',
5
+ output: {
6
+ format: 'esm',
7
+ },
8
+ plugins: [
9
+ scss({
10
+ output: 'dist/style.css',
11
+ outputStyle: 'compressed',
12
+ }),
13
+ ],
14
+ };
@@ -1,9 +1,9 @@
1
- {
2
- // extend your base config so you don't have to redefine your compilerOptions
3
- "extends": "./tsconfig.json",
4
- "include": [
5
- "./src/**/*.ts",
6
- "./tests/**/*.ts",
7
- ],
8
- "exclude": ["node_modules"]
1
+ {
2
+ // extend your base config so you don't have to redefine your compilerOptions
3
+ "extends": "./tsconfig.json",
4
+ "include": [
5
+ "./src/**/*.ts",
6
+ "./tests/**/*.ts",
7
+ ],
8
+ "exclude": ["node_modules"]
9
9
  }
@@ -70,10 +70,17 @@ export declare class Form extends ComponentRender implements IForm {
70
70
  componentId?: number | undefined;
71
71
  cssClass?: string | undefined;
72
72
  cssStyle?: string | object | undefined;
73
+ /**
74
+ * Children component structure if the component has children.
75
+ */
73
76
  events?: import("..").IComponentEvents<import("@zeedhi/core").IEventParam<any>> | undefined;
74
77
  directives?: import("..").IComponentDirectives | undefined;
75
78
  isVisible?: string | boolean | undefined;
76
79
  dark?: boolean | undefined;
80
+ /**
81
+ * Applies the align-items css property.
82
+ * Available options are start, center, end, space-between, space-around and stretch.
83
+ */
77
84
  light?: boolean | undefined;
78
85
  keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
79
86
  name: string;
@@ -18,6 +18,9 @@ export declare class GridColumn extends Column implements IGridColumn {
18
18
  [key: string]: any;
19
19
  children?: import("..").IComponentRender[] | undefined;
20
20
  component: string;
21
+ /**
22
+ * Base class for Grid column
23
+ */
21
24
  componentId?: number | undefined;
22
25
  cssClass?: string | undefined;
23
26
  cssStyle?: string | object | undefined;
@@ -26,11 +29,12 @@ export declare class GridColumn extends Column implements IGridColumn {
26
29
  isVisible?: string | boolean | undefined;
27
30
  dark?: boolean | undefined;
28
31
  light?: boolean | undefined;
29
- keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
30
- name: string; /**
32
+ /**
31
33
  * Creates a new Grid Column.
32
34
  * @param props Grid column properties
33
35
  */
36
+ keyMap?: import("@zeedhi/core").IKeyMap<import("@zeedhi/core").IEventParam<any>> | undefined;
37
+ name: string;
34
38
  parent?: import("..").Component | undefined;
35
39
  }[];
36
40
  /**