@ganpatiinfo/gids-core-web 0.0.2 → 0.0.4

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.
@@ -0,0 +1,4 @@
1
+ import type { FunctionalComponent, JSXBase, VNode } from '../../../stencil-public-runtime';
2
+ import { type GidsDisplayTagCommonProps } from '@ganpatiinfo/gids-core-shared';
3
+ export type GidsDisplayTagProps = GidsDisplayTagCommonProps<VNode> & JSXBase.IntrinsicElements['span'];
4
+ export declare const GidsDisplayTag: FunctionalComponent<GidsDisplayTagProps>;
@@ -0,0 +1,4 @@
1
+ import type { FunctionalComponent } from '../../../stencil-public-runtime';
2
+ import { type GidsDividerCommonProps } from '@ganpatiinfo/gids-core-shared';
3
+ export type GidsDividerProps = GidsDividerCommonProps;
4
+ export declare const GidsDivider: FunctionalComponent<GidsDividerProps>;
@@ -0,0 +1,2 @@
1
+ export * from './utils/constructedGidsStylesheet';
2
+ export type * from './components.d.ts';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ganpatiinfo/gids-core-web",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "private": false,
5
5
  "description": "This is a core web package contains html components",
6
6
  "homepage": "https://ganpatiinfosystem.vercel.app/",
@@ -13,7 +13,7 @@
13
13
  "clean": "npm-run-all --parallel clean:**",
14
14
  "prebuild": "node ./scripts/generateCode.js",
15
15
  "build:js": "stencil build",
16
- "build:css": "sass src/index.scss:dist/index.css",
16
+ "build:css": "sass src/index.scss:dist/index.css src/elements.scss:dist/elements.css",
17
17
  "build:ce-manifest": "cem analyze",
18
18
  "build": "npm-run-all --parallel build:**",
19
19
  "postbuild": "node scripts/fixupBuild.js",
@@ -73,8 +73,8 @@
73
73
  },
74
74
  "dependencies": {
75
75
  "clsx": "2.1.1",
76
- "@ganpatiinfo/gids-core-shared": "0.0.2",
77
- "@ganpatiinfo/gids-web-shared": "0.0.2"
76
+ "@ganpatiinfo/gids-core-shared": "0.0.4",
77
+ "@ganpatiinfo/gids-web-shared": "0.0.4"
78
78
  },
79
79
  "devDependencies": {
80
80
  "@babel/preset-env": "7.27.2",
@@ -82,11 +82,11 @@
82
82
  "@custom-elements-manifest/analyzer": "0.10.4",
83
83
  "@fontsource/inter": "5.2.5",
84
84
  "@fontsource/libre-caslon-text": "5.2.5",
85
- "@ganpatiinfo/gids-liquid-renderer": "0.0.2",
86
- "@ganpatiinfo/gids-storybook-theme": "0.0.2",
87
- "@ganpatiinfo/gids-storybook-utilities": "0.0.2",
88
- "@ganpatiinfo/gids-web-dom-reference": "0.0.2",
89
- "@ganpatiinfo/gids-web-theme-ganpatiinfo": "0.0.2",
85
+ "@ganpatiinfo/gids-liquid-renderer": "0.0.4",
86
+ "@ganpatiinfo/gids-storybook-theme": "0.0.4",
87
+ "@ganpatiinfo/gids-storybook-utilities": "0.0.4",
88
+ "@ganpatiinfo/gids-web-dom-reference": "0.0.4",
89
+ "@ganpatiinfo/gids-web-theme-ganpatiinfo": "0.0.4",
90
90
  "@jest/globals": "29.7.0",
91
91
  "@stencil/core": "4.31.0",
92
92
  "@stencil/react-output-target": "1.0.2",
@@ -133,6 +133,10 @@
133
133
  {
134
134
  "name": "CSS core",
135
135
  "path": "dist/index.css"
136
+ },
137
+ {
138
+ "name": "CSS (optional)",
139
+ "path": "dist/elements.css"
136
140
  }
137
141
  ]
138
142
  }