@kengic/vue 0.0.2-beta.55 → 0.0.2-beta.56

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.
@@ -1,4 +1,5 @@
1
1
  import KgPage from './kg-page/KgPage';
2
2
  import KgProgressA from './kg-progress-a/KgProgressA';
3
3
  import KgVarProfile from './kg-var-profile/KgVarProfile';
4
- export { KgPage, KgProgressA, KgVarProfile };
4
+ import KgYesOrNo from './kg-yes-or-no/KgYesOrNo';
5
+ export { KgPage, KgProgressA, KgVarProfile, KgYesOrNo };
@@ -0,0 +1,24 @@
1
+ import { PropType } from 'vue';
2
+ import './KgYesOrNo.less';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ /**
5
+ * 布尔数据.
6
+ * @default false
7
+ */
8
+ kgValue: {
9
+ type: PropType<boolean>;
10
+ default: boolean;
11
+ };
12
+ }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
13
+ /**
14
+ * 布尔数据.
15
+ * @default false
16
+ */
17
+ kgValue: {
18
+ type: PropType<boolean>;
19
+ default: boolean;
20
+ };
21
+ }>>, {
22
+ kgValue: boolean;
23
+ }>;
24
+ export default _default;
@@ -1,5 +1,7 @@
1
1
  declare const _default: {
2
2
  kg: {
3
+ yes: string;
4
+ no: string;
3
5
  KgVarProfile: {
4
6
  title: string;
5
7
  search: string;
@@ -1,6 +1,8 @@
1
1
  export declare const KG_I18N: {
2
2
  en: {
3
3
  kg: {
4
+ yes: string;
5
+ no: string;
4
6
  KgVarProfile: {
5
7
  title: string;
6
8
  search: string;
@@ -10,6 +12,8 @@ export declare const KG_I18N: {
10
12
  };
11
13
  zh_CN: {
12
14
  kg: {
15
+ yes: string;
16
+ no: string;
13
17
  KgVarProfile: {
14
18
  title: string;
15
19
  search: string;
@@ -1,5 +1,7 @@
1
1
  declare const _default: {
2
2
  kg: {
3
+ yes: string;
4
+ no: string;
3
5
  KgVarProfile: {
4
6
  title: string;
5
7
  search: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.0.2-beta.55",
3
+ "version": "0.0.2-beta.56",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "publish:all:beta": "npm run bump-version:beta && npm run publish:all",